From 2c997fbf740e71a960d113a2aca3c65088ef4620 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Mon, 15 Jan 2024 13:59:34 -0500 Subject: [PATCH] Make Object and derived classes use SharedPtr with the Original mapping (#1668) --- cpp/include/Ice/FacetMap.h | 66 +- cpp/include/Ice/MetricsAdminI.h | 2 +- cpp/include/Ice/NativePropertiesAdmin.h | 9 +- cpp/include/Ice/Object.h | 5 +- cpp/include/Ice/ObjectF.h | 8 +- cpp/include/Ice/OutgoingAsync.h | 37 +- cpp/include/Ice/PropertiesF.h | 34 - cpp/src/Ice/FacetMap.cpp | 49 - cpp/src/Ice/Instance.cpp | 4 +- cpp/src/Ice/Instance.h | 2 +- cpp/src/Ice/LoggerAdminI.cpp | 10 +- cpp/src/Ice/Object.cpp | 17 - cpp/src/Ice/PropertiesAdminI.h | 2 +- cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj | 1 - .../msbuild/ice++11/ice++11.vcxproj.filters | 3 - cpp/src/Ice/msbuild/ice/ice.vcxproj | 1 - cpp/src/Ice/msbuild/ice/ice.vcxproj.filters | 3 - cpp/src/IceBox/IceBoxService.cpp | 2 +- cpp/src/IceBox/ServiceManagerI.cpp | 20 +- cpp/src/IceBox/ServiceManagerI.h | 16 +- cpp/src/IceDiscovery/LocatorI.h | 4 +- cpp/src/IceDiscovery/LookupI.cpp | 4 +- cpp/src/IceDiscovery/LookupI.h | 4 +- cpp/src/IceLocatorDiscovery/PluginI.cpp | 2 +- cpp/src/slice2cpp/Gen.cpp | 2 +- cpp/test/Ice/admin/AllTests.cpp | 2 +- cpp/test/Ice/admin/TestI.cpp | 4 +- cpp/test/Ice/admin/TestI.h | 3 +- cpp/test/Ice/ami/AllTests.cpp | 2 +- cpp/test/Ice/ami/TestI.h | 2 +- cpp/test/Ice/background/TestI.h | 2 +- cpp/test/Ice/dispatcher/TestI.h | 2 +- cpp/test/Ice/echo/BlobjectI.h | 2 +- cpp/test/Ice/hold/TestI.cpp | 46 +- cpp/test/Ice/hold/TestI.h | 8 +- cpp/test/Ice/interceptor/AMDInterceptorI.h | 2 +- cpp/test/Ice/interceptor/InterceptorI.h | 2 +- cpp/test/Ice/location/ServerLocator.h | 2 +- cpp/test/Ice/metrics/AllTests.cpp | 2 +- cpp/test/Ice/udp/AllTests.cpp | 2 +- cpp/test/IceBox/admin/TestI.h | 2 +- cpp/test/IceSSL/configuration/TestI.h | 2 +- objective-c/src/Ice/CommunicatorI.mm | 2 +- objective-c/src/Ice/Object.mm | 146 +- objective-c/src/Ice/ObjectAdapterI.mm | 12 +- objective-c/src/Ice/ObjectI.h | 8 +- objective-c/src/Ice/PropertiesI.mm | 6 +- objective-c/src/Ice/Util.h | 8 +- objective-c/src/Ice/Util.mm | 10 +- python/modules/IcePy/Operation.h | 2 +- python/modules/IcePy/PropertiesAdmin.cpp | 2 +- swift/ice.xcodeproj/project.pbxproj | 21146 ++++++++-------- .../xcshareddata/xcschemes/Ice iOS.xcscheme | 10 +- .../xcshareddata/xcschemes/Ice macOS.xcscheme | 10 +- 54 files changed, 10825 insertions(+), 10931 deletions(-) delete mode 100644 cpp/src/Ice/FacetMap.cpp diff --git a/cpp/include/Ice/FacetMap.h b/cpp/include/Ice/FacetMap.h index 41e252f0b71..390896ecdc6 100644 --- a/cpp/include/Ice/FacetMap.h +++ b/cpp/include/Ice/FacetMap.h @@ -2,67 +2,12 @@ // Copyright (c) ZeroC, Inc. All rights reserved. // // -// Ice version 3.7.10 -// -// -// -// Generated from file `FacetMap.ice' -// -// Warning: do not edit this file. -// -// -// - -#ifndef __Ice_FacetMap_h__ -#define __Ice_FacetMap_h__ -#include -#include #include -#include -#include -#include -#include -#include -#include -#include -#include - -#ifndef ICE_IGNORE_VERSION -# if ICE_INT_VERSION / 100 != 307 -# error Ice version mismatch! -# endif -# if ICE_INT_VERSION % 100 >= 50 -# error Beta header file detected -# endif -# if ICE_INT_VERSION % 100 < 10 -# error Ice patch level mismatch! -# endif -#endif - -#ifndef ICE_API -# if defined(ICE_STATIC_LIBS) -# define ICE_API /**/ -# elif defined(ICE_API_EXPORTS) -# define ICE_API ICE_DECLSPEC_EXPORT -# else -# define ICE_API ICE_DECLSPEC_IMPORT -# endif -#endif - -#ifdef ICE_CPP11_MAPPING // C++11 mapping +#include -namespace Ice -{ - -/** - * A mapping from facet name to servant. - */ -using FacetMap = ::std::map<::std::string, ::std::shared_ptr>; - -} - -#else // C++98 mapping +#ifndef ICE_FACET_MAP_H +#define ICE_FACET_MAP_H namespace Ice { @@ -70,11 +15,8 @@ namespace Ice /** * A mapping from facet name to servant. */ -typedef ::std::map< ::std::string, ObjectPtr> FacetMap; + using FacetMap = ::std::map<::std::string, ObjectPtr>; } #endif - -#include -#endif diff --git a/cpp/include/Ice/MetricsAdminI.h b/cpp/include/Ice/MetricsAdminI.h index 27b0e03f962..ed12d746afc 100644 --- a/cpp/include/Ice/MetricsAdminI.h +++ b/cpp/include/Ice/MetricsAdminI.h @@ -680,7 +680,7 @@ class ICE_API MetricsAdminI : public IceMX::MetricsAdmin, const Ice::LoggerPtr _logger; Ice::PropertiesPtr _properties; }; -ICE_DEFINE_PTR(MetricsAdminIPtr, MetricsAdminI); +ICE_DEFINE_SHARED_PTR(MetricsAdminIPtr, MetricsAdminI); }; diff --git a/cpp/include/Ice/NativePropertiesAdmin.h b/cpp/include/Ice/NativePropertiesAdmin.h index 849a0a35703..52735c66ad2 100644 --- a/cpp/include/Ice/NativePropertiesAdmin.h +++ b/cpp/include/Ice/NativePropertiesAdmin.h @@ -31,7 +31,7 @@ namespace Ice * Ice ignores any exceptions raised by the callback. * \headerfile Ice/Ice.h */ -class ICE_API PropertiesAdminUpdateCallback : public virtual Ice::LocalObject +class ICE_API PropertiesAdminUpdateCallback { public: @@ -44,7 +44,7 @@ class ICE_API PropertiesAdminUpdateCallback : public virtual Ice::LocalObject */ virtual void updated(const PropertyDict& d) = 0; }; -typedef IceUtil::Handle PropertiesAdminUpdateCallbackPtr; +using PropertiesAdminUpdateCallbackPtr = SharedPtr; #endif /** @@ -52,9 +52,6 @@ typedef IceUtil::Handle PropertiesAdminUpdateCall * \headerfile Ice/Ice.h */ class ICE_API NativePropertiesAdmin -#ifndef ICE_CPP11_MAPPING - : public virtual IceUtil::Shared -#endif { public: @@ -79,7 +76,7 @@ class ICE_API NativePropertiesAdmin virtual void removeUpdateCallback(const PropertiesAdminUpdateCallbackPtr& cb) = 0; #endif }; -ICE_DEFINE_PTR(NativePropertiesAdminPtr, NativePropertiesAdmin); +ICE_DEFINE_SHARED_PTR(NativePropertiesAdminPtr, NativePropertiesAdmin); } diff --git a/cpp/include/Ice/Object.h b/cpp/include/Ice/Object.h index 12c7785ce09..984b7b28ca7 100644 --- a/cpp/include/Ice/Object.h +++ b/cpp/include/Ice/Object.h @@ -180,12 +180,11 @@ class ICE_API Object * The base class for servants. * \headerfile Ice/Ice.h */ -class ICE_API Object : public virtual IceUtil::Shared +class ICE_API Object { public: - virtual bool operator==(const Object&) const; - virtual bool operator<(const Object&) const; + virtual ~Object() = default; /** * Tests whether this object supports a specific Slice interface. diff --git a/cpp/include/Ice/ObjectF.h b/cpp/include/Ice/ObjectF.h index 303e247a7d2..d9b11775725 100644 --- a/cpp/include/Ice/ObjectF.h +++ b/cpp/include/Ice/ObjectF.h @@ -5,20 +5,20 @@ #ifndef ICE_OBJECT_F_H #define ICE_OBJECT_F_H -#include -#include +#include +#include namespace Ice { class Object; + #ifdef ICE_CPP11_MAPPING /// \cond INTERNAL using ObjectPtr = ::std::shared_ptr; /// \endcond #else -ICE_API Object* upCast(Object*); -typedef IceInternal::Handle ObjectPtr; +using ObjectPtr = SharedPtr; #endif } diff --git a/cpp/include/Ice/OutgoingAsync.h b/cpp/include/Ice/OutgoingAsync.h index ea6196b68f8..175a99177bd 100644 --- a/cpp/include/Ice/OutgoingAsync.h +++ b/cpp/include/Ice/OutgoingAsync.h @@ -670,13 +670,12 @@ extern ICE_API CallbackBasePtr dummyCallback; // Generic callback template that requires the caller to down-cast the // proxy and the cookie that are obtained from the AsyncResult. // -template +template class AsyncCallback : public GenericCallbackBase { public: typedef T callback_type; - typedef IceUtil::Handle TPtr; typedef void (T::*Callback)(const ::Ice::AsyncResultPtr&); @@ -812,7 +811,7 @@ newCallback(const IceUtil::Handle& instance, void (T::*cb)(const AsyncResultPtr&), void (T::*sentcb)(const AsyncResultPtr&) = 0) { - return new ::IceInternal::AsyncCallback(instance, cb, sentcb); + return new ::IceInternal::AsyncCallback>(instance, cb, sentcb); } /** @@ -827,7 +826,37 @@ newCallback(T* instance, void (T::*cb)(const AsyncResultPtr&), void (T::*sentcb)(const AsyncResultPtr&) = 0) { - return new ::IceInternal::AsyncCallback(instance, cb, sentcb); + return new ::IceInternal::AsyncCallback>(instance, cb, sentcb); +} + +/** + * Creates a callback wrapper instance that delegates to your object. + * @param instance The callback object. + * @param cb The completion callback. + * @param sentcb The sent callback. + * @return A callback object that can be passed to an asynchronous invocation. + */ +template CallbackPtr +newCallback(const Ice::SharedPtr& instance, + void (T::*cb)(const AsyncResultPtr&), + void (T::*sentcb)(const AsyncResultPtr&) = 0) +{ + return new ::IceInternal::AsyncCallback>(instance, cb, sentcb); +} + +/** + * Creates a callback wrapper instance that delegates to your object. + * @param instance The callback object. + * @param cb The completion callback. + * @param sentcb The sent callback. + * @return A callback object that can be passed to an asynchronous invocation. + */ +template CallbackPtr +newCallback(const std::shared_ptr& instance, + void (T::*cb)(const AsyncResultPtr&), + void (T::*sentcb)(const AsyncResultPtr&) = 0) +{ + return new ::IceInternal::AsyncCallback>(instance, cb, sentcb); } } diff --git a/cpp/include/Ice/PropertiesF.h b/cpp/include/Ice/PropertiesF.h index b3e9057d09e..686f95b4e63 100644 --- a/cpp/include/Ice/PropertiesF.h +++ b/cpp/include/Ice/PropertiesF.h @@ -75,30 +75,11 @@ namespace Ice using PropertiesPtr = ::std::shared_ptr; -using PropertiesAdminPtr = ::std::shared_ptr; -using PropertiesAdminPrxPtr = ::std::shared_ptr; - } /// \endcond #else // C++98 mapping -namespace IceProxy -{ - -namespace Ice -{ - -class PropertiesAdmin; -/// \cond INTERNAL -ICE_API void _readProxy(::Ice::InputStream*, ::IceInternal::ProxyHandle< PropertiesAdmin>&); -ICE_API ::IceProxy::Ice::Object* upCast(PropertiesAdmin*); -/// \endcond - -} - -} - namespace Ice { @@ -108,22 +89,7 @@ ICE_API LocalObject* upCast(Properties*); /// \endcond typedef ::IceInternal::Handle< Properties> PropertiesPtr; -class PropertiesAdmin; -/// \cond INTERNAL -ICE_API Object* upCast(PropertiesAdmin*); -/// \endcond -typedef ::IceInternal::Handle< PropertiesAdmin> PropertiesAdminPtr; -typedef ::IceInternal::ProxyHandle< ::IceProxy::Ice::PropertiesAdmin> PropertiesAdminPrx; -typedef PropertiesAdminPrx PropertiesAdminPrxPtr; - -} - -/// \cond STREAM -namespace Ice -{ - } -/// \endcond #endif diff --git a/cpp/src/Ice/FacetMap.cpp b/cpp/src/Ice/FacetMap.cpp deleted file mode 100644 index 68c709ed3cf..00000000000 --- a/cpp/src/Ice/FacetMap.cpp +++ /dev/null @@ -1,49 +0,0 @@ -// -// Copyright (c) ZeroC, Inc. All rights reserved. -// -// -// Ice version 3.7.10 -// -// -// -// Generated from file `FacetMap.ice' -// -// Warning: do not edit this file. -// -// -// - -#ifndef ICE_API_EXPORTS -# define ICE_API_EXPORTS -#endif -#include -#include -#include -#include -#include - -#if defined(_MSC_VER) -# pragma warning(disable:4458) // declaration of ... hides class member -#elif defined(__clang__) -# pragma clang diagnostic ignored "-Wshadow" -#elif defined(__GNUC__) -# pragma GCC diagnostic ignored "-Wshadow" -#endif - -#ifndef ICE_IGNORE_VERSION -# if ICE_INT_VERSION / 100 != 307 -# error Ice version mismatch! -# endif -# if ICE_INT_VERSION % 100 >= 50 -# error Beta header file detected -# endif -# if ICE_INT_VERSION % 100 < 10 -# error Ice patch level mismatch! -# endif -#endif - -#ifdef ICE_CPP11_MAPPING // C++11 mapping - -#else // C++98 mapping - -#endif diff --git a/cpp/src/Ice/Instance.cpp b/cpp/src/Ice/Instance.cpp index bc2533bb540..f228eb230c8 100644 --- a/cpp/src/Ice/Instance.cpp +++ b/cpp/src/Ice/Instance.cpp @@ -1383,7 +1383,9 @@ IceInternal::Instance::finishSetup(int& argc, const char* argv[], const Ice::Com const string processFacetName = "Process"; if(_adminFacetFilter.empty() || _adminFacetFilter.find(processFacetName) != _adminFacetFilter.end()) { - _adminFacets.insert(make_pair(processFacetName, ICE_MAKE_SHARED(ProcessI, communicator))); + ProcessPtr processFacet(make_shared(communicator)); + + _adminFacets.insert(make_pair(processFacetName, processFacet)); } // diff --git a/cpp/src/Ice/Instance.h b/cpp/src/Ice/Instance.h index 84d82f4be46..ff663528d80 100644 --- a/cpp/src/Ice/Instance.h +++ b/cpp/src/Ice/Instance.h @@ -51,7 +51,7 @@ class Timer; typedef IceUtil::Handle TimerPtr; class MetricsAdminI; -ICE_DEFINE_PTR(MetricsAdminIPtr, MetricsAdminI); +ICE_DEFINE_SHARED_PTR(MetricsAdminIPtr, MetricsAdminI); class RequestHandlerFactory; typedef IceUtil::Handle RequestHandlerFactoryPtr; diff --git a/cpp/src/Ice/LoggerAdminI.cpp b/cpp/src/Ice/LoggerAdminI.cpp index d293311c35f..11f214341b9 100644 --- a/cpp/src/Ice/LoggerAdminI.cpp +++ b/cpp/src/Ice/LoggerAdminI.cpp @@ -22,10 +22,8 @@ namespace const char* traceCategory = "Admin.Logger"; -class LoggerAdminI : public Ice::LoggerAdmin -#ifdef ICE_CPP11_MAPPING - , public std::enable_shared_from_this -#endif +class LoggerAdminI : public Ice::LoggerAdmin, + public std::enable_shared_from_this { public: @@ -117,7 +115,7 @@ class LoggerAdminI : public Ice::LoggerAdmin CommunicatorPtr _sendLogCommunicator; bool _destroyed; }; -ICE_DEFINE_PTR(LoggerAdminIPtr, LoggerAdminI); +ICE_DEFINE_SHARED_PTR(LoggerAdminIPtr, LoggerAdminI); class Job : public IceUtil::Shared { @@ -435,7 +433,7 @@ LoggerAdminI::attachRemoteLogger(const RemoteLoggerPrx& prx, throw; } #else - CallbackPtr initCompletedCb = newCallback(this, &LoggerAdminI::initCompleted); + CallbackPtr initCompletedCb = newCallback(LoggerAdminIPtr(shared_from_this()), &LoggerAdminI::initCompleted); try { remoteLogger->begin_init(logger->getPrefix(), initLogMessages, initCompletedCb, logger); diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp index ec6c2634376..63dd33b8390 100644 --- a/cpp/src/Ice/Object.cpp +++ b/cpp/src/Ice/Object.cpp @@ -18,23 +18,6 @@ namespace Ice const Current emptyCurrent = Current(); } -#ifndef ICE_CPP11_MAPPING -Object* Ice::upCast(Object* p) { return p; } - -bool -Ice::Object::operator==(const Object& r) const -{ - return this == &r; -} - -bool -Ice::Object::operator<(const Object& r) const -{ - return this < &r; -} - -#endif - namespace { diff --git a/cpp/src/Ice/PropertiesAdminI.h b/cpp/src/Ice/PropertiesAdminI.h index d04da8f96e0..0dcfd2728fb 100644 --- a/cpp/src/Ice/PropertiesAdminI.h +++ b/cpp/src/Ice/PropertiesAdminI.h @@ -57,7 +57,7 @@ class PropertiesAdminI : public Ice::PropertiesAdmin, public Ice::NativeProperti #endif }; -ICE_DEFINE_PTR(PropertiesAdminIPtr, PropertiesAdminI); +ICE_DEFINE_SHARED_PTR(PropertiesAdminIPtr, PropertiesAdminI); } diff --git a/cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj b/cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj index 7223e86d260..648ad8c6e05 100644 --- a/cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj +++ b/cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj @@ -172,7 +172,6 @@ - diff --git a/cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj.filters b/cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj.filters index 955e8bf4080..2efa1e41993 100644 --- a/cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj.filters +++ b/cpp/src/Ice/msbuild/ice++11/ice++11.vcxproj.filters @@ -603,9 +603,6 @@ Source Files - - Source Files - Source Files diff --git a/cpp/src/Ice/msbuild/ice/ice.vcxproj b/cpp/src/Ice/msbuild/ice/ice.vcxproj index 4201ad0baaa..471701bf2be 100644 --- a/cpp/src/Ice/msbuild/ice/ice.vcxproj +++ b/cpp/src/Ice/msbuild/ice/ice.vcxproj @@ -177,7 +177,6 @@ - diff --git a/cpp/src/Ice/msbuild/ice/ice.vcxproj.filters b/cpp/src/Ice/msbuild/ice/ice.vcxproj.filters index 2163082cd4d..4d45b3ab448 100644 --- a/cpp/src/Ice/msbuild/ice/ice.vcxproj.filters +++ b/cpp/src/Ice/msbuild/ice/ice.vcxproj.filters @@ -626,9 +626,6 @@ Source Files - - Source Files - Source Files diff --git a/cpp/src/IceBox/IceBoxService.cpp b/cpp/src/IceBox/IceBoxService.cpp index c2c3132134e..067a8548e4a 100644 --- a/cpp/src/IceBox/IceBoxService.cpp +++ b/cpp/src/IceBox/IceBoxService.cpp @@ -95,7 +95,7 @@ IceBox::IceBoxService::start(int argc, char* argv[], int& status) return false; } - _serviceManager = ICE_MAKE_SHARED(ServiceManagerI, communicator(), argc, argv); + _serviceManager = ServiceManagerI::create(communicator(), argc, argv); return _serviceManager->start(); } diff --git a/cpp/src/IceBox/ServiceManagerI.cpp b/cpp/src/IceBox/ServiceManagerI.cpp index 2ca5bea9ff7..46d3287e0c5 100644 --- a/cpp/src/IceBox/ServiceManagerI.cpp +++ b/cpp/src/IceBox/ServiceManagerI.cpp @@ -72,15 +72,25 @@ struct StartServiceInfo } +/*static*/ ServiceManagerIPtr +IceBox::ServiceManagerI::create(Ice::CommunicatorPtr communicator, int& argc, char* argv[]) +{ + ServiceManagerIPtr ptr(new ServiceManagerI(communicator, argc, argv)); + +#ifndef ICE_CPP11_MAPPING + const_cast(ptr->_observerCompletedCB) = + newCallback(ServiceManagerIPtr(ptr->shared_from_this()), &ServiceManagerI::observerCompleted); +#endif + + return ptr; +} + IceBox::ServiceManagerI::ServiceManagerI(CommunicatorPtr communicator, int& argc, char* argv[]) : _communicator(communicator), _adminEnabled(false), _pendingStatusChanges(false), _traceServiceObserver(0) { -#ifndef ICE_CPP11_MAPPING - const_cast(_observerCompletedCB) = newCallback(this, &ServiceManagerI::observerCompleted); -#endif _logger = _communicator->getLogger(); PropertiesPtr props = _communicator->getProperties(); @@ -314,7 +324,7 @@ IceBox::ServiceManagerI::start() { try { - ServiceManagerPtr obj = ICE_SHARED_FROM_THIS; + ServiceManagerPtr obj(shared_from_this()); PropertiesPtr properties = _communicator->getProperties(); // @@ -453,7 +463,7 @@ IceBox::ServiceManagerI::start() // // Start Admin (if enabled) and/or deprecated IceBox.ServiceManager OA // - _communicator->addAdminFacet(ICE_SHARED_FROM_THIS, "IceBox.ServiceManager"); + _communicator->addAdminFacet(Ice::ObjectPtr(shared_from_this()), "IceBox.ServiceManager"); _communicator->getAdmin(); if(adapter) { diff --git a/cpp/src/IceBox/ServiceManagerI.h b/cpp/src/IceBox/ServiceManagerI.h index 8cfe134fae1..7f9ae12437b 100644 --- a/cpp/src/IceBox/ServiceManagerI.h +++ b/cpp/src/IceBox/ServiceManagerI.h @@ -14,15 +14,18 @@ namespace IceBox { +class ServiceManagerI; +ICE_DEFINE_SHARED_PTR(ServiceManagerIPtr, ServiceManagerI); + class ServiceManagerI : public ServiceManager, - public IceUtil::Monitor -#ifdef ICE_CPP11_MAPPING - , public std::enable_shared_from_this -#endif + public IceUtil::Monitor, + public std::enable_shared_from_this { public: - ServiceManagerI(Ice::CommunicatorPtr, int&, char*[]); + // Temporary: use public ctor once the implementation uses only the new mapping. + static ServiceManagerIPtr create(Ice::CommunicatorPtr, int&, char*[]); + virtual ~ServiceManagerI(); virtual void startService(ICE_IN(std::string), const ::Ice::Current&); @@ -64,6 +67,8 @@ class ServiceManagerI : public ServiceManager, Ice::StringSeq args; }; + ServiceManagerI(Ice::CommunicatorPtr, int&, char*[]); + void start(const std::string&, const std::string&, const ::Ice::StringSeq&); void stopAll(); @@ -98,7 +103,6 @@ class ServiceManagerI : public ServiceManager, ::Ice::CallbackPtr _observerCompletedCB; #endif }; -ICE_DEFINE_PTR(ServiceManagerIPtr, ServiceManagerI); } diff --git a/cpp/src/IceDiscovery/LocatorI.h b/cpp/src/IceDiscovery/LocatorI.h index 34b8921b60f..eccf1d46811 100644 --- a/cpp/src/IceDiscovery/LocatorI.h +++ b/cpp/src/IceDiscovery/LocatorI.h @@ -64,10 +64,10 @@ class LocatorRegistryI : public Ice::LocatorRegistry, private IceUtil::Mutex std::map _adapters; std::map > _replicaGroups; }; -ICE_DEFINE_PTR(LocatorRegistryIPtr, LocatorRegistryI); +ICE_DEFINE_SHARED_PTR(LocatorRegistryIPtr, LocatorRegistryI); class LookupI; -ICE_DEFINE_PTR(LookupIPtr, LookupI); +ICE_DEFINE_SHARED_PTR(LookupIPtr, LookupI); class LocatorI : public Ice::Locator { diff --git a/cpp/src/IceDiscovery/LookupI.cpp b/cpp/src/IceDiscovery/LookupI.cpp index 9908ff63ab7..9dc9c436362 100644 --- a/cpp/src/IceDiscovery/LookupI.cpp +++ b/cpp/src/IceDiscovery/LookupI.cpp @@ -395,7 +395,7 @@ LookupI::findObject(const ObjectCB& cb, const Ice::Identity& id) if(p == _objectRequests.end()) { p = _objectRequests.insert(make_pair(id, ICE_MAKE_SHARED(ObjectRequest, - ICE_SHARED_FROM_THIS, + LookupIPtr(shared_from_this()), id, _retryCount))).first; } @@ -423,7 +423,7 @@ LookupI::findAdapter(const AdapterCB& cb, const std::string& adapterId) if(p == _adapterRequests.end()) { p = _adapterRequests.insert(make_pair(adapterId, ICE_MAKE_SHARED(AdapterRequest, - ICE_SHARED_FROM_THIS, + LookupIPtr(shared_from_this()), adapterId, _retryCount))).first; } diff --git a/cpp/src/IceDiscovery/LookupI.h b/cpp/src/IceDiscovery/LookupI.h index 348d69866b0..3cf5996b0f5 100644 --- a/cpp/src/IceDiscovery/LookupI.h +++ b/cpp/src/IceDiscovery/LookupI.h @@ -145,10 +145,8 @@ class AdapterRequest : public RequestT ICE_DEFINE_PTR(AdapterRequestPtr, AdapterRequest); class LookupI : public Lookup, + public std::enable_shared_from_this, private IceUtil::Mutex -#ifdef ICE_CPP11_MAPPING - , public std::enable_shared_from_this -#endif { public: diff --git a/cpp/src/IceLocatorDiscovery/PluginI.cpp b/cpp/src/IceLocatorDiscovery/PluginI.cpp index 2b896308bb9..3b39c179082 100644 --- a/cpp/src/IceLocatorDiscovery/PluginI.cpp +++ b/cpp/src/IceLocatorDiscovery/PluginI.cpp @@ -125,7 +125,7 @@ class LocatorI : public Ice::BlobjectArrayAsync, bool _warnOnce; vector _pendingRequests; }; -ICE_DEFINE_PTR(LocatorIPtr, LocatorI); +ICE_DEFINE_SHARED_PTR(LocatorIPtr, LocatorI); class LookupReplyI : public LookupReply { diff --git a/cpp/src/slice2cpp/Gen.cpp b/cpp/src/slice2cpp/Gen.cpp index 148b0fab749..cf4cc912170 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -2617,7 +2617,7 @@ Slice::Gen::DeclVisitor::visitInterfaceDecl(const InterfaceDeclPtr& p) H << nl << "typedef " << p->name() << "Prx " << p->name() << "PrxPtr;"; H << sp << nl << "class " << name << ';'; - H << nl << "typedef ::IceInternal::Handle< " << name << "> " << p->name() << "Ptr;"; + H << nl << "using " << p->name() << "Ptr = ::Ice::SharedPtr< " << name << ">;"; } void diff --git a/cpp/test/Ice/admin/AllTests.cpp b/cpp/test/Ice/admin/AllTests.cpp index 2951fa36944..0518a10bfc2 100644 --- a/cpp/test/Ice/admin/AllTests.cpp +++ b/cpp/test/Ice/admin/AllTests.cpp @@ -110,7 +110,7 @@ class RemoteLoggerI : public Ice::RemoteLogger Ice::LogMessageSeq _logMessages; }; -ICE_DEFINE_PTR(RemoteLoggerIPtr, RemoteLoggerI); +ICE_DEFINE_SHARED_PTR(RemoteLoggerIPtr, RemoteLoggerI); RemoteLoggerI::RemoteLoggerI() : _receivedCalls(0) { diff --git a/cpp/test/Ice/admin/TestI.cpp b/cpp/test/Ice/admin/TestI.cpp index aca510ba0da..a3f836a1ad9 100644 --- a/cpp/test/Ice/admin/TestI.cpp +++ b/cpp/test/Ice/admin/TestI.cpp @@ -99,7 +99,7 @@ RemoteCommunicatorI::addUpdateCallback(const Ice::Current&) _removeCallback = admin->addUpdateCallback([this](const Ice::PropertyDict& changes) { updated(changes); }); #else - admin->addUpdateCallback(this); + admin->addUpdateCallback(Ice::PropertiesAdminUpdateCallbackPtr(shared_from_this())); _hasCallback = true; #endif } @@ -122,7 +122,7 @@ RemoteCommunicatorI::removeUpdateCallback(const Ice::Current&) _removeCallback = nullptr; } #else - admin->removeUpdateCallback(this); + admin->removeUpdateCallback(Ice::PropertiesAdminUpdateCallbackPtr(shared_from_this())); _hasCallback = false; #endif } diff --git a/cpp/test/Ice/admin/TestI.h b/cpp/test/Ice/admin/TestI.h index df32e65d07d..e15550fb865 100644 --- a/cpp/test/Ice/admin/TestI.h +++ b/cpp/test/Ice/admin/TestI.h @@ -12,6 +12,7 @@ class RemoteCommunicatorI : public virtual Test::RemoteCommunicator, #ifndef ICE_CPP11_MAPPING public virtual Ice::PropertiesAdminUpdateCallback, + public std::enable_shared_from_this, #endif public IceUtil::Monitor { @@ -47,7 +48,7 @@ class RemoteCommunicatorI : public virtual Test::RemoteCommunicator, bool _hasCallback; #endif }; -ICE_DEFINE_PTR(RemoteCommunicatorIPtr, RemoteCommunicatorI); +ICE_DEFINE_SHARED_PTR(RemoteCommunicatorIPtr, RemoteCommunicatorI); class RemoteCommunicatorFactoryI : public Test::RemoteCommunicatorFactory { diff --git a/cpp/test/Ice/ami/AllTests.cpp b/cpp/test/Ice/ami/AllTests.cpp index a39f3dd4f3a..87b22af5178 100644 --- a/cpp/test/Ice/ami/AllTests.cpp +++ b/cpp/test/Ice/ami/AllTests.cpp @@ -38,7 +38,7 @@ class PingReplyI : public Test::PingReply bool _received; }; -ICE_DEFINE_PTR(PingReplyIPtr, PingReplyI); +ICE_DEFINE_SHARED_PTR(PingReplyIPtr, PingReplyI); enum ThrowType { LocalException, UserException, StandardException, OtherException }; diff --git a/cpp/test/Ice/ami/TestI.h b/cpp/test/Ice/ami/TestI.h index ab27eee7b6d..29be6e87e02 100644 --- a/cpp/test/Ice/ami/TestI.h +++ b/cpp/test/Ice/ami/TestI.h @@ -9,7 +9,7 @@ #include class TestIntfControllerI; -ICE_DEFINE_PTR(TestIntfControllerIPtr, TestIntfControllerI); +ICE_DEFINE_SHARED_PTR(TestIntfControllerIPtr, TestIntfControllerI); class TestIntfI : public virtual Test::TestIntf, public IceUtil::Monitor { diff --git a/cpp/test/Ice/background/TestI.h b/cpp/test/Ice/background/TestI.h index 83a1283252f..7902a6f80cf 100644 --- a/cpp/test/Ice/background/TestI.h +++ b/cpp/test/Ice/background/TestI.h @@ -11,7 +11,7 @@ #include class BackgroundControllerI; -ICE_DEFINE_PTR(BackgroundControllerIPtr, BackgroundControllerI); +ICE_DEFINE_SHARED_PTR(BackgroundControllerIPtr, BackgroundControllerI); class BackgroundI : public virtual Test::Background { diff --git a/cpp/test/Ice/dispatcher/TestI.h b/cpp/test/Ice/dispatcher/TestI.h index 2cb1dacd778..972fdadda0a 100644 --- a/cpp/test/Ice/dispatcher/TestI.h +++ b/cpp/test/Ice/dispatcher/TestI.h @@ -9,7 +9,7 @@ #include class TestIntfControllerI; -ICE_DEFINE_PTR(TestIntfControllerIPtr, TestIntfControllerI); +ICE_DEFINE_SHARED_PTR(TestIntfControllerIPtr, TestIntfControllerI); class TestIntfI : public virtual Test::TestIntf { diff --git a/cpp/test/Ice/echo/BlobjectI.h b/cpp/test/Ice/echo/BlobjectI.h index 9616154db39..8f01aa62821 100644 --- a/cpp/test/Ice/echo/BlobjectI.h +++ b/cpp/test/Ice/echo/BlobjectI.h @@ -38,6 +38,6 @@ class BlobjectI : public Ice::BlobjectAsync, private IceUtil::Monitorhold(); + _adapter->activate(); + } + catch(const Ice::ObjectAdapterDeactivatedException&) + { + // + // This shouldn't occur. The test ensures all the waitForHold timers are + // finished before shutting down the communicator. + // + test(false); + } + } + + private: + + const Ice::ObjectAdapterPtr _adapter; + }; + if(milliSeconds < 0) { _adapter->hold(); @@ -28,7 +59,7 @@ HoldI::putOnHold(Ice::Int milliSeconds, const Ice::Current&) { try { - _timer->schedule(ICE_SHARED_FROM_THIS, IceUtil::Time::milliSeconds(milliSeconds)); + _timer->schedule(ICE_MAKE_SHARED(PutOnHold, _adapter), IceUtil::Time::milliSeconds(milliSeconds)); } catch(const IceUtil::IllegalArgumentException&) { @@ -104,16 +135,3 @@ HoldI::shutdown(const Ice::Current&) _adapter->hold(); _adapter->getCommunicator()->shutdown(); } - -void -HoldI::runTimerTask() -{ - try - { - _adapter->hold(); - _adapter->activate(); - } - catch(const Ice::ObjectAdapterDeactivatedException&) - { - } -} diff --git a/cpp/test/Ice/hold/TestI.h b/cpp/test/Ice/hold/TestI.h index 93bb3e8f942..004bf305db7 100644 --- a/cpp/test/Ice/hold/TestI.h +++ b/cpp/test/Ice/hold/TestI.h @@ -7,10 +7,8 @@ #include -class HoldI : public Test::Hold, public IceUtil::Mutex, public IceUtil::TimerTask -#ifdef ICE_CPP11_MAPPING - , public std::enable_shared_from_this -#endif +class HoldI : public Test::Hold, + public IceUtil::Mutex { public: @@ -22,8 +20,6 @@ class HoldI : public Test::Hold, public IceUtil::Mutex, public IceUtil::TimerTas virtual void setOneway(Ice::Int, Ice::Int, const Ice::Current&); virtual void shutdown(const Ice::Current&); - virtual void runTimerTask(); - private: int _last; diff --git a/cpp/test/Ice/interceptor/AMDInterceptorI.h b/cpp/test/Ice/interceptor/AMDInterceptorI.h index e3180773560..ba7fabfdc76 100644 --- a/cpp/test/Ice/interceptor/AMDInterceptorI.h +++ b/cpp/test/Ice/interceptor/AMDInterceptorI.h @@ -31,7 +31,7 @@ class AMDInterceptorI : public InterceptorI IceUtil::Mutex _mutex; }; -ICE_DEFINE_PTR(AMDInterceptorIPtr, AMDInterceptorI); +ICE_DEFINE_SHARED_PTR(AMDInterceptorIPtr, AMDInterceptorI); #ifndef ICE_CPP11_MAPPING class DispatchInterceptorAsyncCallbackI : public Ice::DispatchInterceptorAsyncCallback diff --git a/cpp/test/Ice/interceptor/InterceptorI.h b/cpp/test/Ice/interceptor/InterceptorI.h index 3360af8408b..8fa2f4348b7 100644 --- a/cpp/test/Ice/interceptor/InterceptorI.h +++ b/cpp/test/Ice/interceptor/InterceptorI.h @@ -26,6 +26,6 @@ class InterceptorI : public Ice::DispatchInterceptor std::string _lastOperation; bool _lastStatus; }; -ICE_DEFINE_PTR(InterceptorIPtr, InterceptorI); +ICE_DEFINE_SHARED_PTR(InterceptorIPtr, InterceptorI); #endif diff --git a/cpp/test/Ice/location/ServerLocator.h b/cpp/test/Ice/location/ServerLocator.h index 573c15f0c11..264e554f346 100644 --- a/cpp/test/Ice/location/ServerLocator.h +++ b/cpp/test/Ice/location/ServerLocator.h @@ -53,7 +53,7 @@ class ServerLocatorRegistry : public Test::TestLocatorRegistry ::std::map< ::std::string, ::Ice::ObjectPrxPtr> _adapters; ::std::map< ::Ice::Identity, ::Ice::ObjectPrxPtr> _objects; }; -ICE_DEFINE_PTR(ServerLocatorRegistryPtr, ServerLocatorRegistry); +ICE_DEFINE_SHARED_PTR(ServerLocatorRegistryPtr, ServerLocatorRegistry); class ServerLocator : public Test::TestLocator { diff --git a/cpp/test/Ice/metrics/AllTests.cpp b/cpp/test/Ice/metrics/AllTests.cpp index 58fab621e4d..e4fb1dda5c4 100644 --- a/cpp/test/Ice/metrics/AllTests.cpp +++ b/cpp/test/Ice/metrics/AllTests.cpp @@ -318,7 +318,7 @@ private IceUtil::Monitor bool _updated; Ice::PropertiesAdminPrxPtr _serverProps; }; -ICE_DEFINE_PTR(UpdateCallbackIPtr, UpdateCallbackI); +ICE_DEFINE_SHARED_PTR(UpdateCallbackIPtr, UpdateCallbackI); void waitForCurrent(const IceMX::MetricsAdminPrxPtr& metrics, const string& viewName, const string& map, int value) diff --git a/cpp/test/Ice/udp/AllTests.cpp b/cpp/test/Ice/udp/AllTests.cpp index cbe74f201f6..d0ac757b43b 100644 --- a/cpp/test/Ice/udp/AllTests.cpp +++ b/cpp/test/Ice/udp/AllTests.cpp @@ -52,7 +52,7 @@ class PingReplyI : public PingReply, public IceUtil::Monitor int _replies; }; -ICE_DEFINE_PTR(PingReplyIPtr, PingReplyI); +ICE_DEFINE_SHARED_PTR(PingReplyIPtr, PingReplyI); void allTests(Test::TestHelper* helper) diff --git a/cpp/test/IceBox/admin/TestI.h b/cpp/test/IceBox/admin/TestI.h index 076d677aa8a..bd758bf8402 100644 --- a/cpp/test/IceBox/admin/TestI.h +++ b/cpp/test/IceBox/admin/TestI.h @@ -25,6 +25,6 @@ class TestFacetI : public virtual ::Test::TestFacet, Ice::PropertyDict _changes; }; -ICE_DEFINE_PTR(TestFacetIPtr, TestFacetI); +ICE_DEFINE_SHARED_PTR(TestFacetIPtr, TestFacetI); #endif diff --git a/cpp/test/IceSSL/configuration/TestI.h b/cpp/test/IceSSL/configuration/TestI.h index 8fbaefd2b7b..01a143acd4b 100644 --- a/cpp/test/IceSSL/configuration/TestI.h +++ b/cpp/test/IceSSL/configuration/TestI.h @@ -23,7 +23,7 @@ class ServerI : public Test::Server Ice::CommunicatorPtr _communicator; }; -ICE_DEFINE_PTR(ServerIPtr, ServerI); +ICE_DEFINE_SHARED_PTR(ServerIPtr, ServerI); class ServerFactoryI : public Test::ServerFactory { diff --git a/objective-c/src/Ice/CommunicatorI.mm b/objective-c/src/Ice/CommunicatorI.mm index 2eb714ecb6b..a3cb76786c3 100644 --- a/objective-c/src/Ice/CommunicatorI.mm +++ b/objective-c/src/Ice/CommunicatorI.mm @@ -483,7 +483,7 @@ -(void) addAdminFacet:(ICEObject*)servant facet:(NSString*)facet NSException* nsex; try { - COMMUNICATOR->addAdminFacet([servant iceObject], fromNSString(facet)); + COMMUNICATOR->addAdminFacet(Ice::ObjectPtr([servant iceObject]), fromNSString(facet)); @synchronized(adminFacets_) { [adminFacets_ setObject:servant forKey:facet]; diff --git a/objective-c/src/Ice/Object.mm b/objective-c/src/Ice/Object.mm index 8408cb999d0..4c2f59cff3f 100644 --- a/objective-c/src/Ice/Object.mm +++ b/objective-c/src/Ice/Object.mm @@ -20,7 +20,7 @@ namespace { -std::map cachedObjects; +std::map, ICEServantWrapper*> cachedObjects; NSString* operationModeToString(ICEOperationMode mode) @@ -45,7 +45,16 @@ { public: - ObjectI(ICEServant*); + ObjectI(ICEServant* servant) : _object(servant) + { + // Make sure the ObjcC object is not released while the C++ object is still alive. + CFRetain(_object); + } + + virtual ~ObjectI() + { + CFRelease(_object); + } virtual void ice_invoke_async(const Ice::AMD_Object_ice_invokePtr&, const std::pair&, @@ -56,18 +65,6 @@ virtual void ice_invoke_async(const Ice::AMD_Object_ice_invokePtr&, return _object; } - // We must explicitely CFRetain/CFRelease so that the garbage - // collector does not trash the _object. - virtual void __incRef() - { - CFRetain(_object); - } - - virtual void __decRef() - { - CFRelease(_object); - } - private: ICEServant* _object; @@ -77,7 +74,16 @@ virtual void __decRef() { public: - BlobjectI(ICEBlobject*); + BlobjectI(ICEBlobject* servant) : _blobject(servant) + { + // Make sure the ObjcC object is not released while the C++ object is still alive. + CFRetain(_blobject); + } + + virtual ~BlobjectI() + { + CFRelease(_blobject); + } virtual void ice_invoke_async(const Ice::AMD_Object_ice_invokePtr&, const std::pair&, @@ -88,27 +94,11 @@ virtual void ice_invoke_async(const Ice::AMD_Object_ice_invokePtr&, return _blobject; } - // We must explicitely CFRetain/CFRelease so that the garbage - // collector does not trash the _blobject. - virtual void __incRef() - { - CFRetain(_blobject); - } - - virtual void __decRef() - { - CFRelease(_blobject); - } - private: ICEBlobject* _blobject; }; -ObjectI::ObjectI(ICEServant* object) : _object(object) -{ -} - void ObjectI::ice_invoke_async(const Ice::AMD_Object_ice_invokePtr& cb, const std::pair& inParams, @@ -155,10 +145,6 @@ virtual void __decRef() [os release]; } -BlobjectI::BlobjectI(ICEBlobject* blobject) : _blobject(blobject) -{ -} - void BlobjectI::ice_invoke_async(const Ice::AMD_Object_ice_invokePtr& cb, const std::pair& inEncaps, @@ -274,7 +260,7 @@ virtual void __decRef() } @implementation ICEObject (ICEInternal) --(Ice::Object*) iceObject +-(std::shared_ptr) iceObject { NSAssert(NO, @"iceObject requires override"); return 0; @@ -358,7 +344,7 @@ -(id)init { return nil; } - iceObject_ = 0; + iceObject_ = nil; return self; } @@ -366,8 +352,8 @@ -(void) dealloc { if(iceObject_) { - delete static_cast(iceObject_); - iceObject_ = 0; + delete static_cast*>(iceObject_); + iceObject_ = nil; } [super dealloc]; } @@ -467,51 +453,75 @@ -(void) iceDispatch:(ICECurrent*)current is:(id)is os:(id) iceObject { @synchronized([self class]) { - if(iceObject_ == 0) + std::shared_ptr result; + + if (iceObject_) { - // - // NOTE: IceObjC::ObjectI implements it own reference counting and there's no need - // to call __incRef/__decRef here. The C++ object and Objective-C object are sharing - // the same reference count (the one of the Objective-C object). This is necessary - // to properly release both objects when there's either no more C++ handle/ObjC - // reference to the object (without this, servants added to the object adapter - // couldn't be retained or released easily). - // - iceObject_ = static_cast(new ObjectI(self)); + auto weakPtrPtr = static_cast*>(iceObject_); + + result = weakPtrPtr->lock(); + + // result can be null if the C++ wrapper was released / destroyed + // This typically occurs when the servant (really its C++ wrapper) is removed from an object adapter. + if (!result) + { + delete weakPtrPtr; + iceObject_ = nullptr; + } } + + if (!result) + { + auto wrapper = std::make_shared(self); + iceObject_ = new std::weak_ptr(wrapper); + result = wrapper; + } + + return result; } - return static_cast(iceObject_); } @end @implementation ICEBlobject --(Ice::Object*) iceObject +-(std::shared_ptr) iceObject { @synchronized([self class]) { - if(iceObject_ == 0) + std::shared_ptr result; + + if (iceObject_) { - // - // NOTE: IceObjC::ObjectI implements it own reference counting and there's no need - // to call __incRef/__decRef here. The C++ object and Objective-C object are sharing - // the same reference count (the one of the Objective-C object). This is necessary - // to properly release both objects when there's either no more C++ handle/ObjC - // reference to the object (without this, servants added to the object adapter - // couldn't be retained or released easily). - // - iceObject_ = static_cast(new BlobjectI(self)); + auto weakPtrPtr = static_cast*>(iceObject_); + + result = weakPtrPtr->lock(); + + // result can be null if the C++ wrapper was released / destroyed. + // This typically occurs when the servant (really its C++ wrapper) is removed from an object adapter. + if (!result) + { + delete weakPtrPtr; + iceObject_ = nullptr; + } } + + if (!result) + { + auto wrapper = std::make_shared(self); + iceObject_ = new std::weak_ptr(wrapper); + result = wrapper; + } + + return result; } - return static_cast(iceObject_); } @end @implementation ICEServantWrapper --(id) initWithCxxObject:(Ice::Object*)arg +-(id) initWithCxxObject:(const std::shared_ptr&)arg { self = [super init]; if(!self) @@ -520,7 +530,6 @@ -(id) initWithCxxObject:(Ice::Object*)arg } object_ = arg; - object_->__incRef(); assert(cachedObjects.find(object_) == cachedObjects.end()); cachedObjects.insert(std::make_pair(object_, self)); return self; @@ -528,14 +537,13 @@ -(id) initWithCxxObject:(Ice::Object*)arg -(void) dealloc { cachedObjects.erase(object_); - object_->__decRef(); [super dealloc]; } -+(id) servantWrapperWithCxxObjectNoAutoRelease:(Ice::Object*)arg ++(id) servantWrapperWithCxxObjectNoAutoRelease:(const std::shared_ptr&)arg { @synchronized([ICEServantWrapper class]) { - std::map::const_iterator p = cachedObjects.find(arg); + std::map, ICEServantWrapper*>::const_iterator p = cachedObjects.find(arg); if(p != cachedObjects.end()) { return [p->second retain]; @@ -618,7 +626,7 @@ -(void) ice_dispatch:(id)__unused request @throw [ICEFeatureNotSupportedException featureNotSupportedException:__FILE__ line:__LINE__]; } --(Ice::Object*) iceObject +-(std::shared_ptr) iceObject { return object_; } diff --git a/objective-c/src/Ice/ObjectAdapterI.mm b/objective-c/src/Ice/ObjectAdapterI.mm index 33835176cb6..1960f7b8512 100644 --- a/objective-c/src/Ice/ObjectAdapterI.mm +++ b/objective-c/src/Ice/ObjectAdapterI.mm @@ -179,7 +179,7 @@ virtual void _readImpl(Ice::InputStream*) {} { cookie = new Cookie(co); } - return [servant iceObject]; + return Ice::ObjectPtr([servant iceObject]); } @catch(id e) { @@ -434,7 +434,7 @@ -(void) destroy NSException* nsex = nil; try { - return [ICEObjectPrx iceObjectPrxWithObjectPrx:OBJECTADAPTER->add([servant iceObject], [ident identity])]; + return [ICEObjectPrx iceObjectPrxWithObjectPrx:OBJECTADAPTER->add(Ice::ObjectPtr([servant iceObject]), [ident identity])]; } catch(const std::exception& ex) { @@ -449,7 +449,7 @@ -(void) destroy NSException* nsex = nil; try { - return [ICEObjectPrx iceObjectPrxWithObjectPrx:OBJECTADAPTER->addFacet([servant iceObject], [ident identity], + return [ICEObjectPrx iceObjectPrxWithObjectPrx:OBJECTADAPTER->addFacet(Ice::ObjectPtr([servant iceObject]), [ident identity], fromNSString(facet))]; } catch(const std::exception& ex) @@ -465,7 +465,7 @@ -(void) destroy NSException* nsex = nil; try { - return [ICEObjectPrx iceObjectPrxWithObjectPrx:OBJECTADAPTER->addWithUUID([servant iceObject])]; + return [ICEObjectPrx iceObjectPrxWithObjectPrx:OBJECTADAPTER->addWithUUID(Ice::ObjectPtr([servant iceObject]))]; } catch(const std::exception& ex) { @@ -480,7 +480,7 @@ -(void) destroy NSException* nsex = nil; try { - return [ICEObjectPrx iceObjectPrxWithObjectPrx:OBJECTADAPTER->addFacetWithUUID([servant iceObject], + return [ICEObjectPrx iceObjectPrxWithObjectPrx:OBJECTADAPTER->addFacetWithUUID(Ice::ObjectPtr([servant iceObject]), fromNSString(facet))]; } catch(const std::exception& ex) @@ -496,7 +496,7 @@ -(void) addDefaultServant:(ICEObject*)servant category:(NSString*)category NSException* nsex = nil; try { - Ice::ServantLocatorPtr servantLocator = new DefaultServantLocator([servant iceObject]); + Ice::ServantLocatorPtr servantLocator = new DefaultServantLocator(Ice::ObjectPtr([servant iceObject])); OBJECTADAPTER->addServantLocator(servantLocator, fromNSString(category)); } catch(const std::exception& ex) diff --git a/objective-c/src/Ice/ObjectI.h b/objective-c/src/Ice/ObjectI.h index 3c1019cf1c0..cb102891f41 100644 --- a/objective-c/src/Ice/ObjectI.h +++ b/objective-c/src/Ice/ObjectI.h @@ -5,6 +5,7 @@ #import #include +#include // // Forward declarations. @@ -23,17 +24,16 @@ class ServantWrapper : public virtual Ice::Object virtual ~ServantWrapper() { } virtual ICEObject* getServant() = 0; }; -typedef IceUtil::Handle ServantWrapperPtr; }; @interface ICEObject (ICEInternal) --(Ice::Object*) iceObject; +-(std::shared_ptr) iceObject; @end @interface ICEServantWrapper : ICEObject { - Ice::Object* object_; + std::shared_ptr object_; } -+(id) servantWrapperWithCxxObjectNoAutoRelease:(Ice::Object*)arg; ++(id) servantWrapperWithCxxObjectNoAutoRelease:(const std::shared_ptr&)arg; @end diff --git a/objective-c/src/Ice/PropertiesI.mm b/objective-c/src/Ice/PropertiesI.mm index 451c8d09f53..6e0529231e0 100644 --- a/objective-c/src/Ice/PropertiesI.mm +++ b/objective-c/src/Ice/PropertiesI.mm @@ -270,21 +270,21 @@ -(void) load:(NSString*)file id _callback; }; -typedef IceUtil::Handle UpdateCallbackIPtr; +using UpdateCallbackIPtr = Ice::SharedPtr; } @implementation ICEPropertiesAdminUpdateCallback @end -#define NATIVEPROPERTIESADMIN dynamic_cast(object_) +#define NATIVEPROPERTIESADMIN std::dynamic_pointer_cast(object_) @implementation ICENativePropertiesAdmin -(void) addUpdateCallback:(id)cb { IceUtil::Mutex::Lock sync(mutex_); callbacks_.push_back(new UpdateCallbackI(cb)); - assert(Ice::NativePropertiesAdminPtr::dynamicCast(object_)); + assert(NATIVEPROPERTIESADMIN); NATIVEPROPERTIESADMIN->addUpdateCallback(callbacks_.back()); } diff --git a/objective-c/src/Ice/Util.h b/objective-c/src/Ice/Util.h index 278117813d6..075e4ae7874 100644 --- a/objective-c/src/Ice/Util.h +++ b/objective-c/src/Ice/Util.h @@ -78,7 +78,13 @@ fromObjC(id object, std::string& s) NSObject* toObjC(const Ice::EndpointPtr& endpoint); void fromObjC(id object, Ice::EndpointPtr& endpoint); -ICEObject* toObjC(const Ice::ObjectPtr& object); +ICEObject* toObjC(const std::shared_ptr& object); + +// TODO: temporary. We should switch completely to shared_ptr in this code. +inline ICEObject* toObjC(const Ice::SharedPtr& object) +{ + return toObjC(object.underlying()); +} inline NSMutableArray* toNSArray(const char* arr[], size_t size) diff --git a/objective-c/src/Ice/Util.mm b/objective-c/src/Ice/Util.mm index fd6c092f2d3..34ccd708efe 100644 --- a/objective-c/src/Ice/Util.mm +++ b/objective-c/src/Ice/Util.mm @@ -455,14 +455,14 @@ void endCppCall(void (^fn)(const Ice::AsyncResultPtr&), ICEAsyncResult* r) } ICEObject* -toObjC(const Ice::ObjectPtr& object) +toObjC(const std::shared_ptr& object) { if(!object) { return nil; } - IceObjC::ServantWrapperPtr wrapper = IceObjC::ServantWrapperPtr::dynamicCast(object); + auto wrapper = std::dynamic_pointer_cast(object); if(wrapper) { // @@ -471,19 +471,19 @@ void endCppCall(void (^fn)(const Ice::AsyncResultPtr&), ICEAsyncResult* r) // return [wrapper->getServant() retain]; } - else if(Ice::NativePropertiesAdminPtr::dynamicCast(object)) + else if (std::dynamic_pointer_cast(object)) { // // Given object is a properties admin facet, return the // Objective-C wrapper. // - return [ICENativePropertiesAdmin servantWrapperWithCxxObjectNoAutoRelease:object.get()]; + return [ICENativePropertiesAdmin servantWrapperWithCxxObjectNoAutoRelease:object]; } else { // // Given object is a C++ servant, return an Objective-C wrapper. // - return [ICEServantWrapper servantWrapperWithCxxObjectNoAutoRelease:object.get()]; + return [ICEServantWrapper servantWrapperWithCxxObjectNoAutoRelease:object]; } } diff --git a/python/modules/IcePy/Operation.h b/python/modules/IcePy/Operation.h index fb8e9f50f3d..0b2c3bacf33 100644 --- a/python/modules/IcePy/Operation.h +++ b/python/modules/IcePy/Operation.h @@ -147,7 +147,7 @@ class ServantWrapper : public Ice::BlobjectArrayAsync PyObject* _servant; }; -typedef IceUtil::Handle ServantWrapperPtr; +using ServantWrapperPtr = Ice::SharedPtr; ServantWrapperPtr createServantWrapper(PyObject*); diff --git a/python/modules/IcePy/PropertiesAdmin.cpp b/python/modules/IcePy/PropertiesAdmin.cpp index df3f72ea852..531a0b7bb9e 100644 --- a/python/modules/IcePy/PropertiesAdmin.cpp +++ b/python/modules/IcePy/PropertiesAdmin.cpp @@ -29,7 +29,7 @@ class UpdateCallbackWrapper : public Ice::PropertiesAdminUpdateCallback PyObject* _callback; }; -typedef IceUtil::Handle UpdateCallbackWrapperPtr; +using UpdateCallbackWrapperPtr = Ice::SharedPtr; struct NativePropertiesAdminObject { diff --git a/swift/ice.xcodeproj/project.pbxproj b/swift/ice.xcodeproj/project.pbxproj index 5651a8868b3..fcb568be4d8 100644 --- a/swift/ice.xcodeproj/project.pbxproj +++ b/swift/ice.xcodeproj/project.pbxproj @@ -7,1555 +7,1553 @@ objects = { /* Begin PBXBuildFile section */ - 0049438039F0EE69E56B255B /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 826C0C52CAC6A5F22BF6ACE9 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 006D9661C9AE6B9A9E4D7EA8 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 00E385832E60C70445DA7B95 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28A5057E4450E7A59C9901CC /* AllTests.swift */; }; - 0142C9E126984A7A22BD2AE0 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F40EFAB766FDED146C9BA747 /* ProtocolInstance.cpp */; }; - 018EB4A1B6BF6D652598E1D6 /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6ABE37B5A790F5FD8B6CAB5F /* ImplicitContext.cpp */; }; - 019376FB12AD63570FBEB199 /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8970C2FBD5A08828E3B03752 /* SSLConnectionInfo.swift */; }; - 01BA2BE8624B0112F8C536D1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4067439731844BE6F7E4526E /* AllTests.swift */; }; - 0271E5B7D80FE66D93B71787 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD1DA82196FB0896919C1177 /* IconvStringConverter.cpp */; }; - 032764A9F320B5E2A01187D5 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DF53E5C9769D0305AAB42633 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 036357ABB15FC1DD5705AC09 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF810C336E0D98C916A36DD /* Value.cpp */; }; - 036493F4B5DE25F64F7AFFB4 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 715E4D917D550570FD3CFF6A /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 03EDB84ECEA4F0814D58ED1D /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A063F480B1D518851F44CB38 /* ServerAMD.swift */; }; - 0486E66EBEC5434DA91CFE6D /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832185C7682C7BAE361C4F71 /* DynamicLibrary.cpp */; }; - 04CAC40EED8EDAD9439E8DD8 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45F4D1AC7C7A3062D28DF141 /* AdminFacetFactory.swift */; }; - 04D55F06813D06CC698FDDFF /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 185F5336C6BA21C015B7B9FA /* Protocol.cpp */; }; - 04E4B256106BFF946584A92B /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 28EBC6B052A9199638397392 /* Identity.ice */; }; - 04EB6872FA0AF6E121D217F9 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4622324B5106A88CB515CB4D /* ACM.cpp */; }; - 05283E6C07BA5F644158BA19 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 052B1A84D3F1A5B398BE25BC /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9817538D39860D3F1D67F1EC /* TestAMD.ice */; }; - 053209AE8A31D2B3BF7E44DD /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95F67E554DA07E38997B2C88 /* UdpEndpointI.cpp */; }; - 053C6129D0ADA884C7C24629 /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DBD797522D96E525024E477 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 053DDB3A49B3C3155D4BCBCB /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE3BA5B003AC1B18DE241794 /* AllTests.swift */; }; - 056B8DF4006FA98ADCDB961C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 0579CBB951767F42EA6B8C24 /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78B44D0BA063801FABE08C89 /* ServantLocator.cpp */; }; - 058003066B1A2C157FE6A85D /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2356EF1BC9E19D1F6B3C07D1 /* Exception.ice */; }; - 058626AB7CED23E3CDA098D2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 05BF2CE0D8AB77832FC5D491 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FDC86559C3FF6250119D8C3 /* Client.swift */; }; - 062146CBA765C2B8E417E4C0 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7B0D1B5B22833D175EEBFB78 /* Session.ice */; }; - 0635F827CA24EF11AC6E556D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 06CE8FC8FE5A8ECDB952171A /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 35D9409C55AEE7FF99166B57 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 070EBB35D2B15A992F53033D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 07492536973EB71E6B679F94 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 079CA7F1399EE275C0B4CB3D /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 311B69EB6D89618997B1887B /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 07F3C37351C3D28E85EE8965 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D2E7E5D10022E66D22D66E /* PluginManagerI.cpp */; }; - 082EBB0A0A55DEDA4769B27D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF005D4DB20602C4F3EF5AA8 /* Client.swift */; }; - 0846692DBC562522A6DDF718 /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A53D4CB88BF6A93411E641BE /* Communicator.swift */; }; - 08491AD9CE908E6E7462BBF4 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10CC54DEDC82E4004A463A6E /* ServerAMD.swift */; }; - 0858DB436577D4CB87578C4E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 08A8B9ED64050555E614A2B5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34B79084F15B3CCAE0CE07C7 /* Server.swift */; }; - 08BBB409A1DC05D4E72F6A57 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AE5573D03A0091F921C2EC /* Shared.cpp */; }; - 08D8DBA56C3CC3629931C37A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 08E348203EE92C07B16F3479 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0CB402D9967B00BE923C2D03 /* Test.ice */; }; - 097880C06EF0679408D1F5CE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74EAE965F45B9CED1FE9538F /* Client.swift */; }; - 0990AC7EE82B69FE3C105EB7 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 14798648A0D51B7C430E22D2 /* Admin.ice */; }; - 0A5EF2FE9F4611AD6AE8FEFC /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = A10DD7682E3D7D09B6954580 /* Twoways.swift */; }; - 0A6A60165788B0B76966A54A /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F5AE3157A6E271ABFC0425 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 0A74100222EC8899C40F6491 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CB082E75D7E8687246CC10D9 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 0AC156AAAD91A1996DC43C5B /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C634DF2652DE223BCB1B37 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0B13305191DE6D726E6DF202 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7A335019D6FC3FE103657A6 /* IceStorm.framework */; }; - 0B2AD27C14BEE586FB7AAE59 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 0B56B3285A3024625C6D8EBE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC358D83F29EA095AE7953F4 /* AllTests.swift */; }; - 0B5B3AA0E782131AECB2A210 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832678821CEC317EBA1C6F2D /* UdpConnector.cpp */; }; - 0B5F52C0721C4E7965F95FF8 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E70D3533844B2CCD3FD16452 /* ViewController.swift */; }; - 0B7454320884131C24486C4F /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8A19A4F20919D5549598772 /* RegisterPluginsInit.cpp */; }; - 0BCE3CC8D99535C4C9582FA7 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A21DA17C50EA979DEAAF80 /* AllTests.swift */; }; - 0BD84F35A678AA453ADB7C94 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 0BFAC8B66105A68FF63D47E1 /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2802EE505EBBF7589ED5F209 /* ValueFactoryManagerI.cpp */; }; - 0C0EAFB8E3FF7C0648EF3B12 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A0E69CF15D312799D1B24169 /* Test.ice */; }; - 0C1CEB84E2E2990A5FFDF973 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EC5830B2180DC75DE4E4E8F /* CtrlCHandler.cpp */; }; - 0C338C6B5B3FFFB86154E4CA /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D711F8F37F1A2CC99B3F53F /* Server.swift */; }; - 0C347CE8ECF5359625657A8D /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = CC46CBBAA7E4D120F8C9F3F1 /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0C71C7C86EFBD2BCE547E14C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 0C9A4A5F0ADF258FE6DB7103 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C84040AFCBFD4AAE0B519DB /* Server.swift */; }; - 0CBE9E4B1796348B5F80D16F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 0CC96D37DB7AFB63D5A71472 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = F080418FA4B75A04B9A8F7D7 /* Logger.swift */; }; - 0D15702D5D4A4BEEA877FCE3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6D3E94140669587BFA14843 /* Server.swift */; }; - 0D18B263085543EFCA40678B /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A6DE490CAA151058A7A77AE /* Collocated.swift */; }; - 0D42428F7BDA712479E5F4A9 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6084656BDF75C648D467B6CC /* EndpointI.cpp */; }; - 0D4DAF1B5F5DFD69F1715498 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 71FF19753C75D718076D906A /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0D5440854E21629CEF7C8CAE /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E089655B39A8835FFC0C9516 /* FormatType.swift */; }; - 0D7C68892F6FB9AC55CB3DF7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C41EDECF5F3943979928068 /* TestI.swift */; }; - 0D90553BA6A9D105463CEAB5 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97480A250E2000119ACBB3C8 /* Communicator.mm */; }; - 0DC94AB12B244604E37F2437 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A30B1089D1296C6F7CED1C /* OnewaysAMI.swift */; }; - 0DDC47C80B71C612BD2DC15F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A68D41A0941999BF76CC3B35 /* Test.ice */; }; - 0DEF9C783B9FBFB0971F6509 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A7A86F3A81CCB9DB5D71756D /* Proxy.cpp */; }; - 0DFBC4E293DE0A8CA5A72998 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6513CE00B5AF115579EADDCA /* Client.swift */; }; - 0E2B72879385FA64D1C8F3E8 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF59D1D7D0880B663094A951 /* AllTests.swift */; }; - 0E569FCA1B54A628CF2ED5AA /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8ABE21302DE3F9A7649731E /* OSLogLoggerI.cpp */; }; - 0E5856D65B05603B45F4F6CB /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6031880CA768302715AF710 /* ConnectionInfoFactory.swift */; }; - 0E66EC4B6247B9AF075574B4 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E41487C8DDE61F3EB934BB5 /* PropertiesAdmin.ice */; }; - 0E68B2327A185B32E5587010 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50A02E35C0D489EE9FA527DA /* Server.swift */; }; - 0EE3E91697B2879846F8F49C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3635819F6819934528B2BA8B /* Client.swift */; }; - 0F1C5712F8EBF10DD09911DE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6A409D5F984C8F0BE68A557 /* Client.swift */; }; - 0F63C3BE0B8F356348CCCEBA /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB58FB2F6F3C1FCCCCEBAE8E /* IncomingAsync.cpp */; }; - 0F660CE4DF60FB58449AC31B /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8474C6715BC5D1EC8BB795D /* Instrumentation.cpp */; }; - 0F6CB533088A321015E50D0A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 0F70BBE2A359C61B78141677 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E60734E3E837C813043195B /* Test.ice */; }; - 0F86693B76B6AA1EB961A457 /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F28998274F3968D7E62348 /* RouterInfo.cpp */; }; - 0F8B10234BDA25C30D1EF237 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C479C4447657FF60E68C8D4 /* TestI.swift */; }; - 0FAC22D8A2303AA3B7C8CAC7 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF1988317337A4631AE99897 /* Connector.cpp */; }; - 0FDFB5EEA1E23DC684B3CEF2 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EE844510C2D8711298D5FC31 /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 101D930E1A7C0CEB2DEA102C /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BCCEE21EF0C5C1C57D0197 /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 103668E8E406C6F322816D48 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 108BFE643A4DEAECE1AD45AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 10A39E968D3020CAE27734D0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 10A97C63E2C7C1ECE1043E32 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DDBA009CB8D3B5A0846CFA61 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 10B9C06BB86CD2E1C587A300 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 965052459EF66532D1A53DAC /* Server.swift */; }; - 10C9F93D946B8F718F806D2E /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1EB568811E2BF696EC8E3B97 /* BuiltinSequences.ice */; }; - 10E20347DCDE7E98D6B032E5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 11134DE261927EF7BD2114F9 /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17D6C3CB35C6DBF607E94B77 /* Connection.cpp */; }; - 1189776CE27ACE77AD06DF28 /* StreamConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0307582B11F0A01BAC6732B7 /* StreamConnector.cpp */; }; - 119A7AE442E83B9FF22EC524 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C22AA887D26C5BB0C12CA79 /* Value.swift */; }; - 11EA7A5A63E49B6E2068DA6F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A415328DFBFF6A7A21BF4E81 /* Client.swift */; }; - 11EBE50C024C3790D55274AC /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B85B17A8DB3D78F163220271 /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 11EC7CC17FE5415303996F60 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582CF8542C18DFEE777BE669 /* PropertiesAdminI.swift */; }; - 11F1E60032D46880907F9D7E /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD88371730890D163B36559 /* EndpointI.swift */; }; - 11FF1324D8EC75E9DB1420C3 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 297ABB350A7C637780C074E9 /* IceImpl.framework */; }; - 125384E9C8C8895C756DF450 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 1297254876059CDC3579B4C9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 12A00615E883CBB2B5F2A90F /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD2F738D721475D92B0B7F10 /* StringConverterPlugin.cpp */; }; - 12AE0B9871A53F4BF66FDAFA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 12D3007DA8C1B503B47CFE0F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 12F8A02EB2B2B4E4A1385373 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB1D1063C3987F97CD262B32 /* TestI.swift */; }; - 130BA7647D1EBE869EC4E66B /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3F1911BAB92A957302833169 /* Metrics.ice */; }; - 139D195E2BB3B8C1B842399E /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD03EE61CEA9E337ACD6C1F7 /* ServantLocator.swift */; }; - 13A1507C47E19EBDB356393F /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = D9F8D61F43A53ADB59E8570F /* Router.ice */; }; - 13A2C80C225E399FD4B20D44 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 897297169BA7DBDB87CE1088 /* RouterF.ice */; }; - 13A91EAEDBC5FB0D57384A90 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 13AAD891602437048C981D10 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 594301575AB6DA25D7CE8A90 /* Reference.cpp */; }; - 14038ED636E57D2748DA4A02 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58C5E7464C1E1A08020CB59A /* InstrumentationF.cpp */; }; - 1457686D5762CD26E16859C0 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB707853D1A0F03F7DC7561A /* Logger.cpp */; }; - 1463058E0B0C8964827B0C18 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 147D31F3ACEB7CBFA7E40B91 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 73563B2BA9D73A31D245E208 /* ServerPrivateAMD.ice */; }; - 14D9F68C9015C9439FD6460C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 589870D40ED0745158B279A2 /* Client.swift */; }; - 14EE1A5339C392282BE9AD8C /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 26333E41B14F786F1F2AE7BD /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 153900BC0DE507C4CB3377BB /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 046ACEB5C9821C9778BD3270 /* SSLEndpointInfo.swift */; }; - 15B0DA4BFAAFF95427EA2576 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2F0731B6D0D6CE30A96EC68 /* TestAMDI.swift */; }; - 1606ED874F463AF9916C8A85 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 16856A6665650F9061877885 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16670BEFB50A823C040927F7 /* Server.swift */; }; - 16BEDB058896B9FCC877301B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E24E0E30BCEE526832CFF2C0 /* TestI.swift */; }; - 16CF294551FA8A6E854AFAAC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 16E0064A24D1CC6BB3AB8FDF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B057B033C9D2ED8D38A3D014 /* Client.swift */; }; - 16F6D99E041E59299F890747 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 16FACBDA8E0C1A19711882B2 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9F109EDD838DBC121C3F0D3 /* UUID.cpp */; }; - 170AE4CBBF1490D211F04985 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45331497BAD84C6969F6C8C8 /* AllTests.swift */; }; - 17302875EECCDD39DC311540 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F40EFAB766FDED146C9BA747 /* ProtocolInstance.cpp */; }; - 179BFDF5CA36E22B7D3DC44E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7956EECD3C94FF8CFA4E7EF5 /* Test.ice */; }; - 181B2F1CE4FF702D5410233E /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86ABB8F817591538D1E1A719 /* LoggerAdminI.cpp */; }; - 182FA80A651F60908CE69F2E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 185D4E64C816A1B3D6AD7C89 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF1673D7836C658CD250DC /* Selector.cpp */; }; - 18603BC1B280744F2896CFBB /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3BC64A21F03FBD8F32E4AEEF /* Properties.mm */; }; - 18F1E6D6C18F9EB77F88998D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 19100EBCCE58F6899A17B35F /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E10876EAB4A47A8DFC9CB0E7 /* LoggerI.cpp */; }; - 19DE94478C60EBB2E4E78EE8 /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 420A6EFB17E04444277813A0 /* UnsupportedAdminFacet.mm */; }; - 1A1B29A1BB1D2130F153C25A /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6295A1BCB275C79338F200E /* InputStream.cpp */; }; - 1A2B1969496510EAE166E659 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD2F738D721475D92B0B7F10 /* StringConverterPlugin.cpp */; }; - 1A4C7D754BBCE5CEA90014E4 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A36EC0AEC31627FD61F14E27 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1A518DE705FC5677037EC535 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29DB74C0FB62F0BC5680DEB6 /* TestI.swift */; }; - 1A87901C853A64DA004A19F6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4869F95A4F0E2F0EB4A21C9F /* Test.ice */; }; - 1A87FAB1936D27A84E02A5A1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 965052459EF66532D1A53DAC /* Server.swift */; }; - 1A9B24A0C0EBBD00BAD4D2C2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 32FB2DD7866F089F20373B22 /* Test.ice */; }; - 1AA80E303B50384C19D362B9 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B86D580E85AA9FDC21A6524 /* ConnectionRequestHandler.cpp */; }; - 1ABAA41735F514CDF2E9CB23 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01CF59A0A4F2EFCB462BC0EA /* ObserverHelper.cpp */; }; - 1AD86FD37B6AFC88F55E2195 /* StreamAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 654F7807429CD84D1849133C /* StreamAcceptor.cpp */; }; - 1AF0DDBC559BB5D445FB0A61 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 1B5966E1B33A5AFFABEBA0FB /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A68B6650365588738DD6CA4 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1C21DDEC268739C52FD53E88 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 1C2744955743DD4E62E80AD6 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1355ECA7BE2A8D99B53FA4E /* TestCommon.swift */; }; - 1C6C2644A6D1026DE4FBC581 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6A000A916E9BBC2F74F97B21 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1C8DEA6F6E5CB57D18FBE884 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 1CA922E73153E90B50A2B40C /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD2619C8768BBC9876A5A684 /* Object.cpp */; }; - 1D08717CD679835A0F80AC9E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 1D60B5F30880DE784144B23D /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC61BD40D7CBC56C18393B3 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1D6D3B8D7D344C8F284DED5D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 1D71DA62BA6DDA45CD53F3C9 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B86D580E85AA9FDC21A6524 /* ConnectionRequestHandler.cpp */; }; - 1D960252846568A7D041FDEA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5139077FB7FF05473C48016A /* Client.swift */; }; - 1DF60CE425384D3C03BFFF51 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3292F3020C6049CFEA22E87 /* RequestHandlerFactory.cpp */; }; - 1E01CDE551C72E8DAFD413C1 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 28EBC6B052A9199638397392 /* Identity.ice */; }; - 1E50D749D4591CA85812EBAE /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4926C66009891C6BE3389C72 /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1E6CD4C25E04D3250D60BBC1 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D78A96F0E7C0185091A1D216 /* FactoryTable.cpp */; }; - 1E7404A4A55206C6D805C1F8 /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26C0F7B6692E6D473315573B /* Buffer.cpp */; }; - 1E92206BBFD74CCD895B62C0 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E06F35E158588B7C1D8BA3F6 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1EA8F39C73599853ADAA281E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 95851E43D0C4D60F6E643BAE /* Test.ice */; }; - 1F2A0CA8E91CB0ED37ED6A75 /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD741643796E7F602007D9F4 /* TraceUtil.cpp */; }; - 1F5946925F3D5E04151BEE83 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCFC8BF05E482D90214B7A88 /* Client.swift */; }; - 1F62B00163885AD9E79354BE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 1FB66300F70D4B3DD3F93C38 /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1F28998274F3968D7E62348 /* RouterInfo.cpp */; }; - 1FBD2C3969755E3369FD446C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E513A8A056433D791A09BAB /* TestI.swift */; }; - 1FC0C15FA96D74F245BEF24D /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E52E96A3FD8751DCDB6A6B00 /* InputUtil.cpp */; }; - 1FF71CF3C32AB23207DDFD5E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A68D41A0941999BF76CC3B35 /* Test.ice */; }; - 1FF93FC36F5C01A2D3E97F8B /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1292D7BDD24245A4E07C74D7 /* TraceLevels.cpp */; }; - 2015196331C7920661F0BF11 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 203160B752F51F68BAA7D330 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54F3C8023ECF28890B143479 /* SecureTransportCertificateI.cpp */; }; - 203289D41D0B833790271983 /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96E9FCBFD4A041F02FB124A6 /* ConnectionInfoF.cpp */; }; - 205F07C6E85A211443AEF973 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29032EF4B097556E6FC91088 /* Client.swift */; }; - 209D47C31234364A95888304 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FF80542C911241FAB9075178 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 20BC125A42B8BC8F3332DEDF /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3412FB23BF9F9E5DED5AF6B0 /* OperationMode.ice */; }; - 20F258BAD0EE09D3FEDFF770 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 2181F0AD253C7C3EF2C6D308 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 2183FFCBE0D8F125D4CCDC66 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDDC0839C27127CD64828388 /* ServerAMD.swift */; }; - 219098E2CF3A40598E9B7DEE /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A3D3FB492A2737DCD312850 /* ProcessI.swift */; }; - 21E17E188E900E1E00806701 /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 50A2B975515FD9EEB3223999 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2221886DF511586574DFD643 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 229663A2BF8B77BDA8BDC1B4 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80A836681C0AEC83887E925E /* Server.swift */; }; - 22BFA9CCC15CD1784546B9E1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 22D129CE4EA63AF27D585EA0 /* ControllerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DCB07DDAE094BB3D44E1C3F7 /* ControllerI.swift */; }; - 23265AE6C464AB9C02F1A2A4 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6485A6AB6C5A9D405C99A002 /* ObjectAdapter.mm */; }; - 236B19AE05A38DCC8892544B /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75152288E3A29AD5C1FC467D /* SecureTransportUtil.cpp */; }; - 23795425500F12168B65D9C4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 237ABAB8E60C04D624787ACF /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 897297169BA7DBDB87CE1088 /* RouterF.ice */; }; - 23AD889CBD3E442F12D654D9 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC9ED7619A57BEE47972336A /* RemoteLogger.ice */; }; - 23C3369F48BBAB5708E43F36 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1A91058A52D17DD5127653 /* ClassResolver.swift */; }; - 23E444672E938CB90CC92241 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9527D4E7D5C57B3AC43961A6 /* Instance.cpp */; }; - 23F6A43C052E54D562795621 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 23FF36F0C786D2952282230F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 589870D40ED0745158B279A2 /* Client.swift */; }; - 24788DDE8B5C23A8B3F476DC /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 983721C2494AFCC1CE30946C /* FactoryTableInit.cpp */; }; - 248FEA012067A2F54A434DE9 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 314795999886E271CB9DB2EB /* Clash.ice */; }; - 249A5FDE2A7DC707E9922258 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41E7E4C4720DDBD98AF18C6E /* ConnectionInfo.cpp */; }; - 24AEC3C23E7C27E16EB9B508 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FF1FF8A94040F7F602F0C0 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 24EA0BB9AD25145D45E17784 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 252428E411CFE84C8EABA9FC /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = F33FEFF5D565C07C45D4FFA3 /* Properties.swift */; }; - 2528CE6CAE863372ECA1770E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E437B10CC2A98D494235858 /* Test.ice */; }; - 254FC20AF19B2AB1DA3F6ED4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 257B47FE5312EF6F16280656 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 297ABB350A7C637780C074E9 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 259EE277283241834F2918D1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 038169BDD15B56BE2FDA00AB /* TestI.swift */; }; - 25A816F4DDF27AC2B1EE4D01 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = CEF85180CA61C2F9F98973FA /* EndpointTypes.ice */; }; - 25FBF8B5DC564F43D05B488F /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07A3DC28B900D1AE3A048739 /* WSConnector.cpp */; }; - 2624A53D5C87E276245F7321 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 71FF19753C75D718076D906A /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2639EB20DE44D7E632312A8C /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 93B5CBAE0C70CA58A1C2C165 /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 264FC7039144448AB76A1BA6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B3CD69D0F2518B0505945D1 /* Server.swift */; }; - 26E228457782AF4FCBA04711 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BAC520FFA73DABE04C898130 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 272537DDAD4BF29C8AE4EF44 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 273E4DC73084B7A644676EC6 /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFB3505005131A44524F72AE /* Plugin.cpp */; }; - 277D1F814E8E4865631B9E30 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 342085FA07DF4FC8C9D4BF6F /* Initialize.cpp */; }; - 27C202B18AAD0ACE036618B6 /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF610E634A5865F4DBA3B2D5 /* SlicedData.swift */; }; - 2809864F63C4627B01839595 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43EA623C9F4C7F919225D487 /* Client.swift */; }; - 28429A6E616618E6B08D86AF /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29725771B14324C80912215D /* UnknownSlicedValue.swift */; }; - 284A1EC58025DA8BB221D4D8 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3621866FB3468BC2E48FB9B7 /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 285733CC3256AC49BFDD9FB6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 28BA1954D31386C468ABF363 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 28EBFEA6FBD333021E263EB9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 28FD84B9977369E4897ECDF2 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3035A059080501D7128194A8 /* Object.swift */; }; - 2930BC86E955F67F68C706E0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F3434C8A073AA109B5C31EA /* Client.swift */; }; - 2959F6EB62C8F824441DDB06 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 29646306A7CD4DC15BC1CB51 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = D9AA20FA76371E7525561E7D /* Version.ice */; }; - 2A46FEABBA43C8111834A15D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C33F6088CA51225D531E88F /* Client.swift */; }; - 2A4BE985E5124200F0563358 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5D78CBF2CB618CDAB7C4CFE /* LocalExceptionDescription.swift */; }; - 2A72EA0D95B5716DD053D623 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B057B033C9D2ED8D38A3D014 /* Client.swift */; }; - 2A82FC01E6E4D5B6EE1E5909 /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = 261059C5925105B6E65D91A0 /* Process.mm */; }; - 2A99230AFB63FD720764C277 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D2DD09C36EF45CDA56DB948 /* Test.ice */; }; - 2AE1FFEF13F0387860DDB551 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1C374862263D78134D3A2AD /* AllTests.swift */; }; - 2B17685CF253116CD32BCFDE /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BB5410444BF6B374021801D /* Collocated.swift */; }; - 2B5CBA50DD7F01F16C9D8DF2 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 465F648252C614812204678B /* Time.cpp */; }; - 2B66511B5487543B5168E5D6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 2BD891D443F38C44ECCE3FF0 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F33423CE6255B0CEC51423F2 /* Util.cpp */; }; - 2C542E12B465CBB524E6127D /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5947529BCEAEF6399F92ED31 /* ValueFactory.cpp */; }; - 2C75BDAE1BBF350BDCB338AA /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E437B10CC2A98D494235858 /* Test.ice */; }; - 2C7B0EE5422DE93DA87B3FF5 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C16F4A69D766395D88FE602 /* ConnectRequestHandler.cpp */; }; - 2CEF367BE0B97F2DDC273B9B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14C28AE318E4928F506C915E /* Client.swift */; }; - 2D80A653CC1D004EEDE776CF /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B19FA205006766F6B2E1350 /* TraceUtil.mm */; }; - 2DCBE713B7BCF52D378ACEF9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 2DD942A5AD9BDFFCEC2A0E20 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38EF1673D7836C658CD250DC /* Selector.cpp */; }; - 2E1B86815360FEED4772B2E0 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BDC735E930313F1DB88B63 /* SHA1.cpp */; }; - 2E1ED6D315D81B4A046EE053 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 2E8CF32F51479C34D8CD3055 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7570FBDCEB1BE973537F63AB /* Connection.swift */; }; - 2E97A144E2DA0A160918A0B3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 2ED3097F6A5616FDD978DFA2 /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A283F62CF4F1A840B9C8731 /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2EF06FC9808A237E520EEA73 /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EA2D25A82444D862E2E8FE7 /* OutputStream.cpp */; }; - 2F3E183D119CFAC446CFCDAF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 2F40C81A632AEA8546F7ABAC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 2F4D5ED75ED31DA29CA4AF27 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 2F50A90E920A49695AB20462 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDD050FB49289A8E9B2D9942 /* PluginI.cpp */; }; - 2FA75B93154124D1CC943A2A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 11EE85F933402720B1EF6CF7 /* Test.ice */; }; - 2FB92BE26AB1CBF52C6E5CE6 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D598D4EEF2DB8A4A7C61F8C /* ServantManager.cpp */; }; - 2FCA31173530C8D96AD3431E /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7D09811ABF1129D166FBECD8 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2FCC3AE62D31D52E775F46BB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 301BE10193F66C6D2893019A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0540AD3E250E11B403EEABA4 /* AllTests.swift */; }; - 304822A0CC5A6D572D89D076 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 30AACEE53539E78B39065709 /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01B21EF5B58D1BB8B436416 /* EndpointSelectionType.swift */; }; - 30DEE483AA0552F2F1EA3906 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1A5D52941189B36C37824EE /* StringConverter.cpp */; }; - 30FA33489B6079F6DB52D274 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6062E695220FACFAE9E172A /* Test.ice */; }; - 31173881AA562E0C5D65C01D /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD741643796E7F602007D9F4 /* TraceUtil.cpp */; }; - 314A3E18CF44469D18D2DEAE /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 99BDC735E930313F1DB88B63 /* SHA1.cpp */; }; - 31BD5813F362DBC5CDAE4778 /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 979C34B2FF762DA581B94308 /* IAPConnectionInfo.swift */; }; - 31E4EB70CF4BC88E28D8D044 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC73C4C73D34B73CEC2085EB /* PluginI.cpp */; }; - 3209DB3E8A8879CCB197F0A1 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42B62A4842207650FD755725 /* PropertiesAdminI.cpp */; }; - 32BACCCD1BB1CFBF4E8939A3 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5FA5B650BE7B3E7E2911DFEF /* IceStorm.ice */; }; - 32E50FE681B7FCB0BBD938E4 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6845B2E29E4080166CD6C26 /* ServantManager.swift */; }; - 33120854054C79CAB6E7DBB3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 563ADEC4C1B32BFEDE861B0D /* Client.swift */; }; - 3326DC5C43C1C35B41B30BA0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8423266467D889E92F786035 /* Client.swift */; }; - 332C08B11E505B76EC482E65 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 333834C76B8207BBC8F4D666 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54F3C8023ECF28890B143479 /* SecureTransportCertificateI.cpp */; }; - 33D6C496A2254C171A6AED27 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 33DE54B349CD69B0F9AF0343 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 33ED316D21501F28A66087D7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 3412AEB65129254ACB08D62A /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3519616430E9681021457E94 /* HttpParser.cpp */; }; - 341327A6974A4A08B40FB8B5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33E2B8C087CCBBFCCFE0EDBB /* Server.swift */; }; - 3432249506987E4D746732C7 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E52E96A3FD8751DCDB6A6B00 /* InputUtil.cpp */; }; - 3439C7231AEDF344324F4B27 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = DAF14D8D3CD8494E5BF9201E /* TestAMD.ice */; }; - 345BD76BF49CCC1DF1E06039 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 345DD6124919171A836086CA /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55625944FF564A3D943D23D5 /* Blobject.swift */; }; - 345FD814DF36F04D6325EDA8 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE1126EB3A8EAD2D7D819A11 /* CountDownLatch.cpp */; }; - 347B5EB0541A8B2704F21AFA /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2B30F4B19AFB12FA54B16AED /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 349379033E27FFB71B80F96C /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = CC46CBBAA7E4D120F8C9F3F1 /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3498A44ABBC2092B3D0174C8 /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E86412341EF16ED15F320F0 /* WSTransceiver.cpp */; }; - 34C463E2E936F69653437362 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70DC389A13F881E48EBCA25C /* Server.swift */; }; - 34ED189A441BF0F478E156C7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5263C3738C3EF761B5202141 /* Test.ice */; }; - 34EE9DD24DD083F634E12863 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B9B6BEB54580685FFB367A /* ValueFactory.swift */; }; - 3524F877FF92CE25618BC82D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28A5057E4450E7A59C9901CC /* AllTests.swift */; }; - 3577750E4D78EAAE4EA081F9 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAAE931013BC01817AD3CC59 /* Initialize.swift */; }; - 3583885665E53457D2CF99A2 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F163CAD96DA4D8B35B75F74 /* CollocatedRequestHandler.cpp */; }; - 3591A708660FF91F8C65C626 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 359F76C8AFF38001CE766F79 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBA3784B8DB45FE8C568F7D8 /* TestI.swift */; }; - 35AE4286A792BC9C566E98DB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 35C885580BD0678A60EB143D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 35D051C1D7E38EF301891EA4 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A44522A036AA7C188A725680 /* Options.cpp */; }; - 35D2B39E93065AFCE039426E /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = CEF85180CA61C2F9F98973FA /* EndpointTypes.ice */; }; - 35DF71EFFAAFDFAFD53AB6FE /* TcpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 081E77A8123DC3600247F1BC /* TcpEndpointI.cpp */; }; - 35EAB4FF927234D59DB1B5A7 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F169549B67E17132D0100E5 /* InputStream.swift */; }; - 3602A548FDCFB5BD623FB695 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1A5D52941189B36C37824EE /* StringConverter.cpp */; }; - 3629347B13EBCCD4A13CF575 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECB72A94A18685EA341E3587 /* LocalException.cpp */; }; - 365D62FA38A1DAF0C40ACC23 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C83F4865F188690FA0ECA48C /* Test.ice */; }; - 367C131110CF5DF84D3F8DF5 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A3D3FB492A2737DCD312850 /* ProcessI.swift */; }; - 368C0DAE1EA4121899442CFE /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F169549B67E17132D0100E5 /* InputStream.swift */; }; - 36BDE89CDD0345FC238CA633 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFF40E41BCC43087809AB261 /* Communicator.cpp */; }; - 36F0FD75A6991CA77D2155B5 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B10F3FF9F7989BA4FBD59F0 /* Context.ice */; }; - 3748717F6848E03E351A5397 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29725771B14324C80912215D /* UnknownSlicedValue.swift */; }; - 375227EF6EB960224C4E29F6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66B7E30EC0ADE6667DB0718E /* AllTests.swift */; }; - 3761DC99BFB76B296A950F77 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = F80312C7D23DE15D9DBEA4B8 /* Descriptor.ice */; }; - 37E3DC181D022604DD912BA4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 37FD2F9F2E635053382A457E /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9DAAF34F8A69EEDC87F889E7 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3841A1031BDCF0C47FB37E6B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 38642D12B1980A9337EC6ADB /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F80B65BA154B6DFE570284EE /* CertificateI.cpp */; }; - 38AD9AAB1914822FA461B3A7 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EC08889BCEC40A288945740 /* Proxy.swift */; }; - 38C3F80712BE1F0EE774A8AF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74B28F3482CE65CFFC31D5E /* AllTests.swift */; }; - 390C54FB3BF05221A229BCC7 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8DEF71C9DEB340E5082D4561 /* SystemdJournalI.cpp */; }; - 39112C932424A2430F1EFC8F /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A23ACB7B51AA7355057DD3 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3916A6C7913A2D1DE42BD5E9 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = E4C4327A478904CF26F0F2F3 /* Metrics.ice */; }; - 39764C26AD3AE850DA69B588 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B06E3E53A88EBCFBC944B38B /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 39817A4094B6FBD024DF46B2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 39E8DB4FDA736E45DDB999C0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DF2168E2E451864F9F40F88 /* Client.swift */; }; - 39FAD3177C4BEFB8221A7752 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 3A1AD7E4C8EFDB23A68486A1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EDB0B02B3ED8BEB70182162 /* Client.swift */; }; - 3A4701D6B999F173F5287886 /* FacetMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0BA05BEC1FC854319EDBA5B /* FacetMap.cpp */; }; - 3A73922FCF968D16EF9BAB59 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2786B7490F83497D5B9DC916 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3A91DCDC7840C89316BBD151 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 32FB2DD7866F089F20373B22 /* Test.ice */; }; - 3A963169A973AF0A4436AB9C /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFD4D738B0672E237D0EB820 /* Incoming.cpp */; }; - 3A9B08A45864E5B5DA10EF84 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = E4C4327A478904CF26F0F2F3 /* Metrics.ice */; }; - 3AAA11E33B0CA8689101D19E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 3B48831B4EC9882F4576496A /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72969A7BBA1DB8E3A31C4234 /* LocatorInfo.cpp */; }; - 3B4A47C1F2AB011C6E29D992 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 3B789B6F76BD2827A235D035 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A9F1D1BFF611AEC3B1F525B /* UtilException.cpp */; }; - 3BCAEBCBB973843FD2AD8526 /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FA690BDA022D1D71A2563D7 /* LocalException.swift */; }; - 3BF1C01B267BF6F604246AFC /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7E18CC57E815D2169B082AD3 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3BF811698BECEA2B8175F1A4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 3C1276D1BECA3024D1B39F02 /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2D08C9B7366834B041FEC159 /* Registry.ice */; }; - 3C373C2411B5AB81B5AF2C9C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 3C67B902CEE9CE73ECF71EA6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 3CEBBB4CB40602472A603623 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 3D0656CEB9B75448F59AE67C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 3D0AACFB74CE7ACBD1F5A206 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F038B1EA12BEB61CA662B52 /* TestI.swift */; }; - 3D40E882A25EDBB4F0D62DD3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5263C3738C3EF761B5202141 /* Test.ice */; }; - 3D515E921E86936AF4465865 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2D2E7E5D10022E66D22D66E /* PluginManagerI.cpp */; }; - 3D61FA6F9EABE4443E5AD56C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 978BC6A012115CFED653D3D0 /* Server.swift */; }; - 3DC7B16D455424AC8B25A588 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = A67B37CC0489F03CF069A65C /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3DEC34F8522906059560F721 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A58977E346C1C41BEBC658 /* SliceFlags.swift */; }; - 3E18170E5E7FF74499B7D24A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA8D845DDA4210612874AEA /* AllTests.swift */; }; - 3E4F502EDDEA471D4D29AFC4 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00C3014A2CFA76B443D73F46 /* Exception.mm */; }; - 3E72AD0D61EE2300DA565E6F /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3D39FB9794A458E44672EE2 /* main.swift */; }; - 3E7C691CA3899EB94D587E36 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 824FC6BA5BCE19588DEC2AD8 /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3EB4D9A616EB29E8AFBACA88 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4763D1EDD6ED9EE3A2F1DBE9 /* OutputStream.swift */; }; - 3EEBA2EDD362264F2A38FCB1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 3F09B74DCCFD4F0B87A5BB74 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6BC1DF9A06ADA22DDBBE3DF /* ImplicitContextI.swift */; }; - 3F3FD483C748878BAE9A763D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C2D6095118702AF4F895B01 /* Test.ice */; }; - 3F8D3E407A99D539E294D3C6 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3BE92039E393EF27B9C18847 /* TestAMD.ice */; }; - 3FA2678C6066014D24260B71 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9817538D39860D3F1D67F1EC /* TestAMD.ice */; }; - 3FBC5AAFC9214518C52B02C8 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45F4D1AC7C7A3062D28DF141 /* AdminFacetFactory.swift */; }; - 4007C9A39744A18F0C3CC309 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 05286265BA8BCB8D08B75476 /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 401C13E0A0F96C4B357D1CE2 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41DFD78B26A3BC5ABCE708CD /* OutputUtil.cpp */; }; - 4030AF74943D9FB611B8AC4E /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = E70F095DEAD8B11B20898CC9 /* TestAMD.ice */; }; - 403618479F56854EC65F5FA6 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A58977E346C1C41BEBC658 /* SliceFlags.swift */; }; - 4041D25E665FFC4CE69B94A6 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA3048781DE1F85C3C98A17C /* IceGrid.framework */; }; - 40440F5B203290FE0ED58BFC /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2D1B2204B4DA05CE9C3E0E21 /* TestAMD.ice */; }; - 4094848A3B3C886D1C1C2A89 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CC922FE8D3EAF73CEDB3CF7 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 40AD5716CA0FBA3A7E791C24 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = EC1C464D877DF1AFBB2D6425 /* Locator.ice */; }; - 411127689BC47D3EF64DBE60 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32BD4AEBE95CA55CB24D7A3D /* UIKit.framework */; }; - 4143B926A83828CF62B0EE17 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 41501CB46CD0860E5344FF1E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 41765839EA0B16A64D39C7C8 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 962818DC4825125D91BF9095 /* LoggerF.cpp */; }; - 4179C322A524F03AA15E0342 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = EC1C464D877DF1AFBB2D6425 /* Locator.ice */; }; - 41940359D19BA6ED2E82D7A7 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8A19A4F20919D5549598772 /* RegisterPluginsInit.cpp */; }; - 41A26D7FE975DF3ADB28BF28 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB36820A5AC833BC1253F30D /* ServerAMD.swift */; }; - 41AF3D0F2B278B6BA9A929F4 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C04E61AE1032EFB42B418E1 /* FileUtil.cpp */; }; - 41B2664CFD924B85145D5D2D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00D3B3D1EB8A265FFAA1C424 /* TestAMDI.swift */; }; - 41F46CA262BF51F19C8D9DA5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F170CA23DF8AE7150B4E3C7 /* AllTests.swift */; }; - 421CB7581BE042B95301A003 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 42243ACEBD2732D956BCAE1A /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F1A91058A52D17DD5127653 /* ClassResolver.swift */; }; - 42686B42BB0FAFE20C358CF2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 437999FF0C4A7689D50BFB99 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A6AAC7C362454260CA2B0593 /* Test.ice */; }; - 439A0C371F9B6AA3448F6480 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = C90960781F3A665A7DA951D9 /* ServerPrivate.ice */; }; - 43B191AAE7A8CBAB1BE79F27 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 43D628E7223E62FF2142D2DE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 43DE2F1720E41094A482AA8B /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCAFC8C49E5187C1AB25D11 /* Properties.cpp */; }; - 43E6E8B222589247F8E8C32C /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8A247D6B9D6442FA04FBCC83 /* TestAMD.ice */; }; - 43FCB579023B4ADC811A7772 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1F66CE853CF87B6E6AFD974 /* ServantLocatorI.swift */; }; - 440CCC244191FBEE5A4AADA9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6D3E94140669587BFA14843 /* Server.swift */; }; - 441C17F2A71BAB8BD7632AF8 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9366A44467F809D54376FC77 /* Collocated.swift */; }; - 443481975C2D4C2D0C487A00 /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 510D1B93F9F1E35D60692209 /* Endpoint.swift */; }; - 443D0C63EF6891ADECCE8907 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24803367329A3408EBEF3225 /* Client.swift */; }; - 4448B72263ADD5DC2B779444 /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81FA0473F73946ECEBCD0FE8 /* Acceptor.cpp */; }; - 44AB013182C89AF5F71B511F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 44B8A3BFB7E96ED2EEB11BE2 /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 169F0CFB6C30D66047E0EDB1 /* ObjectAdapter.swift */; }; - 451069726E6B804F7B8CAD14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 452396734ADEF7D4B123FA00 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 4550804E625F049C13AF20D5 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BB964A860C92F7275D083A26 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 45577A9F611C86E97249E75C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 45BAA3EC0EEDC4A06C495809 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06BC492F3CD439079FA4A3A3 /* Server.swift */; }; - 45CC75F6F1065093293B9B6D /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D16CDB2107A44877C9B96E26 /* ObjectAdapterI.cpp */; }; - 45F431096243A6CCD447ADD0 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2F0C21A4264BC5D193BE88D2 /* IceLocatorDiscovery.ice */; }; - 4648B71A7FFC0CC68A406E0F /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF99C502AB691B67373D09AE /* Random.cpp */; }; - 466397AACC7A020ABC9BCA16 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6084656BDF75C648D467B6CC /* EndpointI.cpp */; }; - 46B642BE8B0828AF5EF2A4CB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 46C479DB4AD5ADEA74CC2620 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E24E0E30BCEE526832CFF2C0 /* TestI.swift */; }; - 46E59F2881A6A2D69DDB5890 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FF2A72A70FF62EAC4F4C3D0 /* Client.swift */; }; - 4702CB2B311E419A1EFC20D9 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86ABB8F817591538D1E1A719 /* LoggerAdminI.cpp */; }; - 472AC324874B7C04CA00B96C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B884A1F2FB9A50957E45CD4B /* Client.swift */; }; - 4755AD0D73B9EB6F03D4CE7B /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37D892DE62DA65AD17EBD8AD /* MetricsObserverI.cpp */; }; - 475EEDB145A012759EE3CBE4 /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B01172F1BF8FD03715DB2993 /* NetworkProxy.cpp */; }; - 47645F159A50C6C41E542DF0 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 076A243C9F5B4CB2ECFA7F51 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 476EB781EF1558A848C00080 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCFC8BF05E482D90214B7A88 /* Client.swift */; }; - 476F8043116EF9C59DCDBA16 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 477DF596E48DD099FB4BCF23 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 111B44D212156B847EA01C54 /* Client.swift */; }; - 47A88FA52B1CE103B754C0E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 47DDD95FA4E11556E2A2FFFE /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = B995EA78E5B5397A8BF50B54 /* SSLInfo.ice */; }; - 47E326B812CFE43B72E1791B /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5D78CBF2CB618CDAB7C4CFE /* LocalExceptionDescription.swift */; }; - 4818DA06708C65C6A876007D /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68EEAD6D4327F2D31CD9F050 /* ServerAMD.swift */; }; - 485265492B84DDDF7D6499EA /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05B1434794EE607DEF633B3A /* ExternalAccessory.framework */; }; - 48680CCEDEB891AE8EF7F9E9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 48A417E2AF1332A115ED4AA1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 48BE21A34A2607076A50C159 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 623289333D18DFA2108F0CE7 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 493BAD347F65CC07C49D8933 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75B0E1B932B09C64904B3E75 /* LookupI.cpp */; }; - 497ADA39CC778E17759C3167 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29032EF4B097556E6FC91088 /* Client.swift */; }; - 49A13507D1D9F43234080D95 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B93C9A9DE53DEB2F31BDA4 /* LoggerUtil.cpp */; }; - 49AB6D9F76B71E6A935E2C0D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 49B57CB7A313EB490590E76B /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A79AE45EE8A851627DB106A1 /* SecureTransportPluginI.cpp */; }; - 49BD7A7897FCAC2A93EEE5E7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 4A3A294945A7FDD9CED24F54 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 4B2C2623EEC8E5C2BFFAB9F7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B884A1F2FB9A50957E45CD4B /* Client.swift */; }; - 4B9EC8CDA141BE253929C740 /* FacetMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E0BA05BEC1FC854319EDBA5B /* FacetMap.cpp */; }; - 4BB05660D38E32DE26B7BA65 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A0A21DA17C50EA979DEAAF80 /* AllTests.swift */; }; - 4C14C9BFC25586C41A4A76A9 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C41EDECF5F3943979928068 /* TestI.swift */; }; - 4C17C4DED97FEB26063F7FB0 /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2DFEE2EF4B478B06A53A6CC /* ImplicitContext.swift */; }; - 4C2B1ED6A1D8A8500EDCA660 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE1126EB3A8EAD2D7D819A11 /* CountDownLatch.cpp */; }; - 4C7646CE5741C0A76CBA15A1 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95F67E554DA07E38997B2C88 /* UdpEndpointI.cpp */; }; - 4C7C4F3CCAC6805EB36A3654 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6845B2E29E4080166CD6C26 /* ServantManager.swift */; }; - 4C92BF3D6CA60AFC31866140 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAB33452165797F71F1CF6 /* Server.swift */; }; - 4C99F8480CD7A36ECC2F141E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16670BEFB50A823C040927F7 /* Server.swift */; }; - 4CA2E6BB1C9B771680800EB5 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2356EF1BC9E19D1F6B3C07D1 /* Exception.ice */; }; - 4D5D64A75C3980434AB2B62C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 94B41AC208CDA308A3FF4EC5 /* Test.ice */; }; - 4D804BF060A6B22FD4FBCEA5 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B10F3FF9F7989BA4FBD59F0 /* Context.ice */; }; - 4D82DC24DD531BB15ED1BF7A /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E1D3C9DAC7F79D91E90087 /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4D888AEE4EF4D02301A03775 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 4DB713427F4D4A19C465E29F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 4DBDEF7B37A9CB7729A7C2C4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D32E144F81EE10297B9F1C55 /* TestI.swift */; }; - 4DC34EA67C73B8F2675EFC11 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 4DD9B69BDDBF8BB5A46CF6A3 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B10F3FF9F7989BA4FBD59F0 /* Context.ice */; }; - 4E1A703FBCD554DC34159EF0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 4E2D4E7CE0A879AA898246F4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74EAE965F45B9CED1FE9538F /* Client.swift */; }; - 4E33F382E994614A0F164D0C /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DF17C88033201714B50ED2 /* IceImpl.framework */; }; - 4E45EDB7890B25061718EC51 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CA3048781DE1F85C3C98A17C /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 4E966822BB21CE62BA8FFC04 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 4ED2D0E5E1961A564A3F1734 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76DC4BE1D25DA51A9795D589 /* OptionalFormat.swift */; }; - 4F063F53DB1C3302BF1925EA /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 046ACEB5C9821C9778BD3270 /* SSLEndpointInfo.swift */; }; - 4F362CDACA6A4F005FA0EBFF /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC5BE7A4F70C81BE5E6EFC8 /* Network.cpp */; }; - 4FACC8197FC73AB2D4EB311A /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77C88A641E9F7E5B40D7DCAE /* ProxyFactory.cpp */; }; - 4FB165B39FD4BE9555418386 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 95C4777E39FA8DD4FBD09FD6 /* libIceLocatorDiscovery C++11 iOS.a */; }; - 4FE808C6F932D3CDCAF785FF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45331497BAD84C6969F6C8C8 /* AllTests.swift */; }; - 50014351D7194C3667906706 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42B62A4842207650FD755725 /* PropertiesAdminI.cpp */; }; - 5008ACD8242F55D333EB5E2F /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BCF7B4C0B439955561E8949 /* SlicedData.cpp */; }; - 505E15C5F6979C4B5D44C7F4 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DC843ECDCD1A4BB1CC2B4D7 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 512F6AD6BBE83DA284EAA10C /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33685F9F41A4C56E6B518A42 /* BatchOnewaysAMI.swift */; }; - 5140549133D7AAE81879AA43 /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CBDC7A1A35ED6F24372F3BA /* LoggerWrapper.swift */; }; - 517C213E097EA805EB42AC50 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 51A2E163B4B698455D4EB1A9 /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A283F62CF4F1A840B9C8731 /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 51E2320742DA9BB92DB1FF7D /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F8909AB8A17501B1CF9A101 /* ThreadPool.cpp */; }; - 51F52188F9EFDDECF6B3DCDB /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17D6C3CB35C6DBF607E94B77 /* Connection.cpp */; }; - 520C111945BFDA06E950D334 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A0946E63B4A232965ABDC8F /* AllTests.swift */; }; - 5214EBFFB4433A815A04EBF8 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66B7E30EC0ADE6667DB0718E /* AllTests.swift */; }; - 521998EAA5E5765E18BD08EB /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85842F8C7EF62C5232FD319E /* EndpointInfoFactory.swift */; }; - 528D1BB26746DB6AD909E203 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 529DF03E8414D04402E58BC2 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BAFFFC7F040E1C113E258E /* Exception.cpp */; }; - 52D3B5D9F02F39874364AF7C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 52E43C511C82D7CBFA359151 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A02DA5B2008898710B01134 /* Collocated.swift */; }; - 52EEEABFF9C12A91AAAEA23F /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6ADF01A80939731A6DE1044 /* PropertiesF.cpp */; }; - 531473A933C25F2AFF15AB54 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 532D547FC126A24364C4FE92 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 536C7484247572D001C34904 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = C6C634DF2652DE223BCB1B37 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5371B22F6CCE9185FCF8CE13 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = D1A668F98BF103CE141085BF /* PropertyDict.ice */; }; - 53A573D74AE623E8CCC967D0 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2D1B2204B4DA05CE9C3E0E21 /* TestAMD.ice */; }; - 54214C78E0A6FD97880A71D8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 544C070A5DCB88A320FA6E18 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EC71B2E86EF7591995578A75 /* Test.ice */; }; - 54743BB925951525AFC2116C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 54A008C39AAB15462CE329D4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23BA4FD4F07A1F312BB3804B /* Client.swift */; }; - 54AB94ABC3A65DBAC8C07E44 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA2F00AB997753AF815C6D1E /* Server.swift */; }; - 54B16F863472BFF96BE498F2 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE3A30A75CFFA35A55A81E20 /* ObjectAdapterFactory.cpp */; }; - 54B2EAF2DFD1D8FC06C4B507 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3412FB23BF9F9E5DED5AF6B0 /* OperationMode.ice */; }; - 54DAB5A256868016FB2A32DA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 54F64FD6F39267CD57517251 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F3434C8A073AA109B5C31EA /* Client.swift */; }; - 5506E49CACCEFAE677F57172 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 556A42E32FBAD4D7A4C0DEAA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 5583AB154D7DDDDBFA04D425 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14A15B190451E14716CD830B /* Collocated.swift */; }; - 5589AE26A63644F30937EA87 /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8970C2FBD5A08828E3B03752 /* SSLConnectionInfo.swift */; }; - 55F157BD4BAD3E6539D00070 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 28EBC6B052A9199638397392 /* Identity.ice */; }; - 56117E2576613D74CE1CF107 /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3D99E4B9F11AB36F978CF616 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 5631C818A5CCD0F8BB0C8D78 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 5637DBCB8E014C731F9EF74B /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 67C8D0331EE9F189030CF6FC /* LocatorF.ice */; }; - 56819BB290D5E4675961563B /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 185F5336C6BA21C015B7B9FA /* Protocol.cpp */; }; - 56AD5CF8D50C51DE09F7D939 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 67C8D0331EE9F189030CF6FC /* LocatorF.ice */; }; - 56C91E61A2BD3061CDD2C0D9 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFF40E41BCC43087809AB261 /* Communicator.cpp */; }; - 56D62F3BAA91F2A92CE421DE /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3412FB23BF9F9E5DED5AF6B0 /* OperationMode.ice */; }; - 57108E257AC9261FB5069FB2 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAB3F147F35686A47C5CD40 /* Util.swift */; }; - 57394B0C2E0152E0F8A867DD /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 5770297878F818824FB0F3A3 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27CB991118839FEC4D2839FE /* UdpTransceiver.cpp */; }; - 5840FAA7AE11007663733FA9 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CDD050FB49289A8E9B2D9942 /* PluginI.cpp */; }; - 58486D02688602A294423B0A /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 142F873E2849078287FD8CC6 /* TestAMDI.swift */; }; - 5867966004E887A46E989D4E /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3BCF7B4C0B439955561E8949 /* SlicedData.cpp */; }; - 58B952769390A71EBDD0C341 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB58FB2F6F3C1FCCCCEBAE8E /* IncomingAsync.cpp */; }; - 58DC5CBB2737AFE30034262B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCD0FE357CCF946FEC6A719F /* AllTests.swift */; }; - 58F7829D5B7D2D081E54E1F0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 5900693A6AB1C523A4C0B775 /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2DFEE2EF4B478B06A53A6CC /* ImplicitContext.swift */; }; - 5A43F8500EC2BA74655B90A5 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C6167F6A18ADBBB27B0D7E4 /* MutexProtocol.cpp */; }; - 5A9741F8CD8B13337EB9E62E /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 09FF2464AB6823CA9BEF4264 /* TestAMD.ice */; }; - 5ADEEE5D14E8BDB82E80A7D8 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 421D20F7517BB9BEE5FAA9EC /* IceGrid.framework */; }; - 5AE2F848C530FB6551F1852E /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C42A7B28B41EC36B0DCB6EC3 /* Router.ice */; }; - 5B5A2421B5B621AC96402316 /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2FED7F2609ACAA2CD5B5A7A /* ConsoleUtil.cpp */; }; - 5B6158D963B0531BCF4248B8 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75B0E1B932B09C64904B3E75 /* LookupI.cpp */; }; - 5B8468A69958D2DE0A3526C3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 5BB7BCAB674BEFF6F96DBDF9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = AE6DD4490D2D6A6C80BA2B03 /* Test.ice */; }; - 5BBDD261CAB46A3060BFD55F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA4A6F897448CBBFD0BD60EE /* AllTests.swift */; }; - 5BECA3996112695D2A5867F1 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A79AE45EE8A851627DB106A1 /* SecureTransportPluginI.cpp */; }; - 5BFEA505326A872656ED4437 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 5C018E7FFE19E85FA3B2D645 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85842F8C7EF62C5232FD319E /* EndpointInfoFactory.swift */; }; - 5C255E9BAA7F209F6275162F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D24B423F747A922D48AC5A49 /* TestI.swift */; }; - 5C2B3276EE2B6F1626D32A7F /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E86412341EF16ED15F320F0 /* WSTransceiver.cpp */; }; - 5C43941F99E2DB7A35407251 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10CC54DEDC82E4004A463A6E /* ServerAMD.swift */; }; - 5CA70177D0663EC590625BF2 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3035A059080501D7128194A8 /* Object.swift */; }; - 5CC32B7355A7A8F030B5528E /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B01172F1BF8FD03715DB2993 /* NetworkProxy.cpp */; }; - 5CC58D4B6354F3E1A21F67E8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 5CDDEA39DEF6FD9296219CE9 /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = A53D4CB88BF6A93411E641BE /* Communicator.swift */; }; - 5D25642BBB7353961CAB1508 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 625CB263F55FD97BE49F1676 /* Test.ice */; }; - 5D2CD739BD63AFE1C0E63757 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 49A523EF80AE64499CA309E4 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 5D63E7D5C868278390A7A1A2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 5D717520A5B0695BF7FAD58A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BF71CF6804DEA75FC0B5376 /* Server.swift */; }; - 5D8A07D833E1B8DFA57B7977 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 5DE99190F12D2FDFDA5155C2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 5E25C3B565A8AC9FFEF70046 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 67C8D0331EE9F189030CF6FC /* LocatorF.ice */; }; - 5E5D0CEF32C64D8E95C81414 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2B630607BEC188670D6FC3E /* BlobjectAsync.swift */; }; - 5E6ACA2706577F86C6BD63A5 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 09FF2464AB6823CA9BEF4264 /* TestAMD.ice */; }; - 5E82CA6188D96C081EF45408 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6A409D5F984C8F0BE68A557 /* Client.swift */; }; - 5E8C6BFCB387FBB78736292C /* certs in Resources */ = {isa = PBXBuildFile; fileRef = EA3623F9F4A1CA94B541C05C /* certs */; }; - 5EA0F37DD629EC567B15129F /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38892522F82E945C6362F32C /* PropertyNames.cpp */; }; - 5EABAB5360975F5829E476F8 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E90675902D436ECB7A6A3254 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 5ED85E8756E6F6FCE7AB131F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 5F35E99184FA870E5AC4AB97 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 250B1B2824E81544BD56F671 /* ObjectAdapterI.swift */; }; - 5F4B13AFD4F4C3A48241FC6E /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = CDAAA865B397968BFD6A854A /* Forward.ice */; }; - 5F4EC81F155C63AE71DA4EBC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9359C59FEC8D1829DE6D27FA /* TestI.swift */; }; - 5F5DD0241DF82B371615C585 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B24CB74D03AF69953C447D0F /* ServerPrivateAMD.ice */; }; - 5F7405090E42F479AF17700E /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE62615CE42FC045EF43AEF4 /* Service.cpp */; }; - 5F8DC9BC982EE523DA9D8766 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = E70F095DEAD8B11B20898CC9 /* TestAMD.ice */; }; - 5F937EA835BCC77B20C626E3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6AAC9E3757E6E91347477B /* Client.swift */; }; - 5FA0A02D28ADAB3D5E61E348 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 57A4D45FAFD10790DA8D9A1F /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 5FBF101240C63396564E6718 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 5FBF441122219C4FD390FDC2 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE54115AF58BB636AF34BB12 /* ConnectionFactory.cpp */; }; - 5FF391C20C54394DB3D86808 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3A30B1089D1296C6F7CED1C /* OnewaysAMI.swift */; }; - 600BA0D84010746DD0E9EC2D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A0946E63B4A232965ABDC8F /* AllTests.swift */; }; - 600CD1BE6E0045B42B373E58 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 6086C68313FA6145E6D237F8 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 60898D1865AE07145800D081 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D30D88901D3A373A29D0400 /* TestI.swift */; }; - 60DD96FD244FD0741DD95F24 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB6A7AF6D1EC2B8A12F9B498 /* TestI.swift */; }; - 6142CBE33598143F7E6660B0 /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FA690BDA022D1D71A2563D7 /* LocalException.swift */; }; - 61B702BA9B69ED3FA0FF7760 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 61E590176025B655D7D601F6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 6216950B6FB989931E5A9E3C /* Connector.mm in Sources */ = {isa = PBXBuildFile; fileRef = DFD8B204368D01D576A6D7BB /* Connector.mm */; }; - 623F39E393886AF831EA98AD /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F60A221428806098E72B6E0 /* ThreadException.cpp */; }; - 628CFB1D21465A850B0D7B6B /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD2B9AF2609CCA9D0A31526F /* WSEndpoint.cpp */; }; - 628F48D4E6BFC373A16A108C /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E72A0E60CBE957A7F56F405 /* ClientPrivate.ice */; }; - 629B6F5581825451F7F5A870 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = C90960781F3A665A7DA951D9 /* ServerPrivate.ice */; }; - 62A9B66C77B451017FBAC5BE /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 98C07D589EA8C56AA7625DFF /* IPEndpointI.cpp */; }; - 62AD30AA53D68BC91B6B5849 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5E9F23C8F79D563547DAC808 /* ServerPrivate.ice */; }; - 62AECF0269720B620AA90985 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 62E212EBB89B1C54D1388CA0 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = FACB1E582A8BD8FE6C86628D /* ObjectPrx.mm */; }; - 6307B756FE5932F18859CF89 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 6333E0DD25B14D8989A8DCDE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 6338CBA516209C121FDA650B /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 454EE69AB462CEE4589AD002 /* Convert.mm */; }; - 636058B38D26215D4559197F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 6375E0034ABCC71DCBECC9CD /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2FED7F2609ACAA2CD5B5A7A /* ConsoleUtil.cpp */; }; - 637A05DEAC546C9A60608EE2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 63D16072AED3AE147381CE71 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AEDDE79BC9FA0E1503ADFA4 /* RecMutex.cpp */; }; - 63D3B7F3882221E421677E8B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 63DFEACB857637B9D01E68A9 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 962818DC4825125D91BF9095 /* LoggerF.cpp */; }; - 640BBA69538EC923DEBF9176 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C42A7B28B41EC36B0DCB6EC3 /* Router.ice */; }; - 640E79FE3FBF38DEDEF1F282 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0213BB5F4C1D9ABA471C52F6 /* CommunicatorI.cpp */; }; - 64143455BDE06346EAD7BCEB /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = EC1C464D877DF1AFBB2D6425 /* Locator.ice */; }; - 64889AEA2CB146664C0026B9 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75F1365F7D43AAD84AF3A0B4 /* RetryQueue.cpp */; }; - 6495EC0EDE4571DDFF313273 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4B9B6BEB54580685FFB367A /* ValueFactory.swift */; }; - 64BE5003052F0E83B3C62B28 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 64CBD3511C268A802D59D189 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 14798648A0D51B7C430E22D2 /* Admin.ice */; }; - 650FF9B1F05C613F5E891E04 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA253345ADC3ADEBFD80630B /* TestAMDI.swift */; }; - 658E953F2F7AA565D624AD4F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 142F873E2849078287FD8CC6 /* TestAMDI.swift */; }; - 65B0F15FE3B9E2CB9F68E30A /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6031880CA768302715AF710 /* ConnectionInfoFactory.swift */; }; - 65D7EA02A4B921F598B562A9 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 667157F9CC50DAD96CB28E92 /* Oneways.swift */; }; - 65E49338ECFDEA0C116D189A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EB97D29C79CEB3038E5C4D7 /* Test.ice */; }; - 6616E34A8BDAF5171D724ECA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A974FBBC3239FDDEAF0562 /* TestI.swift */; }; - 6661B71F344661C555F85944 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD45215B101FAA41346DA5A9 /* InstrumentationI.cpp */; }; - 66B425BB90DDB3D844C0C2EF /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41DFD78B26A3BC5ABCE708CD /* OutputUtil.cpp */; }; - 66DCFCEEA2A6AB4F308E36BF /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C6ADF01A80939731A6DE1044 /* PropertiesF.cpp */; }; - 66F5B176FD71BDF0C3EFDB56 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 076A243C9F5B4CB2ECFA7F51 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 670626BBCFDFE03F667E3C9A /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAB3F147F35686A47C5CD40 /* Util.swift */; }; - 673123448558FCA3858EF864 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C0E20E45D9B95CE8D5BAD4F /* AllTests.swift */; }; - 67601A5D8785A20A51D4B55E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 67630E929629A32EC18439DC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 038169BDD15B56BE2FDA00AB /* TestI.swift */; }; - 679FD085476C3BDD61F8EC33 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6485A6AB6C5A9D405C99A002 /* ObjectAdapter.mm */; }; - 67A6B6A49B853ABA830AF8A5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 682DE9532CA5DDB619A48621 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6295A1BCB275C79338F200E /* InputStream.cpp */; }; - 686D04AF82FFC94C66549276 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34B79084F15B3CCAE0CE07C7 /* Server.swift */; }; - 689B1899EFD0C431F156F3B5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 68B180EC4F4C0BA3B62C1540 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = D1355ECA7BE2A8D99B53FA4E /* TestCommon.swift */; }; - 68B2BA23F0F35E129978B5F4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A2CA18364FCF5316BBC2888 /* Client.swift */; }; - 68B432AEA1EC2D4B78155227 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 68F968637BFD8C3016FFB69C /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E759E64A1C646292070D481 /* WSAcceptor.cpp */; }; - 68FF4B2BC3A945BB42E22CA2 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFA89E93E746AF249D44A7F1 /* TwowaysAMI.swift */; }; - 693CD15F67760B4DA2CE6053 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3D29EC47A6324333C0CB11E6 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 695D928CF1FAC9C00C744D09 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2CFE66499402454014FEC81 /* DefaultsAndOverrides.cpp */; }; - 69D5A3BEDA72FA46A6439692 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 69DCD5B31BA8B48B4CD5C96E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 6A516CC46100B663E06C1165 /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD88371730890D163B36559 /* EndpointI.swift */; }; - 6A722D0F8437802A9FF5F1A0 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4C6167F6A18ADBBB27B0D7E4 /* MutexProtocol.cpp */; }; - 6A7F2FA3EA062C51B5F43F35 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 84129524C4F70B842B955026 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6A9829DEA46623BD16726791 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A02DA5B2008898710B01134 /* Collocated.swift */; }; - 6A996C997A788A2BECFAE4A7 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C42A7B28B41EC36B0DCB6EC3 /* Router.ice */; }; - 6AAE2D76080DF8913A9B80C5 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F7687536A74185F0859012B6 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6AC5237EB937FCFA6EED8B20 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECC72E0F8FB0FAFD7B7C988B /* AllTests.swift */; }; - 6ACA72C9B69CC1F61D5E5D03 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6ADB87452B2DC5910DBA1FB2 /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75152288E3A29AD5C1FC467D /* SecureTransportUtil.cpp */; }; - 6B3424D4D3B94B73C9D6F8E1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 6BAD6436031478B99C4429DC /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5947529BCEAEF6399F92ED31 /* ValueFactory.cpp */; }; - 6BEEE4882666D947BFB6096B /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3AEDDE79BC9FA0E1503ADFA4 /* RecMutex.cpp */; }; - 6BF8EFBD8F8BBFD6F0DA48DA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C33F6088CA51225D531E88F /* Client.swift */; }; - 6C0ADEB674F965917278BED1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F04BEF80E053F20F7E0FAD9 /* Server.swift */; }; - 6C389215B5256EE33235522F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 6C6592040394BDC44BB67919 /* TcpAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0671FF56B2EE882549AC8A9 /* TcpAcceptor.cpp */; }; - 6C8CC9A40540D2AF01FDAB97 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7D20169169F829071B5057F /* TestI.swift */; }; - 6C999EA122D1E21F123720C0 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA86F3F1E7780A996CC6C670 /* OpaqueEndpointI.cpp */; }; - 6CE9F7E7C0345CBF66D21E50 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 6D14D7C99FC199D24FA51EC1 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC45412E37CB39AB1326ADB0 /* ConnectionI.swift */; }; - 6D55911EB4D6369502FA3C64 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 6D6F4BD5950E3ACEDFF34418 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 43EA623C9F4C7F919225D487 /* Client.swift */; }; - 6D7B67131EC5E96486DDED74 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BB5410444BF6B374021801D /* Collocated.swift */; }; - 6D9EA906EF8F5A3DA536CDF8 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8EB4350103B673F2C8492C /* Server.swift */; }; - 6D9FAF41D28BA00D81C8C933 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 6DBAD591469FDA7B5DD25BD6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 6DD62BBF88AF2014E5411470 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 6DDB6BE5A83D565F5FF95989 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 73563B2BA9D73A31D245E208 /* ServerPrivateAMD.ice */; }; - 6E659272E8DFABA0531B9AD8 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = E93A41E857493EAD3A037003 /* BatchOneways.swift */; }; - 6E689AEBA2AD0D68977FD8F4 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5E9F23C8F79D563547DAC808 /* ServerPrivate.ice */; }; - 6E95618E4E327AADC73DAA4B /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF929EBD1CFFC7D11F369F19 /* ServerAMD.swift */; }; - 6E9F621C9F1273BE1AAD4DC7 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50A02E35C0D489EE9FA527DA /* Server.swift */; }; - 6EA495B791122414DA65A0B6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 6EB0D8FFD0D85B5455C91122 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A9FEE9EA5FF7D393AB623659 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6EB3E2E8935C9B3815032799 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6BC1DF9A06ADA22DDBBE3DF /* ImplicitContextI.swift */; }; - 6EF44DFBDD26786A4A9A2555 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 66267617EEBA8219ADB97A02 /* IceUtil.mm */; }; - 6F4F0DD71F8774F49B168CAA /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ECB72A94A18685EA341E3587 /* LocalException.cpp */; }; - 6F6989A22CC77E752AEF95C2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB6A7AF6D1EC2B8A12F9B498 /* TestI.swift */; }; - 6F91756B29F75E6FC1EF182B /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E415E99C053809FA95D690E5 /* Timer.cpp */; }; - 6FC71A301B27CC7FA0027BCB /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C22AA887D26C5BB0C12CA79 /* Value.swift */; }; - 6FD371425BB72D269EE12541 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 6FEF7D9A8BE01B48EFBEC0D9 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D8BAD556F7D98625DF4BC58 /* TestAMDI.swift */; }; - 6FEF923DD090237AEC7A66B6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 6FF2D48A8780835AACC3A9C3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 6FFB2048A3B5F037803EA0A1 /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2F15183B4084729299E75DB /* ImplicitContextF.cpp */; }; - 7039A0DD5C960D83433009E7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 704AA66EA49BFE92C6D27D53 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 7085FB1B5DD93FF7D5425659 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 70E48A57A4CE155B13F2D2C0 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC9ED7619A57BEE47972336A /* RemoteLogger.ice */; }; - 7114B554E07379417D79F37F /* Assets.xcassets in Sources */ = {isa = PBXBuildFile; fileRef = E3F7F6D02B6B524CA6F63378 /* Assets.xcassets */; }; - 7148836C749DFCC362FAB952 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 716B296D602451B28CE1A50A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14C28AE318E4928F506C915E /* Client.swift */; }; - 71D20DBE6F86053842DFA945 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DA45D6310FBF8AD14941A35 /* TestI.swift */; }; - 71DD58A398CCD9F26FE1C593 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE3A30A75CFFA35A55A81E20 /* ObjectAdapterFactory.cpp */; }; - 71DFE91EA67F80324548EEDE /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB3683C61806347682B83157 /* EndpointInfo.cpp */; }; - 71E38652DAAAE468B4F5D1DE /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 06BC492F3CD439079FA4A3A3 /* Server.swift */; }; - 720690A2A0D8822482C2871F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 7226788512FE1A3CA3381CB7 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A924B67C028B028C7286DCD /* Transceiver.cpp */; }; - 72290912BE223BBDA60669D5 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1F66CE853CF87B6E6AFD974 /* ServantLocatorI.swift */; }; - 7236B5FC12DCF970791C68FB /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF613DCAD6834FD2362A04D5 /* Collocated.swift */; }; - 724592DC350ABD84D931CBC7 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = D9AA20FA76371E7525561E7D /* Version.ice */; }; - 72538008B2024D5389B810ED /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52AC5AE6897741655049E5E1 /* NativePropertiesAdmin.swift */; }; - 7264324A55F9D60774E48A54 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 72724AAED07393017DA2E4B4 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = EAAE931013BC01817AD3CC59 /* Initialize.swift */; }; - 729B83B75BCBAAA42853B61F /* TcpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2CC6CDF02346EA5B8E08F76D /* TcpTransceiver.cpp */; }; - 72A67D3D4C8E462425976C8D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2F0731B6D0D6CE30A96EC68 /* TestAMDI.swift */; }; - 72AE996A1D27983D643EB5B2 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41E7E4C4720DDBD98AF18C6E /* ConnectionInfo.cpp */; }; - 73252725553E41DE974A8DEF /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D23FA024DB9F5B209956E3AE /* ArgVector.cpp */; }; - 732EEC5F38214B80B3029ECA /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED718874B7F4760BB5D8C7E /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 733894B1F9ECC44CDBEDDA5D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 733F5D6CCC29733F17CC4C75 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1F66CE853CF87B6E6AFD974 /* ServantLocatorI.swift */; }; - 745BBD3251D6F36F3C73FCB2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A3682E61FA973F15D18272C /* AllTests.swift */; }; - 74BBF559788F38EFFD1CECBF /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C63D63D5D753960C536720E5 /* Security.framework */; }; - 74CDC0ADB3298AC8D206F5AB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 74D1AED362D03626DDB0D4BC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 74EEA06536EA1A195190E34D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D584721E70A4A59344385873 /* TestI.swift */; }; - 7502DFC6567D80087BBB791D /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26A022C4D272BBC1296FC3D2 /* EndpointFactory.cpp */; }; - 7510971A916C26392E8F9242 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C4E244B53E759A5893125C /* InitializationData.swift */; }; - 7529DF5EC3A573C1F5A57CCD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DA45D6310FBF8AD14941A35 /* TestI.swift */; }; - 753296DB0C528AD21D7084DB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 755E30741A5375F97E6DEA55 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC8188172D41ACF2F15B43E4 /* PropertiesI.swift */; }; - 757930B1E1C0A8CA12581F04 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9AA8D845DDA4210612874AEA /* AllTests.swift */; }; - 758B01256B0D206D57B11E69 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = D1A668F98BF103CE141085BF /* PropertyDict.ice */; }; - 75B96EBB6F3DDE2B7C0DBCC3 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 98C07D589EA8C56AA7625DFF /* IPEndpointI.cpp */; }; - 75F30C004B2F25D519C47F38 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F170CA23DF8AE7150B4E3C7 /* AllTests.swift */; }; - 762EA6A98E277953565F6546 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 897297169BA7DBDB87CE1088 /* RouterF.ice */; }; - 76549B7578F472275E4FC7C5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 111B44D212156B847EA01C54 /* Client.swift */; }; - 76652B1402ED8732DA88B162 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CDD4B038FAF18C50CBAD7DEA /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 767FEDB9DB388B148494966D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 768E6FAEC07373059F5BCC19 /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6099501585EAF4710021FDE /* OutgoingAsync.cpp */; }; - 76F2B1F114F64B64BE97E952 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2CFE66499402454014FEC81 /* DefaultsAndOverrides.cpp */; }; - 7717F7793C0F21796F41F956 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 70DC389A13F881E48EBCA25C /* Server.swift */; }; - 77340EFA3358764C61B58EE2 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C9B36D91B9D68383E5F105B3 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 773BAA6EE58A449019A00228 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FA2F4951A0016B4BB9B3FDB /* BatchRequestQueue.cpp */; }; - 774062F51601DD6E453EED97 /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 979C34B2FF762DA581B94308 /* IAPConnectionInfo.swift */; }; - 776EC492F46ECC93E7D93962 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 77A2D62712DE37F0627A138A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76B982881849592FB664DF9C /* TestI.swift */; }; - 77A5CF43AD41BCA4A888A8B7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E0EBA030768D756CAB63E5C5 /* Test.ice */; }; - 77B008C744A3F4471D354722 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = BEA90AA9491C68F453CC2B76 /* IceDiscovery.ice */; }; - 788025D5E22507C8A3F5F8A2 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30F7F6A5BEED228FBE431E55 /* Collocated.swift */; }; - 78BD5D69F6C3714C5B11F84D /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82C71BD0A7B648E78E1EE63D /* DispatchInterceptor.cpp */; }; - 7909DF54B34512292FC8714E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 791B8558F906D965D910AACD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29DB74C0FB62F0BC5680DEB6 /* TestI.swift */; }; - 7935C60B0B3EAE2FC93D1D59 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B35DF098E417B51793D521BD /* TestI.swift */; }; - 793D2653743411E9D3F7BCE7 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21D9F7A7A3EBC41F86994383 /* AllTests.swift */; }; - 79682239CB6E1929C2E53C70 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 797961729B1F5DA11839343D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 7981DF68F72D63D1139A710C /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 189BE24954425D454F4EF9FB /* EndpointInfo.cpp */; }; - 79AE1F0C7EF27BDD0B3CC058 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 79BA71A3D0D7A0C4438AFCC1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 79CD4C58C8ED9B9750C761B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 7A14131D304679B10D74D40C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 7A27232A716835C8F009BA84 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0D598D4EEF2DB8A4A7C61F8C /* ServantManager.cpp */; }; - 7A2D160A875B9F5987A9EAF5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A51D3574B7582F500ECB8109 /* AllTests.swift */; }; - 7A5B9211E41C7C70C9EA4203 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 86FF409A4D607F7C3F700F8B /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 7A96FF1140F5489EA38AF239 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 7ABA73EF40B18D54673CB39A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 7ADC79C350F2E2510B26CB6B /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A70BF6FEE8DA0A4A9AA500A /* TestAMDI.swift */; }; - 7AEA9447315B84ECD967D4FE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 7B19682B6AD1DCF3991F8517 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = C4E592DCBE9E01D01056C207 /* BlobjectFacade.mm */; }; - 7BDEB5DEB09165F64C6C07FD /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 7BF5473C48A73DC69BBB89BC /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5DC993B644DC3182951F6D8 /* AppDelegate.swift */; }; - 7C0C240377298BDC8BCBEF60 /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 686977AFFABF87664221CF35 /* SysLoggerI.cpp */; }; - 7C2A370357696F6B596F372C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC8C1D2215CE75FCBF715EF9 /* TestI.swift */; }; - 7C512513AB84FD9E60F7B65F /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 401595CAE0B88CFE2DFDB61B /* CommunicatorI.swift */; }; - 7CD487DE45A3B3E1A391B7CA /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 24DF17C88033201714B50ED2 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 7D05EEF60923170104AA54CC /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BCAFC8C49E5187C1AB25D11 /* Properties.cpp */; }; - 7D26D53D80612BA8A62738F5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 7D365680A99C915C14C63E50 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D78A96F0E7C0185091A1D216 /* FactoryTable.cpp */; }; - 7D592CF191CB0BC1ADC529D8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E0EBA030768D756CAB63E5C5 /* Test.ice */; }; - 7D984768EFCEA0886D12FA18 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 534A5F8BE7C459A933D4054F /* Glacier2.framework */; }; - 7DD3BD2691D94949D7D01576 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A974FBBC3239FDDEAF0562 /* TestI.swift */; }; - 7DD56D2E94BA1FE4303FB7AC /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4412FE2740F051C95BB99EEA /* Cond.cpp */; }; - 7DDF90E9B4C050EA119512F9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 7E1FDB20BA664CDE8A934529 /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17967AA9D3379BC4CB647F1E /* Current.cpp */; }; - 7E67FDD847BC7CAAF5F0D384 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0CB402D9967B00BE923C2D03 /* Test.ice */; }; - 7ECD6EF02F6E4CC676FDAF93 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2FA2F4951A0016B4BB9B3FDB /* BatchRequestQueue.cpp */; }; - 7F0ED9DBB17293E639B8FB00 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = D19C24D6D98060F5D3DC767F /* Server.swift */; }; - 7F45B7591AB3408F290A4556 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 7F4771F8B5533DDC50215F00 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 7FF6AA022A606590AB6597CF /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3CC388484314A4D11DA2CEA8 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 804E1AD6D9889C5714DC2C91 /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8B8D3FB17F7288D5096BD8E /* Current.swift */; }; - 80AA56660C754B715AA9C10D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 81546A6B27867D58D0599956 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33685F9F41A4C56E6B518A42 /* BatchOnewaysAMI.swift */; }; - 818A10AD2015C7A542C018D6 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01CF59A0A4F2EFCB462BC0EA /* ObserverHelper.cpp */; }; - 81A12799AFEAFBA7C1E76DD1 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F19682F788B50D8AC95E275 /* EventHandler.cpp */; }; - 81D13B4C44E5FA860A2C9CFD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80A836681C0AEC83887E925E /* Server.swift */; }; - 81DDA9D18B42EC07A3E80190 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 311B69EB6D89618997B1887B /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 820DD7926788B37D5A447D6C /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B79277683CA9B3529AC906D /* Glacier2.framework */; }; - 8213798EAC108F906AE79A0F /* libIce C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FA0861C1DB82FD5CE33C4D6 /* libIce C++11 iOS.a */; }; - 82568B1E0768996DF95D174A /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76DC4BE1D25DA51A9795D589 /* OptionalFormat.swift */; }; - 827191E1C238486EF5E065A2 /* StreamTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58E70EA4C8E27D76F40CE7E8 /* StreamTransceiver.cpp */; }; - 8278369E116B478C0C3BD62F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 82E1FB20B81554EB0579165D /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 534A5F8BE7C459A933D4054F /* Glacier2.framework */; }; - 83084EE5A541E1C5C37714F7 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 454EE69AB462CEE4589AD002 /* Convert.mm */; }; - 831804C89C9481C2723E1196 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECC72E0F8FB0FAFD7B7C988B /* AllTests.swift */; }; - 832F01A6561FBB32980CC6BF /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC42579A7430183C78C09375 /* RequestHandler.cpp */; }; - 834FED3CF89A71D45CCBDDC7 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 07361A4BE6DC9A43BBD8E849 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 835728A3D06C44C39FD08606 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A3682E61FA973F15D18272C /* AllTests.swift */; }; - 838F269A3ADAB1F7F3E7D8BA /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2802EE505EBBF7589ED5F209 /* ValueFactoryManagerI.cpp */; }; - 8404A03B78E12AD7E72A8E26 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 748F318E593607DC22BF7F52 /* Test.ice */; }; - 840CEDD6341336C27FA54D77 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 8418AB88E0B8DE29B22D0695 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = B995EA78E5B5397A8BF50B54 /* SSLInfo.ice */; }; - 8430C762B8FE5C9EE6441F35 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2506792F31CBED83E4851 /* AllTests.swift */; }; - 8444B6C4594C0AB372C9DDF9 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDC5BE7A4F70C81BE5E6EFC8 /* Network.cpp */; }; - 8445081EBC7EDE698FD2B85A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 845478051C8826B4A74F84CC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 84C48EE0E81ACDF73715C222 /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 802D024C9FA3113780412F5A /* PluginF.cpp */; }; - 84D001C720E2696986CC1027 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 84F3976F01C452C7D9479E60 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8474C6715BC5D1EC8BB795D /* Instrumentation.cpp */; }; - 850711A8C9C2ED89CD5B0B5C /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50E681C36DEFAC7C6ADA5E59 /* Plugin.swift */; }; - 8525CC22BDC944B6AA085EAF /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 534A5F8BE7C459A933D4054F /* Glacier2.framework */; }; - 852C28BB013CD52187FE8690 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A6EA1C8C1024620CA648E9E4 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8575CD8F32C46126D1E39812 /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8B8D3FB17F7288D5096BD8E /* Current.swift */; }; - 858DC15F9B2FF9CB6E0A89B6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195A241E0300852E69AADB88 /* AllTests.swift */; }; - 85B1901D48C275EC86F201F2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 978BC6A012115CFED653D3D0 /* Server.swift */; }; - 85E533D61579351369A05963 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E343993404F7D8A254C8648 /* Thread.cpp */; }; - 85E6A52C345AF901D0F9C50C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 85F5AB8D2A22F639CF428B04 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 12D5D56C338B4BC5F6CA83FD /* Session.ice */; }; - 861C54C7D63637D4F67B1E85 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146B256974FB51DD1265678F /* Client.swift */; }; - 865A1B726D4ECAB10E15E44A /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C750448EB098CAFBE6C4C28 /* ConnectionI.cpp */; }; - 865D5D07D61DC8B5DAF0214A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 86AFC684D615382232AD1B10 /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DD42CB75FDF93FE8F76667F /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 874E780F88CCA8B1260EB299 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1EB568811E2BF696EC8E3B97 /* BuiltinSequences.ice */; }; - 87C0ECC3EA60FCB87FE0ED4D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F16006BDECE6873730A91890 /* TestI.swift */; }; - 880F379822BB5C13E69F42B4 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98C4E244B53E759A5893125C /* InitializationData.swift */; }; - 882353E902DCAD597C0483E7 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1EB568811E2BF696EC8E3B97 /* BuiltinSequences.ice */; }; - 886419C47956CA047CD9499E /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E8DA336FE4300536CD71A43 /* AcceptorI.cpp */; }; - 88C0DB7E0240317107E247D5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 88C697319E0F54EA8231822A /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DBD797522D96E525024E477 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8934ED7B9A151D27B8CBF5C2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 89B0F53E602380C5B5A5CF12 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D23FA024DB9F5B209956E3AE /* ArgVector.cpp */; }; - 89D41341A9EFCCE03B3F7A8E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8381BC5D10FECBA8FD0504E0 /* Server.swift */; }; - 8A08D4DDB9DA04A11C04F515 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 36157027B4A9EB7D3EC1C47C /* Metrics.ice */; }; - 8A0E9689DF60B6DFFE523ACC /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CA697889B116706378E57DA6 /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8A6E7BB41526289D5F6B4300 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23BA4FD4F07A1F312BB3804B /* Client.swift */; }; - 8A91CBE82793E8C014A99E14 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 8AB3DC10869B5BC5BC9D3058 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 097513BEF3C0FEF963ECFE13 /* Collocated.swift */; }; - 8AE8A3EA45288995BBEAC728 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33D2A20C5AB946EF734F130C /* ValueFactoryManagerI.swift */; }; - 8B3DD63D8C51F99DFAF767B9 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41EACC2EEAB15487754D6608 /* EndpointFactoryManager.cpp */; }; - 8B541DC2DD11DF5448D959AD /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFA89E93E746AF249D44A7F1 /* TwowaysAMI.swift */; }; - 8B71CF3E64FA78D0F82D03C1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 8B8544CFBF47CF7E70BBE795 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE54115AF58BB636AF34BB12 /* ConnectionFactory.cpp */; }; - 8B9FD642C27C480264127259 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD3C85DDDFFF996CE0DE043E /* LocalObject.swift */; }; - 8BCE0BFA7B4FC3E00677D32E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C83F4865F188690FA0ECA48C /* Test.ice */; }; - 8C2C73130A6C55087B6CAEAF /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D92B81AD14B5BB3BBC7F274 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 8C946B95110FECB30E186FF8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9E3EE46F30618B8E0211F6C4 /* Test.ice */; }; - 8CB31627772612FE7BD3FFD0 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = F080418FA4B75A04B9A8F7D7 /* Logger.swift */; }; - 8CB5D2E76BE257B5A8A314C3 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5EEB85F7C36B02C635BBFDB7 /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8D0452F5624C68CC86FED2DF /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 802D024C9FA3113780412F5A /* PluginF.cpp */; }; - 8D323C09FAD9499457AC5354 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 8D4DF33DF85202DD3E19BDA8 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = D69366BB47229C2CA21FBFAC /* UserAccountMapper.ice */; }; - 8D94198614D8FF4501AF71F2 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C956C7213BF93EBFF72A6A7 /* Mutex.swift */; }; - 8DC0569BE9ADDB7CE6EB6738 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5FA5B650BE7B3E7E2911DFEF /* IceStorm.ice */; }; - 8DE5D8C01A986D8594384249 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 250B1B2824E81544BD56F671 /* ObjectAdapterI.swift */; }; - 8DF13BC213E2B67C75F9D86F /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4763D1EDD6ED9EE3A2F1DBE9 /* OutputStream.swift */; }; - 8E4031E07B970D31EE5B3331 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA86F3F1E7780A996CC6C670 /* OpaqueEndpointI.cpp */; }; - 8E5F256FA7D5732F28DB13E3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 8E99FA7758FB19DA7365CB36 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E6AE5573D03A0091F921C2EC /* Shared.cpp */; }; - 8ECC5043ADFCBB42B8B127AD /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF1988317337A4631AE99897 /* Connector.cpp */; }; - 8ED4CAFC07A170859F5D9778 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0213BB5F4C1D9ABA471C52F6 /* CommunicatorI.cpp */; }; - 8F22E92EE14D8DC60925152D /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = CEF85180CA61C2F9F98973FA /* EndpointTypes.ice */; }; - 8F40670D876C261D0DA5DCB0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A415328DFBFF6A7A21BF4E81 /* Client.swift */; }; - 8F5E597F698D6EBD828D9307 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 944865D9D3ED0F6DF013AABF /* ProtocolPluginFacade.cpp */; }; - 8FCA1EBD21615208D8554639 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3519616430E9681021457E94 /* HttpParser.cpp */; }; - 901CAB6FEE7B29869F1169C7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 167F66F4D885478055ED967C /* Test.ice */; }; - 902238FD54DB50F05B7849A6 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D1E8FAAB47BD0BAEDF4D2FF /* PluginI.cpp */; }; - 9027FE9E364D4D7674E94300 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D32E144F81EE10297B9F1C55 /* TestI.swift */; }; - 902EF59BB283679E24C2031D /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB3C3EF735A9A35FC0C0EA3D /* PropertiesI.cpp */; }; - 903CE9504EF3F5BD90B8A68C /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B0F40C37A8439A683B8C97C /* SliceInfo.swift */; }; - 9051B6F459AD22A378D1B8CF /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD03EE61CEA9E337ACD6C1F7 /* ServantLocator.swift */; }; - 91045A0691CA371FD7ECC9CD /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B582F6609244629C95C2BAA9 /* ReferenceFactory.cpp */; }; - 915CE019781B5752BACBB90E /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F33423CE6255B0CEC51423F2 /* Util.cpp */; }; - 91C1D67F6DDDAB12E88FC47F /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7B1EF955F70B0A021A4F2C7E /* Process.ice */; }; - 91FD9BD5F8C6D18658648BFC /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C42A7B28B41EC36B0DCB6EC3 /* Router.ice */; }; - 9236D6EA55B1AD6A1A64BA7F /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CF810C336E0D98C916A36DD /* Value.cpp */; }; - 92741634E1622A7B86CA835F /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62456291EF0548032B7E3DA2 /* Collocated.swift */; }; - 92B91BF428BD098E60290FF1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F74B28F3482CE65CFFC31D5E /* AllTests.swift */; }; - 93226176A7454027D65A5725 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 933C4E4461EC1FED94FD1043 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 934D35669F0EF4D1B24435D1 /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 142D0BA7BE87AFD5C7CE9BC7 /* CommunicatorF.cpp */; }; - 93679A1204183B62EDBCC6B4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B96E6391FBDC6A572CE2CA8 /* Client.swift */; }; - 936EF2C82850CB080D34C1D6 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5117A0E6AFC1C47DD12C3C /* SecureTransportTransceiverI.cpp */; }; - 939D9E30245AC2CDAB1D6803 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = EA3623F9F4A1CA94B541C05C /* certs */; }; - 93A55E1B9AD305331FDA0BEF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54C9E37E3AF9656347BFE470 /* Client.swift */; }; - 93E8AF7113201116A41D42C3 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3168F7C0D127A7C48C30D615 /* Logger.mm */; }; - 93FA6A382030BA3024CCAA11 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49E3772BC00C40292C6EE74A /* Server.swift */; }; - 941CE7AD33C9B9417E0B2662 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CBB1409BA01AD2ADEC3BD9D4 /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9441D9A7C32304086B2FD1AA /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B67A4218F8C7CF2FC0CF13A /* Server.swift */; }; - 94465BBAE06E9881283D5804 /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = F33FEFF5D565C07C45D4FFA3 /* Properties.swift */; }; - 9456FD1AAD9BE2C4C8A8DF26 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8A849DF6717BC2390E7810 /* ServantLocatorF.cpp */; }; - 9490EB181944859AD2A05CFF /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82C71BD0A7B648E78E1EE63D /* DispatchInterceptor.cpp */; }; - 94D596C24BD7B94DAC14962A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 94E2DD51BF36AD3B802DAD7F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 950CA11ADBA51CA774702F3C /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DD42CB75FDF93FE8F76667F /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9513773958363A140F6716A6 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = C69B109A7B6681550B30E551 /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 954B21BE2403593B19A532CF /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41EACC2EEAB15487754D6608 /* EndpointFactoryManager.cpp */; }; - 955DE37C5B489F9389F121C3 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BD7F723468E384E171830EC1 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 961AB23D782BDDBE36841BF4 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8A247D6B9D6442FA04FBCC83 /* TestAMD.ice */; }; - 961C1FCDE87115C18CFF487C /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E72A0E60CBE957A7F56F405 /* ClientPrivate.ice */; }; - 96473BF281BACB2C744117B2 /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFD4D738B0672E237D0EB820 /* Incoming.cpp */; }; - 964914477260480508A5E8EA /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DABE1EF2249C07674CDC42A /* Incoming.swift */; }; - 96541ED42B4D94224653EA55 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6A8EFB4A80C533DBBE27643B /* Key.ice */; }; - 96A76C5CB4A38EAF7FA8982A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 96AB95EDD74B6731901E693F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 96E2D842FFE1A9BBC7F19577 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1E68540A1B43B1CBC5942095 /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 979D038CBAFD3AFC1E6463D4 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = DAF14D8D3CD8494E5BF9201E /* TestAMD.ice */; }; - 97B27C46B287F42F7908B9E3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 49E3772BC00C40292C6EE74A /* Server.swift */; }; - 9801A9293D5D8E5A5097B580 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 49CACF5578779D192C643FD8 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 981C4620EC22881BF225CCA7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 76B982881849592FB664DF9C /* TestI.swift */; }; - 985F6DA719A9E600C113541F /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = FACB1E582A8BD8FE6C86628D /* ObjectPrx.mm */; }; - 9860E4E0EEC3C946A0C0E4AC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 11EE85F933402720B1EF6CF7 /* Test.ice */; }; - 98871133F5900071DD8EE28A /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E759E64A1C646292070D481 /* WSAcceptor.cpp */; }; - 98B15B84E98C19DFE3515DD3 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EE2506792F31CBED83E4851 /* AllTests.swift */; }; - 98C3784C6E9F157DE99EE873 /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 27341FF2E126E6E82D9FAE9B /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 98DCF70AD8E7B955DF9474E0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 98F5ABA80021BD988E6B7D09 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4622324B5106A88CB515CB4D /* ACM.cpp */; }; - 9905262444F730559DF66B2F /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3168F7C0D127A7C48C30D615 /* Logger.mm */; }; - 996A1510E80EA705ECAF5418 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF293858815BF38D99B997A6 /* Test.ice */; }; - 99720FCD65864098F14B73D6 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB36820A5AC833BC1253F30D /* ServerAMD.swift */; }; - 99AF794B9A8920D623E97F2A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A2CA18364FCF5316BBC2888 /* Client.swift */; }; - 99E0F23E92A9DF68271CEBA3 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55625944FF564A3D943D23D5 /* Blobject.swift */; }; - 9A12413C10010CB6707C825A /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 667157F9CC50DAD96CB28E92 /* Oneways.swift */; }; - 9A20C8D52FC5AA74F246ABCE /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - 9A3B82CA2D453D12053C8704 /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E17813B2E31CDABA2621FA2 /* FacetMap.swift */; }; - 9A7BE1BDE33DB1B3D3D87A0F /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB3C826EC5ED81E33C86DFFB /* LocatorI.cpp */; }; - 9A9ADC3E0E60EC1D3EE85F49 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 944865D9D3ED0F6DF013AABF /* ProtocolPluginFacade.cpp */; }; - 9B12B3ADD1C0205D1D8D5E71 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6A8EFB4A80C533DBBE27643B /* Key.ice */; }; - 9B19CF489D9085EBB8810289 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 9B22F056CA2515C1F7CDFA3B /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1F66CE853CF87B6E6AFD974 /* ServantLocatorI.swift */; }; - 9B380593D8E18ACBEF5AEE2B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F6AAC9E3757E6E91347477B /* Client.swift */; }; - 9B723F3658960090D6568889 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 9BEA38704ECB66BD778A2447 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - 9BF9371AA952161F68806569 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF929EBD1CFFC7D11F369F19 /* ServerAMD.swift */; }; - 9C4527758666B632E42A9C56 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2781460B247EAB453369D750 /* Endpoint.mm */; }; - 9C4D1032747EC6F01089B6CC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 9C525F5D657452E38C3D5299 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DF17C88033201714B50ED2 /* IceImpl.framework */; }; - 9C5B35B2E08E127107F88A98 /* LaunchScreen.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = D9FBC3E66B0DE3441B70C975 /* LaunchScreen.storyboard */; }; - 9CA049F065B15AE0B15B5695 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 9D18690D8FE6E650B37AD616 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = CEF85180CA61C2F9F98973FA /* EndpointTypes.ice */; }; - 9D28A3434AAC71CEA97807DA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 9D2923F830F3C632490940A9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 9D516BC9467BC72BAB014BC4 /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 574A31600701185E9FDEC087 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9D5D518AA0ACFF12A7400F22 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9A3965D141BF41DF1F0C551B /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9D67421DEE41F68F2C19E948 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D0E1E196E9F210FC9000AD /* AllTests.swift */; }; - 9D723CF9BC2631B6EB097A8E /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 142D0BA7BE87AFD5C7CE9BC7 /* CommunicatorF.cpp */; }; - 9D7B94ECA18113CAB00FC07F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - 9D848053113889B88C70553A /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 29CCBA8E43B636B9DDCC8A12 /* ConnectionInfo.cpp */; }; - 9D9EFC1A14EC81F44E536F9B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 9D9FE9BC4A8B0F105A7BAD69 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9F109EDD838DBC121C3F0D3 /* UUID.cpp */; }; - 9DDF7C7D0390862A81462257 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7166379D55E37E1E0AA4876 /* TestAMDI.swift */; }; - 9DF30E51840EEAAA60203C68 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - 9E3D0C2FB66AF07D4EC1E04F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - 9E6D43949E7E1BF6AC09C8CE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 94B41AC208CDA308A3FF4EC5 /* Test.ice */; }; - 9E82B600E5E113537B22EBA3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 9E8E53FE156010BFF5DC1269 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = D9AA20FA76371E7525561E7D /* Version.ice */; }; - 9E8EEB6D0B9982CF2B85E629 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - 9EB301C314B9198FE32FD807 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 21D9F7A7A3EBC41F86994383 /* AllTests.swift */; }; - 9EE0DAABEEFD5FE35FEF08D2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - 9EE6B27F64AA5EF8C112BAEA /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC73C4C73D34B73CEC2085EB /* PluginI.cpp */; }; - 9EE78E0C45344D67421A498E /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27CB991118839FEC4D2839FE /* UdpTransceiver.cpp */; }; - 9F004E41D6BDE32BA292933E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE3BA5B003AC1B18DE241794 /* AllTests.swift */; }; - 9F8D650B3D4930591928D56E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - 9F96FB1AC8D2B8DFCF10F98A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 643804113C7CACB4A7EB180E /* Client.swift */; }; - 9FF538B4B53D6DCD3F98F01D /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E8DA336FE4300536CD71A43 /* AcceptorI.cpp */; }; - 9FFCEDCC2B8FB7EE98BAF9F1 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA253345ADC3ADEBFD80630B /* TestAMDI.swift */; }; - A060F0A9FC0512B17CAD612B /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E41487C8DDE61F3EB934BB5 /* PropertiesAdmin.ice */; }; - A0C27378E1B1A8B6E7F53FA3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - A0D923B9AE28943985BA59B7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5139077FB7FF05473C48016A /* Client.swift */; }; - A158F1CDFAFC7013F7804A6E /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC61BD40D7CBC56C18393B3 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A1BA85247442A911E549835A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - A1BAF3C47BF99CC8438D4CD1 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 7DD30443F9ACFA3122DBBF34 /* certs */; }; - A20D130322181E5C41D6CC13 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C0E20E45D9B95CE8D5BAD4F /* AllTests.swift */; }; - A2432B19209846FFE4676F41 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E03E5416C65A53BFBA1435CB /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A2579741B1E2D5FBF4EBBE54 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - A274CC18CCB43E5D7BFD5D99 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07A3DC28B900D1AE3A048739 /* WSConnector.cpp */; }; - A28677345C2C65FF7867309D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - A2B37F59D33384ED6B36F274 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - A2F5FA573C1C9002B4BEC41A /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E343993404F7D8A254C8648 /* Thread.cpp */; }; - A2F760364919EF6F4E348913 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F163CAD96DA4D8B35B75F74 /* CollocatedRequestHandler.cpp */; }; - A31C1D418A2198B829983D1C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - A333CE56CB206BDCD787603E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - A3475F49025F15C524D53179 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - A34D5957B8FB8F1FBA842AAA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - A36233A2763B8BC7D1B6A37F /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A214B333A9CBC9A12B4FE7A /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A370A7450A94173E573658F4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34E29AA242C9C15C1FE20DF0 /* Client.swift */; }; - A3F8FE48F5B7B04B7F6690E5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EC71B2E86EF7591995578A75 /* Test.ice */; }; - A40AFFC90C4B026AA758281E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = AE6DD4490D2D6A6C80BA2B03 /* Test.ice */; }; - A41431463DDC6FC91024841F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - A4A5227CFA6260C743EB789A /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD2619C8768BBC9876A5A684 /* Object.cpp */; }; - A4E92F800C86833DDC400DE8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - A527D506656BD2B71FE0732E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54C9E37E3AF9656347BFE470 /* Client.swift */; }; - A54D65F3B03FAB3E6852494A /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E831000ECAB4DE416B693C /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A572F585119FF19DC390E7A5 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6B08215B9CC0C2ED40F9DF81 /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A584615D4D4DAA509EECD495 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F8909AB8A17501B1CF9A101 /* ThreadPool.cpp */; }; - A5C5E49D2B0C8493E7BB4559 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - A5E1BE1AF679632A95DEC255 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6DF2168E2E451864F9F40F88 /* Client.swift */; }; - A670A7FD8910B66230DA1E0A /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9527D4E7D5C57B3AC43961A6 /* Instance.cpp */; }; - A672343C82932AB55640994F /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 12D5D56C338B4BC5F6CA83FD /* Session.ice */; }; - A69001503A900CAC227CC4BF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83915D8BA4859BF0DBD7B548 /* AllTests.swift */; }; - A707DD230F8734C7F12B204B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - A74704E1DB83BB20AF9338B2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D2DD09C36EF45CDA56DB948 /* Test.ice */; }; - A7499F6CB60A34312DD84BE5 /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A214B333A9CBC9A12B4FE7A /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A76DFEFC41A137F8D721538A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC8C1D2215CE75FCBF715EF9 /* TestI.swift */; }; - A7C12C970B7ACD3599EA6AEC /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A44522A036AA7C188A725680 /* Options.cpp */; }; - A7C5B5FEDAA21672F8C61E43 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - A7D46DA49FB421DB90C6E482 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = C69B109A7B6681550B30E551 /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A80310A30820EC1EF7487225 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4067439731844BE6F7E4526E /* AllTests.swift */; }; - A84B19BF293B8A41E9EECC80 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8423266467D889E92F786035 /* Client.swift */; }; - A86238468E4D90D665A15185 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - A864FEE23DCAEB7E12AC7020 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E805BEA400CFDA8CB025129A /* IAPEndpointInfo.swift */; }; - A88E2F3800752D1A3CE311CF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A51D3574B7582F500ECB8109 /* AllTests.swift */; }; - A8AD9DF44BC94C8C2B9A23BB /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83915D8BA4859BF0DBD7B548 /* AllTests.swift */; }; - A8D685465E5BBF2AF42BB211 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9E3EE46F30618B8E0211F6C4 /* Test.ice */; }; - A8EFFCB99179BEC32F927CEA /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB847D66C5E3CCA14A7B5EAF /* Endpoint.cpp */; }; - A8FDE3B374515C263547E679 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - A92ADF8377CE2E6C9CC0D845 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - A9547E7ED2757918249F172B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - A96ECF941C1FDF6E90D97BDE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - AA05BF94BB96F7E8581ABE1F /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 67C8D0331EE9F189030CF6FC /* LocatorF.ice */; }; - AA0D81E5A41D40DA7A27A340 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7B1EF955F70B0A021A4F2C7E /* Process.ice */; }; - AA17BC6FF6BFB11F9B0B13DA /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D1E8FAAB47BD0BAEDF4D2FF /* PluginI.cpp */; }; - AA38608997EF3E146838B881 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - AA393F0E38A3D252F2CD17F4 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0D30BA12F527E21D48DFD791 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - AA54E977253EC98DDD8BD88C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - AA91A2B6567AEB077961E5F6 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 14A15B190451E14716CD830B /* Collocated.swift */; }; - AAB6C59A833BB6AD153CC222 /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45ED38411CCEA7139E95679A /* Instrumentation.swift */; }; - AAB6DF67986B8C40494AEE5F /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 88FF1FF8A94040F7F602F0C0 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AACE1ED21DE14950EA113371 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFAE60227D1047550CEBCDD7 /* Server.swift */; }; - AB76AF0EB53544364B7DECEB /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8204B0FCE0AB6F68921A3D62 /* CFNetwork.framework */; }; - ABF1F14CA23F74EE1FC3EF9A /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E831000ECAB4DE416B693C /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC02FE95EFC5686EFAA7B40D /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBA6B0FB94F3D71BFF5C870C /* SecureTransportEngine.cpp */; }; - AC3FD6E42EC63CAC2C50F51D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF005D4DB20602C4F3EF5AA8 /* Client.swift */; }; - AC737CC3A09ABBFF39ACE432 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53A3ABE0E265451FAF1C27EB /* MetricsAdminI.cpp */; }; - ACC8CE04F6BB1515A3DB10FD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E7D20169169F829071B5057F /* TestI.swift */; }; - AD03F8467655D60D27488B03 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 594301575AB6DA25D7CE8A90 /* Reference.cpp */; }; - AD271662474FF1AF926FA5A5 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2854FD4F4A1EA874F91B9E87 /* LocalObject.cpp */; }; - AD3C3BC1CEFAFF12AEB68131 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD85785801C128F8130987ED /* Base64.cpp */; }; - AD5B0226FC549A8B3913B06A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 195A241E0300852E69AADB88 /* AllTests.swift */; }; - AD5C040B37B1962127D419C2 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B3D6DF29D8786877FD2AA2A /* ImplicitContextI.cpp */; }; - ADAA89F1CBAE08F2EF7FF4AB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - AE433E70A892618F06AA6C81 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3292F3020C6049CFEA22E87 /* RequestHandlerFactory.cpp */; }; - AE8670D45B8B1C618E1A4B67 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B67A4218F8C7CF2FC0CF13A /* Server.swift */; }; - AEF6BBC11BAD4B8723801030 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B3D6DF29D8786877FD2AA2A /* ImplicitContextI.cpp */; }; - AF627E5E2C3D04E8C03BCAB5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9FD3392522AC4868A78AD1D /* AllTests.swift */; }; - AF81152ACBDBAE4766D74D5F /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F1D304290414990EF0C45B8F /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - AFFE91854CBD01580D687BC4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - B0965A59BDE65C9728FD02B0 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 097513BEF3C0FEF963ECFE13 /* Collocated.swift */; }; - B09848C7AE8340D78EC672D5 /* Main.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 5635B405A32F12DFF335A1ED /* Main.storyboard */; }; - B0EE8700A9F967B3C7C24C70 /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26C0F7B6692E6D473315573B /* Buffer.cpp */; }; - B17CF9F23F30C2161AF9094B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - B1D624747520479448B10B12 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - B1FA9B40223782BB1F8AEEF0 /* libIceDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FEB12180C1DB3A1694DE7788 /* libIceDiscovery C++11 macOS.a */; }; - B22E8C70DBE266B4631811B3 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = 769101BD07C4F85CBCF6EC73 /* PermissionsVerifier.ice */; }; - B2434136999150ECCA42352C /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A7A335019D6FC3FE103657A6 /* IceStorm.framework */; }; - B25FD68CE19CD758606D888B /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = E93A41E857493EAD3A037003 /* BatchOneways.swift */; }; - B29A04540175D15722EF1B78 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = BEA90AA9491C68F453CC2B76 /* IceDiscovery.ice */; }; - B2E3898355F27A73B5DDFB63 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A02666D7734DCBD68E093E74 /* TestI.swift */; }; - B34ED408956561DE1ED521D4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - B3AE93ABEF60EEC61969A25A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 643804113C7CACB4A7EB180E /* Client.swift */; }; - B3C2F72C4257BEE92B88777E /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 420A6EFB17E04444277813A0 /* UnsupportedAdminFacet.mm */; }; - B40553C47ACFF50B1A03BFE4 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA3048781DE1F85C3C98A17C /* IceGrid.framework */; }; - B42A4CCA471AAB21797987FE /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - B435EC2927C5DCD496121654 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = E4AC7CF06B64C796FBA28CC5 /* FileParser.ice */; }; - B46349D03E19955C04A734E2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - B48BE73831CE373A9DF9D965 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 342085FA07DF4FC8C9D4BF6F /* Initialize.cpp */; }; - B4DCF8CDE62435400E8FBE2D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9FD3392522AC4868A78AD1D /* AllTests.swift */; }; - B4E6691CE1A3A474B8C91537 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6513CE00B5AF115579EADDCA /* Client.swift */; }; - B504B615CB1841B247288771 /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45ED38411CCEA7139E95679A /* Instrumentation.swift */; }; - B53AD59106D14637B5D4939F /* libIce C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 223E7C12AA05A09CB932E9A1 /* libIce C++11 macOS.a */; }; - B58F22D92AA4DAB98534102B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - B592FE7885F0CEFCAC0C72AF /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6ABE37B5A790F5FD8B6CAB5F /* ImplicitContext.cpp */; }; - B5D2C3F003E2F153A3A32471 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 336A43E8BEB51DFB4DA5FC77 /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - B5F10537E79E3E0967102ECB /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 07361A4BE6DC9A43BBD8E849 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B65E1190C1C5A9BE72A66A54 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB847D66C5E3CCA14A7B5EAF /* Endpoint.cpp */; }; - B66B5115A094C24893FB4C04 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4869F95A4F0E2F0EB4A21C9F /* Test.ice */; }; - B68F1060552CA2AE0F6E85DE /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF610E634A5865F4DBA3B2D5 /* SlicedData.swift */; }; - B74EFEB96D8A5C481860A4E4 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E8A849DF6717BC2390E7810 /* ServantLocatorF.cpp */; }; - B768D67A94A2CB09D10E784B /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2854FD4F4A1EA874F91B9E87 /* LocalObject.cpp */; }; - B7BA9CC6203BDFBCDDBFF7A5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - B81A1B07314842540288C9B7 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA10DF21AA7BD6CE2F6005E2 /* Instance.cpp */; }; - B81F85F33E43DA3D33BCB15F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - B826A690BA30120F9CC1AD9D /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7B1EF955F70B0A021A4F2C7E /* Process.ice */; }; - B83825E31B129CAFD79A5D68 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD45215B101FAA41346DA5A9 /* InstrumentationI.cpp */; }; - B844CE5EE59AF4504EF3634E /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C76356862A29F54F63817D6 /* ConnectorI.cpp */; }; - B8693EBD54ED020ED4BF2EC7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - B87F3F0E6804197D142CBCB0 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97480A250E2000119ACBB3C8 /* Communicator.mm */; }; - B8AE9DE0804D4116F935391F /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3412FB23BF9F9E5DED5AF6B0 /* OperationMode.ice */; }; - B8E85F00C4E82AAB4D2708D8 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6BC25BEF6CE461EDD453F60 /* ObjectAdapterF.cpp */; }; - B8F695938B0F375FE135BD0B /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = CDAAA865B397968BFD6A854A /* Forward.ice */; }; - B92A6DA461E16B7CE231FB84 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2A9F1D1BFF611AEC3B1F525B /* UtilException.cpp */; }; - B9B095DD6CA80060213D39F1 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7687536A74185F0859012B6 /* IceStorm.framework */; }; - B9CB61390AE16B3D433332CA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - B9CDDF1B7034EFACC66A9108 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83BB4164CB853953B834AADD /* EndpointI.cpp */; }; - BA305816C390A3A64960461E /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7570FBDCEB1BE973537F63AB /* Connection.swift */; }; - BA35A643AD0ACCA603F76F43 /* StreamEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD1A7FC63C9D08DB4F5D1072 /* StreamEndpointI.cpp */; }; - BA3679BF55ED14BED93BDD24 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2B630607BEC188670D6FC3E /* BlobjectAsync.swift */; }; - BA5CE77E34644AFCBFBEDCC3 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 00D3B3D1EB8A265FFAA1C424 /* TestAMDI.swift */; }; - BAD2C655F757D6BD2453ECCA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - BB2B4762F3CFE8A596B49D86 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 75F1365F7D43AAD84AF3A0B4 /* RetryQueue.cpp */; }; - BB70D759CF03516D3D1F06A5 /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C4D7B1A0626DB0DDFD4BD4B7 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - BBBA7F8603B6F37E96D9D1D9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - BBCFD056E87FA7FC55B934DB /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 253491E3FEF80ACD0B5781B2 /* libIceLocatorDiscovery C++11 macOS.a */; }; - BBFC294E675D3202F0F92269 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 631E368C13A3530681F08764 /* LocalExceptionFactory.swift */; }; - BC0B0B742862293CE8A7FC27 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = 769101BD07C4F85CBCF6EC73 /* PermissionsVerifier.ice */; }; - BC22AC23910A679961D993DE /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B10F3FF9F7989BA4FBD59F0 /* Context.ice */; }; - BC478633F3A1996A530B7D52 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - BC5E2E01798607C917907EA6 /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6099501585EAF4710021FDE /* OutgoingAsync.cpp */; }; - BC7BED7D9996F4E585DC2CBE /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 46F5AE3157A6E271ABFC0425 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; - BC943670354AE7D6338D01A8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 167F66F4D885478055ED967C /* Test.ice */; }; - BD11B9A6A01F2FC7721179EA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D24B423F747A922D48AC5A49 /* TestI.swift */; }; - BD18DB18357587C956797FA9 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9366A44467F809D54376FC77 /* Collocated.swift */; }; - BD1B9508F15DD3CC1892752D /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 11A152F03A7151A37E5BCA0B /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - BD33731DBE7741426C693477 /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E17813B2E31CDABA2621FA2 /* FacetMap.swift */; }; - BD78DCCF396BCE188F4B0B1A /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A924B67C028B028C7286DCD /* Transceiver.cpp */; }; - BDA1714B4FED58EFEE24BA37 /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF6E2A9B9FB41D79F32978A3 /* Exception.swift */; }; - BDCC0AC1DA115CB3614B0504 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - BE0FE599DC2602A847CA17A7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - BE1C7F0FF4EA6DE979F08079 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - BE2BED71069ACFB75C29A452 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = A10DD7682E3D7D09B6954580 /* Twoways.swift */; }; - BE54607B55BE1C617CCA7107 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7166379D55E37E1E0AA4876 /* TestAMDI.swift */; }; - BE68B16F3FB8BD246ED70E1C /* libIceDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 81BBD19500FFDB5290F6EA34 /* libIceDiscovery C++11 iOS.a */; }; - BE6CAA94F60A27AA76B7AE3A /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 56CD9F58D686B914CD4E7062 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BE6F6F17038C0A5673231E53 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5117A0E6AFC1C47DD12C3C /* SecureTransportTransceiverI.cpp */; }; - BEBAA999B81C489163598205 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33E2B8C087CCBBFCCFE0EDBB /* Server.swift */; }; - BEC37351B5B8BBA7E96B2D81 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAFFEA2B5A8AE9C11E531B18 /* SSLEngine.cpp */; }; - BEF2DB12CEA4E08291814A1D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - BF3729AFEC4F1EE51CC284BC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3EB97D29C79CEB3038E5C4D7 /* Test.ice */; }; - BF46EBF5DCD87A39A3BF02A0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - BF5EDC7A264BA5419CBF2B90 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23F1A85D0FB546A7190E150D /* TestI.swift */; }; - BF6C6AF4A43F6C44625D9FF8 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = C1E1D3C9DAC7F79D91E90087 /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BFA0072B8E21A59128984713 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - C02F06752A1E86F26086D1B5 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F3C0BF03857AE7150714D5 /* RFC2253.cpp */; }; - C07A766A35CC4BF62AE148CC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - C0BE6135D81BEF99F0087DE3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - C0D43CFE1C742221E857AD7F /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C0D62D661F5E0AD1B09E9BA4 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = D9F8D61F43A53ADB59E8570F /* Router.ice */; }; - C0E3867ECF86D7FCF77590F0 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 36157027B4A9EB7D3EC1C47C /* Metrics.ice */; }; - C1065F759AC7D5A4B13007FD /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - C13B3DAA486AA7C5BAA5DCF0 /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 652EA402A805AA335ABDD34A /* ConnectionF.cpp */; }; - C1545BBF3A2657484A03518E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CBA3784B8DB45FE8C568F7D8 /* TestI.swift */; }; - C192191C81A3A966EB376B47 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0D8E0D429D160FEABB28CA0 /* Collocated.swift */; }; - C193E5163ACD506CCB92ED55 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 66267617EEBA8219ADB97A02 /* IceUtil.mm */; }; - C198718BB744F40C54F3A64A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - C1F0CEC092A82CE3DF40BA61 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - C2378419F25DA874C89059AF /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F6BC25BEF6CE461EDD453F60 /* ObjectAdapterF.cpp */; }; - C23E92B3FD8A38824AB01380 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = AD895AEC9101644623712329 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C2816BCA9F3D060A0D93D5C9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D711F8F37F1A2CC99B3F53F /* Server.swift */; }; - C2ECFD8448A468C9658EAA0F /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 00C3014A2CFA76B443D73F46 /* Exception.mm */; }; - C36CDFF0E1D702EF6CF87184 /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 652EA402A805AA335ABDD34A /* ConnectionF.cpp */; }; - C38239E64DF0C66513FAF557 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 421D20F7517BB9BEE5FAA9EC /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C3AE8A6B6FC2E0F57DF11419 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - C3EEB7A1CB84A823093BB1B4 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = A67B37CC0489F03CF069A65C /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C3FAB3D9162FD66A78705FBE /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37D892DE62DA65AD17EBD8AD /* MetricsObserverI.cpp */; }; - C419AA3B3AD0E57511730659 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - C44119D1C9752D20F369FE1E /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0C6AA868B958A4B62ED7C5D5 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C4472E083A6F1612CC707204 /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4412FE2740F051C95BB99EEA /* Cond.cpp */; }; - C48F59AC2E24C0C9A48240A1 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 983721C2494AFCC1CE30946C /* FactoryTableInit.cpp */; }; - C4EE39B3A8457563577B0CC7 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF613DCAD6834FD2362A04D5 /* Collocated.swift */; }; - C4EEFB68C2F8C09391C3C55E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - C532B6FFEAE6482B2A5CAB11 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - C5607791FD8EF1721EA141E5 /* Transceiver.mm in Sources */ = {isa = PBXBuildFile; fileRef = BB42DEB40EEAEA9E39A059D7 /* Transceiver.mm */; }; - C5D4ABF5136B8C325C9FE1B2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - C67610A065799574475FB801 /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFB3505005131A44524F72AE /* Plugin.cpp */; }; - C676B071A8F6FA898A150F6D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - C725254B05FA996BD1DB0F40 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7B1EF955F70B0A021A4F2C7E /* Process.ice */; }; - C75DA494B35D01D89F060183 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = D69366BB47229C2CA21FBFAC /* UserAccountMapper.ice */; }; - C7C28354C04AFDD7D854B7E7 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F29465792F99C245D88FAB64 /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C846EAA23A73D4CBBEDA0295 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4413F36CC165568AA6327BD2 /* Test.ice */; }; - C86337CAB9F726ACDE94B191 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 26A022C4D272BBC1296FC3D2 /* EndpointFactory.cpp */; }; - C8830FEE234385CDB4858949 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D30D88901D3A373A29D0400 /* TestI.swift */; }; - C8A7D3CD82E5C8514CCA53FB /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF59D1D7D0880B663094A951 /* AllTests.swift */; }; - C8C2673E9360DD0D6E03CE00 /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 510D1B93F9F1E35D60692209 /* Endpoint.swift */; }; - C8F977323DC79BFBD223F982 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - C94B51A0B305CF9201D7D627 /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BBF8FCE266097F67D2ECD57 /* EndpointF.cpp */; }; - C9AC814E4A7B08C6421D35D8 /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BBF8FCE266097F67D2ECD57 /* EndpointF.cpp */; }; - C9BB2C427A631BB249F59CEE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF293858815BF38D99B997A6 /* Test.ice */; }; - CA197C2D3E813E31CEF00A99 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8EC08889BCEC40A288945740 /* Proxy.swift */; }; - CA399459F3F7EB569A7630E4 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 897297169BA7DBDB87CE1088 /* RouterF.ice */; }; - CA6F1D3EE17127498C4A7403 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - CA96B89239F6D6E748D6EE83 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A6AAC7C362454260CA2B0593 /* Test.ice */; }; - CAAEDA2C24A16B43E15B7191 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 36157027B4A9EB7D3EC1C47C /* Metrics.ice */; }; - CAB5AA630D46A6730CA7F480 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6EDB0B02B3ED8BEB70182162 /* Client.swift */; }; - CAD257FEF15978E8B057E1AF /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E10876EAB4A47A8DFC9CB0E7 /* LoggerI.cpp */; }; - CB1CFE85F8ACCF42BDF8017D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3635819F6819934528B2BA8B /* Client.swift */; }; - CB4653936B09FC4F2465A845 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - CB80FD67325978394B00A514 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - CBF35B53951DC590502423E4 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD85785801C128F8130987ED /* Base64.cpp */; }; - CC990722CD87F945B512F95A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - CCAA2D7B3E2791E83BBB7CB0 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5C22AA8771C989C5BBD131D5 /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CCBE583DD738AF012CBDE5A5 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9FA81E47474D356CBCF7789 /* ServerAMD.swift */; }; - CCF0AD1D543E82090B0E0033 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E41487C8DDE61F3EB934BB5 /* PropertiesAdmin.ice */; }; - CD336A100DC34A7A1FC69CE6 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A80F7534B35B773563630E1 /* ClientPrivate.ice */; }; - CD4893563F1B6949A91540ED /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DC843ECDCD1A4BB1CC2B4D7 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CD5F1DFC8A4B46B28307340D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CCD0FE357CCF946FEC6A719F /* AllTests.swift */; }; - CD7FAAC7D9ECE2CE2DA8C383 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83BB4164CB853953B834AADD /* EndpointI.cpp */; }; - CDBF98D9568C5997E795EB3D /* TcpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F3831ECBF61E1F468E14056 /* TcpConnector.cpp */; }; - CDC6B5300B2BE7330E359757 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5258134D3A215F2466435990 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CDC738D1D942B9E23A4E7B34 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F038B1EA12BEB61CA662B52 /* TestI.swift */; }; - CDE8D3337091AD557E0BD71C /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C143ED3B8F13A61B4DE515A /* StreamSocket.cpp */; }; - CE11E91F7170904F47127228 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6062E695220FACFAE9E172A /* Test.ice */; }; - CE1F9B9B68787DA2E410529B /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32A4EEF0B311A639C5DB129D /* Connection.mm */; }; - CE23B4A0202816CF9FF1ADB1 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E3CDD73D8E2EF9035ABD5D8E /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CE2779944FA767DA126FEEA2 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3F1911BAB92A957302833169 /* Metrics.ice */; }; - CE5739B43B4A98CEAAAC9BDA /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = C01B21EF5B58D1BB8B436416 /* EndpointSelectionType.swift */; }; - CE7119D9E754E22EA7E06064 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DBE10FD0363BDE5EDFF0F511 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CE723FB6C45113E43A4396D0 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EC5830B2180DC75DE4E4E8F /* CtrlCHandler.cpp */; }; - CECC3B46D342E0CF40FC68CF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - CED3722C6B58DA53D25EDE26 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C4D7BABAB3FF83E286B743F7 /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CEDC4388FB28B2F0B37E94E4 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA2F00AB997753AF815C6D1E /* Server.swift */; }; - CEFDC06ED34D07354537D918 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = C4E592DCBE9E01D01056C207 /* BlobjectFacade.mm */; }; - CF1F1FFB6EB4493CE7A124AB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8381BC5D10FECBA8FD0504E0 /* Server.swift */; }; - CF260D7E63D0F4D4611F6D19 /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 401595CAE0B88CFE2DFDB61B /* CommunicatorI.swift */; }; - CF34A784D725AE5D7CE920A1 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DE62615CE42FC045EF43AEF4 /* Service.cpp */; }; - CF54BFCB2521295308295A11 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - CF5A468179D2BAFC7E3AD8BA /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C2D6095118702AF4F895B01 /* Test.ice */; }; - CF6A492243557E571E4A9EA3 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 28EBC6B052A9199638397392 /* Identity.ice */; }; - CFCFE754D33DBDB7B8D98D3E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0540AD3E250E11B403EEABA4 /* AllTests.swift */; }; - CFD4F84B3C8A532C0023E9B3 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7B0D1B5B22833D175EEBFB78 /* Session.ice */; }; - CFE9CD976A02AFF717ABD140 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B582F6609244629C95C2BAA9 /* ReferenceFactory.cpp */; }; - CFEE6DED2B07A573C128AC96 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 748F318E593607DC22BF7F52 /* Test.ice */; }; - CFF37FEB720497989956480C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - D0355A4DBB5866600C927AC2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A0E69CF15D312799D1B24169 /* Test.ice */; }; - D0364F3F425C395537197FD0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - D0396ECA4780124C6733EC59 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7EE5328C7A8863943281E59 /* StringUtil.cpp */; }; - D043B23BA2FC13AE4E368662 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2C956C7213BF93EBFF72A6A7 /* Mutex.swift */; }; - D071F9CBEFD97BBF0D30F4FF /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A7A86F3A81CCB9DB5D71756D /* Proxy.cpp */; }; - D088AC610C4A760618EFA0F8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - D0B5756C2FCCD4E18739D694 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A80F7534B35B773563630E1 /* ClientPrivate.ice */; }; - D0EA2E874974C7B2F188258D /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = E910A7E27BBF0701EED9D16D /* PropertiesAdmin.mm */; }; - D0FC5AF30A531A8BDDC6A038 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832678821CEC317EBA1C6F2D /* UdpConnector.cpp */; }; - D11D3A5D7D988F009427AFB3 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68EEAD6D4327F2D31CD9F050 /* ServerAMD.swift */; }; - D132F621FDC83E99EE584EF4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - D1A4554A0940174619CB9DD0 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D92B81AD14B5BB3BBC7F274 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; - D1CB05D680B7F86C29D438B3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B3CD69D0F2518B0505945D1 /* Server.swift */; }; - D1FA9CE5AD29F87058BF2A3E /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B79277683CA9B3529AC906D /* Glacier2.framework */; }; - D2182EDB5F424F3BAF7F9031 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDDC0839C27127CD64828388 /* ServerAMD.swift */; }; - D22E021B3ADEDD6A76A4BEE5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDDD6119D93F5A4C9BA2C1A5 /* Server.swift */; }; - D22F8701F71682C99F40BF7D /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF859A3FB3C6011A75051175 /* ObjectAdapter.cpp */; }; - D25324AACE8C147D1A94A12D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - D293589566F6DC1DA7E2D9FC /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = E805BEA400CFDA8CB025129A /* IAPEndpointInfo.swift */; }; - D2A03376CAAE2E3F6D8B1FB8 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F711FC1FF1A09C9363807725 /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D2BB4405992C4142FEB3CFC3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - D2CBF14D9C3D0941A1D2CCD0 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F7687536A74185F0859012B6 /* IceStorm.framework */; }; - D2EA037F2876A602F8496B7C /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CC922FE8D3EAF73CEDB3CF7 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D31ECCBE357E0E4942051DB5 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CC42579A7430183C78C09375 /* RequestHandler.cpp */; }; - D397F74BCFC93ABF1778F5B7 /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17967AA9D3379BC4CB647F1E /* Current.cpp */; }; - D3DC99A7D77A0D5587926A92 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - D4047AE7CF0C9800829F0186 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C21F81A0DECE41C24F04C63 /* Server.swift */; }; - D40D1AAB0D13E3933F6F77F8 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = FFAE60227D1047550CEBCDD7 /* Server.swift */; }; - D47AD7BBF93ED8CBB32A861D /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB3683C61806347682B83157 /* EndpointInfo.cpp */; }; - D485D659F29206FE35E13F72 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - D4A2BECB95664D2B3EF8208B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 95851E43D0C4D60F6E643BAE /* Test.ice */; }; - D4BBA566C6E2E548C48E42FF /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0D8E0D429D160FEABB28CA0 /* Collocated.swift */; }; - D56236C58D806BDCDFAFB55D /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 83EAB33452165797F71F1CF6 /* Server.swift */; }; - D6BA33D6493921BE20C7E0FA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - D6E870244D71267F0C5F4CB7 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DABE1EF2249C07674CDC42A /* Incoming.swift */; }; - D73659AB3A5511C3B86289DF /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30F7F6A5BEED228FBE431E55 /* Collocated.swift */; }; - D7437639BB0E590B7E1BF6A3 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B0F40C37A8439A683B8C97C /* SliceInfo.swift */; }; - D7C0797E9DAD699A850A51BE /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = EC1C464D877DF1AFBB2D6425 /* Locator.ice */; }; - D7C84EF7FDA58A85651F60C3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDDD6119D93F5A4C9BA2C1A5 /* Server.swift */; }; - D7EA693772F3EA33C0FF8365 /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C750448EB098CAFBE6C4C28 /* ConnectionI.cpp */; }; - D846FDFFD9D51F06B4BDF1F6 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 49CACF5578779D192C643FD8 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D85F5132F2686ED0916EAD09 /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECDC030E98555E86A9E1CDDC /* ImplicitContext.mm */; }; - D8945106DA9897A19A00130F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C21F81A0DECE41C24F04C63 /* Server.swift */; }; - D8DDC0C388B2F2668B76882F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - D8E20DACF6392FD30804B0D0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - D8EDC5E61FE4D72650A4E191 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - D91612087098F2D08B7D4F8B /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = 261059C5925105B6E65D91A0 /* Process.mm */; }; - D930900DC9647ED394498F08 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F60A221428806098E72B6E0 /* ThreadException.cpp */; }; - D955BF173523838D2578BE8A /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 534A5F8BE7C459A933D4054F /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D9A1B050E60AB639F57A228D /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5856D3133582D30B6424B442 /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D9FBEA7F7886AA874EABF1BB /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = AD3C85DDDFFF996CE0DE043E /* LocalObject.swift */; }; - DA0731B1E300593E7564B38E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - DA49C2F1E873FD24FC2F9109 /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB3C826EC5ED81E33C86DFFB /* LocatorI.cpp */; }; - DA528E42CC5C175607FA979A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - DA5AD33E697F017C932CD12D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - DA6435FBAE9A3C532B7FF01D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 146B256974FB51DD1265678F /* Client.swift */; }; - DA9AFD6C000591CBEC410DB2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - DB406787797C552E2B65B82E /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96E9FCBFD4A041F02FB124A6 /* ConnectionInfoF.cpp */; }; - DB532EBFAFD6663E9A4CF605 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA4A6F897448CBBFD0BD60EE /* AllTests.swift */; }; - DB9A439AE889CFB824E0AAE2 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E415E99C053809FA95D690E5 /* Timer.cpp */; }; - DBA9B6EF8EA918FB4F1B27B1 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A6DE490CAA151058A7A77AE /* Collocated.swift */; }; - DC6A9E2CF823F3A0D846B05A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - DC733EE9AADC2C16F18B55BA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - DC8F6E8D538B88B5ED6F1107 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - DCA56EFF91B6518D35576EE4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - DCB4D20442F1878CCF4B8372 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - DCB7062239CD3916B540E036 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - DCDF7A9707754E40F69394CF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - DD0A5C9CB080489079411949 /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38892522F82E945C6362F32C /* PropertyNames.cpp */; }; - DDA5174FEF8FE9DF82EA2A98 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - DDFF4628FDEEBB8329C977E3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - DE0128FE53D8A1097061B534 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A063F480B1D518851F44CB38 /* ServerAMD.swift */; }; - DE2F31CB0FCCC3BE50C8FAB1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A02666D7734DCBD68E093E74 /* TestI.swift */; }; - DE35E7B14713463089E898E3 /* Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = 267C42793494C2AAB39ACB4C /* Notifications.mm */; }; - DE554A61DB28E261D8B3A9D8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - DEE1048D996F854856521478 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - DF72318D1382B4FEAA6E78E5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = D19C24D6D98060F5D3DC767F /* Server.swift */; }; - DFD7725125172C2C08211776 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - E00001502C2B6407B2382144 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC9ED7619A57BEE47972336A /* RemoteLogger.ice */; }; - E00E860C8191C845EC0E8D29 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1C374862263D78134D3A2AD /* AllTests.swift */; }; - E084704255B7013E1C4E3015 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB3C3EF735A9A35FC0C0EA3D /* PropertiesI.cpp */; }; - E09D6F11993AB4927E6D192D /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BF71CF6804DEA75FC0B5376 /* Server.swift */; }; - E0C8BDEEF18485F39295CE9B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - E128DF89F8C666AAE7AAB7DD /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA10DF21AA7BD6CE2F6005E2 /* Instance.cpp */; }; - E154828E96E02851061691A8 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 36157027B4A9EB7D3EC1C47C /* Metrics.ice */; }; - E1F7E0B85826E4C2D7425980 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2F0C21A4264BC5D193BE88D2 /* IceLocatorDiscovery.ice */; }; - E27463AC1E8702DA25FA0BE6 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D8BAD556F7D98625DF4BC58 /* TestAMDI.swift */; }; - E27B5972288D787C0F8B0A9F /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1C2EF0082C7579ECE9ED8BF /* TrustManager.cpp */; }; - E2A320E5CE0DF866CC81A6D4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - E2BD7AD7A7B878B3B98A6B11 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = E4AC7CF06B64C796FBA28CC5 /* FileParser.ice */; }; - E2F28161CE140EF614F91BE7 /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD2B9AF2609CCA9D0A31526F /* WSEndpoint.cpp */; }; - E31383156D144FB504B236B0 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = D9AA20FA76371E7525561E7D /* Version.ice */; }; - E31C7D7C89F32503866496D5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - E347EEA00F23FBFC2BD8CBD2 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBA6B0FB94F3D71BFF5C870C /* SecureTransportEngine.cpp */; }; - E3560531DD376A2D0F7F8155 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - E39E4C33DC14235E6F04F9DB /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 832185C7682C7BAE361C4F71 /* DynamicLibrary.cpp */; }; - E3A45D93C8A18320E33D74C3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 62456291EF0548032B7E3DA2 /* Collocated.swift */; }; - E3E0F822AD3DEA569EFAF985 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 718D975EF8CB9E404F1DE7D6 /* LocalObject.mm */; }; - E45C0D8AF45E27EA45E644A9 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C04E61AE1032EFB42B418E1 /* FileUtil.cpp */; }; - E46996DDB179F86E361C3B24 /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CBDC7A1A35ED6F24372F3BA /* LoggerWrapper.swift */; }; - E4FBD54DA9C31F5C270E28F2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 34E29AA242C9C15C1FE20DF0 /* Client.swift */; }; - E53A0FF2F7D7C2EDEE5D7B93 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54BAFFFC7F040E1C113E258E /* Exception.cpp */; }; - E58116929F20D2F3D0E0D7B1 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52AC5AE6897741655049E5E1 /* NativePropertiesAdmin.swift */; }; - E5988642F179BE0D2A96BBF1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D12263260B9BE0610DCD36A /* TestI.swift */; }; - E5BC584FBFBFF776197D68F9 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A7A335019D6FC3FE103657A6 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - E607FE74919B13928B36440A /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 47F3C0BF03857AE7150714D5 /* RFC2253.cpp */; }; - E62B6C966B7B6BC970D3F918 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - E64D745242CAAEC18C82B0E0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - E6B481D92BFD9BB89A3D0619 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - E7005526751DEE613D9612FF /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = E089655B39A8835FFC0C9516 /* FormatType.swift */; }; - E70281E141A2E10DC7E867E3 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC358D83F29EA095AE7953F4 /* AllTests.swift */; }; - E79D4EA5651E8C2D711F6A4C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D12263260B9BE0610DCD36A /* TestI.swift */; }; - E827C3B4672F15199DB4022E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 563ADEC4C1B32BFEDE861B0D /* Client.swift */; }; - E878DF536ECCDAB08A6695E7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B35DF098E417B51793D521BD /* TestI.swift */; }; - E8BD5A96F043FAFD0FF131CC /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F80B65BA154B6DFE570284EE /* CertificateI.cpp */; }; - E8C11268A982743A4BACB963 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - E8FAC5FFA34078A85E517E81 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD1DA82196FB0896919C1177 /* IconvStringConverter.cpp */; }; - E90D8AE30AF1898C9B57C594 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1EB568811E2BF696EC8E3B97 /* BuiltinSequences.ice */; }; - E919289D25035993E1BFB072 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF99C502AB691B67373D09AE /* Random.cpp */; }; - E9CB21EE876F0C89B70843A7 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = D1A668F98BF103CE141085BF /* PropertyDict.ice */; }; - E9E112C862960A4FDF21F884 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = D1A668F98BF103CE141085BF /* PropertyDict.ice */; }; - EA1405958234BCAC8A703D33 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - EA567EA164BF44B6D47E1375 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - EA661C4DA6FDBCBF200A0C4E /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = F80312C7D23DE15D9DBEA4B8 /* Descriptor.ice */; }; - EAC3411D24AA086871087DAF /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7EE5328C7A8863943281E59 /* StringUtil.cpp */; }; - EACB825EA3D2E6744B44BC9B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - EB2EEA1F784EF02CC2039FDC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - EB73996E2DD669BEA3D29BB7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 625CB263F55FD97BE49F1676 /* Test.ice */; }; - EB7519B96580DCDA3ED1128F /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2F15183B4084729299E75DB /* ImplicitContextF.cpp */; }; - EBA7648440E6CD111D82A6CE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E513A8A056433D791A09BAB /* TestI.swift */; }; - EBCA72748C8D491B5C04D315 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - EC20345A5A0F3DBD3CA2FF65 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BF0DC95EBCEEF58EE186A10F /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - EC3A953B46501F7CE882BAF8 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 47BCCEE21EF0C5C1C57D0197 /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC3C2389914C96A23284DCCB /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 36C71BAF8FD41F9650AE8686 /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - EC8B391DA95E37D60C92A545 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC45412E37CB39AB1326ADB0 /* ConnectionI.swift */; }; - EC9161278A1C1BDA32A42671 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7956EECD3C94FF8CFA4E7EF5 /* Test.ice */; }; - ECA14EF3168ADD1CADAA2412 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B24CB74D03AF69953C447D0F /* ServerPrivateAMD.ice */; }; - ECB63FC548952FF10D92FD83 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - ECB6CD6BEDA808BBD121901E /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - ECBE622FD6983BA6AF85594E /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2215FA4DF66DE6FD987EDA9A /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - ECF053E9F3E596F247CCF58D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DDAC5988149325C9F48EAC1 /* Test.ice */; }; - ECF7AE791BDAACF1675FBE0E /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAFFEA2B5A8AE9C11E531B18 /* SSLEngine.cpp */; }; - ED06B38FB0FE8F6AC26D5857 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - ED0CEF2F26CFA2DC3FCDA655 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FBDE5E179DE0FFBEFE10819F /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - ED3FD0FF1DDB4C671B4202BF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4413F36CC165568AA6327BD2 /* Test.ice */; }; - ED4CD06EC58B5F8A7726AB16 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 718D975EF8CB9E404F1DE7D6 /* LocalObject.mm */; }; - ED6215E0EC3FCF78DD87F908 /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81FA0473F73946ECEBCD0FE8 /* Acceptor.cpp */; }; - ED72D99C86D17A76F736FD1F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F16006BDECE6873730A91890 /* TestI.swift */; }; - EE159F768EAD7E2248B65B63 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - EE19AE64D42D2AE3189E6CFB /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2781460B247EAB453369D750 /* Endpoint.mm */; }; - EE47C558ED98FDA042BAC0CA /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8F19682F788B50D8AC95E275 /* EventHandler.cpp */; }; - EE4A7AEB49375C176B5BC8ED /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8ABE21302DE3F9A7649731E /* OSLogLoggerI.cpp */; }; - EE710C8BDFBB2810FA2F3C08 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - EE8E048FE9A8F89187C213D1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - EEB6BD8AF0D2A941756053D5 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D16CDB2107A44877C9B96E26 /* ObjectAdapterI.cpp */; }; - EEEB1862D4E5355BEBC87E23 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - EEFFBB382A88204602E29A04 /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78B44D0BA063801FABE08C89 /* ServantLocator.cpp */; }; - EF25E57A5544134BDC4D4820 /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1292D7BDD24245A4E07C74D7 /* TraceLevels.cpp */; }; - EF6973ABBA6F018113CCA40D /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 631E368C13A3530681F08764 /* LocalExceptionFactory.swift */; }; - EF79D3396CCB50892EDA7B2B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - EFBF7C85101E51C0B361ACAB /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 33C7DBD13018E9D53A2497D4 /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - EFD81A174108F9AEAE794459 /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 169F0CFB6C30D66047E0EDB1 /* ObjectAdapter.swift */; }; - EFEBFDA67C46537FBF8CCE7F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23F1A85D0FB546A7190E150D /* TestI.swift */; }; - F051C38E3059D93E39B0797D /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 314795999886E271CB9DB2EB /* Clash.ice */; }; - F05EC75E667C728C9E47C777 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1959BEAAF7268C8B0022D948 /* Ice.framework */; }; - F0A4995954CEECE143553681 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9359C59FEC8D1829DE6D27FA /* TestI.swift */; }; - F0CC96D7A8CA7F06AC275C18 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1F04BEF80E053F20F7E0FAD9 /* Server.swift */; }; - F0F4CC4AB409543BCD67B7CA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - F102ED578711A82936DBBA04 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = AE2BBFDFF12EDF36B9AF8B2B /* Test.ice */; }; - F131DED6D6B3A70D2AA9ECE5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - F155B5F35EE41DF703F86B78 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 127A9834F351DA5E1B1AC377 /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F1590D68831B6F374FD8FDAC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2EA069A716E434C038F0318F /* TestCommon.framework */; }; - F169698C5AE8C61A7A1B015E /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B79277683CA9B3529AC906D /* Glacier2.framework */; }; - F19FA54E15DE55BB5950BFA1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = AE2BBFDFF12EDF36B9AF8B2B /* Test.ice */; }; - F1C89086C7B99BDD2A33B02C /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53A3ABE0E265451FAF1C27EB /* MetricsAdminI.cpp */; }; - F22C86CEE908C2D798E45CC4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - F2481AD1C258CE7A9E638616 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC9ED7619A57BEE47972336A /* RemoteLogger.ice */; }; - F258789795CBF0946CFD2213 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1B79277683CA9B3529AC906D /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F25FB49661C89B6DE658B9B5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - F27490E45AD8866AD86A58BC /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB707853D1A0F03F7DC7561A /* Logger.cpp */; }; - F2B5823CA6B4E769156BC62D /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C143ED3B8F13A61B4DE515A /* StreamSocket.cpp */; }; - F2F25015F0E53F5F50549A64 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 14BBB915E0507F5D160ACEFA /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F316C5F5215DEBFFD3F8758B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - F39C4FC78C06ACEC3709A84D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - F39DFCF91A1DD04DB323BDCB /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = EF6E2A9B9FB41D79F32978A3 /* Exception.swift */; }; - F41045BA554A7DB82E15B469 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C479C4447657FF60E68C8D4 /* TestI.swift */; }; - F478062F13C3E608091B5657 /* EndpointI.mm in Sources */ = {isa = PBXBuildFile; fileRef = 78F16843E2BBB78CF5ECC73E /* EndpointI.mm */; }; - F4854977B7EAB9889842F617 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77C88A641E9F7E5B40D7DCAE /* ProxyFactory.cpp */; }; - F497C74BFEE03701E45AADD5 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3BC64A21F03FBD8F32E4AEEF /* Properties.mm */; }; - F4E103C783B4C53DDFDA2EEC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46220B1A861EDFDAF19989ED /* Foundation.framework */; }; - F4E1E0A115AE924F6F94F900 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB1D1063C3987F97CD262B32 /* TestI.swift */; }; - F5015433E6AFEA5007AB3A52 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B96E6391FBDC6A572CE2CA8 /* Client.swift */; }; - F5232476279CC9F6BDE7F964 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1ED718874B7F4760BB5D8C7E /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F5349B0122283A4EDF05581D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - F53609825F8BE1A35903E0D2 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8DEF71C9DEB340E5082D4561 /* SystemdJournalI.cpp */; }; - F54D9BE425DB88876FF6645D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - F567CD12764E8B30C40BDBDD /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = A9EA4560530B2442EFCBDE12 /* Controller.ice */; }; - F5706E094B8CF5C17E221C01 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 127A9834F351DA5E1B1AC377 /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F5B98825EF6005872E07B207 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9FA81E47474D356CBCF7789 /* ServerAMD.swift */; }; - F5D8C23D2B551C5AA43522DF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; }; - F5EA307A8498BEF0BAB504A6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DDAC5988149325C9F48EAC1 /* Test.ice */; }; - F62BD691273E84C86F519A79 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 56CD9F58D686B914CD4E7062 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6A96BE6FCC387A372418711 /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0B19FA205006766F6B2E1350 /* TraceUtil.mm */; }; - F6C09D35C437949A89E6A6A2 /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = D7A23ACB7B51AA7355057DD3 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6EBA1A0F7FDA36780F205D1 /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 686977AFFABF87664221CF35 /* SysLoggerI.cpp */; }; - F6EBAC4CEC1F3082A7EC8AAF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D584721E70A4A59344385873 /* TestI.swift */; }; - F6F2E4E634E388450A6E3B49 /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6862C6DF1F03FD3BC6D46040 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F725849464842C5119A6A079 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D62655BDE99F0EFB5029C764 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F74B4F1ECD669359457DB230 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - F74DFB5BA7B3F73347CC5C5C /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72969A7BBA1DB8E3A31C4234 /* LocatorInfo.cpp */; }; - F79FE57E6DC449DBFDD06493 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC8188172D41ACF2F15B43E4 /* PropertiesI.swift */; }; - F824F26FE5F79FF4364215A8 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50E681C36DEFAC7C6ADA5E59 /* Plugin.swift */; }; - F83122E600F6C235FACB5041 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; - F837DB71399518E2FB5859B7 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 01CB046806C40FF9E09F98EC /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F85C17CC1E82174AB4E3AD7D /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1C2EF0082C7579ECE9ED8BF /* TrustManager.cpp */; }; - F885B57FAA2C5EF8B2D37AAC /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EA2D25A82444D862E2E8FE7 /* OutputStream.cpp */; }; - F8DF23068DD58F1E7A87DB01 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 582CF8542C18DFEE777BE669 /* PropertiesAdminI.swift */; }; - F8E799E4E81E5B9B5BE01EE6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9FDC86559C3FF6250119D8C3 /* Client.swift */; }; - F8F586E4A785806BCC1BF218 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - F93A507B61F47809F9AE7700 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225F1A44C56068BBE7A7C5AC /* Security.framework */; }; - F9534BBC8B59F52EBAD0211A /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 297ABB350A7C637780C074E9 /* IceImpl.framework */; }; - F9B2BDFF6C52FBA962336686 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E41487C8DDE61F3EB934BB5 /* PropertiesAdmin.ice */; }; - F9BB93907CB3E5D1708DA115 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7D0E1E196E9F210FC9000AD /* AllTests.swift */; }; - F9D94CA3601F2711001661A2 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58C5E7464C1E1A08020CB59A /* InstrumentationF.cpp */; }; - F9FB5847BA17D71BDEB8CD3E /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33D2A20C5AB946EF734F130C /* ValueFactoryManagerI.swift */; }; - FA282693400701B12F440F5B /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C16F4A69D766395D88FE602 /* ConnectRequestHandler.cpp */; }; - FA8DF6DD6DCE882B44F6847D /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECDC030E98555E86A9E1CDDC /* ImplicitContext.mm */; }; - FB372255B71007EBD4EBAF97 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A007F6524CA33A118530563 /* AllTests.swift */; }; - FBAD6648B2BF1E2EEF239FDC /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 465F648252C614812204678B /* Time.cpp */; }; - FBC41EA124D5195CA922F817 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C76356862A29F54F63817D6 /* ConnectorI.cpp */; }; - FBCC644A2D213B5EA70779A5 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = E910A7E27BBF0701EED9D16D /* PropertiesAdmin.mm */; }; - FBE1C0AAD964A4492EA42559 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A70BF6FEE8DA0A4A9AA500A /* TestAMDI.swift */; }; - FC0B458F1E3B6ACC60EFFC5A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FF2A72A70FF62EAC4F4C3D0 /* Client.swift */; }; - FC10275B5BF8C4A9064B853E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E60734E3E837C813043195B /* Test.ice */; }; - FC5BC27134FCE34AE9F55320 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */; }; - FCD5F1EF6FD6EA1DFF42F964 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */; }; - FCDBFEC5BE3C43FEFDBBBA6E /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - FD33B6E9669D9F36FC39B61B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C84040AFCBFD4AAE0B519DB /* Server.swift */; }; - FDB06309ED2CD150593BAB56 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24803367329A3408EBEF3225 /* Client.swift */; }; - FDE7BC60A5D9A34A9F70C1B9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC8EB4350103B673F2C8492C /* Server.swift */; }; - FDF6805BCE76276FF06D212F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D8BC5C768D15A8A8C296597B /* Ice.framework */; }; - FE23ACDDB1F9CCA826FC33A4 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 93221F7A8289C9024F246985 /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - FE30BA65979A81596022A305 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08B93C9A9DE53DEB2F31BDA4 /* LoggerUtil.cpp */; }; - FE4BEF9F0D7676378475C5C7 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E2DB3B0D04B959637ABED20A /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - FE4E27B04FCC8E805F514E6C /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 877C028D182B31A7DA65893F /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - FE6373583004A13A11CB9EF5 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3BE92039E393EF27B9C18847 /* TestAMD.ice */; }; - FECC4F111BBFB2DC96A01EF0 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 421D20F7517BB9BEE5FAA9EC /* IceGrid.framework */; }; - FF5A915B44E48BB874150A95 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32A4EEF0B311A639C5DB129D /* Connection.mm */; }; - FF7D9730549EDA90FDE76FD3 /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2D08C9B7366834B041FEC159 /* Registry.ice */; }; - FFA50E6FE4E725B70A1E6C4A /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF859A3FB3C6011A75051175 /* ObjectAdapter.cpp */; }; - FFD15B4561FC249388EC7855 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A007F6524CA33A118530563 /* AllTests.swift */; }; - FFEA8322B9E288491729A66B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F3619615028457B13D22FBD /* PromiseKit.xcframework */; }; + 002D46AEBB48571A3346772D /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E4932165161ABA64172816A /* UdpConnector.cpp */; }; + 0064FB5868041AA654A52DD5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 00720CC1CE9EFA9F72EEFB11 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2A558DF05365793BE1EDB3 /* InitializationData.swift */; }; + 0072171CABFBB0251ABDA1B9 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3253615704AD8092CF5F9D9 /* TwowaysAMI.swift */; }; + 008A2426B32864DB03A20B7C /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B548B1CC74CF128EB62110C /* RecMutex.cpp */; }; + 00AC98F3B5ED9798585C66C8 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2F997A9136C0D57A644334 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00C451DD3B6787E3F1EA946F /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 024741EC9D6CFD0898B474E7 /* PropertyNames.cpp */; }; + 00D76D517CA760B0D26AC140 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7529B82331E9F8857C04C1C1 /* ThreadException.cpp */; }; + 00DC7DC4340E8B978B32F33D /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01108206A582A67F00C05EBC /* Incoming.cpp */; }; + 01033CC145D7EEF0A900EAE5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 016D532E9D6B59BAFC1A65E9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 016E13902F402548A0BA098C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 01B4C8A8A096BCA8943E5D57 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBA41C7E4F8D63EBFF2A282F /* IPEndpointI.cpp */; }; + 01C6E23BCDB40C1092D3644B /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F964ABBD543305F85E892C /* SliceInfo.swift */; }; + 023C0D71CD3653DA0AEE6DD7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55085F9A97549394CFD026B6 /* TestI.swift */; }; + 025600DF80F8F1BE29956542 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00C7727DB84AFAE74242A27A /* ServerPrivateAMD.ice */; }; + 02563DFBF11EF3AC04BDA54B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 02932AFCE7BA335363810B9D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 02CCBD8CD1225E63A31C030B /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ACB54D91532B125D146C8F52 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 02F2EFBEA4590FD7AFB2CFC0 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75A01B0041D27E76F5889DE4 /* main.swift */; }; + 0327B5FBA995F7C7602A2697 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F86D845456A70BA71A7775 /* Server.swift */; }; + 03931C98AA255A9D2A9D9DFA /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4530DDD8E7C70EA73CE9806C /* CountDownLatch.cpp */; }; + 03B53422FD2E61D3956DF08B /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFE02F4EBE4026D7ABF4C2FD /* RequestHandlerFactory.cpp */; }; + 04893B0727E10680373C3A18 /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BD60FA4285B90536DAE2ABC /* CommunicatorI.swift */; }; + 04B482E96FA087B4AE135F4A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DCC9D507EDF3CD2A1A3150F /* Test.ice */; }; + 04DC15CF3AEA83FBED5B3923 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 610608EEED146B107B5293A5 /* MetricsObserverI.cpp */; }; + 0501045FD20F0DB912FD22D4 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7D263D2E578BF1F7AF589B9 /* Object.cpp */; }; + 050D10DF351B1C867806A92E /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9BFE5D27E6A8D49C4BDD2EA /* ImplicitContextF.cpp */; }; + 0510AF3C93C359FBC7A8A61F /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF9AEE9480B3623AF7E5DCA7 /* ServantLocatorF.cpp */; }; + 0527885881E6046DA3B84E8B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F1F158B962A78341F9EF225 /* Client.swift */; }; + 05372BF0755A63B4D7F7719E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 056204E6356566F6EAE592E6 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C2DCE61256F8846CB481C917 /* RouterF.ice */; }; + 058E2E780D1A291CA327F125 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 23205029365EA8B8CFAB923B /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 0599EB19C53CE42679713230 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC428F92C038CB75D721C046 /* Collocated.swift */; }; + 05F1F0ECB0C2066F3F91E035 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8AFF8ED68FE8D153138422D /* ConnectorI.cpp */; }; + 06DFC340DF75BF1F2A034592 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 20112BFE6EAD65723FA67120 /* Test.ice */; }; + 06E1C5DA2EC742EDBD06BAD6 /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ED0D8471106CE1DAD728538A /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 073241141AC1010142E8B38B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 077926E720AD3AF95DCA673D /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8488FB8F37D7958B38971E9F /* ConnectionF.cpp */; }; + 079D8B9814B0CF7EBB198370 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6658CBA7425F4413E4A2845D /* ConnectionInfoFactory.swift */; }; + 07CBB84253EAE4D078067823 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = C5A0671B53C97F7A32AFCFA1 /* RemoteLogger.ice */; }; + 07D7222D1DC55602F48017EF /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0E3AEAA11EF708457A97AFC /* SystemdJournalI.cpp */; }; + 080EEDE73F2FF5F205016E01 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E64154AC1BD079614CFE6D0B /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 083B4ABA39CF77E46070E0CF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 0862D895FC7F30B13C2FE695 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 08A32CC42DD3A81A65EC6618 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3ACEF67499B23A250292B84D /* ObjectPrx.mm */; }; + 08FABEF1E13D5FEEC9454D1E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 0994228FA78B3EE978437935 /* TcpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CEA95C263FCF61FDAC35F2D /* TcpConnector.cpp */; }; + 09C21C8473C6976E52291B99 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 262A4BBE4803F28C3591381A /* Reference.cpp */; }; + 09DDDD95E33E8F5D105C3A05 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 539605938D0800C084345197 /* InputUtil.cpp */; }; + 0A030A4337C3044D72D4AB42 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 0A32FD95A093165DD69FFD39 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46411EDDE8E438FD8EAE98E5 /* AllTests.swift */; }; + 0A50E66510B6634E6D01A09B /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = D31F7CBFF920A0CF7FB2382A /* BlobjectAsync.swift */; }; + 0A8F32F410E4BA3969572AD4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 0ABE43B89DB8BBA0C05AF133 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3ACEF67499B23A250292B84D /* ObjectPrx.mm */; }; + 0AF7F5D1DD475A958F6C655A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 0B21DE753DFDE6AAAFD1C0D3 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = D2A78D4720673DAF9D7E7F17 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0B2F15344CAF65BC8262C9EC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B9E54977F5C39E7DEA70EA5 /* Client.swift */; }; + 0B7A95230903FA8C03003FCA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 0BAC289E822F69E4C7FD6A5E /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7592510233717E6CA95DA038 /* StreamSocket.cpp */; }; + 0BBC6D50B04D0B3E9EEECC28 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = 0026EE92FD5C304A025799B2 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0BC909307ABA174C17DB5344 /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A5EDE74C3A3591BBEF47D29 /* ValueFactory.cpp */; }; + 0BF706C97A87EE54A3E87284 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D349A4F305ED46BDBBEC05D /* IAPEndpointInfo.swift */; }; + 0CC2384A54EE205EDD3F9F49 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C8E7374D8D5DA4006B190AC /* IncomingAsync.cpp */; }; + 0CCA4D2914190B3E279D8B90 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 0CCD6A235A86107E6E7CEB44 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 0CF992769F5194F8DBD16E6B /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F87C572B2EE3F2EB8C41205D /* AdminFacetFactory.swift */; }; + 0D288EEE4B875B489EF5870E /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69C937818B79D71765A58104 /* EndpointFactoryManager.cpp */; }; + 0D2D61EDFC698E92643535F1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 0D6CBA4FB26518C981C3AF34 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 0D6D04112A34BDB1A5ADD8CF /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = 316C086D0730E162FA3210E3 /* Process.ice */; }; + 0D7EFEBA6A9B4AE0904EA614 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 0D81C85B3AD3955719192B11 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE4C4A3FC0CBE37945762D1B /* FormatType.swift */; }; + 0D8C7F6407EF1A4AEBDB5017 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D04234BB20E2E7E05183D0D /* AllTests.swift */; }; + 0DB58E85F0DB6E63F47C6B81 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA284C28AD71C2D624582DC7 /* LoggerAdminI.cpp */; }; + 0DE28B2E8764B81D88E14BB8 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 0E2B363E690A224CF1BE537E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 0E2E60FB76F0D0A6172CCE7A /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E672D54C33B901EEFAD1A9FF /* TestAMDI.swift */; }; + 0F0797F1CDDB72748CF607CF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB3BD1DF07A3C09CF5FF39EB /* AllTests.swift */; }; + 0F5B96484AADBBB4073931A4 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D033003707757F652EA1B85 /* Options.cpp */; }; + 0F629D5783C738CBC90B1850 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 0F8CD87AA9BB462CC8E71E21 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3C9AD082A4CE3A5F5435669 /* Server.swift */; }; + 0FB1214B920792F051DDCF10 /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01BF3D7D7748BB551DE4E9C5 /* Exception.swift */; }; + 0FC5F1E1412F26368F6A9F7A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 0FC9F45B490902148077FB5A /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 960889AE80EE23F4AB9A7899 /* TraceUtil.mm */; }; + 10450A8F5D1657A9FBDB3724 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3048472560513EE07558DAEE /* TestAMDI.swift */; }; + 10562A209CE78DB378186E8F /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1E6FDC3649CBA1598EAEBEA0 /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 10FDB820CA3036500263166B /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1E77773C9E5111EC13CAB7D /* ServantManager.swift */; }; + 11407C5FD3C78516E34D4AD6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B839F8BB619665F6310934B /* AllTests.swift */; }; + 1172F44789421B6E15B653C1 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 11CEF453382D7531AF40BBEA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 11E51D858AA9A4CE8D2E9323 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1E77773C9E5111EC13CAB7D /* ServantManager.swift */; }; + 12100F39595AFD02BC5F7624 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 122E9EEB255A20ACB71CA23D /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A334934D39F8288BF273ECE /* Object.swift */; }; + 126E4F5D33FB622D5FA86CEC /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E33109A1F05AA19BCF9156F /* Communicator.cpp */; }; + 12728421B89F958E4C5442AD /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 264D776F123D481FEAD06C14 /* Client.swift */; }; + 13092BA50F9D5590B1231153 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A781B49FC82F7FA0184F819 /* Exception.mm */; }; + 130CB2286E54B4269616D7AB /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2F0B4FF873A76833E941826 /* Transceiver.cpp */; }; + 1354B797ACF72C3D2E075BCD /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1FB327988DA6B56153EC048A /* Session.ice */; }; + 135BB0D232D1BA53D0AE06AC /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61FD2D97AAE33B8E0DAD2E48 /* UnsupportedAdminFacet.mm */; }; + 1378B59764FF3E243A936BEC /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB93EDD11FFD843B54F08CD6 /* AllTests.swift */; }; + 14003DF2C2853A4E8EB766EB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 140E53724B5A0B1FA66E5DF7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 1418FB50C29E64B22D7AC9C7 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F1BA415B45FE40D1AF4C892C /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 142D327EBF2F0016CB0E6C75 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F4B6E42CEF5AD0D3B22131A5 /* Test.ice */; }; + 1430954E8129EA244E25447F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 14617628299F2B63049AB633 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4E52F6B53EC59E12989136 /* Server.swift */; }; + 146F9C22985ED2698B4D95E8 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 245956FF449E351AEF203C2A /* BuiltinSequences.ice */; }; + 14917DEEE348358AA776CBC0 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 290B87AA15456D1942D99E39 /* InstrumentationF.cpp */; }; + 14AA20DE19EC61D215210EAE /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE02DD17EB206613ADA00EC9 /* EndpointI.cpp */; }; + 1507DED8F8D6DC4758A2A377 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 150B3CA3A01868537A293868 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 151D8C47C55E4416AF6B11DF /* libIceDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EEE2D909D236CA9996023106 /* libIceDiscovery C++11 iOS.a */; }; + 151DDAFA47B8ADD3D4B86F76 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 1566BC2BE52BFF272AA2CB59 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ED051A2BDDB9511D133CC34 /* Client.swift */; }; + 156744825C7A2C11539D4C53 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 157D683A8D052D485572A4ED /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5208C1A489762B290922821B /* AllTests.swift */; }; + 15CD52A4E4F472AFEC9F9AE6 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 03C85223CF53FA8C62D9D7B6 /* Metrics.ice */; }; + 15EEF88440CCC3D00B34CEC3 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75F40F1911A6EA4452908C71 /* IceImpl.framework */; }; + 15FD882CA27413DE0F49BA47 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 1600BD44041FED6A72A7C982 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92923B4684A1BF23B89BA01C /* TestI.swift */; }; + 162EB825BB854127C89AFD5A /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57B4FD55C85D50B346DAC00F /* Key.ice */; }; + 1640EAEFC48343EAAFDDEFE9 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20939A1E0430B68C7B8CBFDC /* TestI.swift */; }; + 168134F128FE2145309BB1E4 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF47819089271BCD4443183 /* Exception.cpp */; }; + 175491539AF5B8E3A29FE9EE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 17846C75A0ADCBE674506CD0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 17B51970734597216995DDDC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 1814B0AA0B447688293BA3DA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2405C9C20444A782D096AF0 /* Client.swift */; }; + 18152ADD040571E373032B12 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54985FA2DF8607E8EEBCF4D2 /* Incoming.swift */; }; + 1820E94E892ED711749FC010 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DCC9D507EDF3CD2A1A3150F /* Test.ice */; }; + 184460D94E2B82986F9D73F8 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 847F20E8EE2CB3D83F522A4D /* EventHandler.cpp */; }; + 185572D86691304C327944AA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 185939E599A86C9FDC28B625 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A23D3F73B4FB00D1F7749FA /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 18822FD1740418AEAFA88F03 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CE7D6C632EB030AE96F5F06C /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 198498A649B7132421146680 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 19C57D21F0CF05349371045B /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAF52D8D0936AD9DAC5FB260 /* Value.cpp */; }; + 19FC06374CCF7EE38506B482 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB071CD809B5D6642DD39E53 /* TestAMDI.swift */; }; + 1A2428E84DB660C063834DB0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B9E54977F5C39E7DEA70EA5 /* Client.swift */; }; + 1A3144700DDAB2D396583969 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0443C0420CF9B9FDB9AE0E48 /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 1A53CAE7A6EDA1ECDE2C1F6D /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A591B1108FD3668546AB65 /* Server.swift */; }; + 1A5C9A8E1B9EB05D2029E596 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 1A7F6A0C01F1D9F1D1C823BB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1083A38AC12CA9C0F45A1422 /* Client.swift */; }; + 1AC167753FA5219719B70CD4 /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F94F9CD8FEEC71F621DD3BB0 /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1AD393C6742923EE9FC92894 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = F48A4C9DD1628D724648AA45 /* certs */; }; + 1B1D5A149FECF50C0F4F9D33 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 182EAED50584404F22460330 /* Descriptor.ice */; }; + 1B24BB8CAD6D0C6638C6B5F2 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7100AF407ED59019E77AC492 /* Logger.cpp */; }; + 1B319ED8181610ABAB51CD83 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 46BD0BAC03B80804BF23E167 /* Locator.ice */; }; + 1B440BF02864D6B8271B0A62 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 1B7DCFEC630B333062000E92 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 1B80D7C545F9A73A92A3B923 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 1B9BA48F0517178DB792BAA1 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = 316C086D0730E162FA3210E3 /* Process.ice */; }; + 1BB667FA07A5B54C30F6FD59 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E13FB9A9AF502F1522420390 /* TrustManager.cpp */; }; + 1BD4198BA7E5485B96C95251 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CFF70BA10C4D6AE188D017E /* Client.swift */; }; + 1BD557788BE0E8A43EAAF6A7 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = E53219E3EA6910F7E5D579A5 /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BEBAB28570D1EE8C6675339 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F507DE59727141A808786F2E /* Server.swift */; }; + 1C20696E0246F5B9D7048BBD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259ABFD3A22C573FDAE353BA /* TestI.swift */; }; + 1C724A372C4EC19D6B43AA31 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0CE33F8BDE00D6E18E58B3C3 /* TestAMD.ice */; }; + 1C79814AAA7B2A2408B471CA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9AE62B725D03CDAC1B7BCBF /* AllTests.swift */; }; + 1D5F98C0B015EB6F1E6FBBF8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 1D61DE15530B90E1B7D25F3F /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CE17F65AD7D95CE4D52AEB8 /* Properties.cpp */; }; + 1E60151903B65FF346AC0871 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85E5A74751EB43D4ED344FCE /* Communicator.mm */; }; + 1EEF1385B4C9B44DE0EA805E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 1F1B2A120600717E9CA151F7 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = E57283A07B637882DC9B8F71 /* ServerAMD.swift */; }; + 1F517EBF12320E73F70F5AA7 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38BF5DB9B9490714A81542C1 /* IceGrid.framework */; }; + 1F5830519586264CA16FA228 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34AEBCCD220042AB3BE523A8 /* Instance.cpp */; }; + 1F5C6C29D85A7C49CBFAF67B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C76C28FCC88C6C84EFCCBD0 /* Client.swift */; }; + 1F7971A75A98BA85F1011808 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = 650FAAE913B2A55BF40BDCC9 /* SliceFlags.swift */; }; + 1FFC9D29523F725EC9D26C12 /* Connector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 069A48B23F945A72742CD39C /* Connector.mm */; }; + 20570CB43385ABED61FBB7B7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 62FEBA73AE042571D01D4F88 /* Test.ice */; }; + 207B48D545B1526630D2833A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 20B1A5D11BA20A56002CFDA1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B086B5175F1B76E321C3F86D /* TestI.swift */; }; + 2108F8BEC05828373DC7B0E8 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54DC8E443E82EBB5B393862E /* Connector.cpp */; }; + 212052526996E61998DB65D3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A16E1F318A236067C0E62C /* Client.swift */; }; + 213DD2695258E7D764A67CBF /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6317DF41896C81DC9D6A94F0 /* Buffer.cpp */; }; + 213EF35BEE63F4996C1AE44D /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30A8799AA971D15AED949425 /* IAPConnectionInfo.swift */; }; + 21681F549430F739C23F3E7D /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = 316C086D0730E162FA3210E3 /* Process.ice */; }; + 21728AC16E7DD6C3CCAFAD21 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5A78C4D73F6D7790B04847E2 /* OperationMode.ice */; }; + 2187C03981B4CBDA59FB1EF4 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = BFD81A96B2FEDC7DD5A61FF8 /* ObjectAdapter.mm */; }; + 218B870E287FE7AFBDAB0E04 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB4A218E07221A655D54AA36 /* ObserverHelper.cpp */; }; + 218B9BB9B2A11AD51A3BB97A /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AA5332EE9D7AC564F1B4DC6 /* DefaultsAndOverrides.cpp */; }; + 21946641DC7DAE3869380451 /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4496C208706DABE2498E3D0A /* CertificateI.cpp */; }; + 21CDF6EBB244BECBC93B8854 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3823D97E04C4BFCD7FB534C /* Timer.cpp */; }; + 21E191C1A872E6B9639C12AE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39C32C927265416D3C9E0334 /* AllTests.swift */; }; + 22095258D3235EF8954B4F9B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 2231279E9F256B0B395FC509 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA63D38F273987B6208237F7 /* ExternalAccessory.framework */; }; + 223690B9C2ED48C823677945 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 2249AA1725889F6940E2FBB4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 22538C768CFB905DBEC2208E /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59F988EA1C5CCD503309CAAC /* Util.cpp */; }; + 22AE1A032B0CAB4DEF018BC8 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 22E551533CEADB6D0DCE21F9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 233E83C9CC80D5734039B0CC /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 23B09A92B78FBE8EA2CE495D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D04234BB20E2E7E05183D0D /* AllTests.swift */; }; + 240E00A1C8996C0F19258DCD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 31A7531BFE63552977BE1908 /* Test.ice */; }; + 243364C28ED03D10E5FB3CA1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 24877A2876453CC64490AF0C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20917172F64B1F0658E4FD1D /* Server.swift */; }; + 2492A830D4759726D136DE5B /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB64AD8D0C4921CF515944A6 /* CommunicatorF.cpp */; }; + 24982294CFC8799F13411B78 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F9A21CE53736A014B4EDECB /* LocalObject.swift */; }; + 249AED08BF39BE47CAAA6C1A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19E1DCD6ED441B62D90114D /* Server.swift */; }; + 24BA557DC339872F595A77BA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 24D5DC2E3769FC65D5B6DDB3 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 37BCBC566A446A9FB1903373 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 254974E6B74962DA0AFF1D36 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC9E31096285763A44ED387C /* Glacier2.framework */; }; + 25A93B2AF574974D299AA614 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3253615704AD8092CF5F9D9 /* TwowaysAMI.swift */; }; + 25E16A861E6C8F0CB42B3AE1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4066C2CF37F090029B871117 /* AllTests.swift */; }; + 25F006CA0FD62D4C9BF10554 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99528469CD587F598337AACA /* TestI.swift */; }; + 273AD12D40E9196FA5F7B328 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A981A15C3C763E3DF3AFDF3A /* UtilException.cpp */; }; + 273D0927CB662D8E24B07655 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3157232929DAA590D328DEC9 /* LocatorF.ice */; }; + 276387EADF27E1D2EA2B5C61 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A32B58F4D583452AEE62D6 /* Collocated.swift */; }; + 27B3C23E9AA046222424F245 /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0141623AD37C70B98DDDA989 /* SlicedData.swift */; }; + 27DAF0B89D5463516F434156 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9826BFD5D5016B5B7DA30496 /* UdpTransceiver.cpp */; }; + 285EB4C6216925532071D299 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7A43DB55534C1EC4B2C2B8B /* IceUtil.mm */; }; + 28CF14C38303CA25BE961124 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 28DAD5B7044F8811A0E05B0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 2925B70C87EFC1B45BCBF7EF /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 46BD0BAC03B80804BF23E167 /* Locator.ice */; }; + 29281F511CB2A433A216C41E /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1082EDDCF74692688AF946C2 /* EndpointTypes.ice */; }; + 292A0335BFE7F4A8D0A4D9A3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4BEBA247618BA49B306637B /* Client.swift */; }; + 294378893FB3C4FCEB153D07 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EC3920B0A3180CE9468B5D48 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 29633158A02ED93E6CB64E03 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 296D634AAD232906C99E8795 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4DEA2B3E46B392AE8FA078C /* OptionalFormat.swift */; }; + 2983E0E1B3733EA378453AD4 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5A78C4D73F6D7790B04847E2 /* OperationMode.ice */; }; + 2995EB2F2B5ADF44E37B5F22 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 29C9619426FD5B794A369532 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 29D9A3026AF24D8AFDD663BA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 2A15CC6FB4D3A2E3E38A9CF1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E2876A8434BDA95E5E67FA4D /* Test.ice */; }; + 2A900017F9B07F306445BA23 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34AEBCCD220042AB3BE523A8 /* Instance.cpp */; }; + 2AB85ED1CB4AB3643D8EAA03 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E5299A9AA357D51C620DC87 /* CommunicatorI.cpp */; }; + 2AC04CDAD01D9DE947F7BCF3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 2B080DA92DFD0C14662D1B57 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 2B16E7346C0BEA3FA7DAF26B /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BB35BFDB4D9B787E400326E /* PluginF.cpp */; }; + 2B4577C6B0D0EC4CEE11FFCA /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = CCFAA81005DA44D89E41494D /* PropertiesAdmin.ice */; }; + 2B5388E5597C1A7F8324B39A /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7644F0F2714625FA88C9AD42 /* Registry.ice */; }; + 2B9B7237061ABFE8D6FE67C2 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E5299A9AA357D51C620DC87 /* CommunicatorI.cpp */; }; + 2C17AAA288AF09F376703FC3 /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EEAC0D6D20FA5E489B7D4EAB /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2C1F210EAFAA586BBBF37B3A /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = A76F2988E9F63DA40311F76A /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2C4433401B06DBEB4D29532D /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2C72E73DC2B678BCFCB5E569 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 2C997348E994142B458506A3 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = F48A4C9DD1628D724648AA45 /* certs */; }; + 2CB63A080F4AA144BCC45FCB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 29771C1E7DCB8C9578ECF41A /* Test.ice */; }; + 2CE77BD0998F6674A0D061C8 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 052495E30CFEFD5327466782 /* Service.cpp */; }; + 2CF02CF1D15CFD591C03C886 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 245956FF449E351AEF203C2A /* BuiltinSequences.ice */; }; + 2CFACED03E2DD9B7C026EE0E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 2CFB39C329DF7D1B2F7E20CC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 716DB7C607CA120F7407022D /* Test.ice */; }; + 2D14CA690A2E699E7871F540 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4BEBA247618BA49B306637B /* Client.swift */; }; + 2D2EE8FD6A072B48ED0757CD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 33F4442B1E4EB5B04F907471 /* Test.ice */; }; + 2D7145AFAE0F26D9FFC8511D /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B215297BE120F8697A57E235 /* Protocol.cpp */; }; + 2DA75A9CC18C722CDDE384D0 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42C3558A6946242208F8CFF1 /* Server.swift */; }; + 2DADB317F9325844198C645C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 2DE268DAFAEAB00F5B587CB0 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1D033003707757F652EA1B85 /* Options.cpp */; }; + 2E4C55A1C837BF2D2F851C8C /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D36CEA6C13079203D960A28A /* TraceLevels.cpp */; }; + 2E616DAACF31464D972DBFB3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E263606DB96A9375B3DB0862 /* TestI.swift */; }; + 2E90A89093E42E33FF954C66 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C2DCE61256F8846CB481C917 /* RouterF.ice */; }; + 2ED5BFAE362F90AFB43868EE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A60DFD912C3076C2441A6EEB /* Test.ice */; }; + 2EFDCA785EC157D079C5019B /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90787AF0A37EEA37C85695B9 /* SSLConnectionInfo.swift */; }; + 2F5E1B622DE4AB7B49C41E7F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7817994383F3B13BD7F75310 /* TestI.swift */; }; + 2F87231EC5F543E6A74DB815 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E80B06A40D65F65EF6C553E5 /* RegisterPluginsInit.cpp */; }; + 2F9F878F4E3E7E2DA2B1A888 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = C5A0671B53C97F7A32AFCFA1 /* RemoteLogger.ice */; }; + 2FB7707ED1CDB4B417038EDD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 2FB9DBDA7BF6CCBC947CBE28 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = D2A78D4720673DAF9D7E7F17 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2FF58CD215110FB1A63946B4 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E4932165161ABA64172816A /* UdpConnector.cpp */; }; + 3019471D113F0F9D4946A705 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1998FED769C42CDC7AB11C5 /* StringConverter.cpp */; }; + 301CEE1162FDCE54CEF1DE68 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEF69473A2BBE7E2944931A1 /* Server.swift */; }; + 301F50C233B74FA25BE32961 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 30205464EC737F45B69C26E7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 305AE1B91CE98B360902D641 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91DC2A0D34F096C05AFFAFE6 /* LookupI.cpp */; }; + 3092E3797E27EB23086A6186 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 85E5A74751EB43D4ED344FCE /* Communicator.mm */; }; + 30AA16E058EB3692DC6E2379 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D0FE56C219D015301CB1369 /* Client.swift */; }; + 3174FEE3ACD5C905498C724B /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D31D9B7BAF73B3647C64990 /* ServerPrivate.ice */; }; + 3176C1ACCF72E6B00AE4FA9F /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDDFDF674093FB356181A861 /* ConnectRequestHandler.cpp */; }; + 317A6D4AB6E8239408DBB274 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 319139978F867560AA586FAB /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35FF9CE9706BA3DC7134F434 /* EndpointF.cpp */; }; + 3227E645394F23A38CD1757F /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23CFD2FCAE3C1695E2970A65 /* RequestHandler.cpp */; }; + 32C555D12D60C06AD0D87EBC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 32CD457E3C5431C0F933BBF0 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3157232929DAA590D328DEC9 /* LocatorF.ice */; }; + 32E981B5BBB4EC769C17C945 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6C97867F488137BCC0EB004 /* Test.ice */; }; + 331D3B59C70354E569BCEA5D /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBBD5106BD3CD7763C850ACE /* Oneways.swift */; }; + 338650FF2D4A1BB972846AC8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 33A9620CCC7170A38C183999 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32E26E67BE14E1FFE12A7ABD /* BatchOnewaysAMI.swift */; }; + 33C7FC60BC248C8588169BC1 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A981A15C3C763E3DF3AFDF3A /* UtilException.cpp */; }; + 33D41619BA0FABFAD2FA28D7 /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AE70EAEDEBB73331DA341D1 /* WSTransceiver.cpp */; }; + 340068DA4C4C800CEFFAD5BB /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 340B368D09AF08D09FF8B4E6 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD8AC0525446464A4513C8E8 /* HttpParser.cpp */; }; + 342C7119D135D4323BAD59F3 /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E49FEDA41C839C2DB5BFA9D /* WSEndpoint.cpp */; }; + 3490F52B01112CFB862F46B5 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9B9DC4A0F25EC95FDA68E396 /* PermissionsVerifier.ice */; }; + 34ADCE55C9125B913D3E9873 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 34AE3D7A1AFC7FE7D050AC7E /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = A76F2988E9F63DA40311F76A /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 34C5CC632B8A41186DFE4E2A /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F4B82012902E7A12E38A2AF /* ClientPrivate.ice */; }; + 34EB9BB331D1E14CACA8625F /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 897808914C54B9799F9A2F91 /* ReferenceFactory.cpp */; }; + 351CC6BAFEAF90CC712F477C /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1916BD7FFB0A4D852F04D618 /* FacetMap.swift */; }; + 35AE42FE55F555A9C11CF3A6 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44E9A83E6111394E43220448 /* Shared.cpp */; }; + 35EA22D546539E865A175F8C /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 785159C3CF8A869678895694 /* OpaqueEndpointI.cpp */; }; + 363909CE191EAC8C931EBB56 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = F0503C372876754560BBB8C7 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 363DBCAA89220755AB470976 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00F761E139DDBBEA1CA42172 /* Random.cpp */; }; + 3659D3660E0D13EE3C5B21D6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 3668784874131EB100BDE095 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E80B06A40D65F65EF6C553E5 /* RegisterPluginsInit.cpp */; }; + 3696E2ABF4D8E3AA49395B92 /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3F96F9704EBDCFBCAE0D3C3 /* EndpointI.swift */; }; + 36A86D927273E7B53188B3E1 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7EC10FCBDFB6A2DECEF109D /* PropertiesAdminI.swift */; }; + 36D5956FE1CB2AABA1D11242 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EAD21EB605F400BA46ECBE5 /* Endpoint.cpp */; }; + 36D95D5F6DDD658EC10A2269 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FC2161B7FFDD05E63318911 /* LoggerI.cpp */; }; + 36DD95350FA8FDFDA645E3E2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E263606DB96A9375B3DB0862 /* TestI.swift */; }; + 36E9E80DDAD8AAF1E48D5DE2 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EFFE201B94FAE9FB1295F1D /* Network.cpp */; }; + 3726E5677BF9F8410C8E017F /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = A3D1AE0406A87BA43230C922 /* FileParser.ice */; }; + 3735A35C22EB73B09F24F128 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13B8F6994B469BFB24A1CBF1 /* ObjectAdapterI.cpp */; }; + 3766AC01275B8452443E1446 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 37698CB6BF4664E10A0276AD /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8E6E1452E1DA4C8ED9914AA /* LocalException.swift */; }; + 3785D9A8FDFAD55894CBE6B7 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66B3742B1FD8BF38A13DB528 /* StringConverterPlugin.cpp */; }; + 37A05CDF0D1B76900EDB952C /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D284414C8201FF6861AD7E /* Selector.cpp */; }; + 3817D70C9C3C90EFB6162DE2 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = A3D1AE0406A87BA43230C922 /* FileParser.ice */; }; + 381E4DF0E691F60D3DC751BC /* StreamAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82876D1602C1CC12EE6FAB84 /* StreamAcceptor.cpp */; }; + 386053403216670C3F4FDAD6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CE2427693C29E4CEF450087 /* Server.swift */; }; + 388034EDA28AA24666FDDD77 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E13FB9A9AF502F1522420390 /* TrustManager.cpp */; }; + 38A4DE3A5617EB42E8C105CE /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B3240DA41D618B1A973AB23 /* PluginI.cpp */; }; + 3928839CC07F3A7BC120D07B /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53DFCB095E700117F6137EEE /* ServerAMD.swift */; }; + 3928B22A00BC1EC983EA3468 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4CCBD4643B37D4081B89334 /* ClassResolver.swift */; }; + 397E2C753823E7C35B4CDE80 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 177CE1264BA28FAD588640ED /* LoggerF.cpp */; }; + 39ABCE49B0129B2D0C40BBF4 /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE12756CF23A83E52C61D223 /* NetworkProxy.cpp */; }; + 39C47C046EDA14901A1A61AB /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 5A4F6ED397F0755CDCDD8ACA /* certs */; }; + 39E735E4180A345C712046BE /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EA30CE30FF86630A51D19F8 /* Connection.cpp */; }; + 39E78190DC29186945EC4D48 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 3A1EA5F3CEF6C62DE70ADB43 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 228A1E21539BF3DBB96E65FF /* Plugin.swift */; }; + 3A300747325BF345D2FD2045 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 3A59718C7DF060E457DD3DA6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 3A6A457DBFB9C18C408B95E9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 3A8DBB52A92F7C01B0122743 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18BC8EBDD63E0C2D34096A45 /* AllTests.swift */; }; + 3A98BFB96F4C1E36DDC7EEDD /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 3AB046D5D71BA6C7538B3088 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B446E87A9F659C4A964E6F73 /* ValueFactoryManagerI.swift */; }; + 3ABDF8EE85FF58A1E6BD18B9 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBBD5106BD3CD7763C850ACE /* Oneways.swift */; }; + 3AC57C55DC1E09BAB796BC20 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22437CADE6D8C1F4B4F6E399 /* Client.swift */; }; + 3B0CB41A2B7815B188F503A4 /* TcpAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AEA593E8C6F3F0525BEB029 /* TcpAcceptor.cpp */; }; + 3B135644BB8D78F665499415 /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01BF3D7D7748BB551DE4E9C5 /* Exception.swift */; }; + 3B57EB174C11634DDA140618 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 46BD0BAC03B80804BF23E167 /* Locator.ice */; }; + 3B70CC7AAB5D7662B0C62A0B /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = A6DB7AA8D03D71EC9B23B390 /* LocalObject.mm */; }; + 3B79FE11E55E6B25CBE8902A /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96F1FC4C6C4A3154388E702E /* ObjectAdapter.swift */; }; + 3B91A64379EA5CEE5B89F531 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C7F78C569CF9618E842EF08 /* PropertiesI.cpp */; }; + 3B9A81FC1B21C292EA35347B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E00EC3B82938848CFB40EC31 /* Test.ice */; }; + 3BC339AA4359E9137FE2652E /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 60CB9F01352AB79EE50AD568 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3BDB0FCB06A9BCE7410E2D08 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DF8C754C9DA80B0B434EF6B /* Instrumentation.cpp */; }; + 3BE4D5BF24575AAEBE3DF8E2 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B8D9DC9A4A10105943CA252 /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BF94AEAF11638FF2023B6E4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 3BFF865CDEB153F412420A48 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 3C083A1752C208F02A0E5BBE /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B64E1BCBF28AC80B97565EF1 /* RFC2253.cpp */; }; + 3C3D961062FE6BBC0159C88B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 3C40474932B6C46BDB415AD8 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DB7EAB0C292EBBB3A8C6797 /* TestI.swift */; }; + 3C5D088CB54A320856260981 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 344ED5C42593ED171BE68E29 /* TestI.swift */; }; + 3C7D7AE5B9239FECD60E7511 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1D90F14637894A37678FC3C4 /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3CA6C0464036C0B817007A46 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 3CD86F3D8BE75F05CC4533F7 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8C6C2E58CEE36AE17B95BBDF /* Session.ice */; }; + 3CF061122BD01A3A50D9DAE0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 3D08DE01538E011B4F7F2A1A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 3D0ADEE0F497BBFEA52F86B2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 3D27768EEEE5E9E3E432960F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA894B52D407082F22D345EF /* AllTests.swift */; }; + 3D5EB1B7BCA03B3E9F9BF095 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 3DB726F734862E4EEF4130F7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 3DB825C1BB45879E493D0938 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 03C85223CF53FA8C62D9D7B6 /* Metrics.ice */; }; + 3DCA331E0DAA68788AC08507 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 909200862AB304F9E9056BD3 /* Properties.mm */; }; + 3DE44A3DC394B0BB7165E125 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00C7727DB84AFAE74242A27A /* ServerPrivateAMD.ice */; }; + 3E05969AB4F71D8A8AF0324F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 3E32B756E0EFA881F75F8646 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9826BFD5D5016B5B7DA30496 /* UdpTransceiver.cpp */; }; + 3EB09BE3B03E7E96AC74DFC0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB75B8D55DDA16960177189 /* TestI.swift */; }; + 3EBEA23EBB27232BDC5CCD9F /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1AFCED0816ADEA6C571C2E7 /* PropertiesAdminI.cpp */; }; + 3EC80460A352A4644C37890B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22437CADE6D8C1F4B4F6E399 /* Client.swift */; }; + 3EC8CC8A1D1616069094D005 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6B7F99C1A7C43654FACDAA54 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3ECA89212EF43CB58BE25727 /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C06BC9BB6B575A7285395AC /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3ED586FFA65D9A2ACDCF8F61 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 3F32ED98F9F8A5E265291EB7 /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4FAE8887A8A2B8B5AB2BFA1 /* Endpoint.swift */; }; + 3F7FFAD18E73947AD4912F72 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06FF3EB23F66FB5AF64C1B75 /* IconvStringConverter.cpp */; }; + 3F866C9887A2792FC2E4A378 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8629DC53723BDBF2B619738A /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4024701E9F4ACCF8AB23ABC7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 405522C1C326EE3E5C90F939 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DDF2419DBADC2D1CB04E0823 /* Test.ice */; }; + 4057CD42B192B4EE67F698AC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 78C5BD54F95050856DFE68B6 /* Test.ice */; }; + 406B01FD1E5515B2CE41BC6B /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDA295C05339DC58C0D9F8E /* TestAMDI.swift */; }; + 408512F9A2A5C253183A58D0 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 82C6B16C4B7E40482A56F033 /* ServerPrivate.ice */; }; + 4109680E508B78E8AFDE4BA6 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E56A381E1ECD60A933EDE0C3 /* Proxy.swift */; }; + 4151F438971FE969F8F0C433 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC034BBCB34C7182E33E5260 /* AllTests.swift */; }; + 4183C8DC691BDAF574D88EE1 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3048472560513EE07558DAEE /* TestAMDI.swift */; }; + 418665670BA6F4220D855C1A /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = C131E5D67136A0CA59E41363 /* Connection.swift */; }; + 418BA1B0341043FF36C54DB1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10A591B1108FD3668546AB65 /* Server.swift */; }; + 41ACA14990011BF34FD3F2AA /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DDF2419DBADC2D1CB04E0823 /* Test.ice */; }; + 41B948E332AFCE7FAFF70A6A /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FF5926EFAECD9C0572AFEE64 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 41CAC79C07BCCAC022A37945 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 851EBE7BCB0ABDCADDDBE688 /* Test.ice */; }; + 421967360C02DA383EB26582 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 427867D63DFC77C63EB18875 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B667A5C8DD4F6EB3E5C9B46A /* SecureTransportEngine.cpp */; }; + 428C932CEC8D496A09081B04 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 42E48DA1CC978B2FB811F604 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 43505EC618AC2E37610D1DD8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EBEAB016AE060E51B33C88C5 /* Test.ice */; }; + 43521A3B58A1646B167B6836 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 43C51957B5E17FDD6C8D16FE /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 43F7F85541CA284372832294 /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 69986A0036CFB94E71AFAEB2 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 441FB4DEBABB3F66593FD472 /* libIce C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = E47A14897F2C93447F45EFCA /* libIce C++11 iOS.a */; }; + 44319B4FBC44B3FDC86E2A08 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7EC10FCBDFB6A2DECEF109D /* PropertiesAdminI.swift */; }; + 445148345353A71A0D5F606C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = EBEAB016AE060E51B33C88C5 /* Test.ice */; }; + 44601EEDC5B00B337E6A7A7B /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 550E7CC0FD0E1918D7A9AB38 /* IceImpl.framework */; }; + 44802909EDEBEFB47C87F48F /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A5B352FEADCB1E176B01CED /* PluginI.cpp */; }; + 44F0F8378863839430B162BA /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7263472329A47DFD021C4A7 /* EndpointSelectionType.swift */; }; + 45350E1F3DD40EAB236AD089 /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6317DF41896C81DC9D6A94F0 /* Buffer.cpp */; }; + 454052662F451F169F1D5B0C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D255BAB7E5E515B654EDAD67 /* Test.ice */; }; + 454EA9653401A2346AE4CBE1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 455BCA83C68354B1B3872661 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4066C2CF37F090029B871117 /* AllTests.swift */; }; + 457D960A94DA7E2108A1ED39 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E65F59B3B48188E5E72C27D6 /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 45ABE296BF26B7BC9B1CB021 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 539605938D0800C084345197 /* InputUtil.cpp */; }; + 45C8356339CDAABE8A6A654F /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE75E6D4EF3B33DFB659E39C /* Connection.mm */; }; + 45DC000704220A7B2C366463 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE6273EFDFF34C2B0E6CC267 /* StringUtil.cpp */; }; + 460A5E82FCBD262C32A43C02 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57E9BE44DC6129D6174B2306 /* UserAccountMapper.ice */; }; + 46229BC73CCA413E698F213A /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 58E4626AB44A7F584A615366 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 468CDDF2327C91A52C2FBA9E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A92AF9829CC12933812E31B7 /* AllTests.swift */; }; + 46C3C65C8353EB4A7D30E842 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0DA087232F08332FC98A97BC /* Endpoint.mm */; }; + 46D5D78F4B547B43CF0FC4D0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A60DFD912C3076C2441A6EEB /* Test.ice */; }; + 46E6DF799438F7400A518777 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1124897FAD46E0C20C2CD5AF /* IceStorm.framework */; }; + 46F614989B590A0C1A43D6D6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 471CF4BCCA7221350FB4A394 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 94611F392D00B8B8E3640D6B /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 474E338B4AC8335316D7614B /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B1D1ED077D2A30E8ADBE189D /* TestAMD.ice */; }; + 4752B3E710176FFDC15E4E24 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = A369565B5F8B3323E92DFD73 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4790E7C482F60F51C89C2D5D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F82270A0824387C79330584C /* Client.swift */; }; + 47C5D873A39A3B0E63C684A8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 47F857EBA23FAC143D24B094 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59F988EA1C5CCD503309CAAC /* Util.cpp */; }; + 48242D3F8B32E780A6590C31 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 783AC53508ED2C4B2092DD5C /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4849446D8A82970A48427E10 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 07B98AB5E4D60D7A85886DB5 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 485ED50D8DC1FBDECADBE865 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4D35CFAF36E324DC12502013 /* Test.ice */; }; + 48669C255F41F0EB9DE62096 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6629A6F5DD07DBEF2C036E46 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 48E28B43D4D3A00FD1BD4837 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF2AEC43FB6AF0355BAC4EF7 /* Logger.mm */; }; + 48F65F1EC6084A5403D04581 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4AB5AD4F60E4B47BF3908206 /* Clash.ice */; }; + 48FA4EFF3774FD3F02C75194 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E8EFB40B36345385787390F /* ServerAMD.swift */; }; + 4907D42B86E580F90CAA46E3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1083A38AC12CA9C0F45A1422 /* Client.swift */; }; + 492E2F80F56691FB212833D7 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 90AB8161442DBB20C4926B3B /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4960A857834E2440A0AA8CDB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 4964F3229C92168B3BB3DC87 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9B9DC4A0F25EC95FDA68E396 /* PermissionsVerifier.ice */; }; + 4999BA2BD3C8631DF66D2C39 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9394803D622D0ECAAE9E923 /* Proxy.cpp */; }; + 49DE0757E79F0CCDDF902075 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 699F0DFE09B6CD4066FBF4C3 /* Version.ice */; }; + 49E523F72B458AE0AC97A4E9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2543300D55BB8126BF01178 /* AllTests.swift */; }; + 4A33D7C70788D24C4ACE5DDD /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 4A3AF18B9557A0770E8AA10A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 4A56A0CED3F67194A4F51956 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 4A60EC0FF950F8B338FE09C8 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55EDAF98FFDD5285D1D33F96 /* Collocated.swift */; }; + 4A833E08CAE8DAF01AF34F0B /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCF9BA52A64AED325C68A383 /* SecureTransportCertificateI.cpp */; }; + 4A83A2F03CDF0C5B50E4AC81 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE75E6D4EF3B33DFB659E39C /* Connection.mm */; }; + 4A8CF7471AA6DD6F4ED083F2 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 839B1E915C0CBD0129F6BAC4 /* MutexProtocol.cpp */; }; + 4A8DE40065856BD29FBFAA69 /* Main.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = BB2FDEF71FCA90CDBDB32AAB /* Main.storyboard */; }; + 4AFE423C34F2A29E86A30044 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20B33ADC4ED75141C16290D9 /* BlobjectFacade.mm */; }; + 4B09029DBB4B214AEB80FB51 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66B3742B1FD8BF38A13DB528 /* StringConverterPlugin.cpp */; }; + 4C2B315490C533624127FAE9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 4C343EA6D74F70FB09E1A7FD /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 4C4F3BAED894DF9F5A7A368B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6AA934BC1D34654E098F584 /* Client.swift */; }; + 4C5774A45EAE28E944207E23 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1362916B0814388BFB67F664 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4CC437849E14B364258974EB /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7D263D2E578BF1F7AF589B9 /* Object.cpp */; }; + 4CE67D0CB90C3387427101B4 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864791648F2C6EEBD4033544 /* ProxyFactory.cpp */; }; + 4CEBED00EBCCA068EB72F645 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DDBB3E496664C584AD5364E5 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4D3C7C00E50422831C4B0D16 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 551620868D0184DF2FBB2F56 /* TestI.swift */; }; + 4D56766F605D17F748102503 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 4D568F236E2D7CED11EDBD4B /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AA6F7EAE7C3E4C3B39E26A6 /* ACM.cpp */; }; + 4D5D54BD1EA454E923B628F6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20917172F64B1F0658E4FD1D /* Server.swift */; }; + 4DA2E17F5FCB1BBDE6775697 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2D6CB1AC0F0C2259F0F5B65 /* Client.swift */; }; + 4DB1B5C5817E372996B98F97 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53905C1AE3214B94DDA79E59 /* EndpointInfo.cpp */; }; + 4DEB274AFE53A779B0AD5208 /* Transceiver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 94E64A8A4468924DD9A7C2D2 /* Transceiver.mm */; }; + 4E0518D45C8E5F5D92F81663 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3A3A0B6FB6D6326BBB4971C4 /* Admin.ice */; }; + 4E1CBBF8A9B6B28D775E96D8 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 87A3043D1B1B7D7DE0B165C3 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4E2D7F783F8AF9E2BC582946 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3A3A0B6FB6D6326BBB4971C4 /* Admin.ice */; }; + 4E66E803E7AFC81462FCFB66 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 4E73C37B19BCA1FF950871C1 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5728530DC35D7B52A550D7E8 /* ThreadPool.cpp */; }; + 4E7BA8D1B521A2CA30CE4B34 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 4E839FFF2154FB34E6315565 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32CAEEF22B4B76CD87E065B0 /* OutputUtil.cpp */; }; + 4EA1D22E71788FD1588BFFB1 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = A6DB7AA8D03D71EC9B23B390 /* LocalObject.mm */; }; + 4ED956A744A405B137F70FC3 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 488C831449F529C0B214CABE /* ProcessI.swift */; }; + 4F2BAC7791054249F17E1D6F /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00F761E139DDBBEA1CA42172 /* Random.cpp */; }; + 4F394A8821C1A621A16CA9B5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 4F3B2AB9A204D008BD7D8CC8 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 94611F392D00B8B8E3640D6B /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4F49BFE850F3B527253D8E14 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17A5B44F6AAFD44E0B814FED /* SHA1.cpp */; }; + 4FB22EBA51E813560E3A92AD /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 012209B06380729805C41D0E /* ServantLocator.cpp */; }; + 505713015BF559EAB37FDE0E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 51718C680023987FABCD1AC0 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20B33ADC4ED75141C16290D9 /* BlobjectFacade.mm */; }; + 51A23A2998E43692D9BECD3E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F79211AF57FD9BFFC2CA5E3F /* Test.ice */; }; + 51FB508FA4FCD7002382865E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 5228591E57F8B56D8145739F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 522BF48392FC916675C87C5C /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2090C4D1E0D664633C3C5 /* RouterInfo.cpp */; }; + 525E7118AC72F5454BF1FF4A /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECE37EE5C08B6FFE1F009314 /* ValueFactory.swift */; }; + 527733893A0EDF27311D3C19 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 259ABFD3A22C573FDAE353BA /* TestI.swift */; }; + 52AC421DE2E727BBC7BBFE5C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 52CF8061A33F555659B8458E /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D117E7E0EC5C30487CF9329 /* ObjectAdapterFactory.cpp */; }; + 52FB3E557DCB1D6776B836A6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40BDBD839BADBF15799D26C4 /* Server.swift */; }; + 5313707749D818EF6702618F /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7D1EED80BE188B0BAFB69F1 /* PropertiesF.cpp */; }; + 5339A2B6B5873EE03D977DDE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D02E0C0E582227D272D99C1A /* Test.ice */; }; + 533D2D01CB77BB514B59F34B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40BDBD839BADBF15799D26C4 /* Server.swift */; }; + 536BFB67716719424AD9BC71 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B4F81CBE09B9EC7215B359B /* IceGrid.framework */; }; + 536E623763C231F6DE8297B8 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 53C41AD073B84093289AC54C /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02F2B04E2560FF1CFFCF86DA /* FileUtil.cpp */; }; + 53CE9FAC21216074C1F61F54 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F3EDD1A3D763999E9C05E9 /* TestI.swift */; }; + 53F78F858311E38BC1611912 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2C1845D9001948A194C9BF3D /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 546DFAF58D038DE7ECECC037 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 31A7531BFE63552977BE1908 /* Test.ice */; }; + 5474470575C6913EB34DE331 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEF69473A2BBE7E2944931A1 /* Server.swift */; }; + 547B6F45A10CC245FE7CC262 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3157232929DAA590D328DEC9 /* LocatorF.ice */; }; + 54A952D6176107F88A3A7926 /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = F94F9CD8FEEC71F621DD3BB0 /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 54E714BF0E244AB528DC7A76 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3823D97E04C4BFCD7FB534C /* Timer.cpp */; }; + 55023367DFC441CB2094EBCE /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74CAD313ABBD56B539F69B27 /* Plugin.cpp */; }; + 5550AC3139C42F728A00525C /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F17CE2C8EAC28CBD9A0667B3 /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 558B6671A45F66B448678D61 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CE3931DE5E459F004046D20 /* PropertiesI.swift */; }; + 558DAB2B21D2CE6918A7D71A /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2F0B4FF873A76833E941826 /* Transceiver.cpp */; }; + 5592F091CB8D281F7C291E7F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 563E87FE0656F0B5B4ECBC45 /* TestI.swift */; }; + 55D2A9DB1D4196C735453FDE /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F624035F99B563D25F09B7C7 /* Collocated.swift */; }; + 55E7A43504BC2169071C952F /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 097B3A1E14CCFB09E7E4CF92 /* IceStorm.ice */; }; + 56151081C11849A401DA5C1E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 565375DC0AD3DB101739E804 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E560304D19C84FD096965E6C /* Client.swift */; }; + 565CD83A7100582F10D0C51C /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B667A5C8DD4F6EB3E5C9B46A /* SecureTransportEngine.cpp */; }; + 569276BD74AAFEECCA2ED63B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 56B17C9424CC94ABFD7119E5 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 864791648F2C6EEBD4033544 /* ProxyFactory.cpp */; }; + 56C8CA7FF7FD2436CBCC6A31 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2080E2259670BD44DFA6BF51 /* Test.ice */; }; + 56D20B23AD1EA8D353A9CFAC /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC9E31096285763A44ED387C /* Glacier2.framework */; }; + 570334BBB6964AEC5613EFA6 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16B2D2F24F75A2CEA9588C92 /* ProtocolPluginFacade.cpp */; }; + 57696667BFF60D8AB4745BA0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7817994383F3B13BD7F75310 /* TestI.swift */; }; + 576A0A4D63C4F2119BEFECC2 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAF52D8D0936AD9DAC5FB260 /* Value.cpp */; }; + 5797B69F5F48DD3FEEF496E0 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = B43B0FAA9A029A4458C3590F /* SSLInfo.ice */; }; + 579AC8862E268F04BF95A503 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20939A1E0430B68C7B8CBFDC /* TestI.swift */; }; + 57FFDA3DEC427B2C9E9ED316 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6E87C9E4A4FD2945C3A68008 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 5809CB6ED6828A14EDF9C412 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CC9E31096285763A44ED387C /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 58490D165A403189D14E5936 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 75F40F1911A6EA4452908C71 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 585D504007D0FB3158A3466C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 58CE66D8960C0C48B4EB2FBA /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 089C840BD2340196C1789813 /* UnknownSlicedValue.swift */; }; + 5903AEE70DCBEDA77A0E608A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F4B6E42CEF5AD0D3B22131A5 /* Test.ice */; }; + 590D216B86ADC37F38004429 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 943F62DEE4D6B5F3DE6B0D22 /* IceDiscovery.ice */; }; + 5924D7AE289EE5AAC5D67202 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 5931AF049DA4EBAD9BE65058 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93100931C7208B5D3064FEF /* Server.swift */; }; + 594566C343C21A76FAA6AC62 /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F76B6CFDC81E7D00110BA047 /* Acceptor.cpp */; }; + 595268DD165C26007CB80FEC /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F65E818320EBA8D182AD4B31 /* FactoryTable.cpp */; }; + 5970CD2978B5A9EF00DAF5FF /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 356A5466FDDC86F58D1F4D42 /* UdpEndpointI.cpp */; }; + 5985839FAE4EE0CF1A8CBF29 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EBD23A978B397DAF53B55273 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 5A236B3180D4EA303E7A8C99 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D0FE56C219D015301CB1369 /* Client.swift */; }; + 5A37BC8A80EF00D8AC8A571D /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A5527F3E66D1C8E580EDC49 /* Current.swift */; }; + 5A3ACC83C1089CD674851178 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 5A58FCF998EF33D64C39C23D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 5A6165BF367999E8BFBAD5EC /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 089C840BD2340196C1789813 /* UnknownSlicedValue.swift */; }; + 5A8F2D3CFD11ECC83D52ADCD /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94CF1B1374A50ED7765868B6 /* LocatorInfo.cpp */; }; + 5A99153201F255452FEB162C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E9CE949ADDB5DA57B0A2360 /* Client.swift */; }; + 5AA3D766148A1CDCA716F2C1 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32CAEEF22B4B76CD87E065B0 /* OutputUtil.cpp */; }; + 5AA3EB4296CC07F372237B9A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C76C28FCC88C6C84EFCCBD0 /* Client.swift */; }; + 5AA856F056E1550F988E598C /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = AF2F997A9136C0D57A644334 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5AB28B3FD75FBE7503736B30 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 5AB9FCFBA6E43BABF8FFDAAF /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B06214B3EFADD6728F980622 /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5AF5753A141F3A5436B85D4D /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4FAE8887A8A2B8B5AB2BFA1 /* Endpoint.swift */; }; + 5B093A17DEF1D680BB4A9CE0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 5B1B8A3663B396E286748837 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA0D87A615782B7CB24C3F4C /* ArgVector.cpp */; }; + 5B260BAABF5BEDF1B2671AEC /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 839B1E915C0CBD0129F6BAC4 /* MutexProtocol.cpp */; }; + 5B4E55DFB03E922BD0506143 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F943822FF946957243189A7E /* Collocated.swift */; }; + 5B77F7E5D43EE10265259D86 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 15F534469D81C24FFE8DCEE3 /* Test.ice */; }; + 5B99731404AE73A26DFD529A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29F96EFF6178BC3FE5DB0F00 /* TestI.swift */; }; + 5BD35BDF4A24F0DEAFCCF83C /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 123567924E68C349BAF887BF /* Time.cpp */; }; + 5BD577FEA68EF357F3768DDA /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 46495D8B50FD3CF57DCEE7F0 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5BEF353CAF8CE7F610173098 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 407A0D1CC4E333ABC1A0EECD /* TestAMD.ice */; }; + 5C105CA7B8B3E539C1A9952A /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 213E7606B6C3CA1D4D891CC6 /* DispatchInterceptor.cpp */; }; + 5C1B98574EA118AFBB73E88A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 5C69C585CF0BC6839725AF9C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B286694690297FFF7DF31EA9 /* Client.swift */; }; + 5C74592F59C896CB28F75E21 /* TcpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D31585DF150199617B8B170F /* TcpEndpointI.cpp */; }; + 5CF5C759CD5C9A490EA16A3F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30EF7A48D5F3B8AF61ACE1F2 /* Test.ice */; }; + 5D67049EAB9EBF7B6F399BF4 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A98619140D09F4A271DA212C /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 5D702352AF4AAFFA56A91560 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 699F0DFE09B6CD4066FBF4C3 /* Version.ice */; }; + 5DACC4F64C307F025A193A38 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 71C738B29B990967A0EC29C9 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 5E1358E78595CB847E5CBFD9 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75BDF818FC40E0B1A7E2DCCD /* OutputStream.swift */; }; + 5E157060F06DFDE4915CC6A9 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D349A4F305ED46BDBBEC05D /* IAPEndpointInfo.swift */; }; + 5E675CD077AFC9339DCE10B6 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEB9F4EFA4B5E11103B64F2B /* TestAMDI.swift */; }; + 5E896129EAA8AE0A8786F92C /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B3CF540FFDDB8D8BB9DF0C5 /* ValueFactoryManagerI.cpp */; }; + 5E90DAC6C21862E543F964B8 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 097B3A1E14CCFB09E7E4CF92 /* IceStorm.ice */; }; + 5E9DED5B910192DE47EB112C /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8425D2B0B3D5867C0C9F3351 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 5F153ABD875561CC917CDD9D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92923B4684A1BF23B89BA01C /* TestI.swift */; }; + 5F2EC79C63A8085DE548184B /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D570457F4FC3998BFFBC686B /* ConnectionFactory.cpp */; }; + 5F57E2CD43FAD623CF6788B0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 344ED5C42593ED171BE68E29 /* TestI.swift */; }; + 5F65D2FEC048254C9E1083DC /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D37440609D6999223F5D3FC /* TestAMD.ice */; }; + 5F7D0A09EA57E2631AFB1028 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42C3558A6946242208F8CFF1 /* Server.swift */; }; + 5F8A79A42975C82B22B1100A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 5FA1F4752493BED64045E146 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 051AA64F020D939F0BCE5A50 /* InstrumentationI.cpp */; }; + 5FE7D74B959988C90EA8A902 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 5FF0AE9CE30DE10AFC8B08FA /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEF8392F8E40DDD59B323CB4 /* ServantLocatorI.swift */; }; + 60014B90BC57A700A35D230F /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F6F9065B966515883E3A81F /* ConnectionInfo.cpp */; }; + 6002F3A63234126AAC8E048E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 60106CAE83EB6F55217038F7 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 883D1C33472953A1CD1DB112 /* Initialize.cpp */; }; + 601387DC6D14FCF71AE0D19A /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 03C85223CF53FA8C62D9D7B6 /* Metrics.ice */; }; + 602CAAEF12802DD779A041DE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 60309A689F48B5F17ED0AC5F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 60505C7D3B5211FD69BB9620 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7064E95255F87EA955FE604D /* Test.ice */; }; + 60B89CFC21235AE88A7DA397 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17A4E70233C2149ACD8FE4F9 /* AllTests.swift */; }; + 610FCFF738E3585A68D89D97 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F917AF2529230B31D362F2 /* AllTests.swift */; }; + 615412B03C938D55ECFD6A3F /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76311088F5303F630B9D1AE3 /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61CF66BE0ACB8B03A08B7032 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8873EA7FF0431868BF97BF8D /* Context.ice */; }; + 61D2C7ED3FFCF5E888AA0FF9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 61D9DB5BD99D93D5F05A6905 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7430D6EB5ECE9ED78A4B9BA1 /* Thread.cpp */; }; + 61F7603B4E8F1E0EC00C155E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 29771C1E7DCB8C9578ECF41A /* Test.ice */; }; + 6204DBD8699BD5B5C10FA642 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2A558DF05365793BE1EDB3 /* InitializationData.swift */; }; + 62342547D0A276825BB0B640 /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B858D15CFF07BA0E6A6FBA3 /* LocatorI.cpp */; }; + 6237103EC7087CC1F8B1180D /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C12F72D326BA31E4F3222697 /* WSConnector.cpp */; }; + 623EC808571025B7AB023173 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 6272D700C9BBD62FFDA84E5E /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 669CDFA4C81273C4A8439769 /* Twoways.swift */; }; + 629135C26A388177FED87458 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 92BDF144EAE646068BBBDC31 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 62A9BD88B66BE231F302E36D /* ControllerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDB2B8CC413A604BFE6E9BEB /* ControllerI.swift */; }; + 62BE8A6ECB45FDA954D3CCF5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 33F4442B1E4EB5B04F907471 /* Test.ice */; }; + 62C75AA5E2F9462280B14ED6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 62DD04A4A316728D4B07AAEB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 62F946138FDD30FE479D1FB8 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0BFBF405F4644470BC57DA2 /* SecureTransportTransceiverI.cpp */; }; + 63087916BE595731F32AF218 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 63174316458448AC4E7DC92D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 6346D3A3C72F84AA4AB41DEA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 6368CF69E144362A08B33F49 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D78CE34686A4B4BFD16057B6 /* Collocated.swift */; }; + 6398C43CC7E21C1827260529 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 63B7797EF929CDA27B444C39 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 63C21F69B4FA5FBE2B9F03BA /* libIceDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B01C28336B07FA327829314A /* libIceDiscovery C++11 macOS.a */; }; + 63F00F80A1DA82B9D3A758BD /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B215297BE120F8697A57E235 /* Protocol.cpp */; }; + 642D60341FB680214188CD66 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = A1C88ECE6870F60549A0EE24 /* Router.ice */; }; + 643F33AC5304D8181111C387 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39C32C927265416D3C9E0334 /* AllTests.swift */; }; + 646E4949DB160FF73465B90B /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5D56F4CFBCB26C84B24DFB5 /* Collocated.swift */; }; + 6473A34A1C579B5732469C7F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1F0A3B85E7C703B656F50B /* Server.swift */; }; + 647887EBD046C418D44A226C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6237E0C8AD8FD3CE4B7CFAA4 /* Client.swift */; }; + 647C2EA48623C44CF9D3F451 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 669CDFA4C81273C4A8439769 /* Twoways.swift */; }; + 64915A83269638F4343A9B15 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 649246D3EDF9617AF096AAC3 /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EC22E4227147E53CE7F4835 /* SysLoggerI.cpp */; }; + 64C4E0EDDB53BCE4FB23E310 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA9E2ECE0BEF16EAE0EA036F /* ServerAMD.swift */; }; + 64EFF36105ECB5C38BE791DA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 64F69A05C89C108F67E0872E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4D35CFAF36E324DC12502013 /* Test.ice */; }; + 6560EEE1F2DDA7C75C23DC84 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55085F9A97549394CFD026B6 /* TestI.swift */; }; + 659150220A61BE0629AA408C /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E8EFB40B36345385787390F /* ServerAMD.swift */; }; + 65A50A609BF9CA3FF65A8944 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53DFCB095E700117F6137EEE /* ServerAMD.swift */; }; + 65B695F97D7140A81973BFEB /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 65C81D615F1F29ED0E38B879 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1AFCED0816ADEA6C571C2E7 /* PropertiesAdminI.cpp */; }; + 65D4940FC9BB902571D9532A /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B30F448C0594430A4E0E1449 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 65DE0677FD77F5B6C51F7824 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61BF1C2278EF3139FA423B0C /* FactoryTableInit.cpp */; }; + 65F080DDE980D3D59A2DD0F9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 661DAE22FD073F065DBC6AC3 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 857C1887760380EA7D969C13 /* LocalException.cpp */; }; + 66861428929B44C881B19992 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 943F62DEE4D6B5F3DE6B0D22 /* IceDiscovery.ice */; }; + 6689B702E44E486F1D5BD97A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 669BACA79A295E915336EF16 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60CB3BFC19DFE9088A67D092 /* Blobject.swift */; }; + 66A7E1A3A913AF58C1196FE2 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE354D95153ECFD51CECEE4 /* Logger.swift */; }; + 66B65BC6DCC5EF73C5E71EDE /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = B4DEA2B3E46B392AE8FA078C /* OptionalFormat.swift */; }; + 66CF4471D25A3E2BAEF91788 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 66D8553486B3E9ABB6CAE190 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C75AC8274DA14FCDB42058FA /* EndpointFactory.cpp */; }; + 66F0E6897B79658616514D1E /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = E56A381E1ECD60A933EDE0C3 /* Proxy.swift */; }; + 66FDBA47A5715EAD2C524C4A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 6785CFDE9028CBB9DF666771 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0A16E1F318A236067C0E62C /* Client.swift */; }; + 67D1F7BF9D2EFC7BBCE1D40D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 67E1A5DCEDFEE9B30AF6DBF4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 68079088850A91F489DB7D5E /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDDFDF674093FB356181A861 /* ConnectRequestHandler.cpp */; }; + 68119B06C32BBB0CDD428C42 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 682422A3B82DB1C4AEF9E1D4 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A39082637C810A7FA44C8BC /* TestAMDI.swift */; }; + 6824AA2D5903E4A815142CED /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A5EDE74C3A3591BBEF47D29 /* ValueFactory.cpp */; }; + 682F19F25DB41B208374EE97 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53899169BFAB829939A10CB9 /* UIKit.framework */; }; + 6847F056ACE03DA2B294CEC5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2405C9C20444A782D096AF0 /* Client.swift */; }; + 68897C8BF672B7300D87D199 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 68D2683EE21084622B09A0B5 /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 00B1BC62D4009B18B3E6DE80 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 68D46CFEA353638513BB1A3B /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = C39BB4ED7CFFA4DACD478D9B /* Util.swift */; }; + 691AFDC8364C658E389E2213 /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 024741EC9D6CFD0898B474E7 /* PropertyNames.cpp */; }; + 695C62773DE2009958415DD8 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35B05AF2B43317CD297363CA /* TestI.swift */; }; + 696FCB63E3F62F57CF3C51B9 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69C937818B79D71765A58104 /* EndpointFactoryManager.cpp */; }; + 69878C54C57027CDAE00A5CB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBBA56D618556333971F2555 /* Server.swift */; }; + 69F0C81FC2B253D2372DD635 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 52D616F0A4C2D7002EE8EE6C /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6A003273EC22AD6896290404 /* libIce C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 952160511B9A724C82F64990 /* libIce C++11 macOS.a */; }; + 6A25F4A45665FB37317F0ABC /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AA5332EE9D7AC564F1B4DC6 /* DefaultsAndOverrides.cpp */; }; + 6A436DD00E6EF12A8FACADD7 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5728530DC35D7B52A550D7E8 /* ThreadPool.cpp */; }; + 6A606B03EC935D5C4CC52274 /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 104801D9CD4099BFAF898CF0 /* OutgoingAsync.cpp */; }; + 6A6D70F561CD85DCEF156C4E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 6AA2BC3BBF3D7623E1C0EC49 /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = D82D2DB3437A859C9A02427E /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6ACD683ABFC9D02D45B3A65D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 6B1EAECED0D88834C269FEBD /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 6B29EE17CEB0883F0D063271 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = AF9A4516C12A26D9D9FBBED9 /* ClientPrivate.ice */; }; + 6B8D86981CC978E00873851F /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93C246AC846FCC1E1E510D6C /* Mutex.swift */; }; + 6BBE89367267A9634CFDA9DD /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8AFF8ED68FE8D153138422D /* ConnectorI.cpp */; }; + 6BD9DB6F461DBB83792E17D5 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFC16F00DE4220D83CB10211 /* Identity.ice */; }; + 6C06DB811A733D348A4F2399 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67AF0C2725586B3CF91B8D5B /* TestI.swift */; }; + 6C09D0635EB25EE79FE9FE0A /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8009BD807CE901360AA23914 /* Collocated.swift */; }; + 6C64384B79949A75BA4F4F0B /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D045E859A2B4BFF7C830734D /* Instance.cpp */; }; + 6C7E660F6F0CFFC90869D97B /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C06BC9BB6B575A7285395AC /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6CA1D8BF90A51D369EB4B35C /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 136757D4ECE48D0332330C07 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6CC0A293FAF7D9EBE4CE3999 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1BF190DF5F5598B978D43F7C /* TestAMD.ice */; }; + 6CC23C2EFAF6B57D376E6BDA /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7592510233717E6CA95DA038 /* StreamSocket.cpp */; }; + 6CEDF708F1169CC054822456 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 857C1887760380EA7D969C13 /* LocalException.cpp */; }; + 6CFC517CD2E862FD6770151E /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2252508F6DC523B17A69C5E /* DynamicLibrary.cpp */; }; + 6CFF55E6984BFCB1D7D5B603 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = D31F7CBFF920A0CF7FB2382A /* BlobjectAsync.swift */; }; + 6D166B9C980E56A9E8EF62B2 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32061348E05540BA94F263F1 /* RetryQueue.cpp */; }; + 6D428C16447934DF23D6B9C3 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = C5A0671B53C97F7A32AFCFA1 /* RemoteLogger.ice */; }; + 6D54381C98639F00C3A4CD95 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 6D9806925FE9B1D91B7574DF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F79211AF57FD9BFFC2CA5E3F /* Test.ice */; }; + 6DE01EEE84CFBAE9E530A1B5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B93100931C7208B5D3064FEF /* Server.swift */; }; + 6E43FFAF21D2223BC6FF9C88 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2709660761B36C91CB36FD31 /* AllTests.swift */; }; + 6E4A3BA74B6C0B8C515FBE71 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 783AC53508ED2C4B2092DD5C /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6E70E567FD5978DC9491EE6A /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44E9A83E6111394E43220448 /* Shared.cpp */; }; + 6E9CD3A191545F54F5BC486E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 6EB02E133B4E86AD6232B240 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B64E1BCBF28AC80B97565EF1 /* RFC2253.cpp */; }; + 6EE7F68D6C1D721931C9F867 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DCF8EE48A1C89A1B55517AA /* Server.swift */; }; + 6F2C784D7AB29466E3DB65E1 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D31D9B7BAF73B3647C64990 /* ServerPrivate.ice */; }; + 6F3E4A6456078206853F36FA /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E64DA691FE8767C9AE657374 /* MetricsAdminI.cpp */; }; + 6F3FAED34005B514F1024BA9 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE02DD17EB206613ADA00EC9 /* EndpointI.cpp */; }; + 6F55B5D7669E20D8BA13C9DC /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 417ECCEE604C6E3005DA5A9A /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6F6F80AA28996FBA4EF0E0B0 /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F76B6CFDC81E7D00110BA047 /* Acceptor.cpp */; }; + 6F768B38BC0FAB1112ECFB36 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 6F9E7F2526BC5685E27886E7 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D635B8A9885F1816618FFF5 /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6FA3C22D831AEC7DE8B58128 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9987215BF230537852456754 /* LoggerUtil.cpp */; }; + 70083F6AE57B8C2055B6F4AB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3C9AD082A4CE3A5F5435669 /* Server.swift */; }; + 701C9599CE750EC22F3F7451 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4E225F52C80B142297214C92 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7041CAFBF52559E93826C15A /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6407F8C33CF3719F6547CE3E /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 705E8806E733E1299FBB6519 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28A0C809966F471AF3580423 /* AllTests.swift */; }; + 708372DEE0A39A86DAA7EB59 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 70AF8225D209C2BE88E0CB37 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 70C027AC16D30B5A2B70C8EE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2709660761B36C91CB36FD31 /* AllTests.swift */; }; + 712121BCD4A1A181AE85D0D3 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54985FA2DF8607E8EEBCF4D2 /* Incoming.swift */; }; + 7159B0E9B5F600926609553D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2A03D7BA843F9831286D /* AllTests.swift */; }; + 718C83E440AF75265AC2FAA2 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BCF9BA52A64AED325C68A383 /* SecureTransportCertificateI.cpp */; }; + 719F6AE81796FF1A87BC1B98 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CE2427693C29E4CEF450087 /* Server.swift */; }; + 71DDACB50B367962DC6FF2F9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 71F25A6E62265E90DBFAF9E7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 721D27204F34CF6282FE4514 /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A274FC67FF85EE280823CAA5 /* Instrumentation.swift */; }; + 7244859C37DD01B58316B701 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 725015781BF9E1A29DF6C6BC /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5E49FEDA41C839C2DB5BFA9D /* WSEndpoint.cpp */; }; + 7257EC947D01F51EB3EBF24D /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 610608EEED146B107B5293A5 /* MetricsObserverI.cpp */; }; + 72953EAACD68F9D61B949B87 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E4E970020786C4F7F72C5207 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 72C14BF972259BC91DF0E05A /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 40A8549E2D87C0E0C7322954 /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 72F1699CF5C9D0AC7F104D94 /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DF959949FDCEE7CC6B0467A /* OutputStream.cpp */; }; + 743EE122A059516C2329E364 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 744E26419A08CF0CD57C48CB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 746772CCBA15207C42E0B52F /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7370B3F9D40F36F1BD730CCA /* TraceUtil.cpp */; }; + 74D9F57DFA21D7CCB6F7A270 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F65E818320EBA8D182AD4B31 /* FactoryTable.cpp */; }; + 7520F3D097B0AE4BC26D6DB8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 7548D99462E5F043C29BF259 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EB071CD809B5D6642DD39E53 /* TestAMDI.swift */; }; + 7567ABA971B703E0E97D7074 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49E2780B30D2DAD681184D1B /* Convert.mm */; }; + 75BF8E7000D7EEEF852396C4 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C10F4BCD402A666A979D101 /* ImplicitContextI.swift */; }; + 75D4023894060253FF73C1B4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 761E23C17BA25FCBA4AF7D1F /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBA8491A44D0E0482F4677BC /* ConnectionI.swift */; }; + 76750A7B6C60C73F1E8B872A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E512A7FBE87BE4C3D0241122 /* Server.swift */; }; + 7698603D5D4483688C1E06C2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 769880B85C8F3EBE542ED952 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 76AB3F609763210CADB2669A /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FA6925D0243F823802CF0D97 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7705645FFA52859BA4B62E48 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F0FBBD74A0A5794E1AF7F7CA /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 770AE78EF4DC9A9438C2BD9D /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C224A90E0F866706D2C93A /* Current.cpp */; }; + 776246D78582E8F27CFB6885 /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2817D930A52C7947C86C0F56 /* ImplicitContext.cpp */; }; + 787292652516D87D14D2A3F5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 787FA1F8D035BE7F702CEFF9 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 7881A10B3D81DEF82EC2DEC0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 78965389BB6864B001653048 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DF8C754C9DA80B0B434EF6B /* Instrumentation.cpp */; }; + 78A521F590AC2F4DC82C659D /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = CB5AF66AE62474538F3B4C8A /* Metrics.ice */; }; + 78FD8CE4714B857F8E146D57 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C95A65FBDD4DD8B4198F49DF /* Test.ice */; }; + 792CAE6A3A01483676FFA9AD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 796C0B626B031FB823C90B51 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6658CBA7425F4413E4A2845D /* ConnectionInfoFactory.swift */; }; + 796CFCFC6EC0E1EDF0A13E80 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7972927EC63E327C4FB459F7 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BBB10CD52BD86395BC343A0B /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 797ED14F2414395C3FF12777 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DAAC857DBB56205C7CCD7F7 /* Server.swift */; }; + 7985A726F62967CC6068ADBC /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BBB10CD52BD86395BC343A0B /* IceStorm.framework */; }; + 79A86C9B8A76ED5F724223AA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 79AE82DE7DAC903DE3B79A53 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = A85AAECD4BA9FD8995F84E21 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 79EB3FB42AB2CF59B72AC2D1 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1FDA295C05339DC58C0D9F8E /* TestAMDI.swift */; }; + 7A0F589A3B4FEFE8BD19AA12 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 7A1F0F4549EE341F790E3683 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 550E7CC0FD0E1918D7A9AB38 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7A7DB83F48579D1390343546 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09338C104543AFAA089DE918 /* ServantLocator.swift */; }; + 7A8AD5F78970C0A610B02EDC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 7AB696B1B1B7409BF7D07D5D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 7AEED7CC582485369211CBC6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 7AF9796D17FFCD4906A6451B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A4046F75C70A64F2CF9A29E /* AllTests.swift */; }; + 7B2E212CA6328893EF888F03 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29BEC4319D17CB3605C32E1 /* TestI.swift */; }; + 7B5B54D1B3A5C346B8B31807 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 7B5E718F6C045A9AD6C26E59 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE3D88FE76A1440B3A0C4DF5 /* AllTests.swift */; }; + 7B6A1EC67FD0F82E50AE84B1 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 7B93B52150FB69C91335F6DF /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74CAD313ABBD56B539F69B27 /* Plugin.cpp */; }; + 7B9504A0DD1136F72064DBFE /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = CB5AF66AE62474538F3B4C8A /* Metrics.ice */; }; + 7BD0697BEB4B03C7DF9A204A /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 93C246AC846FCC1E1E510D6C /* Mutex.swift */; }; + 7BDF692BF7C88C256C94AA13 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54F210B44A3817B414C37EF0 /* AllTests.swift */; }; + 7C068A83F6A5E65E7E91EE90 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 641754B3600E4B8A31487EBC /* Base64.cpp */; }; + 7C2EC9F7EC44971E8E033030 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 748D6B2B330737998D89EFDD /* ProtocolInstance.cpp */; }; + 7C37A082DDC2AA1ABC543DCF /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 96F1FC4C6C4A3154388E702E /* ObjectAdapter.swift */; }; + 7C390614148AAE850C798BAD /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7263472329A47DFD021C4A7 /* EndpointSelectionType.swift */; }; + 7C3ABF554403A3B01ECD3756 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAFBF6BFF7EDE9F0FB64766F /* Server.swift */; }; + 7C5CFF83614D9F86032B07B6 /* LaunchScreen.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = AA144D7BB355829B28020F78 /* LaunchScreen.storyboard */; }; + 7C8AE5C6582DBF5FA5D12218 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 7C966E8687EEC9441CD91EE8 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 213E7606B6C3CA1D4D891CC6 /* DispatchInterceptor.cpp */; }; + 7CB67121D23B858EFFBE4474 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD5215EC1E4F66AFE89CA625 /* Client.swift */; }; + 7CCECBCEAC3F95EC662EFB82 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC3920B0A3180CE9468B5D48 /* Glacier2.framework */; }; + 7DBD74A434564EE6E56CCF28 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 38BF5DB9B9490714A81542C1 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7E18BB634EEF0315FF704C7E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 7E2F060895F39C0B62036465 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7C3AA0639A1EDE5ADB774E21 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7E6E06DEC096327E76FCE368 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 7E711E1D48D948FC830839EB /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1805A9AC8B6C175A9078A8BE /* ServerPrivateAMD.ice */; }; + 7EE4C9C6E4842F23ACCB9B8E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAFBF6BFF7EDE9F0FB64766F /* Server.swift */; }; + 7F297CE3301586D2DE283BB0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 7F59A0031365D9A1C5D30791 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BF47819089271BCD4443183 /* Exception.cpp */; }; + 7F904A60E772473B02D33A2E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 809946911F1EF30B663ACC2A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 80A12B2043A9A99F8B48E108 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + 80F1D9C228F0BF9DBBAE4303 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B1D1ED077D2A30E8ADBE189D /* TestAMD.ice */; }; + 81397D2218A8E70ECB59F5EF /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38BF5DB9B9490714A81542C1 /* IceGrid.framework */; }; + 813B64002946C11C4F6CBF20 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 81B1515A8E35E8B56E63B1C9 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = CCFAA81005DA44D89E41494D /* PropertiesAdmin.ice */; }; + 81D4B9B94408E1CE6ECEE72D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2D6CB1AC0F0C2259F0F5B65 /* Client.swift */; }; + 81DD1E2B67B8FE98B55A925C /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9F9C864BECBB215D589B5735 /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 81DD28CC5DAEF8400F43CF2B /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D86BEF346F9EC95AE96B2542 /* Cond.cpp */; }; + 8223F1F8F0E1E13FC39DCDB2 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A39082637C810A7FA44C8BC /* TestAMDI.swift */; }; + 823C5974E18DDD9AD02B4305 /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB64AD8D0C4921CF515944A6 /* CommunicatorF.cpp */; }; + 8293FA06292D0916E7E406E8 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0AEBA30C56A413C37FEDC134 /* Metrics.ice */; }; + 82BA66B3E37A3B6A4FD94B48 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC3DC35F22EE9E9C9B4BB176 /* AllTests.swift */; }; + 82BEA96ABDBD8803939F7F24 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 82EB528E879F99ECDC7E0920 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7C84F9F86A2642B4DB21761 /* ConnectionRequestHandler.cpp */; }; + 82FA9FDF8A79865391D2ECE9 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 67AF0C2725586B3CF91B8D5B /* TestI.swift */; }; + 83160EAC50936B3146A6AC3C /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 16B2D2F24F75A2CEA9588C92 /* ProtocolPluginFacade.cpp */; }; + 832ABBB17BD2AFF9D7A6DA06 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A23D3F73B4FB00D1F7749FA /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 834C50E4101DC0534FD8BD75 /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92DFE8DFF46D7EFF704D4522 /* ConsoleUtil.cpp */; }; + 835B36D6CFAB0C6E23F1E1C2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1DB7EAB0C292EBBB3A8C6797 /* TestI.swift */; }; + 83D4406DF952DF489E1107AD /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8C2266EFA8E48B90FC6D26F /* ViewController.swift */; }; + 83E24C9B70C54A07077AC0C7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 84C5040B492054A7AB337941 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7C84F9F86A2642B4DB21761 /* ConnectionRequestHandler.cpp */; }; + 84D3DDB4C5A759FE668A341C /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8D821D8582839A7FD652F7F /* OSLogLoggerI.cpp */; }; + 8512A33D16421A12F77CF99B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F52CDE27C04211B51976AF73 /* AllTests.swift */; }; + 851F2626B959E7FB970A95EC /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61579E1435780C538ABE9460 /* LocalExceptionFactory.swift */; }; + 854F5817FBBDC851F66DA096 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75BDF818FC40E0B1A7E2DCCD /* OutputStream.swift */; }; + 8596A7EDD1E6ACEAA760FA23 /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 012209B06380729805C41D0E /* ServantLocator.cpp */; }; + 85AD81EFF581BFF94527C071 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 85C76D2C7D87932FF4C38397 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02F2B04E2560FF1CFFCF86DA /* FileUtil.cpp */; }; + 865F7E23C8C696EDA656289C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F52CDE27C04211B51976AF73 /* AllTests.swift */; }; + 866CE6C7CD700419EAC10073 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E00EC3B82938848CFB40EC31 /* Test.ice */; }; + 8673BE61C2E4DD507B2C82D9 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEF8392F8E40DDD59B323CB4 /* ServantLocatorI.swift */; }; + 8691F48171F3FBA1569525C9 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 748D6B2B330737998D89EFDD /* ProtocolInstance.cpp */; }; + 86B9C06840F8EA8534A76485 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0CE33F8BDE00D6E18E58B3C3 /* TestAMD.ice */; }; + 871C9625015AA4FF703DEF2E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 871D07B0849F6260110751F4 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8865E47F058CCABBA06DB4AE /* PluginManagerI.cpp */; }; + 871E5D291FA35F324B3E81A1 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 262A4BBE4803F28C3591381A /* Reference.cpp */; }; + 872DA73CEB9AB130280CACEF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECAF5F62EDCF29B918CCA154 /* Client.swift */; }; + 87B9EF80F8A9C89298608753 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C307ECD76BE33A0CF42D8C5E /* TestI.swift */; }; + 87D2448A0232D77E66EEC960 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 228A1E21539BF3DBB96E65FF /* Plugin.swift */; }; + 8814309D74871A707A294D4D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 886BEFBD831159A546C6F6B0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30555E6708ECEFAA4EDD334 /* TestI.swift */; }; + 8918A4B646924EECD601C4B7 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FB93EDD11FFD843B54F08CD6 /* AllTests.swift */; }; + 891EDFD22D979D7B2F8B7EAB /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9987215BF230537852456754 /* LoggerUtil.cpp */; }; + 8922BFB194D5094EB85C1A50 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072DFE1DF91B22D0966DB8E8 /* AllTests.swift */; }; + 8990F2867670512FFEC54BF9 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = C131E5D67136A0CA59E41363 /* Connection.swift */; }; + 89BC0EF8DDE8DD5899D94346 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 219598874AE31277B34A82FA /* ObjectAdapterF.cpp */; }; + 8A19C0F341C695F17A7A9EBE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 8A4DE6709B669E026271F2C9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 8A75D7A6D804EC0E8E884723 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B548B1CC74CF128EB62110C /* RecMutex.cpp */; }; + 8A826F49F5AF070F54B28EFD /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = F0503C372876754560BBB8C7 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 8A8DA71DA7A74888C82992BE /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57B4FD55C85D50B346DAC00F /* Key.ice */; }; + 8AEACECAAD401D57D61B33BC /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17A4E70233C2149ACD8FE4F9 /* AllTests.swift */; }; + 8B0482C7FCF2A1BA5293851C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 8B1D34C9CB1A7C8EDEA0F631 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 8B2DA6CCC6EDE09862BFF39A /* TcpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D126B446148A88233AA2278 /* TcpTransceiver.cpp */; }; + 8B44E5682EF1126AD82D28DD /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32061348E05540BA94F263F1 /* RetryQueue.cpp */; }; + 8B591102B6FF277BC4A39937 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A5D217FA26C556261BDDDB2 /* ImplicitContextI.cpp */; }; + 8B5A5AE06BB2EDB5B38A62DB /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC3920B0A3180CE9468B5D48 /* Glacier2.framework */; }; + 8BDC7D54F2F5E990CF7E7637 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = F4CCBD4643B37D4081B89334 /* ClassResolver.swift */; }; + 8C0A74E1F87867F71DB13F75 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B086B5175F1B76E321C3F86D /* TestI.swift */; }; + 8CC3657F13D314A0F34FE8B3 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 219598874AE31277B34A82FA /* ObjectAdapterF.cpp */; }; + 8CE6F4DF75D661EB1884EC78 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 75539742281DFE7E4DC5F602 /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8CE994248F535F6C71FF819C /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6773D68D1A68AE755B5B28D3 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8CEC9D3F94796FF5F863B176 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE354D95153ECFD51CECEE4 /* Logger.swift */; }; + 8D2F94CAC28D59049C60DC1E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0826EF9628F3B4A99BBD3238 /* Test.ice */; }; + 8D715640337A72A7BEAFEB1D /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = A369565B5F8B3323E92DFD73 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D9B8B570A1B3FF36E97F891 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B7CC3EAFDBBAED579CB65E02 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8DAD2AC8F8CF08679A296548 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 8E050B46CDE17D7B5B9F7A10 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 8E3CC5471AB83041D96F3BDD /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = C170AEFA2DAA25C77B642B50 /* ServerAMD.swift */; }; + 8EBF7831EABD52706373B87A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54F210B44A3817B414C37EF0 /* AllTests.swift */; }; + 8ED95361CECF3A6567470C56 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 8EE324E33F6C2050ACE09483 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5A78C4D73F6D7790B04847E2 /* OperationMode.ice */; }; + 8EE927FA0D23AB485FDAB75D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A92AF9829CC12933812E31B7 /* AllTests.swift */; }; + 8F6C7B677E7896DED0D466B6 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13B8F6994B469BFB24A1CBF1 /* ObjectAdapterI.cpp */; }; + 8F9FDE71F1E8E1A16C78A22D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35B05AF2B43317CD297363CA /* TestI.swift */; }; + 8FD912C4ECE34E96169C6F0E /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0E3AEAA11EF708457A97AFC /* SystemdJournalI.cpp */; }; + 9066AFC809A2A59E6B01F26E /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2EB8E16DCE315D105EBA63E6 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 90753138F79D42A4B771D1D5 /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 982DC694739062479B93510C /* LoggerWrapper.swift */; }; + 907C7F6424252479BE0E6979 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 90ACF276E13B746450078253 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2C6131D4A6ED131271C07ED /* Client.swift */; }; + 910F4AFF392E24D57930ED93 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBA41C7E4F8D63EBFF2A282F /* IPEndpointI.cpp */; }; + 915E686BA5D881D50F25A172 /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D30F73A7A6497E2340EAC041 /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 91D947E3DA5B82A6D68059B7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 91EE5AFE5F51B13A2CE3DF2B /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4F314389C68631ED17CF4C /* ServerAMD.swift */; }; + 91F37D276B3C3CBD684876B4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 9209F3EE245FD15FAF70ED96 /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B858D15CFF07BA0E6A6FBA3 /* LocatorI.cpp */; }; + 92378E6FDD460AC4056FC1FD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 98AB2A03D7BA843F9831286D /* AllTests.swift */; }; + 925F643FD55E8BC1034ED68C /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 254F677EC087A0400A2F76B1 /* PluginI.cpp */; }; + 92C6D53D6E4289437FFBEA8F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 62A61E872435F58924471D31 /* Test.ice */; }; + 92FA2577704DB12BD83DD89A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AF984294EC849DC6C9C7C4 /* Server.swift */; }; + 9317A82FB7BD4F383FD583F7 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D284414C8201FF6861AD7E /* Selector.cpp */; }; + 931AE25BE4E64DB26AD849CC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 93269C8D9CEF7ABDB75301B9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 934CD4860BE215CBEE757C37 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC034BBCB34C7182E33E5260 /* AllTests.swift */; }; + 93509A483875F3475B80D8B4 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99578A940F2AE450A4088200 /* Server.swift */; }; + 9361CD9DE69BE96914733C00 /* Assets.xcassets in Sources */ = {isa = PBXBuildFile; fileRef = 1C15A5FB6FD609998456F346 /* Assets.xcassets */; }; + 938F025C2E68D7EF7FEECE82 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EA284C28AD71C2D624582DC7 /* LoggerAdminI.cpp */; }; + 93A61FFCB9A6801419DC2543 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F943822FF946957243189A7E /* Collocated.swift */; }; + 93E482009F62A05B774F0529 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1034928BF4CC47FCD19BE01C /* Client.swift */; }; + 93ED080464B046AE52A840F9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7ED051A2BDDB9511D133CC34 /* Client.swift */; }; + 93F07B7B845E4AFBCF6ED751 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = E9827291A2B8B54C49FD1C85 /* Router.ice */; }; + 93F33DBD32EABC01F2FFCF18 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5D56F4CFBCB26C84B24DFB5 /* Collocated.swift */; }; + 93F8FB515F0210D60A52BF53 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 897808914C54B9799F9A2F91 /* ReferenceFactory.cpp */; }; + 94136B93D52B1FDDA9979D3E /* StreamEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A97E29B6434137D42CB3F467 /* StreamEndpointI.cpp */; }; + 9433E960BBFB8FC536E92EBB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 298C03C34C25D9DDCA4DC7BF /* TestI.swift */; }; + 947254C85FA67D45FC615F89 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B446E87A9F659C4A964E6F73 /* ValueFactoryManagerI.swift */; }; + 948A326D07253CB1C6EEE30A /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC428F92C038CB75D721C046 /* Collocated.swift */; }; + 94B06C834B5F7ADB020BDCE3 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D18F07031EC4C85F5159AFE9 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 94CE962E1C8C57E766A55485 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C2DCE61256F8846CB481C917 /* RouterF.ice */; }; + 94FB7996F752EE4C220F184D /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 460C9BF801CDC866AC4DFE9F /* Initialize.swift */; }; + 951BF89EA1BA46A1D088D322 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEB12A56E8C359F1729F44DD /* Client.swift */; }; + 9625F96F5B2DA2128F38A766 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 964223501738DC1B2CCE8B09 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30EF7A48D5F3B8AF61ACE1F2 /* Test.ice */; }; + 9645FE28EE9C68CB503EBC68 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54DC8E443E82EBB5B393862E /* Connector.cpp */; }; + 968613B5B342D59351D209F1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DAAC857DBB56205C7CCD7F7 /* Server.swift */; }; + 969CBA3C3CF4D1BB678D89EC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 96E121D5F989C98A2229047A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 978105E1EE75A7FE3F79078B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 97AE63872BAD7172B1181466 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF5998B9EC791F4A15E4E0AF /* Server.swift */; }; + 97CDA46DC153E82F7AA00490 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D117E7E0EC5C30487CF9329 /* ObjectAdapterFactory.cpp */; }; + 9898C48A4731EFE8210D6AB4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 98C63A6AC7E7D302D5AB19C4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E560304D19C84FD096965E6C /* Client.swift */; }; + 98CAB5AC4AFC0F9A66E03465 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B98B9DFC1163605AFE57B8F /* Server.swift */; }; + 98DD7702A6CF7D47A0D588C5 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 46BD0BAC03B80804BF23E167 /* Locator.ice */; }; + 98EF39FE3767FF915B1216C0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 99184557407C308C42EE5974 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE6273EFDFF34C2B0E6CC267 /* StringUtil.cpp */; }; + 99B61F6318EA66063E904A49 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 99D32FFF57DFC1C87F61B73A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 99FD9C8435879B20BD0D99BE /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E512A7FBE87BE4C3D0241122 /* Server.swift */; }; + 9A6EBEFACA2391633E65C9FE /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 039BF5E6C32CFEAC7B738A87 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9A8F9A1FEDCD9289440A83F8 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3CE3931DE5E459F004046D20 /* PropertiesI.swift */; }; + 9B0C371E96BFCAD9F90E62FD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6C97867F488137BCC0EB004 /* Test.ice */; }; + 9B3594B847C63885825B1AB7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 646675FFD1880B556F62E835 /* Client.swift */; }; + 9B37D544BD6B420966C6F71A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 9B573BA9FF061F213A342DD2 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D045E859A2B4BFF7C830734D /* Instance.cpp */; }; + 9B8F978405764AA08F53E651 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 984E408AE1C36AB3B759095E /* BatchRequestQueue.cpp */; }; + 9B953359C6EBA787F7BAAB5D /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 92BDF144EAE646068BBBDC31 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9BB9662792C162BE6D308D68 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 9BBC2606E489122C6B89B25F /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 947C60AB5690BEF1175C6AE8 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9BF0A328E074D17A570E7617 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 9C1C4D68F95FC5A4A29F2FC6 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC0CB6129CE22F51EF8C00D /* SlicedData.cpp */; }; + 9C7A28BDE9870CC30C3AB62A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32F86D845456A70BA71A7775 /* Server.swift */; }; + 9CBF1661F887687BE135F131 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 9CF1829BE2AF5FACD04C9DBE /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFC16F00DE4220D83CB10211 /* Identity.ice */; }; + 9D09D6988129F553A9F6CBE2 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = F87C572B2EE3F2EB8C41205D /* AdminFacetFactory.swift */; }; + 9D6541DB0B14FFBA3D2B5499 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + 9DF3FC6AACD41BD370C0FC11 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7D1EED80BE188B0BAFB69F1 /* PropertiesF.cpp */; }; + 9E1AF2B945E75AB67F27DB2C /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1BF190DF5F5598B978D43F7C /* TestAMD.ice */; }; + 9E289FCA7BA6C73117470546 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + 9E311C28AADD696C5F848B21 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54BEEE0D2C2D30B880D903F2 /* EndpointInfoFactory.swift */; }; + 9E58EC0247EC4CD99BF56748 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + 9E8E5B398CE5DC0CFCF02101 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EC3920B0A3180CE9468B5D48 /* Glacier2.framework */; }; + 9E9E317B02130ED5FC126EC7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 9EB39BFC3FFC4BAD40FACB29 /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48E10D0AC873B9C7821B8DCA /* ObjectAdapter.cpp */; }; + 9EBE5B2FA2CD2481F058ABA9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + 9ED77D67BEF83F9D5736BF96 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC3DC35F22EE9E9C9B4BB176 /* AllTests.swift */; }; + 9F02E57705301888BB25FD35 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1034928BF4CC47FCD19BE01C /* Client.swift */; }; + 9F33ECA2E562F1FB9A6AAACA /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90787AF0A37EEA37C85695B9 /* SSLConnectionInfo.swift */; }; + 9F4E88E1BE476B691EB5AA77 /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 960889AE80EE23F4AB9A7899 /* TraceUtil.mm */; }; + 9F87661B5B22D9C4863CCB8F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + 9F92C5F149B853CC995E232A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + 9FD7D2A4411E0993C9BC89B5 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8C01588ADEBCFAC81EF7766F /* libIceLocatorDiscovery C++11 iOS.a */; }; + 9FE9A033D9A7E93EAF3910C4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + 9FF3719B2786AFD4751727AB /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 072DFE1DF91B22D0966DB8E8 /* AllTests.swift */; }; + A00538A81AF3885A25578626 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE4C4A3FC0CBE37945762D1B /* FormatType.swift */; }; + A00E49418E163FCA8FF09DD7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 298C03C34C25D9DDCA4DC7BF /* TestI.swift */; }; + A01F5ACB2F78E16B04143B71 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91DC2A0D34F096C05AFFAFE6 /* LookupI.cpp */; }; + A0297A42C5C8FFF1130AE25A /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = E9827291A2B8B54C49FD1C85 /* Router.ice */; }; + A04279D86E579CE700B36A9F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA894B52D407082F22D345EF /* AllTests.swift */; }; + A0DE119B147295ECC81F4C56 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED98AEC78D53B98EF9216B56 /* SSLEndpointInfo.swift */; }; + A10F7290BA66DE7A51301D0D /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = AE24775D969D93908EB8704B /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A18CF427995658B2A03DA4DC /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0141623AD37C70B98DDDA989 /* SlicedData.swift */; }; + A19C0D1E53AE6AFE3D2BCCBA /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47C76C71FAF5177CE46CD3A6 /* IceLocatorDiscovery.ice */; }; + A1F7F2E304F5642CFB7684A1 /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE7FC47F6D6B7DAFEE7F7199 /* WSAcceptor.cpp */; }; + A21F3C5B9215C266E3165ADE /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = E57283A07B637882DC9B8F71 /* ServerAMD.swift */; }; + A290CAE93C6AE71E72B09C17 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + A29F5225E5F504B3B4712BA7 /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1916BD7FFB0A4D852F04D618 /* FacetMap.swift */; }; + A2B9078CBFEE60238FEB63B2 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = D44AFC725628521459EA373E /* Value.swift */; }; + A2BCAFFF02E5784D7E4C907F /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 550E7CC0FD0E1918D7A9AB38 /* IceImpl.framework */; }; + A3373CE979CB43C206CBEDBF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2543300D55BB8126BF01178 /* AllTests.swift */; }; + A3AFD784B848DC0DA95132EF /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EC22E4227147E53CE7F4835 /* SysLoggerI.cpp */; }; + A3B322BCDB19F5455D136285 /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EA30CE30FF86630A51D19F8 /* Connection.cpp */; }; + A3EFCFE9E5193169F477884D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D02E0C0E582227D272D99C1A /* Test.ice */; }; + A43A9DE2D4D6F8D205F796B1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FD566BEBA418C9151C0CC95 /* Client.swift */; }; + A44BBEB44F0061D52100F64A /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFE02F4EBE4026D7ABF4C2FD /* RequestHandlerFactory.cpp */; }; + A46050EA919D71F382C537F3 /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35FF9CE9706BA3DC7134F434 /* EndpointF.cpp */; }; + A4E1E744053E405915B3838D /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 17996C6A0CAFEC7E4D7ECECA /* TestAMD.ice */; }; + A522E2458E53D4F502599497 /* EndpointI.mm in Sources */ = {isa = PBXBuildFile; fileRef = D7348ED97038DE804E76B4F3 /* EndpointI.mm */; }; + A53B7D56532CB91BBA77E472 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F988BC0E5C27AAC15798F7E /* AllTests.swift */; }; + A553964A87A4A52E2126C21D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42FCF5F723B9F42D13E7A575 /* TestI.swift */; }; + A565FF96F13E68B696AB0546 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4945A8EB3582EC6DE2591D30 /* BatchOneways.swift */; }; + A5801C6541EB32F85A876882 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F9F46F2B6EF9528E9EEA0A0 /* Client.swift */; }; + A5ADD7F645F1566D778AA846 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3EAD21EB605F400BA46ECBE5 /* Endpoint.cpp */; }; + A5C7B5F4BE7054185E9ED7B4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A325D1883148FBD7D53A2698 /* AllTests.swift */; }; + A5CA7DE0F8A95FCBDD5C461D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 551620868D0184DF2FBB2F56 /* TestI.swift */; }; + A5EA530DE3FF889027C595FA /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DA9250AC15D1756168A2B45 /* EndpointI.cpp */; }; + A60CCEDFB2EFBF7E4A1C52EE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6AA934BC1D34654E098F584 /* Client.swift */; }; + A6379853F830F8DEE339CA2C /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = E53219E3EA6910F7E5D579A5 /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A63E27295147CE246831BCEF /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 699F0DFE09B6CD4066FBF4C3 /* Version.ice */; }; + A66A06BE14EECACF53996ECA /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B0BFBF405F4644470BC57DA2 /* SecureTransportTransceiverI.cpp */; }; + A6862F4DD9FC91145AF03E03 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B06214B3EFADD6728F980622 /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6BBA41F0AD88A20589F5CA4 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24D8133BFA0658F49BD7539D /* ServerAMD.swift */; }; + A6F3DAE7E090AEFE39E3B0E2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + A792D6FAFC79F36C2746CB04 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1290DF39C865119AAFCA300B /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A845703EE49A9602B854A312 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 445A79064CF64948393E75BD /* LocalExceptionDescription.swift */; }; + A858BCBEC0D95F005094AB59 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD8AC0525446464A4513C8E8 /* HttpParser.cpp */; }; + A889F31C6222CF6B413FEAA4 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F4B82012902E7A12E38A2AF /* ClientPrivate.ice */; }; + A8A00A6905FDE0F8CC89FC0C /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A8D712086ECBFADE0C77F683 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B678281893C42981DD91CE27 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A8E72CB2A00CF277AEE78765 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6B98B9DFC1163605AFE57B8F /* Server.swift */; }; + A94E182EB3CC9B77214F82FF /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF56A55F9B39D512B0DD722C /* AcceptorI.cpp */; }; + A9A0209FD1FBE2BCD1C84F3D /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 407A0D1CC4E333ABC1A0EECD /* TestAMD.ice */; }; + A9ED6155E60D72CF3A047F5F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + AA0BEC836C4EE11F76FCDCEF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7064E95255F87EA955FE604D /* Test.ice */; }; + AA4DC4DF4058ABDC0211F008 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C931BC0FF471A0F481027ADD /* Test.ice */; }; + AA7D730E054668168A05161E /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = 699F0DFE09B6CD4066FBF4C3 /* Version.ice */; }; + AA91EE92EDBDF9C3B9BA2A60 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + AAA099ECB68A20E883D8E4C4 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AA6F7EAE7C3E4C3B39E26A6 /* ACM.cpp */; }; + AAADF7A11CDA059908707F5C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE3D88FE76A1440B3A0C4DF5 /* AllTests.swift */; }; + AABC7FD5416351DA827EE6CD /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4496C208706DABE2498E3D0A /* CertificateI.cpp */; }; + AAD9FD63A6AB1FE411C1663E /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CAE7DCA47B0E6DA9102DFA0 /* ImplicitContext.swift */; }; + AB23F850880B2C6CE4371A73 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEB12A56E8C359F1729F44DD /* Client.swift */; }; + AB36D3F8130C7D08E9391B3F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F92FE3784F36CF61C114C8A7 /* Test.ice */; }; + AB4F72E3E6814533352A5C03 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEF8392F8E40DDD59B323CB4 /* ServantLocatorI.swift */; }; + AB6A2D0169AA8DB3C0F79348 /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2CAE7DCA47B0E6DA9102DFA0 /* ImplicitContext.swift */; }; + ABD3F68FFDF9EDA83E46A07D /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5A78C4D73F6D7790B04847E2 /* OperationMode.ice */; }; + AC3EE8A69C69ADB755F265A5 /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DC630E9AB4CD732D75C3AEA /* ConnectionInfoF.cpp */; }; + AC900EB0C56BF9816220A412 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = DA9E2ECE0BEF16EAE0EA036F /* ServerAMD.swift */; }; + AC9663224C75CE679D17B297 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = CF2AEC43FB6AF0355BAC4EF7 /* Logger.mm */; }; + ACAEA3DEF571AB0493629190 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 82C6B16C4B7E40482A56F033 /* ServerPrivate.ice */; }; + AD131E0147C3854B0C729B0A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + AD2B2DA6DF61587D5ABBB3D0 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D3DB17839D1905C961285D5 /* PropertyDict.ice */; }; + AD677EC668DEBC813361B3DA /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7D798CB60FB962ADC8BB32 /* CollocatedRequestHandler.cpp */; }; + ADA1F2D1BF7FC5B1D901DF68 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + AE67083C56398BC5DE7D4D99 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + AF07549D2B06CF7F9786B699 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FB6FFE9F654CF558339B7A0 /* CtrlCHandler.cpp */; }; + AF3D0F3725F6ED9BB6A10163 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CC0CB6129CE22F51EF8C00D /* SlicedData.cpp */; }; + AF3EA462D891151A0EFEB0DE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F9F46F2B6EF9528E9EEA0A0 /* Client.swift */; }; + AF3EE1D56748FE60B9D07826 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23CFD2FCAE3C1695E2970A65 /* RequestHandler.cpp */; }; + AF4CF497AC2E6E5810C24ACC /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA0D87A615782B7CB24C3F4C /* ArgVector.cpp */; }; + AF630E86E313FC6E6AD60ED6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + AF6C82C2A12FEA3F0A6C6085 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 909200862AB304F9E9056BD3 /* Properties.mm */; }; + AF6ED8A265DCBAAAE53BE464 /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2252508F6DC523B17A69C5E /* DynamicLibrary.cpp */; }; + AFD44DCF2AF9821684BF709D /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + AFFA1EC2F552AA0DA6BF3FEA /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94212BAD957A78E36EC3EED4 /* ConnectionI.cpp */; }; + B03E802CFDE2A218DE2981C4 /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 184B082770DE7259A12A3BD1 /* Communicator.swift */; }; + B05CE058BC244B6E3057D225 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23C18BD31119A8393B61B049 /* SecureTransportPluginI.cpp */; }; + B0D8D816BB46B93AD0B4CEC6 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53905C1AE3214B94DDA79E59 /* EndpointInfo.cpp */; }; + B0F89911A50D01531A70FD85 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + B0FF521816BF6FD5480F2F63 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFC16F00DE4220D83CB10211 /* Identity.ice */; }; + B1A75AAD0B9493B074B173F1 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 383E5361C48546671985CEC1 /* UUID.cpp */; }; + B1E529E427369E6AF8DE3496 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + B1F9D23863E61F678A8A3764 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B3240DA41D618B1A973AB23 /* PluginI.cpp */; }; + B2035F4B69A53A945C18D536 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + B216FFA98EF5680F9E86F586 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + B21EC75B9C09FC3EBF1905BC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + B2304A8CA53E03EBA25BABD0 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3002D403128013C2404936BD /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B247222F3766E51A219EBD4B /* Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = B8CC643DD42F1A5B6B27A542 /* Notifications.mm */; }; + B253F6E36F7116E7BE04ABC5 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A5D217FA26C556261BDDDB2 /* ImplicitContextI.cpp */; }; + B2A519C09270B84605895A6F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + B2BC1B5F5775358D61C23C4F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + B2DF0CB00702A0398BC76D2D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + B2FC6096B00EDAE5AD85A564 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C931BC0FF471A0F481027ADD /* Test.ice */; }; + B352E065DAD59352260A126B /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 460C9BF801CDC866AC4DFE9F /* Initialize.swift */; }; + B3719EF102C1D651ACFBFA1A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2F988BC0E5C27AAC15798F7E /* AllTests.swift */; }; + B388A2E9C12888AE3036941F /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31C4F4C9865AF32911F1A508 /* TestCommon.swift */; }; + B3A10D4F4A68ABE204829210 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 86525836B17F14E966E687FC /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + B411990ECF232D5EEC41CF4C /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1C10F4BCD402A666A979D101 /* ImplicitContextI.swift */; }; + B451C1FC311070C873B1D26A /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = A274FC67FF85EE280823CAA5 /* Instrumentation.swift */; }; + B49E109AEDBEF311AE201AD3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + B4B9F42833EE44C8F17C2B2B /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A5527F3E66D1C8E580EDC49 /* Current.swift */; }; + B50B7BD76CAB3AF2CE75EA3C /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 177CE1264BA28FAD588640ED /* LoggerF.cpp */; }; + B5F6F532A8B2349E0FE40865 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0F906003B06BE6FF5CC28C49 /* Forward.ice */; }; + B6633EDBE39668511F4FEA6C /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 123567924E68C349BAF887BF /* Time.cpp */; }; + B668BF08B8C7168F91F12138 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 052495E30CFEFD5327466782 /* Service.cpp */; }; + B680D486ECC83205B33E33BB /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0F906003B06BE6FF5CC28C49 /* Forward.ice */; }; + B69CA3403843BF3BC58AF46C /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B9394803D622D0ECAAE9E923 /* Proxy.cpp */; }; + B6CD709CF20ECF56DE303D4D /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1082EDDCF74692688AF946C2 /* EndpointTypes.ice */; }; + B6D2CACE37569D360E81CF71 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 245956FF449E351AEF203C2A /* BuiltinSequences.ice */; }; + B6D66631D45C7F3DBA49048B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + B6E959AF7E46799EA2F7196B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99578A940F2AE450A4088200 /* Server.swift */; }; + B6ED4347B6CF8D570075A7CC /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7E752D08EB62E167C213E390 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + B70E3D3C1C12B5939CC0AEE5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + B73AAC1826FF86338EE5CDB6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 62FEBA73AE042571D01D4F88 /* Test.ice */; }; + B7563680C62BF02B4C170D43 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + B75DD1605DEF5643E944BCB1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + B79E763904325D5935C9EFB4 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0826EF9628F3B4A99BBD3238 /* Test.ice */; }; + B7AE6DA720BB24FB7D458DB6 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2C7F78C569CF9618E842EF08 /* PropertiesI.cpp */; }; + B7CFA50A810D3D930A2D97FC /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 04A32B58F4D583452AEE62D6 /* Collocated.swift */; }; + B7E3CFE8300D0B2396E927C8 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + B7FDDD203AA66654A5607812 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 86BC667FEF2BA5820A7B7BA5 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; + B84A3412BF7B48EBBA623F6F /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 104801D9CD4099BFAF898CF0 /* OutgoingAsync.cpp */; }; + B8CAAACCE0841129645CA33E /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACB597B2CB96C20CBF0FDA64 /* InputStream.swift */; }; + B8F88BD1EB9433D3D5245ED1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A325D1883148FBD7D53A2698 /* AllTests.swift */; }; + B8FAD4AA198CF8C5259C6347 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 625E4E47BE0B8C13B100A33B /* ServantManager.cpp */; }; + B962FED105E70E6758FE6C94 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46411EDDE8E438FD8EAE98E5 /* AllTests.swift */; }; + B9B24E396FDE347A421F9CD5 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8873EA7FF0431868BF97BF8D /* Context.ice */; }; + B9DC6350073FEEEBD96585C0 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFC16F00DE4220D83CB10211 /* Identity.ice */; }; + BA1CC1B8CA069209399840AB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DEFB158CC638F81D597598D /* Client.swift */; }; + BA36AAF6A0759F3AF120A5EA /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C224A90E0F866706D2C93A /* Current.cpp */; }; + BA3E225D22D6C87A8A88AAED /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = A1C88ECE6870F60549A0EE24 /* Router.ice */; }; + BA6187767D253C1BA6CAC523 /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DC630E9AB4CD732D75C3AEA /* ConnectionInfoF.cpp */; }; + BA6BBC581D1B8813C818F2F4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + BA9EC1DA75BBFFA7D1A1A8D7 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91079E777372B4F182F41A0A /* Collocated.swift */; }; + BAE2651008892F7A89A3905B /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F32ED048C90725C7C38CC684 /* Security.framework */; }; + BAF5E489392114DC2B84822F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + BB0316A2829DB1C48EBC4310 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 290B87AA15456D1942D99E39 /* InstrumentationF.cpp */; }; + BB3B26C8715649A1082E7F4B /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4F314389C68631ED17CF4C /* ServerAMD.swift */; }; + BB664E60668EDDA5C2277A5E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5208C1A489762B290922821B /* AllTests.swift */; }; + BB69A7C53192E2A2EA5C024B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5FD566BEBA418C9151C0CC95 /* Client.swift */; }; + BBABD332601D721665111C4A /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 76660D1C75C5895B539F597E /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BC13CEA38D6BFD3DCB8DE8CF /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA4864743AE51C6261C21300 /* Process.mm */; }; + BC6D32D684B5D1AD42E0F152 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F1F158B962A78341F9EF225 /* Client.swift */; }; + BCACC500C9573DB69AF80F00 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + BD0BF46B65299F2E14DCB36F /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5E2090C4D1E0D664633C3C5 /* RouterInfo.cpp */; }; + BD47C6329890AA8D0A1D5D92 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 07F3EDD1A3D763999E9C05E9 /* TestI.swift */; }; + BD59F6B7FBF3420436A94A16 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + BD6E854FF3690A66718478AA /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECF4655D8774B8E48A8D6C2 /* Properties.swift */; }; + BD8D7C3F1DA36FA0A413D715 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + BDA08263A4011CDEEADA6EF2 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06FF3EB23F66FB5AF64C1B75 /* IconvStringConverter.cpp */; }; + BDD69450839996D1DFF9B742 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + BDDA7FC6A6EE11BC28747E01 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = D44AFC725628521459EA373E /* Value.swift */; }; + BDE077E9720EC27AE72D3DF7 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B2C05AE8C73A007F79D23190 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BE44450971DFFDBA9992461E /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3C8BAD4C851DA28C1DF9F17D /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BE51A0791F89A85D2C6183C4 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FC2161B7FFDD05E63318911 /* LoggerI.cpp */; }; + BECC94FA4529B520E530DACC /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C1EB023D3B85638F4414F46A /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BEEE7AF560043BA147111E0F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + BF15744731598046FEFAC839 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + BF349A28750D94AB60AE628B /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9380D40DF12A3318B74FC8B /* ImplicitContext.mm */; }; + BF3C71DE6E1B77891A8EE4C8 /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = D9380D40DF12A3318B74FC8B /* ImplicitContext.mm */; }; + BF40D440923D78CD05EDDC10 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + BF4903DC977C17334DF4B81E /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7430D6EB5ECE9ED78A4B9BA1 /* Thread.cpp */; }; + BF5B0279E492FBD1DD08B770 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + BF5CAD0817D8DF9363E17E06 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3A42A2314F003B797A43F677 /* TestAMD.ice */; }; + BF6B21A85068A6A6CC69B6F4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + BF7825223E822077FF21FE2B /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D3DB17839D1905C961285D5 /* PropertyDict.ice */; }; + BF91B71139F96707D007F191 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + BFC2B93623F814848E325C16 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F6F9065B966515883E3A81F /* ConnectionInfo.cpp */; }; + BFD6A16C9ED98E4A23AAA127 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = CCFAA81005DA44D89E41494D /* PropertiesAdmin.ice */; }; + BFF4C3194AA5DF25334E99F2 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B4F81CBE09B9EC7215B359B /* IceGrid.framework */; }; + BFFC556723B1885754F25EE7 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 847F20E8EE2CB3D83F522A4D /* EventHandler.cpp */; }; + C05D173424BD71E284A052B5 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = C2DCE61256F8846CB481C917 /* RouterF.ice */; }; + C081086F5629F3DB313DA8F1 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 051AA64F020D939F0BCE5A50 /* InstrumentationI.cpp */; }; + C0A724E6D16AE6E0E9E9076B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C2C6131D4A6ED131271C07ED /* Client.swift */; }; + C0E08E323FA1218F61CFC193 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = B43B0FAA9A029A4458C3590F /* SSLInfo.ice */; }; + C0F611668FFB784E0586D4F1 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4945A8EB3582EC6DE2591D30 /* BatchOneways.swift */; }; + C14502A4E0EC17DA8C16C2FC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBBA56D618556333971F2555 /* Server.swift */; }; + C14A8BB9ACABDBDC2EFC985C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + C18C1A2556FADA6C0E405256 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF5998B9EC791F4A15E4E0AF /* Server.swift */; }; + C1C1EDBAC6B2D725F2760A08 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 646675FFD1880B556F62E835 /* Client.swift */; }; + C1D8C9E056AE47058B5916B9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = E2876A8434BDA95E5E67FA4D /* Test.ice */; }; + C2316BD1AA20DAD4632832F5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73A88EA74CCC4616D710AFB6 /* Server.swift */; }; + C24C6BDC05734F4417A5A3BB /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32E26E67BE14E1FFE12A7ABD /* BatchOnewaysAMI.swift */; }; + C2C3EFD402723454A3CE8FE0 /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 48E10D0AC873B9C7821B8DCA /* ObjectAdapter.cpp */; }; + C32369A16919A445F66F56C3 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23C18BD31119A8393B61B049 /* SecureTransportPluginI.cpp */; }; + C37256EC29744BA7B9DE5286 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8865E47F058CCABBA06DB4AE /* PluginManagerI.cpp */; }; + C37ADCA5C9C062F551874C20 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0E8CA41CAED77683EB6C5E74 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C3D4E0973C91434F5D74C990 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 245956FF449E351AEF203C2A /* BuiltinSequences.ice */; }; + C3DD6CA2DF4541A112267210 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + C3DF05379E8D5676B42811C5 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 860EEE47FA5F73DF18371EB0 /* ConnectionInfo.cpp */; }; + C3E8AAF1B09E5AF0629ECE4E /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = C5A0671B53C97F7A32AFCFA1 /* RemoteLogger.ice */; }; + C3FBE778CA9AECD610236D69 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D255BAB7E5E515B654EDAD67 /* Test.ice */; }; + C44BE1C922D3653173116D1A /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76311088F5303F630B9D1AE3 /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C45218CEF77BEEDEF7355C56 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 445A79064CF64948393E75BD /* LocalExceptionDescription.swift */; }; + C454C5EED2C69E238ED50DA5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B88F26BEC7B480A327AB48B0 /* Client.swift */; }; + C48819E4F957A54E015352FF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A864DCFB7D453663CD16FD7 /* Client.swift */; }; + C4DBA58A0036DE6056365B97 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 851EBE7BCB0ABDCADDDBE688 /* Test.ice */; }; + C51551DD0E0A0E94BEBC12F8 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D78CE34686A4B4BFD16057B6 /* Collocated.swift */; }; + C51CBF0C456B9754875C8C21 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = B7A43DB55534C1EC4B2C2B8B /* IceUtil.mm */; }; + C524553A01141672CDA8FB0A /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FB6FFE9F654CF558339B7A0 /* CtrlCHandler.cpp */; }; + C52BC0D38C4E663FF0C06E70 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E672D54C33B901EEFAD1A9FF /* TestAMDI.swift */; }; + C53F42963A4AFD4544698CC7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + C54BBC52A953AFB63D2B7ABD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C19E1DCD6ED441B62D90114D /* Server.swift */; }; + C5762D07DF81F6545ED7D54A /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CC9E31096285763A44ED387C /* Glacier2.framework */; }; + C598919CF0C8501D3DC90D5B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87F199BFCA75EA1D85ED8573 /* TestI.swift */; }; + C59E9287370C64C7FE64C74C /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8FBA68CBD78E9ADC871C4C5 /* Exception.ice */; }; + C5A8952214CFC78A3233C2BC /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AF6D9D6FA59CAFDB3F6AEA8 /* SecureTransportUtil.cpp */; }; + C5ADF2BFA92E78D349605C1F /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AF6D9D6FA59CAFDB3F6AEA8 /* SecureTransportUtil.cpp */; }; + C5C3A21713BE9FD46C8CFC16 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2D1DA1259D07ADB52B759AD3 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C6695CE4D8CDDF282DB52EAE /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1FB327988DA6B56153EC048A /* Session.ice */; }; + C6A08EAAFC95EB40B7AA7CA1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + C6DA937A74733C9A94044CF2 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4B4F81CBE09B9EC7215B359B /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C70008E9B4D3760A7C19887F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + C700D8EA841D2A3DA0DB25E6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + C770E74F553F7576F55A68FF /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92DFE8DFF46D7EFF704D4522 /* ConsoleUtil.cpp */; }; + C78E3846FE62A72C93344FA6 /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BD60FA4285B90536DAE2ABC /* CommunicatorI.swift */; }; + C791A58653F684CACAC0C044 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + C7B0B5324B1868D1DBEA7750 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99528469CD587F598337AACA /* TestI.swift */; }; + C81496216924244A9E8178C7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + C84E5F9FB6C72298CFF0D98B /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = ACB597B2CB96C20CBF0FDA64 /* InputStream.swift */; }; + C8541790D99E74903D0F780E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 15F534469D81C24FFE8DCEE3 /* Test.ice */; }; + C8AC511677CE0AF0FA3D29C5 /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E2C01CEC70FAB4F5A70D2671 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C8E013C85F6858FFF3412418 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3798FD61820B41A64C69B2A9 /* ObjectAdapterI.swift */; }; + C8E5F5A0CB9E7A88D599124D /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 61BF1C2278EF3139FA423B0C /* FactoryTableInit.cpp */; }; + C920ED4CE6B727C84E47F6E3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6237E0C8AD8FD3CE4B7CFAA4 /* Client.swift */; }; + C9343BDFEF3CE4648B07A7A2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 264D776F123D481FEAD06C14 /* Client.swift */; }; + C94F0E787B8BF56168BCFCBE /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61579E1435780C538ABE9460 /* LocalExceptionFactory.swift */; }; + C95230B6CF60D4621CC8A0AD /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C75AC8274DA14FCDB42058FA /* EndpointFactory.cpp */; }; + C99681DCD743D1398EDD3909 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3DCF8EE48A1C89A1B55517AA /* Server.swift */; }; + C99E8BCB8C0760680CCEBD67 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB3BD1DF07A3C09CF5FF39EB /* AllTests.swift */; }; + CA06CB0C5AB2857659D30283 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + CA252256CC2991D092545DBC /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = A85AAECD4BA9FD8995F84E21 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA7ABCDBECEDFBFB82D0DF7C /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3798FD61820B41A64C69B2A9 /* ObjectAdapterI.swift */; }; + CA7BA166EFFBB8A99FC8C1E3 /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = DA4864743AE51C6261C21300 /* Process.mm */; }; + CABFF27F6F2A32F14735E3F0 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 49E2780B30D2DAD681184D1B /* Convert.mm */; }; + CB11222FA168D7398A6C98F4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A864DCFB7D453663CD16FD7 /* Client.swift */; }; + CB622D3E7281ED439F00EB46 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + CB7452679BCD75117D5A3606 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + CB85179282353A2E6162CF6C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + CB8612D9A6C9DA3EB7116701 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 53F964ABBD543305F85E892C /* SliceInfo.swift */; }; + CB99DA49E34E24584CAD6913 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + CB9FBAEEE0623717B25517A1 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 888B3167CD8A4968215F0A38 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CC1BC24CBADEC97580FD197E /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D570457F4FC3998BFFBC686B /* ConnectionFactory.cpp */; }; + CC42C6CB3220213E9E19480B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + CCD00E309469958F09EB011E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BBB75B8D55DDA16960177189 /* TestI.swift */; }; + CCD563DCABA4AE62E785390B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7AF984294EC849DC6C9C7C4 /* Server.swift */; }; + CD25BD05523C2443FC2D8784 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF56A55F9B39D512B0DD722C /* AcceptorI.cpp */; }; + CD865BB5039A6DE5AC815FFD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F917AF2529230B31D362F2 /* AllTests.swift */; }; + CD9E6556C12C343B208C4334 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 111E017C3F3407C4582DC59A /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CDE84069274E7AA63091B286 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + CE104544E2C5CE0767FB43B6 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1124897FAD46E0C20C2CD5AF /* IceStorm.framework */; }; + CE1B98B411AF06D2C3E6EFF8 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A9C59F0ED0E375A09B03481 /* LocalObject.cpp */; }; + CEAB89B465FF09233302CEC7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B286694690297FFF7DF31EA9 /* Client.swift */; }; + CEB1C40BD472C200638316CF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + CEC4684BC2D30A4AB0A27E2D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B30555E6708ECEFAA4EDD334 /* TestI.swift */; }; + CED7A97236DE1FC84F1177A4 /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 184B082770DE7259A12A3BD1 /* Communicator.swift */; }; + CEE0EE82A6664D4B381E4F16 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + CEE0F269C74426DE6DB3DAD6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + CF222468EC9ED1E375019BD8 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A4046F75C70A64F2CF9A29E /* AllTests.swift */; }; + CF29DF860D834842B34492BA /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 52278F0A9D3CC113108CA88D /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CFA2FB72A8A2B0C3CD06F39F /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D36CEA6C13079203D960A28A /* TraceLevels.cpp */; }; + CFC18099F19E175F8039038D /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 982DC694739062479B93510C /* LoggerWrapper.swift */; }; + CFFE0C91E174DFB6AFC62D11 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F82270A0824387C79330584C /* Client.swift */; }; + D02DC67B4C2549D73E315F6A /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D789BAF0BE9CC7DA9EAB63A2 /* Collocated.swift */; }; + D032321DCBCDE32548CA1618 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F92FE3784F36CF61C114C8A7 /* Test.ice */; }; + D08C9B039F3B7FFA8A628B3E /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A76BBEE914CB874C8B739408 /* Security.framework */; }; + D0A4E10E3BDFE93277F3A0A5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F48CF258CC15C9D7DB246467 /* Server.swift */; }; + D105991EF83EACF61F5208BC /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D635B8A9885F1816618FFF5 /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D1086683670BCE57082B1CD4 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0AEBA30C56A413C37FEDC134 /* Metrics.ice */; }; + D14B93BD4ECF1E16210A2D13 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = D789BAF0BE9CC7DA9EAB63A2 /* Collocated.swift */; }; + D153EC50266E9B2F09907800 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + D16B4716FEE396397A5DD51F /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = CCFAA81005DA44D89E41494D /* PropertiesAdmin.ice */; }; + D1B35391E8FCD2989699CBA6 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = B30F448C0594430A4E0E1449 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D1CE0391F2DC75CB87425047 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75F40F1911A6EA4452908C71 /* IceImpl.framework */; }; + D1DC12249C8AD1DE0B56F4A4 /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE12756CF23A83E52C61D223 /* NetworkProxy.cpp */; }; + D2515E535E9A0C8F55C4E938 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0635A59EF2F6E52013CF218 /* OnewaysAMI.swift */; }; + D268A8AB3B87A3F89F29BF12 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1CFF70BA10C4D6AE188D017E /* Client.swift */; }; + D2EC16CDEC89CB28A7ECC4B8 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + D32123218F102E10A40E2517 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 31CED9038EC89062E2687C72 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + D344AE565CDA1EFACB3E6D8B /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3002D403128013C2404936BD /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3C12C588ECD99B77FD53F5F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + D3FA2823ABE107257D253E69 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EFFE201B94FAE9FB1295F1D /* Network.cpp */; }; + D41343A9E5B61EA1DF0EC0E4 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = AE9FF7D3CCA47C89D218FFEE /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + D41482265E25E3510EDA73D9 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C06A1AEDD98E9D1115EB3E /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D41EF67EB7FDAD10101461CA /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 03C85223CF53FA8C62D9D7B6 /* Metrics.ice */; }; + D43A0276A7E9664595C9F36B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + D4B13738FC7E917F448E9D1A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + D50693D75429F2F8FDE1D556 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + D57842885C9223C95EEA23FB /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 84CFA96B1376810A278A1749 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D5C7A0B1BC49DC9001E9B256 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D3DB17839D1905C961285D5 /* PropertyDict.ice */; }; + D5F2E483F2CAB70FF08377D3 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B80D1F29C6A35D955A94B1AE /* AppDelegate.swift */; }; + D5FCA2ECAEAB0118A83B1084 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + D601DC97D4D4A251BD47C21B /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8873EA7FF0431868BF97BF8D /* Context.ice */; }; + D60A3003C2A82F2742C7F04F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9AE62B725D03CDAC1B7BCBF /* AllTests.swift */; }; + D67186A61676EA7BB4903D63 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F9A21CE53736A014B4EDECB /* LocalObject.swift */; }; + D68D845996671C82C624D511 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B839F8BB619665F6310934B /* AllTests.swift */; }; + D6A2FEC9AD952DC08FFF98D1 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = C170AEFA2DAA25C77B642B50 /* ServerAMD.swift */; }; + D725BFF39A8A7D7D356BFB68 /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = D82D2DB3437A859C9A02427E /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D7627C6559C1000CD02F4CA7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + D78A6E3CEF457BBFFB8E4BBB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + D78ED6C3C9B75089154E32E2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 563E87FE0656F0B5B4ECBC45 /* TestI.swift */; }; + D79D5036D144871CAA38E8DD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + D7A2D9874C1DF3556BC94CE0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C6C2523849920E54B5C3674 /* TestI.swift */; }; + D7A30EE1AC30494211B6235B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + D7B4AE4B2DBB9275E10F8507 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30A005FA49909E00786C40AA /* NativePropertiesAdmin.swift */; }; + D7C189E87156A9E30F00FF99 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FF9AEE9480B3623AF7E5DCA7 /* ServantLocatorF.cpp */; }; + D7EF61DAF00E36DA514A3C61 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42FCF5F723B9F42D13E7A575 /* TestI.swift */; }; + D8537385D90C11E0C55840C6 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0DA087232F08332FC98A97BC /* Endpoint.mm */; }; + D85502B5DD415C191999FC52 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + D8C81CE7F1DED28C44ABB600 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + D90CE957121A84EACAD5D2E3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B29BEC4319D17CB3605C32E1 /* TestI.swift */; }; + D927230E991DEA814CAEB807 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + D944DDDFF3D0B9567A1BE5E2 /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BB35BFDB4D9B787E400326E /* PluginF.cpp */; }; + D98AF6B485F2F611F7973894 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A1998FED769C42CDC7AB11C5 /* StringConverter.cpp */; }; + D9B2618F56528BF1B2DED2BF /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6CE17F65AD7D95CE4D52AEB8 /* Properties.cpp */; }; + D9F2CEAC2E915D020F5912D0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + DAB7DEB33FC1FA8912F2EBA2 /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B3CF540FFDDB8D8BB9DF0C5 /* ValueFactoryManagerI.cpp */; }; + DADBC1295E2A171BA2EC50A4 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8A39FB52971B8BCC7CD607F3 /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DB25127E76899AD620191D16 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + DB2F97CE9AE225B4A886DA05 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54BEEE0D2C2D30B880D903F2 /* EndpointInfoFactory.swift */; }; + DB3A9B50184179620C44C96C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91702C97E64FB532023CE75D /* Server.swift */; }; + DB47A318EF29D485F2DBC9B6 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30A005FA49909E00786C40AA /* NativePropertiesAdmin.swift */; }; + DB4F11B521C6D3A69C4FA7CE /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = 316C086D0730E162FA3210E3 /* Process.ice */; }; + DB5F541975063E593546079B /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = AF9A4516C12A26D9D9FBBED9 /* ClientPrivate.ice */; }; + DB65655BB695669B985C0DC9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B88F26BEC7B480A327AB48B0 /* Client.swift */; }; + DBA772351D1FF736995A2143 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EEB9F4EFA4B5E11103B64F2B /* TestAMDI.swift */; }; + DBC636FA81F0EB0411DC86B0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C95A65FBDD4DD8B4198F49DF /* Test.ice */; }; + DBCA5CCA1700E23B869F20D0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + DBD096113939BA24E05072E2 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0C8E7374D8D5DA4006B190AC /* IncomingAsync.cpp */; }; + DBD9C22B3087AE2BE513DAB7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + DC328F456BDD65ED1668E893 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28A0C809966F471AF3580423 /* AllTests.swift */; }; + DC43BC0784EB4DB40CE3D228 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 356A5466FDDC86F58D1F4D42 /* UdpEndpointI.cpp */; }; + DCB11FBA6D5CA80E865C2819 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + DCB9207DBBD27DB0A13C371F /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 625E4E47BE0B8C13B100A33B /* ServantManager.cpp */; }; + DCEDCE9F1CD9514D03FBC3C3 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D3DB17839D1905C961285D5 /* PropertyDict.ice */; }; + DCF75D9CA0611B6B1B4956E3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + DD4688ED369D5398F27F3A93 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 31C4F4C9865AF32911F1A508 /* TestCommon.swift */; }; + DD683627B085DAED6347C947 /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01108206A582A67F00C05EBC /* Incoming.cpp */; }; + DDCA8F2E42DCD0F98C3B3AC3 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C4D40FD4D514C6255DCF1E88 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DDEC0533CBB5C093F7597307 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 20323F0CD7B9AE4569FF4757 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DE6DB9614747B693F25C6D40 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = 0026EE92FD5C304A025799B2 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DE851618312004CEBFBCF914 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CB65DF0EB3BC9182E42B33C6 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DF26340484CF5EA4B18F615D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + DF3CEEDE9EC370E61DC8F21A /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2817D930A52C7947C86C0F56 /* ImplicitContext.cpp */; }; + DF4AE94D779813C602F900E3 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 182EAED50584404F22460330 /* Descriptor.ice */; }; + DFF0A49D4C787A8A1EF31837 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E64DA691FE8767C9AE657374 /* MetricsAdminI.cpp */; }; + E0151FD5C29B853B09F13A21 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 86BC667FEF2BA5820A7B7BA5 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; + E02E83CB5991647FE818D277 /* StreamTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 885AE89496BA237CFD217347 /* StreamTransceiver.cpp */; }; + E05843FBC3FB2C0977CFC6B5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + E0A07110CCA4F4832A4D9A8D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E9CE949ADDB5DA57B0A2360 /* Client.swift */; }; + E181720D16E284E00EF5594A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECAF5F62EDCF29B918CCA154 /* Client.swift */; }; + E197FD3BB8AE4C794D633A66 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29F96EFF6178BC3FE5DB0F00 /* TestI.swift */; }; + E19EEACF9EFBB411CE1EF29A /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3157232929DAA590D328DEC9 /* LocatorF.ice */; }; + E223F919074FF937A6DD4674 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 24D8133BFA0658F49BD7539D /* ServerAMD.swift */; }; + E23E1EE2CED7A8E397A83390 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 883D1C33472953A1CD1DB112 /* Initialize.cpp */; }; + E26864CCB63877CE01685511 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91079E777372B4F182F41A0A /* Collocated.swift */; }; + E2972B4D300F3C37F8B874AB /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0753F097A120485770B9AAA7 /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E29F4A25A6CB7DDB3B674446 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + E2AF96A686DFC6CEF9F5673F /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 55EDAF98FFDD5285D1D33F96 /* Collocated.swift */; }; + E2C6533B983B817B639CF4A8 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FA5ED0AF00325B25AA3D49E3 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E2D0A8536465DD4F82547451 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1124897FAD46E0C20C2CD5AF /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E2E0F43EA08F84F854E28815 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + E307006E2183F31E65D4485C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91702C97E64FB532023CE75D /* Server.swift */; }; + E308EC7E46EE3A0299C0B22B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + E3100941E2344C35E29B6220 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + E32DDB7B74A4B86863D3EEF1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + E340CCAF0754D842188E25F0 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EF8280C5D17209751E14553C /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E35148CD7DAB1777BA4CAFB1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C6C2523849920E54B5C3674 /* TestI.swift */; }; + E35F2CFE3A1690512338A863 /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 527D2F42A3A39B2F888A301D /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E3972E1B16DA8EFF78CA1E2B /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEF8392F8E40DDD59B323CB4 /* ServantLocatorI.swift */; }; + E3AC6A9A5C67AA8655036221 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1082EDDCF74692688AF946C2 /* EndpointTypes.ice */; }; + E3DEACACB95B8C3102DDB545 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + E47CD5936E8B95B198BFA1C2 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 785159C3CF8A869678895694 /* OpaqueEndpointI.cpp */; }; + E4AE87EB9BC7E71107135D00 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + E4CBF5D56D5430BCEA4B2DC7 /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 46495D8B50FD3CF57DCEE7F0 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E4CC75662A01D162EE144698 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 17996C6A0CAFEC7E4D7ECECA /* TestAMD.ice */; }; + E501FE1E712129E20E07D4AE /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = C39BB4ED7CFFA4DACD478D9B /* Util.swift */; }; + E5473376AED73F1438E138F2 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94CF1B1374A50ED7765868B6 /* LocatorInfo.cpp */; }; + E5FE605239046B97A6C988CE /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A334934D39F8288BF273ECE /* Object.swift */; }; + E61A9E65292B18FA7BF6C132 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F507DE59727141A808786F2E /* Server.swift */; }; + E6F0BE4CB1ABA83CE61C9945 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1805A9AC8B6C175A9078A8BE /* ServerPrivateAMD.ice */; }; + E7EBDF8C478244E67DC7DCFD /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3660CBA3E7714EF6A750EB80 /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E89488B5B743CD7A045BF459 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBA8491A44D0E0482F4677BC /* ConnectionI.swift */; }; + E89BA43278472B643EAAB3B6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + E918EEBC3D0F1CE51176DCEE /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + E91EB9D7B8B7795C0B78675B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BE034D58C57F544FFE3F539 /* Client.swift */; }; + E962F80C77FF5299C4C4D217 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 984E408AE1C36AB3B759095E /* BatchRequestQueue.cpp */; }; + E97CA34DFCE7B221D995416A /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8FBA68CBD78E9ADC871C4C5 /* Exception.ice */; }; + EA0D065C1E4099C44E194E8C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + EA21B0DE086FB62B4FEF07D9 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 867D107D3A25FB9B5C7EB522 /* InputStream.cpp */; }; + EA3ED4751E869E5A27D4B1F3 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = E004376D0DBB79789D7E0BB1 /* PropertiesAdmin.mm */; }; + EA51FF5B9B7905F24C928234 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + EA6D83B47C084C836B155733 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + EA7798C535376FCDDD288B23 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57E9BE44DC6129D6174B2306 /* UserAccountMapper.ice */; }; + EA7894F677C2CB4B39104F52 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E33109A1F05AA19BCF9156F /* Communicator.cpp */; }; + EAA90F488F7A73863F034EB7 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17A5B44F6AAFD44E0B814FED /* SHA1.cpp */; }; + EACB71E0E6B79A43AEF2452C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73A88EA74CCC4616D710AFB6 /* Server.swift */; }; + EAE540AF9A510E806A0A6DE0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BE034D58C57F544FFE3F539 /* Client.swift */; }; + EAFD3C037AB308364D7C3257 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 641754B3600E4B8A31487EBC /* Base64.cpp */; }; + EB6C3B8252BD2D2AF409093F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + EBA1DA967D35C0D0A341DA44 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + EBB0CD6C3F76CA09601BFCD6 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = BFD81A96B2FEDC7DD5A61FF8 /* ObjectAdapter.mm */; }; + EBBBBA347D35251165034E98 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD5215EC1E4F66AFE89CA625 /* Client.swift */; }; + EBBE0DA68CFE17CB462F7A33 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + EBD24F5DB9010C8B469F9827 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + EBDF86BF40CA2C7A8491A3CB /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94212BAD957A78E36EC3EED4 /* ConnectionI.cpp */; }; + EC0384061AFFE85E8AB9C198 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + EC2F3A3A271839B3754275AF /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3F96F9704EBDCFBCAE0D3C3 /* EndpointI.swift */; }; + EC3539F63056F5A2F978BCFD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 20112BFE6EAD65723FA67120 /* Test.ice */; }; + EC564EE3C735217D1425A1F6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64A4D123257EF075A8AA0433 /* Client.swift */; }; + EC5656E3040B84EA47EF916F /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D37440609D6999223F5D3FC /* TestAMD.ice */; }; + EC60696E4D73094969C50224 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 488C831449F529C0B214CABE /* ProcessI.swift */; }; + EC63C9E225E8A81C43F571F5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + EC748BF1BB9717982863E011 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + EC7C6DB79B4B347EE47BFFAE /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = EECF4655D8774B8E48A8D6C2 /* Properties.swift */; }; + ECC6D6BFAE455D0D6467A97A /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 867D107D3A25FB9B5C7EB522 /* InputStream.cpp */; }; + ECE0414F228AF7BD0A6CD5BE /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 84CFA96B1376810A278A1749 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ED8968CF101C1ACB84813849 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + EDBAF134DD0098517F50EF31 /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7370B3F9D40F36F1BD730CCA /* TraceUtil.cpp */; }; + EDE8359ED25362D39ABC2006 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8009BD807CE901360AA23914 /* Collocated.swift */; }; + EE41BB9626CE81B8FDEE3A96 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECE37EE5C08B6FFE1F009314 /* ValueFactory.swift */; }; + EEA8CF883428B01324439676 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1A781B49FC82F7FA0184F819 /* Exception.mm */; }; + EEC09ED2D0320C190B31AB1A /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7529B82331E9F8857C04C1C1 /* ThreadException.cpp */; }; + EED1C79E8ACA0DEC111B78B5 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35CD479A4FD1B76DA514E6A7 /* TestAMDI.swift */; }; + EF1026DCF581C70032FA0378 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19266A1DAEA30EF728B73CC3 /* TestI.swift */; }; + EFA435C5A247BC5BCE19D259 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + EFC42E1F469F67928B7880AF /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = E9827291A2B8B54C49FD1C85 /* Router.ice */; }; + EFCD4FF028F6D0D0394EFF15 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + EFEB20A1051E651311733724 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; }; + F000C7B14C676D9958496224 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + F003F36413ECB9AAC2EED254 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4AB5AD4F60E4B47BF3908206 /* Clash.ice */; }; + F008FF5C531FCFA968DB43FC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + F06DABC8F789B26B76E47733 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 383E5361C48546671985CEC1 /* UUID.cpp */; }; + F119C7D34FDA00A16FC2901F /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DA9250AC15D1756168A2B45 /* EndpointI.cpp */; }; + F14D5146507DA54D91A1BD68 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3D9AB0F6AC4AB0F35FE74791 /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + F15FFA97EB815CA125B02D0D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + F16D9AE5F816E0B62C072FF8 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 521B530EB810B4F3FDF103AE /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + F1D0B9CA4E53F0F5D4F4CD7C /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A9C59F0ED0E375A09B03481 /* LocalObject.cpp */; }; + F2364111174F01731C82C021 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB4A218E07221A655D54AA36 /* ObserverHelper.cpp */; }; + F24E976B9B14EFDD3A43D9F0 /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE7FC47F6D6B7DAFEE7F7199 /* WSAcceptor.cpp */; }; + F2596BE326CE45BC7742E857 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4530DDD8E7C70EA73CE9806C /* CountDownLatch.cpp */; }; + F29EABBF0CB48EAEC44846C0 /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9BFE5D27E6A8D49C4BDD2EA /* ImplicitContextF.cpp */; }; + F2B4C954CE265C6CA7C0379F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18BC8EBDD63E0C2D34096A45 /* AllTests.swift */; }; + F3AE9F326A4E8D3C7742A825 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + F3BFDF6276C92219D831CF37 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F4E52F6B53EC59E12989136 /* Server.swift */; }; + F3C4B8D113757FCF301EBE40 /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7644F0F2714625FA88C9AD42 /* Registry.ice */; }; + F409F00F203EC89CA51E0A38 /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6A510B59CE2B6AA8EFA619EC /* libIceLocatorDiscovery C++11 macOS.a */; }; + F42733420894D924995579FA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + F436214884717A226C19BABA /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = 650FAAE913B2A55BF40BDCC9 /* SliceFlags.swift */; }; + F44F09FC50983B33CA155BCC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + F495F23D82D40A47A9D1E607 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C12F72D326BA31E4F3222697 /* WSConnector.cpp */; }; + F4B2C0B78846F44DD5783E24 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7100AF407ED59019E77AC492 /* Logger.cpp */; }; + F4BBCDFCE0020D59F4948512 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C307ECD76BE33A0CF42D8C5E /* TestI.swift */; }; + F4D4D42004E2A8B4848C1974 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BBB10CD52BD86395BC343A0B /* IceStorm.framework */; }; + F51CE551648B1FC70B05D074 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87F199BFCA75EA1D85ED8573 /* TestI.swift */; }; + F54E29A83133FED14C4AA068 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + F5BEA2EED4C65B3DAE24BD89 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 623E717A20F91E615D53E150 /* Ice.framework */; }; + F5C41130540FE9B6122E67F0 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F48CF258CC15C9D7DB246467 /* Server.swift */; }; + F5DCD092A15EABAC72CD123F /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 44C06A1AEDD98E9D1115EB3E /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F5F3067FDC9D9F16CB71BA52 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + F60726DED3F8C32EDC364E5E /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE7456538444EC0F07561F0C /* CFNetwork.framework */; }; + F6130667EEC45C8B8C04F6D5 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EA0C9E634315389E93760409 /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + F619711485EDDECCB70B13D6 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47C76C71FAF5177CE46CD3A6 /* IceLocatorDiscovery.ice */; }; + F64A2A95D6F8A7C4F2952565 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84C9F21E9071D52008E29F7D /* SSLEngine.cpp */; }; + F68B4DF0253D222B31B35C26 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8DEFB158CC638F81D597598D /* Client.swift */; }; + F6F23CE71F35F38DE87E9E34 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + F7003057ACD7706B34EB16DE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + F723B17ACC9D31321799699B /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8C6C2E58CEE36AE17B95BBDF /* Session.ice */; }; + F7415767004FA2E0065FA725 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64A4D123257EF075A8AA0433 /* Client.swift */; }; + F752CC7EFA8086CDD6C5E082 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 78C5BD54F95050856DFE68B6 /* Test.ice */; }; + F7C8A67B885A817C96022E8E /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A1720B2080C837E243F2B03 /* EndpointInfo.cpp */; }; + F841E91AB24CFF119C4ECADB /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D0635A59EF2F6E52013CF218 /* OnewaysAMI.swift */; }; + F853FF29834F3A98B356B819 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = F624035F99B563D25F09B7C7 /* Collocated.swift */; }; + F85E2EAA0FE75971389BF9BC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD1F0A3B85E7C703B656F50B /* Server.swift */; }; + F8A26A46B9D469F028B274D6 /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 61FD2D97AAE33B8E0DAD2E48 /* UnsupportedAdminFacet.mm */; }; + F8AE7086EF9EDB76BE7A3A53 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + F8AF05D3D02758C4D61B5AAA /* StreamConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8D3D49BC0C29B23231C962C1 /* StreamConnector.cpp */; }; + F8B84A99BE37924E8E4DA550 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 62A61E872435F58924471D31 /* Test.ice */; }; + F97303BDE976828772DB337F /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B7D798CB60FB962ADC8BB32 /* CollocatedRequestHandler.cpp */; }; + F982DDE3FB82C7D1898A75EA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + FA555EB54DACFD9D761D6FC4 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B8D9DC9A4A10105943CA252 /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FA5C13F1752E964A498372BD /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = E9827291A2B8B54C49FD1C85 /* Router.ice */; }; + FA894F44B092863141ACD7F2 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8873EA7FF0431868BF97BF8D /* Context.ice */; }; + FA8A89058765313529AEEBB5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; }; + FAD3DE4312F7A038C6DA7C55 /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 136757D4ECE48D0332330C07 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FAD9CD415201EFD644E6C067 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 665569D1BB698FBBAD74786F /* Ice.framework */; }; + FB55128612C2742926060871 /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9B32AF013885664AA93CDF20 /* Controller.ice */; }; + FBB2C953993DE748B2A6C6EB /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AE70EAEDEBB73331DA341D1 /* WSTransceiver.cpp */; }; + FBBCD12CB9D5CA67DBDD41E1 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */; }; + FBDA2A323E16719E6B1D4FCF /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D86BEF346F9EC95AE96B2542 /* Cond.cpp */; }; + FC4406B16133D5DB2D35C383 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 35CD479A4FD1B76DA514E6A7 /* TestAMDI.swift */; }; + FC7B26ED74639F2BB9F93A02 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + FCD872B7C1D9BE4CE81FD976 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 60CB3BFC19DFE9088A67D092 /* Blobject.swift */; }; + FD97C877D0A6E8EBC72947DB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 716DB7C607CA120F7407022D /* Test.ice */; }; + FDC26D84EB2C97ABE817BA32 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = E004376D0DBB79789D7E0BB1 /* PropertiesAdmin.mm */; }; + FDC57E65D1E2B61C6A9B72E4 /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DF959949FDCEE7CC6B0467A /* OutputStream.cpp */; }; + FDFEF92494E9C48648F75CE8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */; }; + FE35E2AABC406998CC02C40E /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = A8E6E1452E1DA4C8ED9914AA /* LocalException.swift */; }; + FE4662B08E26ED2C373D6F18 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2080E2259670BD44DFA6BF51 /* Test.ice */; }; + FE91C36B606C07C238266AFD /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3A42A2314F003B797A43F677 /* TestAMD.ice */; }; + FE91EA7EF11C6BA28BBDC339 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A5B352FEADCB1E176B01CED /* PluginI.cpp */; }; + FEBC2B49BBC84BD0A8F105BA /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84C9F21E9071D52008E29F7D /* SSLEngine.cpp */; }; + FEC198B949003EBC0419B2FE /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8D821D8582839A7FD652F7F /* OSLogLoggerI.cpp */; }; + FF242AA9EF6B6A08B2C704D7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; }; + FF28669111DB6900FD7EA5F2 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09338C104543AFAA089DE918 /* ServantLocator.swift */; }; + FF3E4B8CF7B4533E10AF4001 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 254F677EC087A0400A2F76B1 /* PluginI.cpp */; }; + FF94B860B7BEA9E1457D83AD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */; }; + FF9DB9AC2D507DF4E55AC4E7 /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8488FB8F37D7958B38971E9F /* ConnectionF.cpp */; }; + FFBDF22B7DF2677CB22EF437 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1082EDDCF74692688AF946C2 /* EndpointTypes.ice */; }; + FFD6CAA05C764C508C44A856 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED98AEC78D53B98EF9216B56 /* SSLEndpointInfo.swift */; }; + FFE2C2D210CA1BED6B7A3406 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19266A1DAEA30EF728B73CC3 /* TestI.swift */; }; + FFFCF7DD3F4A9E9BCD8C56DA /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 30A8799AA971D15AED949425 /* IAPConnectionInfo.swift */; }; /* End PBXBuildFile section */ /* Begin PBXBuildRule section */ - 0466AC2D98B8B1797376E136 /* PBXBuildRule */ = { + 04DD2A095C30642B8CC50942 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/location/*.ice"; + filePatterns = "*/test/Ice/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/location/Test.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/location/*.ice"; + name = "Slice Compiler for test/Ice/operations/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 0967805BCE1E6813D3222CB3 /* PBXBuildRule */ = { + 0551E50A64EA50DF215E7B90 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/TestCommon/*.ice"; + filePatterns = "*/test/Ice/ami/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/ami/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestCommon/*.ice"; + name = "Slice Compiler for test/Ice/ami/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 0C0617F153A415C074261882 /* PBXBuildRule */ = { + 077C827730D516B87FCE7C69 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/servantLocator/*.ice"; + filePatterns = "*/test/Ice/info/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/info/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.ice"; + name = "Slice Compiler for test/Ice/info/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 0C5CEDF0AEA0C1E49A457740 /* PBXBuildRule */ = { + 095881B07F194A8C319DABAE /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/ami/*.ice"; + filePatterns = "*/test/Ice/defaultValue/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/ami/Test.ice, + test/Ice/defaultValue/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/ami/*.ice"; + name = "Slice Compiler for test/Ice/defaultValue/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 107BD6620EE608E35A022969 /* PBXBuildRule */ = { + 0B74A63CFEF7DC7B73AFDB43 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/exceptions/*.ice"; + filePatterns = "*/test/Ice/invoke/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.ice"; + name = "Slice Compiler for test/Ice/invoke/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 128FAF301C269413416FAA54 /* PBXBuildRule */ = { + 0D054AEC1F4A7E0B48A26195 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; @@ -1573,109 +1571,42 @@ runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceLocatorDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery/$BASENAME.h\"\n"; }; - 1B736E4E7FFE3533A30B274E /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).d"; - filePatterns = "*/IceDiscovery/*.ice"; - fileType = pattern.proxy; - inputFiles = ( - "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", - ); - isEditable = 1; - name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; - outputFiles = ( - "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h", - ); - runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery/$BASENAME.h\"\n"; - }; - 1C375202C956F2D48BA3ED28 /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/TestCommon/*.ice"; - fileType = pattern.proxy; - inputFiles = ( - ); - isEditable = 1; - name = "Slice Compiler for test/TestCommon/*.ice"; - outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", - ); - runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; - }; - 20EF03E694DD62EB32DDF0E9 /* PBXBuildRule */ = { + 0DD9AD4A7BD828C8FD11AB79 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/admin/*.ice"; - fileType = pattern.proxy; - inputFiles = ( - test/Ice/admin/Test.ice, - ); - isEditable = 1; - name = "Slice Compiler for test/Ice/admin/*.ice"; - outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", - ); - runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; - }; - 218A39931936B7DB8D4146F1 /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/udp/*.ice"; + filePatterns = "*/test/Ice/scope/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/udp/Test.ice, + test/Ice/scope/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/udp/*.ice"; + name = "Slice Compiler for test/Ice/scope/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 25A1A910EA6C8AFDEF7BFD8B /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/IceStorm/*.ice"; - fileType = pattern.proxy; - inputFiles = ( - "$SRCROOT/../slice/IceStorm/IceStorm.ice", - "$SRCROOT/../slice/IceStorm/Metrics.ice", - ); - isEditable = 1; - name = "Slice Compiler for IceStorm/*.ice"; - outputFiles = ( - "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift", - ); - runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceStorm\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceStorm\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceStorm/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceStorm_$BASENAME.swift\"\n"; - }; - 2818FB10B0AF0B6EBCB24E60 /* PBXBuildRule */ = { + 14B388FC673F3EA219B586B4 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/services/*.ice"; + filePatterns = "*/test/Ice/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/services/*.ice"; + name = "Slice Compiler for test/Ice/proxy/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 2858747B6861DE83819511E8 /* PBXBuildRule */ = { + 156C7100B7FBB44163EE0002 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -1693,77 +1624,59 @@ runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 2BA1008CDE69BB9420622248 /* PBXBuildRule */ = { + 19382B6CA1842F4A00577156 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/inheritance/*.ice"; + filePatterns = "*/test/Ice/invoke/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/inheritance/Test.ice, + test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/inheritance/*.ice"; + name = "Slice Compiler for test/Ice/invoke/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 2D97F5D2FA163CCE8AC3B7D6 /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; - filePatterns = "*/IceLocatorDiscovery/*.ice"; - fileType = pattern.proxy; - inputFiles = ( - "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", - ); - isEditable = 1; - name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice"; - outputFiles = ( - "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(INPUT_FILE_BASE).h", - ); - runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceLocatorDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery/$BASENAME.h\"\n"; - }; - 2F376C8322F16F151615FE07 /* PBXBuildRule */ = { + 1A67DD863C56824D6E2006C6 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/optional/*.ice"; + filePatterns = "*/test/Ice/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.ice"; + name = "Slice Compiler for test/Ice/servantLocator/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 30D86CB9DA45178F1428181C /* PBXBuildRule */ = { + 1AACFC0222397DAB936D6C48 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/enums/*.ice"; + filePatterns = "*/test/Ice/timeout/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/enums/Test.ice, + test/Ice/timeout/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/enums/*.ice"; + name = "Slice Compiler for test/Ice/timeout/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 31D6D32086AF25ED463453D1 /* PBXBuildRule */ = { + 1B80CF27C9EDFA2D30FC4E48 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; @@ -1795,264 +1708,277 @@ runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/Ice\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/Ice/$BASENAME.h\"\n"; }; - 34327A9F640F9F0DDD852DD3 /* PBXBuildRule */ = { + 1E983DE40B938FAE71CA7E93 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).d"; - filePatterns = "*/IceDiscovery/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Glacier2/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", + "$SRCROOT/../slice/Glacier2/Metrics.ice", + "$SRCROOT/../slice/Glacier2/PermissionsVerifier.ice", + "$SRCROOT/../slice/Glacier2/Router.ice", + "$SRCROOT/../slice/Glacier2/SSLInfo.ice", + "$SRCROOT/../slice/Glacier2/Session.ice", ); isEditable = 1; - name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; + name = "Slice Compiler for Glacier2/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h", + "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery/$BASENAME.h\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Glacier2\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Glacier2\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Glacier2/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Glacier2_$BASENAME.swift\"\n"; }; - 36DE15588AC64891A9D439C5 /* PBXBuildRule */ = { + 1FFB7E77246CEEA7A9792AA1 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/retry/*.ice"; + filePatterns = "*/test/Ice/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/retry/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/retry/*.ice"; + name = "Slice Compiler for test/Ice/optional/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 37E7964C9FFFE14C60B44E2D /* PBXBuildRule */ = { + 206099BF9F8FCBCA2E0A413E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/invoke/*.ice"; + filePatterns = "*/test/Ice/udp/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/invoke/Test.ice, + test/Ice/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/invoke/*.ice"; + name = "Slice Compiler for test/Ice/udp/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 38AC950A4251F435221EFAC1 /* PBXBuildRule */ = { + 231EAF2E19204F70B23BF53F /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/admin/*.ice"; + filePatterns = "*/test/Ice/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/admin/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/admin/*.ice"; + name = "Slice Compiler for test/Ice/optional/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 3965EDB8CE72829F3D9DCB62 /* PBXBuildRule */ = { + 24F2F01F8EEF2C4CB373FCC8 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/facets/*.ice"; + filePatterns = "*/test/Ice/hold/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/facets/Test.ice, + test/Ice/hold/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/facets/*.ice"; + name = "Slice Compiler for test/Ice/hold/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 39EFC04AD52EB3D38ACEC29B /* PBXBuildRule */ = { + 28D5EA1A1AA306E86C6AD163 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/udp/*.ice"; + filePatterns = "*/test/Ice/enums/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/udp/Test.ice, + test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/udp/*.ice"; + name = "Slice Compiler for test/Ice/enums/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 39F14EA9557A024F28CE6D27 /* PBXBuildRule */ = { + 2CFED10F8D5236F9A148CD79 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/info/*.ice"; + filePatterns = "*/test/Ice/slicing/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/info/Test.ice, + test/Ice/slicing/objects/ClientPrivate.ice, + test/Ice/slicing/objects/ServerPrivate.ice, + test/Ice/slicing/objects/ServerPrivateAMD.ice, + test/Ice/slicing/objects/Test.ice, + test/Ice/slicing/objects/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/info/*.ice"; + name = "Slice Compiler for test/Ice/slicing/objects/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 3A33010CA67242C2D53EB955 /* PBXBuildRule */ = { + 30B5A14F5CA24A6F0DF27B48 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; + filePatterns = "*/test/Ice/stream/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/slicing/exceptions/ClientPrivate.ice, - test/Ice/slicing/exceptions/ServerPrivate.ice, - test/Ice/slicing/exceptions/ServerPrivateAMD.ice, - test/Ice/slicing/exceptions/Test.ice, - test/Ice/slicing/exceptions/TestAMD.ice, + test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice"; + name = "Slice Compiler for test/Ice/stream/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 3DA7D46CB7FDC1044780F802 /* PBXBuildRule */ = { + 3582947254C6A89F45090F31 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/objects/*.ice"; + filePatterns = "*/test/Ice/timeout/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/objects/Derived.ice, - test/Ice/objects/DerivedEx.ice, - test/Ice/objects/Forward.ice, - test/Ice/objects/Test.ice, + test/Ice/timeout/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/objects/*.ice"; + name = "Slice Compiler for test/Ice/timeout/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 3DBD640E2BEB04526B028A5A /* PBXBuildRule */ = { + 372D520C7C298EADCE492969 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/Glacier2/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/hold/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/Glacier2/Metrics.ice", - "$SRCROOT/../slice/Glacier2/PermissionsVerifier.ice", - "$SRCROOT/../slice/Glacier2/Router.ice", - "$SRCROOT/../slice/Glacier2/SSLInfo.ice", - "$SRCROOT/../slice/Glacier2/Session.ice", + test/Ice/hold/Test.ice, ); isEditable = 1; - name = "Slice Compiler for Glacier2/*.ice"; + name = "Slice Compiler for test/Ice/hold/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Glacier2\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Glacier2\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Glacier2/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Glacier2_$BASENAME.swift\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 4190A7D7231109E37C9C3FB6 /* PBXBuildRule */ = { + 39E18D979D630330D623018C /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/exceptions/*.ice"; + filePatterns = "*/test/Ice/location/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/location/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.ice"; + name = "Slice Compiler for test/Ice/location/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 41F9BA501264430B049ACCBF /* PBXBuildRule */ = { + 3AE97D276ED0B4BFE3E8DBCC /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/defaultValue/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceGrid/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultValue/Test.ice, - ); - isEditable = 1; - name = "Slice Compiler for test/Ice/defaultValue/*.ice"; - outputFiles = ( + "$SRCROOT/../slice/IceGrid/Admin.ice", + "$SRCROOT/../slice/IceGrid/Descriptor.ice", + "$SRCROOT/../slice/IceGrid/Exception.ice", + "$SRCROOT/../slice/IceGrid/FileParser.ice", + "$SRCROOT/../slice/IceGrid/Registry.ice", + "$SRCROOT/../slice/IceGrid/Session.ice", + "$SRCROOT/../slice/IceGrid/UserAccountMapper.ice", + ); + isEditable = 1; + name = "Slice Compiler for IceGrid/*.ice"; + outputFiles = ( + "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).swift", + ); + runOncePerArchitecture = 0; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceGrid\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceGrid\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceGrid/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceGrid_$BASENAME.swift\"\n"; + }; + 3BD71B5D8FE7BB861E7735DA /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/defaultValue/*.ice"; + fileType = pattern.proxy; + inputFiles = ( + test/Ice/defaultValue/Test.ice, + ); + isEditable = 1; + name = "Slice Compiler for test/Ice/defaultValue/*.ice"; + outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 4BDEECBB026BEFDBD29E459B /* PBXBuildRule */ = { + 3DBFD7E2771A196AFF654CED /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/interceptor/*.ice"; + filePatterns = "*/test/IceSSL/configuration/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/interceptor/Test.ice, + test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/interceptor/*.ice"; + name = "Slice Compiler for test/IceSSL/configuration/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 4C421FC35B245A38A2DC32DC /* PBXBuildRule */ = { + 3E20CDB335D45B24AAB78033 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/IceGrid/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/services/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceGrid/Admin.ice", - "$SRCROOT/../slice/IceGrid/Descriptor.ice", - "$SRCROOT/../slice/IceGrid/Exception.ice", - "$SRCROOT/../slice/IceGrid/FileParser.ice", - "$SRCROOT/../slice/IceGrid/Registry.ice", - "$SRCROOT/../slice/IceGrid/Session.ice", - "$SRCROOT/../slice/IceGrid/UserAccountMapper.ice", ); isEditable = 1; - name = "Slice Compiler for IceGrid/*.ice"; + name = "Slice Compiler for test/Ice/services/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceGrid\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceGrid\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceGrid/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceGrid_$BASENAME.swift\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 4D5C7C24A9AF0B7A37EAD28F /* PBXBuildRule */ = { + 4482E372EED1C565C507D1FC /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -2073,195 +1999,205 @@ runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 534EC6EEB3FEA55F9D73125B /* PBXBuildRule */ = { + 463E0A8328D24FF7AB6A70CA /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/IceGrid/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/enums/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceGrid/Admin.ice", - "$SRCROOT/../slice/IceGrid/Descriptor.ice", - "$SRCROOT/../slice/IceGrid/Exception.ice", - "$SRCROOT/../slice/IceGrid/FileParser.ice", - "$SRCROOT/../slice/IceGrid/Registry.ice", - "$SRCROOT/../slice/IceGrid/Session.ice", - "$SRCROOT/../slice/IceGrid/UserAccountMapper.ice", + test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for IceGrid/*.ice"; + name = "Slice Compiler for test/Ice/enums/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceGrid\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceGrid\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceGrid/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceGrid_$BASENAME.swift\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 5BDB3FD3DD1E27619DCF5343 /* PBXBuildRule */ = { + 4AC3702FD99D567A5A0C68EE /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/stream/*.ice"; + filePatterns = "*/test/Ice/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/stream/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/stream/*.ice"; + name = "Slice Compiler for test/Ice/servantLocator/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 61C6F8B373F05C401E109411 /* PBXBuildRule */ = { + 4C438A06989C337A19D68472 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/IceStorm/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/slicing/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceStorm/IceStorm.ice", - "$SRCROOT/../slice/IceStorm/Metrics.ice", + test/Ice/slicing/objects/ClientPrivate.ice, + test/Ice/slicing/objects/ServerPrivate.ice, + test/Ice/slicing/objects/ServerPrivateAMD.ice, + test/Ice/slicing/objects/Test.ice, + test/Ice/slicing/objects/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for IceStorm/*.ice"; + name = "Slice Compiler for test/Ice/slicing/objects/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceStorm\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceStorm\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceStorm/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceStorm_$BASENAME.swift\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 63D573DC53F83A59A80709FB /* PBXBuildRule */ = { + 55FEE57C03D6A35EA220FDDD /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/hold/*.ice"; + filePatterns = "*/test/Ice/interceptor/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/hold/Test.ice, + test/Ice/interceptor/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/hold/*.ice"; + name = "Slice Compiler for test/Ice/interceptor/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 63DDCC4D5FD71F078F7E4F48 /* PBXBuildRule */ = { + 5783A48558F7B1883496DAAB /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/binding/*.ice"; + filePatterns = "*/test/Ice/interceptor/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/binding/Test.ice, + test/Ice/interceptor/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/binding/*.ice"; + name = "Slice Compiler for test/Ice/interceptor/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 66AADE9A203B6E92C0F1391B /* PBXBuildRule */ = { + 5A461C2302DD2A6FD65D6113 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Slice/escape/*.ice"; + filePatterns = "*/test/Ice/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Slice/escape/Clash.ice, - test/Slice/escape/Key.ice, + test/Ice/objects/Derived.ice, + test/Ice/objects/DerivedEx.ice, + test/Ice/objects/Forward.ice, + test/Ice/objects/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Slice/escape/*.ice"; + name = "Slice Compiler for test/Ice/objects/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 66EC3CDC1436D5FC248ABDE2 /* PBXBuildRule */ = { + 5A9F1424ADE0E67F377B0CE5 /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Glacier2/*.ice"; + fileType = pattern.proxy; + inputFiles = ( + "$SRCROOT/../slice/Glacier2/Metrics.ice", + "$SRCROOT/../slice/Glacier2/PermissionsVerifier.ice", + "$SRCROOT/../slice/Glacier2/Router.ice", + "$SRCROOT/../slice/Glacier2/SSLInfo.ice", + "$SRCROOT/../slice/Glacier2/Session.ice", + ); + isEditable = 1; + name = "Slice Compiler for Glacier2/*.ice"; + outputFiles = ( + "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).swift", + ); + runOncePerArchitecture = 0; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Glacier2\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Glacier2\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Glacier2/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Glacier2_$BASENAME.swift\"\n"; + }; + 5D73B5413A7BCE0557AE9728 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; + filePatterns = "*/test/Ice/properties/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/slicing/exceptions/ClientPrivate.ice, - test/Ice/slicing/exceptions/ServerPrivate.ice, - test/Ice/slicing/exceptions/ServerPrivateAMD.ice, - test/Ice/slicing/exceptions/Test.ice, - test/Ice/slicing/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice"; + name = "Slice Compiler for test/Ice/properties/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 6980DA7D553A970823D703F5 /* PBXBuildRule */ = { + 5F25180EEEA0D443EA83236C /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/operations/*.ice"; + filePatterns = "*/test/Ice/defaultServant/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + test/Ice/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.ice"; + name = "Slice Compiler for test/Ice/defaultServant/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 6BE1B308FBCD4A40D2BC9295 /* PBXBuildRule */ = { + 6133AC6D17A3CADA95DE2E9E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/operations/*.ice"; + filePatterns = "*/test/Ice/binding/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + test/Ice/binding/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.ice"; + name = "Slice Compiler for test/Ice/binding/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 6D5FC6B24A46269E13F729E4 /* PBXBuildRule */ = { + 67FE13D3766F926A7579EC1E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/objects/*.ice"; + filePatterns = "*/test/Ice/inheritance/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/slicing/objects/ClientPrivate.ice, - test/Ice/slicing/objects/ServerPrivate.ice, - test/Ice/slicing/objects/ServerPrivateAMD.ice, - test/Ice/slicing/objects/Test.ice, - test/Ice/slicing/objects/TestAMD.ice, + test/Ice/inheritance/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.ice"; + name = "Slice Compiler for test/Ice/inheritance/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 72F35AAC1EF89B2124E08DCB /* PBXBuildRule */ = { + 699FC11E0421B9B10B6143D9 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; @@ -2292,504 +2228,507 @@ runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Ice_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Ice_$BASENAME.swift\"\n"; }; - 742E56F2651A2BE95B6B6B3B /* PBXBuildRule */ = { + 6DAC5C185EDE20E713CBDF37 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/optional/*.ice"; + filePatterns = "*/test/Slice/escape/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Slice/escape/Clash.ice, + test/Slice/escape/Key.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.ice"; + name = "Slice Compiler for test/Slice/escape/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 74A132106B8ED6BDC6AD0A55 /* PBXBuildRule */ = { + 6F305A5284E48EE6CB083308 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/objects/*.ice"; + filePatterns = "*/test/Slice/escape/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/slicing/objects/ClientPrivate.ice, - test/Ice/slicing/objects/ServerPrivate.ice, - test/Ice/slicing/objects/ServerPrivateAMD.ice, - test/Ice/slicing/objects/Test.ice, - test/Ice/slicing/objects/TestAMD.ice, + test/Slice/escape/Clash.ice, + test/Slice/escape/Key.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.ice"; + name = "Slice Compiler for test/Slice/escape/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 77EE3BF67D50E86264F906AD /* PBXBuildRule */ = { + 72F3BFD2399D7F2FB703D929 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Slice/escape/*.ice"; + filePatterns = "*/test/Ice/adapterDeactivation/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Slice/escape/Clash.ice, - test/Slice/escape/Key.ice, + test/Ice/adapterDeactivation/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Slice/escape/*.ice"; + name = "Slice Compiler for test/Ice/adapterDeactivation/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 78A8306481EAD2AF63BA0088 /* PBXBuildRule */ = { + 7307596D8EA316DB28CCD79D /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/objects/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceDiscovery/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/slicing/objects/ClientPrivate.ice, - test/Ice/slicing/objects/ServerPrivate.ice, - test/Ice/slicing/objects/ServerPrivateAMD.ice, - test/Ice/slicing/objects/Test.ice, - test/Ice/slicing/objects/TestAMD.ice, + "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.ice"; + name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp", + "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery/$BASENAME.h\"\n"; }; - 79065FBA33ECBF04C1CEA5C3 /* PBXBuildRule */ = { + 7529A40C10A7F572FBAF0B05 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/scripts/*.ice"; + filePatterns = "*/test/Ice/retry/*.ice"; fileType = pattern.proxy; inputFiles = ( - ../scripts/Controller.ice, + test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestDriver/*.ice"; + name = "Slice Compiler for test/Ice/retry/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 7A406C9507E9F0183666FACE /* PBXBuildRule */ = { + 76F11CBA37048B7246B4A60D /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/servantLocator/*.ice"; + filePatterns = "*/test/Ice/scope/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/scope/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.ice"; + name = "Slice Compiler for test/Ice/scope/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 7AE86571FE663DFD312D016F /* PBXBuildRule */ = { + 789DE5283B32D8F2E82D7F99 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/timeout/*.ice"; + filePatterns = "*/test/Ice/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/timeout/Test.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/timeout/*.ice"; + name = "Slice Compiler for test/Ice/exceptions/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 7AF73AB9C64F083D9C05305D /* PBXBuildRule */ = { + 810C7830E1344D941EEAB39F /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/acm/*.ice"; + filePatterns = "*/test/Ice/location/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/acm/Test.ice, + test/Ice/location/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/acm/*.ice"; + name = "Slice Compiler for test/Ice/location/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 7C90749B9EADCC92591D2928 /* PBXBuildRule */ = { + 86C0367EB7AE7C4848EE6207 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/services/*.ice"; + filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/slicing/exceptions/ClientPrivate.ice, + test/Ice/slicing/exceptions/ServerPrivate.ice, + test/Ice/slicing/exceptions/ServerPrivateAMD.ice, + test/Ice/slicing/exceptions/Test.ice, + test/Ice/slicing/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/services/*.ice"; + name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 813C0725B93686899604C1FA /* PBXBuildRule */ = { + 8AC12DE0F5F2B1A24028F569 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/retry/*.ice"; + filePatterns = "*/test/TestCommon/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/retry/*.ice"; + name = "Slice Compiler for test/TestCommon/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 863F5538D25F019305A64FC8 /* PBXBuildRule */ = { + 8BE4F5636197AF4825C2478E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/servantLocator/*.ice"; + filePatterns = "*/test/Ice/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.ice"; + name = "Slice Compiler for test/Ice/operations/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 89AB5A64D2F7BAEFD84AE805 /* PBXBuildRule */ = { + 8C41009A1CF692F8BB063584 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/inheritance/*.ice"; + filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/inheritance/Test.ice, + test/Ice/slicing/exceptions/ClientPrivate.ice, + test/Ice/slicing/exceptions/ServerPrivate.ice, + test/Ice/slicing/exceptions/ServerPrivateAMD.ice, + test/Ice/slicing/exceptions/Test.ice, + test/Ice/slicing/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/inheritance/*.ice"; + name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 8A4F2CD3250B81F8C0666116 /* PBXBuildRule */ = { + 91C79FB678F9C90F6D94E28B /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/defaultServant/*.ice"; + filePatterns = "*/test/Ice/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultServant/Test.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultServant/*.ice"; + name = "Slice Compiler for test/Ice/operations/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 8E3847FCC2ACB7BD84BF09A9 /* PBXBuildRule */ = { + 930A34F60C3CEB7E00D8AE72 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/acm/*.ice"; + filePatterns = "*/test/Ice/inheritance/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/acm/Test.ice, + test/Ice/inheritance/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/acm/*.ice"; + name = "Slice Compiler for test/Ice/inheritance/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 93291BDDE80CD363ABC4F3A8 /* PBXBuildRule */ = { + 9A95BDC1D13A3FAB26ADE6D5 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/operations/*.ice"; + filePatterns = "*/test/Ice/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.ice"; + name = "Slice Compiler for test/Ice/optional/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 94E5D10C50E22678B4070CAB /* PBXBuildRule */ = { + 9D78220D8786EA4469EE3E86 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/objects/*.ice"; + filePatterns = "*/test/Ice/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/slicing/objects/ClientPrivate.ice, - test/Ice/slicing/objects/ServerPrivate.ice, - test/Ice/slicing/objects/ServerPrivateAMD.ice, - test/Ice/slicing/objects/Test.ice, - test/Ice/slicing/objects/TestAMD.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.ice"; + name = "Slice Compiler for test/Ice/exceptions/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 97E3158E2FE22E029A177CE1 /* PBXBuildRule */ = { + 9F18FE1BE5E937D9A29A0AFC /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/IceSSL/configuration/*.ice"; + filePatterns = "*/test/Ice/facets/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/IceSSL/configuration/Test.ice, + test/Ice/facets/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/IceSSL/configuration/*.ice"; + name = "Slice Compiler for test/Ice/facets/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 9857D4A53D3975A39E217C0C /* PBXBuildRule */ = { + A15C5680CB5FEA04C8581ED9 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/IceSSL/configuration/*.ice"; + filePatterns = "*/test/Ice/defaultServant/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/IceSSL/configuration/Test.ice, + test/Ice/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/IceSSL/configuration/*.ice"; + name = "Slice Compiler for test/Ice/defaultServant/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 9A27AD256C05C172E1AE72B0 /* PBXBuildRule */ = { + A1844692DB4E384D1B0AA644 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/invoke/*.ice"; + filePatterns = "*/test/Ice/properties/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/invoke/*.ice"; + name = "Slice Compiler for test/Ice/properties/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 9ACD1AEFAB14C0CB524D3F92 /* PBXBuildRule */ = { + A2A2429F3D4DAF10B23E4547 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/binding/*.ice"; + filePatterns = "*/test/Ice/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/binding/Test.ice, + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/binding/*.ice"; + name = "Slice Compiler for test/Ice/proxy/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 9DA1377CA4018EE85FEDBCFC /* PBXBuildRule */ = { + A2C96297FD91C3D6AF4C2FBC /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/ami/*.ice"; + filePatterns = "*/test/Ice/retry/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/ami/Test.ice, + test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/ami/*.ice"; + name = "Slice Compiler for test/Ice/retry/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - 9F0AE24E71BB2E0F5FB12231 /* PBXBuildRule */ = { + A83197122320D98FEB65A31E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/proxy/*.ice"; + filePatterns = "*/test/Ice/info/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/info/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.ice"; + name = "Slice Compiler for test/Ice/info/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - A32CF8285A6B053AF2C4DC9C /* PBXBuildRule */ = { + AA0194279C077D1EEAC56FDD /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/defaultServant/*.ice"; + filePatterns = "*/scripts/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultServant/Test.ice, + ../scripts/Controller.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultServant/*.ice"; + name = "Slice Compiler for test/TestDriver/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - A9309FB45F908E127E08BE15 /* PBXBuildRule */ = { + AA0A2796D4961F69F90B1644 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/scope/*.ice"; + filePatterns = "*/test/IceSSL/configuration/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/scope/Test.ice, + test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/scope/*.ice"; + name = "Slice Compiler for test/IceSSL/configuration/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - AC68646374FB44918F0B8881 /* PBXBuildRule */ = { + AB287FBAF4C96D37FAD92AA5 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/proxy/*.ice"; + filePatterns = "*/test/Ice/acm/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/acm/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.ice"; + name = "Slice Compiler for test/Ice/acm/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - AFEAB7B27D528834C61D6D46 /* PBXBuildRule */ = { + ACD51CF6CDF44362F6898310 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/optional/*.ice"; + filePatterns = "*/test/Ice/slicing/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/slicing/objects/ClientPrivate.ice, + test/Ice/slicing/objects/ServerPrivate.ice, + test/Ice/slicing/objects/ServerPrivateAMD.ice, + test/Ice/slicing/objects/Test.ice, + test/Ice/slicing/objects/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.ice"; + name = "Slice Compiler for test/Ice/slicing/objects/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - B1D07C5FDE5DEACA2FDE19DC /* PBXBuildRule */ = { + B5C29E2549BA405D43648364 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/servantLocator/*.ice"; + filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/slicing/exceptions/ClientPrivate.ice, + test/Ice/slicing/exceptions/ServerPrivate.ice, + test/Ice/slicing/exceptions/ServerPrivateAMD.ice, + test/Ice/slicing/exceptions/Test.ice, + test/Ice/slicing/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.ice"; + name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - B60A4504342022B2D5D5D7ED /* PBXBuildRule */ = { + B6041BC1A89CDEE8A98E68ED /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/operations/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceLocatorDiscovery/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.ice"; + name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp", + "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(INPUT_FILE_BASE).h", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceLocatorDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceLocatorDiscovery --output-dir \"$DERIVED_FILE_DIR/IceLocatorDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceLocatorDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceLocatorDiscovery/$BASENAME.h\"\n"; }; - BA0F22F6A09A012085A064E5 /* PBXBuildRule */ = { + BA9BC30B41821E0E528C2119 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; @@ -2820,338 +2759,390 @@ runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Ice_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Ice_$BASENAME.swift\"\n"; }; - BE2E1AE0DE697D063BC3791D /* PBXBuildRule */ = { + BB1E4B9A1CE49FF6469A7951 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; + filePatterns = "*/test/Ice/admin/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/slicing/exceptions/ClientPrivate.ice, - test/Ice/slicing/exceptions/ServerPrivate.ice, - test/Ice/slicing/exceptions/ServerPrivateAMD.ice, - test/Ice/slicing/exceptions/Test.ice, - test/Ice/slicing/exceptions/TestAMD.ice, + test/Ice/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice"; + name = "Slice Compiler for test/Ice/admin/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - C3283B881010BB1CC95A6603 /* PBXBuildRule */ = { + BFC94219BCB3D687503034E4 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/enums/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; + filePatterns = "*/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/enums/Test.ice, + "$SRCROOT/../slice/Ice/BuiltinSequences.ice", + "$SRCROOT/../slice/Ice/Context.ice", + "$SRCROOT/../slice/Ice/EndpointTypes.ice", + "$SRCROOT/../slice/Ice/Identity.ice", + "$SRCROOT/../slice/Ice/Locator.ice", + "$SRCROOT/../slice/Ice/LocatorF.ice", + "$SRCROOT/../slice/Ice/Metrics.ice", + "$SRCROOT/../slice/Ice/OperationMode.ice", + "$SRCROOT/../slice/Ice/Process.ice", + "$SRCROOT/../slice/Ice/PropertiesAdmin.ice", + "$SRCROOT/../slice/Ice/PropertyDict.ice", + "$SRCROOT/../slice/Ice/RemoteLogger.ice", + "$SRCROOT/../slice/Ice/Router.ice", + "$SRCROOT/../slice/Ice/RouterF.ice", + "$SRCROOT/../slice/Ice/Version.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/enums/*.ice"; + name = "Slice2Cpp Compiler for Ice/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).cpp", + "$(SYMROOT)/$(PLATFORM_NAME)/include/Ice/$(INPUT_FILE_BASE).h", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/Ice\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/Ice/$BASENAME.h\"\n"; }; - C57FC8986B378D208F20BAE0 /* PBXBuildRule */ = { + C05A427B4D1DAA3BA1510A0B /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/adapterDeactivation/*.ice"; + filePatterns = "*/test/Ice/binding/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/adapterDeactivation/Test.ice, + test/Ice/binding/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/adapterDeactivation/*.ice"; + name = "Slice Compiler for test/Ice/binding/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - C68807B7098C4D7CE2F9B8E8 /* PBXBuildRule */ = { + C3DBAF4F863DD4BB1DA91BEE /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/hold/*.ice"; + filePatterns = "*/test/Ice/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/hold/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/hold/*.ice"; + name = "Slice Compiler for test/Ice/servantLocator/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - C803868AD619AB7FA87719EA /* PBXBuildRule */ = { + CAB49F048B30B609375CB071 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/defaultValue/*.ice"; + filePatterns = "*/test/Ice/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultValue/Test.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultValue/*.ice"; + name = "Slice Compiler for test/Ice/operations/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - CA7A3B7BE443511788BBDE35 /* PBXBuildRule */ = { + CB2D08021681EEEBFDD35666 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/Glacier2/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/stream/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/Glacier2/Metrics.ice", - "$SRCROOT/../slice/Glacier2/PermissionsVerifier.ice", - "$SRCROOT/../slice/Glacier2/Router.ice", - "$SRCROOT/../slice/Glacier2/SSLInfo.ice", - "$SRCROOT/../slice/Glacier2/Session.ice", + test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for Glacier2/*.ice"; + name = "Slice Compiler for test/Ice/stream/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Glacier2\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/Glacier2_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/Glacier2\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/Glacier2/$BASENAME.swift\" \"$DERIVED_FILE_DIR/Glacier2_$BASENAME.swift\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - CE4D5081162D827202AB5888 /* PBXBuildRule */ = { + CF57F7A5BBC6CA2B030C30FE /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/adapterDeactivation/*.ice"; + filePatterns = "*/test/Ice/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/adapterDeactivation/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/adapterDeactivation/*.ice"; + name = "Slice Compiler for test/Ice/optional/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - D19E3CA19E1AB471788912B0 /* PBXBuildRule */ = { + D0653608084D464F8B138E2E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/scope/*.ice"; + filePatterns = "*/test/Ice/udp/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/scope/Test.ice, + test/Ice/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/scope/*.ice"; + name = "Slice Compiler for test/Ice/udp/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - DEF7AB418DFE189C238F7B8D /* PBXBuildRule */ = { + D29588E5F45CCE70DBFAC56B /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; - filePatterns = "*/Ice/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/Ice/BuiltinSequences.ice", - "$SRCROOT/../slice/Ice/Context.ice", - "$SRCROOT/../slice/Ice/EndpointTypes.ice", - "$SRCROOT/../slice/Ice/Identity.ice", - "$SRCROOT/../slice/Ice/Locator.ice", - "$SRCROOT/../slice/Ice/LocatorF.ice", - "$SRCROOT/../slice/Ice/Metrics.ice", - "$SRCROOT/../slice/Ice/OperationMode.ice", - "$SRCROOT/../slice/Ice/Process.ice", - "$SRCROOT/../slice/Ice/PropertiesAdmin.ice", - "$SRCROOT/../slice/Ice/PropertyDict.ice", - "$SRCROOT/../slice/Ice/RemoteLogger.ice", - "$SRCROOT/../slice/Ice/Router.ice", - "$SRCROOT/../slice/Ice/RouterF.ice", - "$SRCROOT/../slice/Ice/Version.ice", + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for Ice/*.ice"; + name = "Slice Compiler for test/Ice/proxy/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/Ice/$(INPUT_FILE_BASE).h", + "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/Ice\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" --depend --depend-file \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/Ice/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir Ice --output-dir \"$DERIVED_FILE_DIR/Ice\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/Ice\"\nmv \"$DERIVED_FILE_DIR/Ice/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/Ice/$BASENAME.h\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - E033A20E7D64CF05863C7D83 /* PBXBuildRule */ = { + D520D9B6825B931429E444E7 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/optional/*.ice"; + filePatterns = "*/test/Ice/services/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.ice"; + name = "Slice Compiler for test/Ice/services/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - E1324200244312457CEC651B /* PBXBuildRule */ = { + D8E4DB9096E618C06F9C6623 /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceStorm/*.ice"; + fileType = pattern.proxy; + inputFiles = ( + "$SRCROOT/../slice/IceStorm/IceStorm.ice", + "$SRCROOT/../slice/IceStorm/Metrics.ice", + ); + isEditable = 1; + name = "Slice Compiler for IceStorm/*.ice"; + outputFiles = ( + "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift", + ); + runOncePerArchitecture = 0; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceStorm\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceStorm\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceStorm/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceStorm_$BASENAME.swift\"\n"; + }; + E05FAD6A4F0429D09796CA8D /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceDiscovery/*.ice"; + fileType = pattern.proxy; + inputFiles = ( + "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", + ); + isEditable = 1; + name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; + outputFiles = ( + "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp", + "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h", + ); + runOncePerArchitecture = 0; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$ICE_HOME/bin/slice2cpp\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2cpp\" ]; then\n SLICE2CPP=\"$SRCROOT/../cpp/bin/slice2cpp\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2cpp\" ]; then\n SLICE2CPP=$BREW_PREFIX/bin/slice2cpp\nelse\n echo \"Failed to locate slice2cpp compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceDiscovery\"\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" --depend --depend-file \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2CPP\" >> \"$DERIVED_FILE_DIR/IceDiscovery/$INPUT_FILE_BASE.d\"\n\n$SLICE2CPP -I\"$SRCROOT/../slice\" -D ICE_SWIFT --include-dir IceDiscovery --output-dir \"$DERIVED_FILE_DIR/IceDiscovery\" \"$INPUT_FILE_PATH\"\nmkdir -p \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery\"\nmv \"$DERIVED_FILE_DIR/IceDiscovery/$BASENAME.h\" \"$SYMROOT/$PLATFORM_NAME/include/IceDiscovery/$BASENAME.h\"\n"; + }; + E116B57C40984DBBDF7AFE58 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/proxy/*.ice"; + filePatterns = "*/test/TestCommon/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.ice"; + name = "Slice Compiler for test/TestCommon/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - E2598B04DB03DCEAC4D8DCD7 /* PBXBuildRule */ = { + E280EEDFCE813E0957872778 /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceStorm/*.ice"; + fileType = pattern.proxy; + inputFiles = ( + "$SRCROOT/../slice/IceStorm/IceStorm.ice", + "$SRCROOT/../slice/IceStorm/Metrics.ice", + ); + isEditable = 1; + name = "Slice Compiler for IceStorm/*.ice"; + outputFiles = ( + "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift", + ); + runOncePerArchitecture = 0; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceStorm\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceStorm_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceStorm\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceStorm/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceStorm_$BASENAME.swift\"\n"; + }; + E47B28EC2F168D6E639FF7A1 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/exceptions/*.ice"; + filePatterns = "*/test/Ice/acm/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/acm/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.ice"; + name = "Slice Compiler for test/Ice/acm/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - E2BF9E65FA70259DC67BBB19 /* PBXBuildRule */ = { + E57C7F4A3075D292175D22FD /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/info/*.ice"; + filePatterns = "*/test/Ice/slicing/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/info/Test.ice, + test/Ice/slicing/objects/ClientPrivate.ice, + test/Ice/slicing/objects/ServerPrivate.ice, + test/Ice/slicing/objects/ServerPrivateAMD.ice, + test/Ice/slicing/objects/Test.ice, + test/Ice/slicing/objects/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/info/*.ice"; + name = "Slice Compiler for test/Ice/slicing/objects/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - E685247FAC72008244FF4F4D /* PBXBuildRule */ = { + E793AF98611243937E18BDDA /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/timeout/*.ice"; + filePatterns = "*/test/Ice/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/timeout/Test.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/timeout/*.ice"; + name = "Slice Compiler for test/Ice/exceptions/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - E9F0B8E6967BCBEEBDE3820E /* PBXBuildRule */ = { + E8B58B8D847476D4C18DA988 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/scripts/*.ice"; + filePatterns = "*/test/Ice/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - ../scripts/Controller.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestDriver/*.ice"; + name = "Slice Compiler for test/Ice/servantLocator/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - E9FBB1B4891957CADFB0648B /* PBXBuildRule */ = { + EA835B94D979E1CCBE4F9FE8 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/stream/*.ice"; + filePatterns = "*/test/Ice/facets/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/stream/Test.ice, + test/Ice/facets/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/stream/*.ice"; + name = "Slice Compiler for test/Ice/facets/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - EAF2BF97C81C44268C1B9295 /* PBXBuildRule */ = { + EAFC23B13D59F9E878453C48 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/interceptor/*.ice"; + filePatterns = "*/test/Ice/ami/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/interceptor/Test.ice, + test/Ice/ami/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/interceptor/*.ice"; + name = "Slice Compiler for test/Ice/ami/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - EDB0F7ED19C5B183A3246E2F /* PBXBuildRule */ = { + EC1280117082EEA012A8AAE1 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/properties/*.ice"; + filePatterns = "*/test/Ice/adapterDeactivation/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/adapterDeactivation/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/properties/*.ice"; + name = "Slice Compiler for test/Ice/adapterDeactivation/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - EE7E4F4B1C7CE544A204C4B2 /* PBXBuildRule */ = { + EEDEE9791746B5ED29E9944B /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -3171,40 +3162,47 @@ runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - EF9EDAEAEEAF00D419FAFC48 /* PBXBuildRule */ = { + F08D29DD1F607F3A2A0811E1 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/properties/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceGrid/*.ice"; fileType = pattern.proxy; inputFiles = ( + "$SRCROOT/../slice/IceGrid/Admin.ice", + "$SRCROOT/../slice/IceGrid/Descriptor.ice", + "$SRCROOT/../slice/IceGrid/Exception.ice", + "$SRCROOT/../slice/IceGrid/FileParser.ice", + "$SRCROOT/../slice/IceGrid/Registry.ice", + "$SRCROOT/../slice/IceGrid/Session.ice", + "$SRCROOT/../slice/IceGrid/UserAccountMapper.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/properties/*.ice"; + name = "Slice Compiler for IceGrid/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; - script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; + script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\nBASENAME=$(basename -- \"$INPUT_FILE_PATH\")\nBASENAME=\"${BASENAME%.*}\"\nmkdir -p \"$DERIVED_FILE_DIR/IceGrid\"\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/IceGrid_$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR/IceGrid\" \"$INPUT_FILE_PATH\"\nmv \"$DERIVED_FILE_DIR/IceGrid/$BASENAME.swift\" \"$DERIVED_FILE_DIR/IceGrid_$BASENAME.swift\"\n"; }; - F2E7BBE6049D4FB5B98F07F0 /* PBXBuildRule */ = { + F0E6D62A03E1FC5ED137EA52 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/facets/*.ice"; + filePatterns = "*/test/Ice/admin/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/facets/Test.ice, + test/Ice/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/facets/*.ice"; + name = "Slice Compiler for test/Ice/admin/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - F713BCB2DE19D0204969C4C3 /* PBXBuildRule */ = { + F3441C411E476AFB3E7F2708 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -3222,17 +3220,17 @@ runOncePerArchitecture = 0; script = "BREW_PREFIX=$($SHELL -c 'brew --prefix' 2>/dev/null)\nif [ -f \"${ICE_HOME-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$ICE_HOME/bin/slice2swift\"\nelif [ -f \"$SRCROOT/../cpp/bin/slice2swift\" ]; then\n SLICE2SWIFT=\"$SRCROOT/../cpp/bin/slice2swift\"\nelif [ -f \"${BREW_PREFIX-unset}/bin/slice2swift\" ]; then\n SLICE2SWIFT=$BREW_PREFIX/bin/slice2swift\n SLICEDIR=$BREW_PREFIX/share/ice/slice\nelse\n echo \"Failed to locate slice2swift compiler\"\n exit 1\nfi\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --depend --depend-file \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\" \"$INPUT_FILE_PATH\"\n\necho \"$INPUT_FILE_BASE.ice: $SLICE2SWIFT\" >> \"$DERIVED_FILE_DIR/$INPUT_FILE_BASE.d\"\n\n\"$SLICE2SWIFT\" -I\"$SRCROOT/../slice\" -I\"$INPUT_FILE_DIR\" --output-dir \"$DERIVED_FILE_DIR\" \"$INPUT_FILE_PATH\"\n"; }; - FBB889AD2F071521250001D5 /* PBXBuildRule */ = { + F733CA456DE86E601559E187 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/location/*.ice"; + filePatterns = "*/scripts/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/location/Test.ice, + ../scripts/Controller.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/location/*.ice"; + name = "Slice Compiler for test/TestDriver/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); @@ -3242,1704 +3240,1704 @@ /* End PBXBuildRule section */ /* Begin PBXContainerItemProxy section */ - 00D89C717F365A9B330E3D7C /* PBXContainerItemProxy */ = { + 00DE841C8687D0E197EE85CE /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; + }; + 04A622B5D5B12F62B158F08A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 014501AC275F60A5050D23D1 /* PBXContainerItemProxy */ = { + 076A7FBA191D0BF483C0A3DE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 3AA88FF2CD4BC207F3E38A68; + remoteInfo = "IceDiscovery C++11 macOS"; }; - 0206073BE2096B182AEEB99F /* PBXContainerItemProxy */ = { + 0909673234428DAD5D8D8243 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 66766A219D36565BAA8D85DB; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = E13AF536398A890833FFC655; + remoteInfo = "IceRetry macOS"; }; - 0239F500BAC2E87283B0DB3B /* PBXContainerItemProxy */ = { + 094C2E5066A5323901EC3AD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D166D330DEC6674B8372A98E; - remoteInfo = "IceStorm macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 03FE801C71B56486EB5861EE /* PBXContainerItemProxy */ = { + 0994D1F501AAD22D7284006B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C4ECB5C2679ED962EFAEA71; - remoteInfo = "IceServices iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 043F5A3C19D22388B6604E8C /* PBXContainerItemProxy */ = { + 09A3E52F59DDF46922C5FB89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7649B8B4D36C63D3D167ED11; - remoteInfo = "IceSlicingExceptions macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 0445FD490A608CA2BBC5A706 /* PBXContainerItemProxy */ = { + 09B639B4B4CE81CDDCBEC692 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C8F64BC2EB740FC26540C5A; - remoteInfo = "IceEnums macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 055279623C7C6ED5BE872EB1 /* PBXContainerItemProxy */ = { + 09D86D6C5084A5D227EE225F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = BD615D3AE7C4D142D2D859B8; - remoteInfo = "IceBinding macOS"; + remoteGlobalIDString = 2B82F333BA11DB5D8BECDBF6; + remoteInfo = "IceInterceptor iOS"; }; - 056F818105111FA828DFA996 /* PBXContainerItemProxy */ = { + 0B0BE533B1668784A4F6EE1D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1461134F8E13923F515F804D; - remoteInfo = "IceImpl iOS"; + remoteGlobalIDString = D2E3C388100CC50AD3052CDB; + remoteInfo = "IceServantLocatorAMD iOS"; }; - 06958B65D9E61CD65C030E7E /* PBXContainerItemProxy */ = { + 0B6551F9AB9BAA4EB2DFA780 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B9A94B53B78BCA1F3F37DB5; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = D07E492BEFB243158D25D09C; + remoteInfo = "IceSlicingExceptionsAMD macOS"; }; - 084E22A8552E2814CEC545B7 /* PBXContainerItemProxy */ = { + 0D0E77FB031E59897244F92D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 0A9D7521506E54EF49F62920 /* PBXContainerItemProxy */ = { + 0D834A00427086014DA514E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 0C260F3F898DDD2ED50A2604 /* PBXContainerItemProxy */ = { + 0D9BD4F49481916A916FF362 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 0E5B072C3073550289AC022D /* PBXContainerItemProxy */ = { + 0DDD4EE66F91D09188619B17 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 59678E1D5AFC460FA5D03A6B; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = 26D8717EB0F318653FB9C763; + remoteInfo = "SliceEscape iOS"; }; - 0F5655381197825B7102E2FB /* PBXContainerItemProxy */ = { + 0EB89F1B2A18E897F751F54B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D8E57767C0E6E25C9171CD94; - remoteInfo = "IceEnums iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 12367DE4298BD4FAC0C724E8 /* PBXContainerItemProxy */ = { + 0FC18BDE7D824822616376E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 33115CA925E128B5715AB93A; - remoteInfo = "IceExceptionsAMD iOS"; + remoteGlobalIDString = 915EFEBB1B2962C505C96286; + remoteInfo = "IceProxy macOS"; }; - 133E6ECC4287650410BA9EE1 /* PBXContainerItemProxy */ = { + 11F96F305582FC17417991AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B3FAC186802EC7B160722234; - remoteInfo = "IceAdapterDeactivation macOS"; + remoteGlobalIDString = 737F194EFAAE24FEE20C5FF6; + remoteInfo = "IceSlicingExceptions iOS"; }; - 13C138092DDD001C4BE931E7 /* PBXContainerItemProxy */ = { + 1405B64CF0AB7E8116B7FFF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 14E3FB2F892E6ADEC5EEEE46 /* PBXContainerItemProxy */ = { + 144D57699F421A453D879D0E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 15F4529F1879A67F50F754A9 /* PBXContainerItemProxy */ = { + 144F03DDB219C92CC0AD982B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B06DD43CC98E177E5491959D; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = 9F3B1821E0C570BF87946D26; + remoteInfo = "IceOperationsAMD iOS"; }; - 16D6FE9D2BDB54DDB4735C1A /* PBXContainerItemProxy */ = { + 15E3D293BAB68AC851D74B14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 1767B82F1961C76D47FF467B; + remoteInfo = "IceStream iOS"; }; - 172CBAB495365D889B14D951 /* PBXContainerItemProxy */ = { + 17FD1919F9AFA945C049CE71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 179172FA190EA2F6FB1B6134 /* PBXContainerItemProxy */ = { + 1819A3F4E2BF3546C183A010 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 183D02F1CDC7663537F0F150 /* PBXContainerItemProxy */ = { + 18BD8B97402ED565EFA00DEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 19A436987D04FD3FE857CE4D /* PBXContainerItemProxy */ = { + 192BAF3A73C465B85A7C1F06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 1B5149A81431CE3EF21C3351 /* PBXContainerItemProxy */ = { + 195FCFDEE7EFAAB16AF81A5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 1B5BEFE3ACBFD71141DFB8AC /* PBXContainerItemProxy */ = { + 197361DC1A8766585D3FFC5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = FBFB66FA3AA0C4BACD7CAEF1; + remoteInfo = "Glacier2 macOS"; }; - 1BFB741D987C73ABE77B0C32 /* PBXContainerItemProxy */ = { + 19A7FC7514BFDF27540E6C14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = BB148EB91DBAAACC5D08F10B; - remoteInfo = "IceImpl macOS"; + remoteGlobalIDString = 199245355B4B5CD9FF6A6386; + remoteInfo = "IceLocation iOS"; }; - 1C86476610F2E1CFF118CB0C /* PBXContainerItemProxy */ = { + 1AA5486C2B2780994FABE39E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = BB148EB91DBAAACC5D08F10B; - remoteInfo = "IceImpl macOS"; + remoteGlobalIDString = 3889B46D2FBF6B61B7DA5A5A; + remoteInfo = "IceDefaultServant iOS"; }; - 1D75B9D8D2478679CC49270A /* PBXContainerItemProxy */ = { + 1B73AE5BB2E857F560D937D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 953A9306D1F74C3E46325E82; - remoteInfo = "IceGrid macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 21BE39872F46F3825FB2C0BC /* PBXContainerItemProxy */ = { + 1CA354496945D633B349F340 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 66766A219D36565BAA8D85DB; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = 8F11329102906B0FE306EF9C; + remoteInfo = "IceFacets macOS"; }; - 2403B7E46EFF8B1823936276 /* PBXContainerItemProxy */ = { + 1D8BD3CF996B922E28683DB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 984F9509A61A9677BDD2B1E7; - remoteInfo = "IceBinding iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 24519292C63CDD33513EFF95 /* PBXContainerItemProxy */ = { + 1E59CC1DE82AF2C223F12E78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A250D484C77105742100E390; + remoteInfo = "IceGrid macOS"; }; - 246668AAF6B00CDDA6E9C701 /* PBXContainerItemProxy */ = { + 1E5D3D36B7A333EDDDD3C5CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 25469C37FEC81A040110CF43 /* PBXContainerItemProxy */ = { + 1F2B3F76BEAF1A445EAD42B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 32B8209C4A20C3D8A8496A49; - remoteInfo = "IceServices macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 25BEADB06BE24072293366FF /* PBXContainerItemProxy */ = { + 208712A54D7C80A5E1D013C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1461134F8E13923F515F804D; - remoteInfo = "IceImpl iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 289518D8279A017F4EA87E20 /* PBXContainerItemProxy */ = { + 2090F85D0C4A629C299DAC0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 2A753D85D7D7B4468801DD01 /* PBXContainerItemProxy */ = { + 20B470636241F129E7F93EC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 2A9B31FD5450BEAC59472BD7 /* PBXContainerItemProxy */ = { + 2152DAED3FAD6AB0B5DF41B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 2A0224A2EFBB3E87655C351C; + remoteInfo = "IceInfo iOS"; }; - 2BEAE6758EFA118B2027CCE6 /* PBXContainerItemProxy */ = { + 21F2AE70E3D37455D567BBB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = FBFB66FA3AA0C4BACD7CAEF1; + remoteInfo = "Glacier2 macOS"; }; - 2C3295921EABE6A2B4B344B3 /* PBXContainerItemProxy */ = { + 221A2C420C1A9087B55E7CDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 086D7EFAFD5B99B06915E82A; - remoteInfo = "IceStorm iOS"; + remoteGlobalIDString = 4434399DDA0D789BDAB8EDCF; + remoteInfo = "IceLocation macOS"; }; - 2EF62F8C4BCBD2D0C38BCA8B /* PBXContainerItemProxy */ = { + 231E3EB4B30195829B9C7C43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 31334DDE7BEFE6B15239CD3E /* PBXContainerItemProxy */ = { + 232EE525AB7443632644DF3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 3266390A5794F2FAA5AB106B /* PBXContainerItemProxy */ = { + 256A70A32FCC1DB9CFA8A408 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 332C20F6F8CECC445FA43DBE /* PBXContainerItemProxy */ = { + 2C5DE750C359BC2A30F63723 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 33916F796E33205889F8A514 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D2EB13A2B3406D37FA2754E9; - remoteInfo = "IceSlicingObjectsAMD iOS"; - }; - 361B9424E3E8CEFDCD4E18F1 /* PBXContainerItemProxy */ = { + 2D02A219CBEBD9573C6A045D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 366E74274441B9A0FCDA56D5 /* PBXContainerItemProxy */ = { + 2F145549E2ECE2604831DFC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = DE8F7D3EE9F4909908CB3923; - remoteInfo = "IceStream macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 36E9BF62C12569F45DA81AF3 /* PBXContainerItemProxy */ = { + 2F16B705DBEE879F8AEE845F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 386AB84004D9B78C0EDD536D /* PBXContainerItemProxy */ = { + 2F4AB5C5978C4CB4D968B985 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7862E459B18BD8751A67923F; - remoteInfo = "IceProxy macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 396D434D2A6FBB7DFE7FB14F /* PBXContainerItemProxy */ = { + 2F78747818E14907E05B6CE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 263FF8D1D5EF5BA8F4E3FDFA; - remoteInfo = "IceOptional iOS"; + remoteGlobalIDString = A02AEC1FCAEDD308F0CBDCC6; + remoteInfo = "IceStream macOS"; }; - 3B9A50B36B7EC52474EC74CE /* PBXContainerItemProxy */ = { + 302E9DDA13EDEBAA0C1C6461 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7B09AAAF71F5D5AB2F8C1B78; - remoteInfo = "IceUdp macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 3C96FBBA1D866525481B6407 /* PBXContainerItemProxy */ = { + 30FB8DC6A686B05DEB1C3628 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 73B0FB7CB263578EA908E6BF; - remoteInfo = "IceProperties iOS"; + remoteGlobalIDString = 0A757D8B307D80F7BD3C5017; + remoteInfo = "IceAmi macOS"; }; - 3CB4CA72520721540AEF5655 /* PBXContainerItemProxy */ = { + 321D14768D089FF940693129 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 246FEE224D85BEE24C2D1581; - remoteInfo = "IceServantLocator iOS"; + remoteGlobalIDString = 99D043CF9A0E172FCFC4C4B0; + remoteInfo = "IceSlicingObjects iOS"; }; - 3D8884CD565D4A35EB22C64D /* PBXContainerItemProxy */ = { + 37ED755B12FCC0583ECA1212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = BF6E058050842A50604055C2; - remoteInfo = "IceOptionalAMD iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 3F0579C966297CC06DB23E31 /* PBXContainerItemProxy */ = { + 396D95E81049556B6818C49D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D166D330DEC6674B8372A98E; - remoteInfo = "IceStorm macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 402763FE8881D4A8E87ADE5B /* PBXContainerItemProxy */ = { + 399FF3FB6347A6503490CFDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - 41CC0169F1111C04E415AC8D /* PBXContainerItemProxy */ = { + 3D208A518B330B7F9465B12D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = CF2C35C710236049C9C60B79; - remoteInfo = "IceProperties macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 424D32CEB0DE33F9E1D2EDAD /* PBXContainerItemProxy */ = { + 413D3258EDF4221463EBEB9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A4F94E6B42A58EEF0623EC8F; + remoteInfo = "IceInvoke macOS"; }; - 439600681D10A6E220DE0AD7 /* PBXContainerItemProxy */ = { + 458731DB8A8E8EFE42D7E6C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 47675D8C1F957EE4364D7889 /* PBXContainerItemProxy */ = { + 45D7F71E010A419A4F9BDD80 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 80D1931BE1B80501D33167DD; - remoteInfo = "IceTimeout macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 4790FABF6E6F6384DC30DEF1 /* PBXContainerItemProxy */ = { + 45EA93F06DC1579D94330C63 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = DE7C3CE12D76528ED6571BB0; - remoteInfo = "IceTimeout iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 488DB15BEBD72B41BFC2F7C0 /* PBXContainerItemProxy */ = { + 484B59305DCF5D0F7D737D6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 8C1035C93AB58A55E8EB9B9D; + remoteInfo = "IceFacets iOS"; }; - 4952EEE2AED387DB9EEA4BD4 /* PBXContainerItemProxy */ = { + 4A4F8C5EAEFD06F4B880420C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 4A977A65758B16E7E31D8996 /* PBXContainerItemProxy */ = { + 4B24C60DD2735F19F92AB8D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4FDA69908F50F24A52FA5554; - remoteInfo = "IceScope iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 4B703F834745FE58850D62D4 /* PBXContainerItemProxy */ = { + 4C60141AA1A8FD05F8685B95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 4BD9B6A40A3A2BAE3F792DF2 /* PBXContainerItemProxy */ = { + 4CA0D05C006208E49B678FCC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 4BF30E2AC14F122F253331FA /* PBXContainerItemProxy */ = { + 4D812AF9E49B9BA1AF671E67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D7E804643FF0F11F9B5B0EA8; - remoteInfo = "IceOperations macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 4C7D8D5F56D51212B4EB3EDE /* PBXContainerItemProxy */ = { + 4EEA7C7E13C8CB9FA6592163 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 4CAAF120E053F3911CDCBB12 /* PBXContainerItemProxy */ = { + 4F280D704E7E30DBFF24D934 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; - }; - 4CEC6C7D95E0CA1C63DEB2A9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EEC6F479C65DCAAB4950D96F; - remoteInfo = "IceFacets macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 4D0ECF7B4A4E30694C530DC7 /* PBXContainerItemProxy */ = { + 5043D766A126E61F250463D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 54C05D7A1468FBA7EB02A914; - remoteInfo = "IceInheritance macOS"; + remoteGlobalIDString = 2AA26A44152A667D249E2998; + remoteInfo = "IceSlicingObjectsAMD macOS"; }; - 4D4C5D798AFFB8EA4F4BB9AB /* PBXContainerItemProxy */ = { + 50A1FA2B88000EDD83006EF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 4FA7360902327FE1AEDD3760 /* PBXContainerItemProxy */ = { + 51F244B025EF269D92B3F262 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = D6B732964F3D00D84F9428AC; + remoteInfo = "IceExceptionsAMD macOS"; }; - 4FD344865433C487A7C74F3E /* PBXContainerItemProxy */ = { + 534235D975DA598C3003B922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 961580353429DCE0D0B109CB; - remoteInfo = "IceScope macOS"; + remoteGlobalIDString = 60F33D27C2F25EAA1C58217D; + remoteInfo = "IceInterceptor macOS"; }; - 5020DC827D0CDBDE619C1999 /* PBXContainerItemProxy */ = { + 547B75DA5DF24164A91EB88F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 50E06DF792893808145A8EAB /* PBXContainerItemProxy */ = { + 555E024B24C17A7DE5F0ADE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 520C9E1BA5F83158E30E26F9 /* PBXContainerItemProxy */ = { + 56D67D1D13551ECC494292BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = BEBD5165FA221E0C61A12DD9; + remoteInfo = "IceProxy iOS"; }; - 52A7DB154C18252C0118A925 /* PBXContainerItemProxy */ = { + 5710FC39CDFFBBD1632956E4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 534637D15E3B13C82368E2DF /* PBXContainerItemProxy */ = { + 571722DCA58D3280510DBAE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = FC49A3F19B353AC4051631B4; + remoteInfo = "IceInheritance macOS"; }; - 554ED7B7307F91FB05534DB9 /* PBXContainerItemProxy */ = { + 5736D1BB77BBE6E9612973CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 66766A219D36565BAA8D85DB; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 565C3379B039CBE177EDEFEB /* PBXContainerItemProxy */ = { + 5861FE679598D667D6219FC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 5DA5602D00AE3159023AFB5D; + remoteInfo = "Ice C++11 iOS"; }; - 57ACB85FDE7F2314CCE6A7F8 /* PBXContainerItemProxy */ = { + 59A627B94164E5E4A39D7900 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = CC8E2C60DE859F3875C1A578; - remoteInfo = "IceOperationsAMD macOS"; + remoteGlobalIDString = 10E56726E39C8E4E56D51BC4; + remoteInfo = "IceInfo macOS"; }; - 5A1A8F8FAFE4A01BD86E291F /* PBXContainerItemProxy */ = { + 59E2AF8828513099F1A302F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; + }; + 5A8BB27B6F9BA4688ED7F443 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; + proxyType = 1; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 5D854259AC58BF71060A4FE2 /* PBXContainerItemProxy */ = { + 5B2F93B6F54E4110EE384EB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 5DDEA32F1C31BC51C5C6D66E /* PBXContainerItemProxy */ = { + 5D87AD3193C4D90FD9C8179B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B9A94B53B78BCA1F3F37DB5; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 5FC49C5318AA80BB4616722C /* PBXContainerItemProxy */ = { + 5D8A49A1E8DBBD731D1D4D8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 45B627654A6C6E672B177B58; - remoteInfo = "IceSlicingObjectsAMD macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 61A26954F988625C541F1F01 /* PBXContainerItemProxy */ = { + 5E926C954F3A8858CB799B09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 61BC7B11FD7679D2366C9C3F /* PBXContainerItemProxy */ = { + 6034F24196B01C89E967E0A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 87E9A0678200BC32DF77CC22; - remoteInfo = "IceRetry iOS"; + remoteGlobalIDString = BFD01B6CA65F9516862D1FA1; + remoteInfo = "IceEnums macOS"; }; - 61D1B0A84E51FD06361FA27C /* PBXContainerItemProxy */ = { + 60C30DE929B72855A8DD1372 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 82C53B88275C4981212133CC; - remoteInfo = "IceSlicingExceptionsAMD macOS"; + remoteGlobalIDString = 696D6136245EB191F3A59E1A; + remoteInfo = "IceLocatorDiscovery C++11 iOS"; }; - 61E2B5DB1640EA077C36236E /* PBXContainerItemProxy */ = { + 61EBF15B7A1C2349628E4AF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 62F870226A3B49EF769A6F69 /* PBXContainerItemProxy */ = { + 6392976D3234498D8EDEBFFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AC5B52B4AAA6CC13CA8A2DDB; + remoteInfo = "Glacier2 iOS"; }; - 63119168261AABF6098B7D8C /* PBXContainerItemProxy */ = { + 65275F3033D631BFFDB68F37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 6315F1589B46F7B4E65EFECB /* PBXContainerItemProxy */ = { + 6622A1F58AE077A765492903 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 1F284CA948D007302C982357; + remoteInfo = "IceUdp macOS"; }; - 64243A42833EB19FFF1EDAC1 /* PBXContainerItemProxy */ = { + 6833646617F50B5F99224F96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 2646D8A7E773E3BDE5BE8E29; + remoteInfo = "IceGrid iOS"; }; - 64AAB3780F7152FEDDDF1C63 /* PBXContainerItemProxy */ = { + 68A0CA494016011E788CEF14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B51FD7FF275A85DCE665AB96; - remoteInfo = "IceObjects macOS"; + remoteGlobalIDString = 5DA5602D00AE3159023AFB5D; + remoteInfo = "Ice C++11 iOS"; }; - 64E24FB3A09A1FAF8FA07FF9 /* PBXContainerItemProxy */ = { + 68FA5CD5D3BE1AE97589F1C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3D1F7E6A7317D6CB8877A0D5; - remoteInfo = "IceAdapterDeactivation iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 65DDD513A3AD330E4DED4FBD /* PBXContainerItemProxy */ = { + 6CB8FFC27C1C7F3D2A0E974C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7AC3B103C3B879479057C283; - remoteInfo = "IceDefaultServant iOS"; + remoteGlobalIDString = 7C5D25F9DE7921A57B72E85F; + remoteInfo = "IceOptionalAMD macOS"; }; - 65E35AB963957665F82C78A4 /* PBXContainerItemProxy */ = { + 6CFFA5183F70AC0997AAD28F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = EBB34A2FBFB19A98854A90B2; - remoteInfo = "IceObjects iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 695A31E5C75603C7FBD2276A /* PBXContainerItemProxy */ = { + 6D0310C13A5DCC1002BCEDFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = DD3F4218F00B8F03628CFF85; - remoteInfo = "IceStream iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 69E7A8EC87F6BD69985BE302 /* PBXContainerItemProxy */ = { + 6D8BD82FC4D2E7D88CD1E206 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 2C9432880D461B94B2829F4D; - remoteInfo = "IceAmi iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 6ACCFCFB18833D2E4B29A59B /* PBXContainerItemProxy */ = { + 6F71D9490BEF8E58D04C1868 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 6B0AB5FCB178D5C6B7BD91DB /* PBXContainerItemProxy */ = { + 718762720FB2D9A1D6045FCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = A3B6CDB0CD7C0059D4D3CBF9; + remoteInfo = "IceProperties iOS"; }; - 6B7FE12812349143703F9B3B /* PBXContainerItemProxy */ = { + 7197824CC6154D953B46BE8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = F1949C2140DCFA5E835C5C17; + remoteInfo = "IceBinding iOS"; }; - 6C14F96F54B2F09A87EF82E4 /* PBXContainerItemProxy */ = { + 720F330D49EF2814155C4761 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 84AAA301C5D3AF97E6828B9A; + remoteInfo = "IceBinding macOS"; }; - 6CDE8504E9B7417FC60202FC /* PBXContainerItemProxy */ = { + 7330088081A46278F32264FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 6EF8510E1A2A180A27F9ED34 /* PBXContainerItemProxy */ = { + 736425D866A7923A2719540C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 24A0E61D1931744BC729034A; + remoteInfo = "IceAdmin iOS"; }; - 6FBFA1D5551FA04E8D5D1888 /* PBXContainerItemProxy */ = { + 740DC98CDBA9B6B07DFF5C7F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 709A3F364483E15887C64210 /* PBXContainerItemProxy */ = { + 758F86A89C7437E034F49AFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E1DFDE719731E7D4A7FEF6E0; - remoteInfo = "IceDefaultValue iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 70C90AE95855653A9AC0CE50 /* PBXContainerItemProxy */ = { + 76390DCCAEA59C6D31FE48C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 38C1EA904D5C3BCB045C88A2; + remoteInfo = "IceProxyAMD macOS"; }; - 718C3CF8AFB80575F45C8CDA /* PBXContainerItemProxy */ = { + 7672624AD54550F8521412D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 2646D8A7E773E3BDE5BE8E29; + remoteInfo = "IceGrid iOS"; }; - 720832E175EB439A57A39484 /* PBXContainerItemProxy */ = { + 78F98741015DAF726FBA93FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 11C4703EE1A20D4D647A2951; - remoteInfo = "IceDefaultValue macOS"; + remoteGlobalIDString = 529314BF4173169E9CB2F36B; + remoteInfo = "IceProperties macOS"; }; - 73353E58AC47EC3C0E7E4660 /* PBXContainerItemProxy */ = { + 79334374FD217F097648201E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 02BA85F98EB32966A7AA3C21; + remoteInfo = "IceRetry iOS"; }; - 735348BAA927AF23DB6A9224 /* PBXContainerItemProxy */ = { + 7A4B14E50A9EF8889C043508 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 5DA5602D00AE3159023AFB5D; + remoteInfo = "Ice C++11 iOS"; }; - 73A2F189E512673017E1BFE6 /* PBXContainerItemProxy */ = { + 7A68B6DCA42F642338D76D6C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 758C83C5E9AC0CBAE5F586A1 /* PBXContainerItemProxy */ = { + 7B189B537112F1A3D8466612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 758EC9DFA3BCF0FA971D1F71 /* PBXContainerItemProxy */ = { + 7C0C367A5555B3F62AC3AFF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 140CB18515FA53ECB140F7CC; + remoteInfo = "IceServices macOS"; }; - 75D90FD867A1C5A9F54E6920 /* PBXContainerItemProxy */ = { + 7C4197A3AFACC893BF9F54EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 8D4D7F1ABB790FA722EC7917; + remoteInfo = "IceOperationsAMD macOS"; }; - 76E71BF16EFF9D2AC7E83382 /* PBXContainerItemProxy */ = { + 7CA3910FB0789320EE20268F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 44669E73C88B6F4F3038B679; - remoteInfo = "SliceEscape macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 78F1308C887D1667DE857AF8 /* PBXContainerItemProxy */ = { + 7CA52B64C6B2B6B870FF00A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 16C02D2C934DC57FE079663F; + remoteInfo = "IceStorm iOS"; }; - 7C6BF10F61186DD69616F0C2 /* PBXContainerItemProxy */ = { + 7E42163A5BD5EB9625515535 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 59678E1D5AFC460FA5D03A6B; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 7EE72D0E259A4D5150B01076 /* PBXContainerItemProxy */ = { + 7E4D632BC6E4DE248653A07D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B06DD43CC98E177E5491959D; + remoteGlobalIDString = FBFB66FA3AA0C4BACD7CAEF1; remoteInfo = "Glacier2 macOS"; }; - 7EFFF6DF96D917257417FC18 /* PBXContainerItemProxy */ = { + 7ED02EC4A652BACF79A7FBD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 825C0A36A7AC7136A8289E00 /* PBXContainerItemProxy */ = { + 81E73D014721118BE76D87E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = FC5FC6ACD26B2D242E65DDEF; - remoteInfo = "IceOperations iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 827AAA0DBD12FF9B085F6843 /* PBXContainerItemProxy */ = { + 831F35CFD61D8BB19FDD3A3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47118015D4FFF9159FC93434; - remoteInfo = "IceAdmin iOS"; + remoteGlobalIDString = 04ABE78C2D82D8E0F3B6615C; + remoteInfo = "Ice C++11 macOS"; }; - 84E7D19B1BC7D48A5CCFCFC9 /* PBXContainerItemProxy */ = { + 838948C62C02702EC068F299 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 993C3F64323081AD7846C3D1; + remoteInfo = "IceScope macOS"; }; - 863213C4D9F821BDBBB2F0AC /* PBXContainerItemProxy */ = { + 8460DD3ED78B8DA7BC8E0465 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = A2837C7BEC47E856E536F9B3; - remoteInfo = "IceFacets iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 870182EC13F330A5C99A8AD8 /* PBXContainerItemProxy */ = { + 854A090F6A66CEBF0AEDED26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 874262A59C8B1F6AEE8C42F1 /* PBXContainerItemProxy */ = { + 8685E9A8FFDD5344998A5E70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = D9AE09FB3585B148EE15E9D9; + remoteInfo = "IceEnums iOS"; }; - 8838EE71DB9C73D4BDB9E15D /* PBXContainerItemProxy */ = { + 89130D871CF9DB3F3FFB3C38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 04ABE78C2D82D8E0F3B6615C; + remoteInfo = "Ice C++11 macOS"; }; - 88DF7E54543F3B33D43E28E6 /* PBXContainerItemProxy */ = { + 894F108120051CBF396B7383 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 89FC34EF19D5D0ABC4D1EA35 /* PBXContainerItemProxy */ = { + 8BD2308214CF9938B6042169 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = E6806D7DB7060BC3A0C7306D; + remoteInfo = "IceOptionalAMD iOS"; }; - 8B8368E9D04D9365D7FEF1DB /* PBXContainerItemProxy */ = { + 8DFC07199E95E21CB8D2ABF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FD780B3B0F51D50A0233C81; - remoteInfo = "IceInterceptor macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 8F2F3FC6FC38618B325EFB96 /* PBXContainerItemProxy */ = { + 8F77F087CA76298635C6EB3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 59678E1D5AFC460FA5D03A6B; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 8F39CEB5897DD5417B1A0BEA /* PBXContainerItemProxy */ = { + 8FF049F5EBED88BB74760CA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 8F9C0007F42379910D9FF4A9 /* PBXContainerItemProxy */ = { + 919DC87F97E7B2AACBBD5B5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 9097BF0D9D5029FE82933379 /* PBXContainerItemProxy */ = { + 9211D311DD89DD888C03D35D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D6C19C2ACCB1CB3FB3B25FA9; - remoteInfo = "IceGrid iOS"; + remoteGlobalIDString = 9B13B57D40995B5A58986BCF; + remoteInfo = "IceServantLocatorAMD macOS"; }; - 9121DFC979593B1E11C648A8 /* PBXContainerItemProxy */ = { + 929A515A6EDD66B671E40125 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B9A94B53B78BCA1F3F37DB5; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 9204F421FDD1F7C1A321EFF5 /* PBXContainerItemProxy */ = { + 9338026585418A72A05DEE35 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C5982316F62D05CD651717E7; + remoteInfo = "IceAdapterDeactivation macOS"; }; - 92CB9BA81DAA028497F4ABB5 /* PBXContainerItemProxy */ = { + 93BEBC05532306FA1AEDF168 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 983596DE8C0BFB636571955C; + remoteInfo = "IceSlicingObjectsAMD iOS"; }; - 939FC52BA742DFCF56314DD7 /* PBXContainerItemProxy */ = { + 947D552787CC836F5CD53736 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 93CD96FF4EB061E085F2A386 /* PBXContainerItemProxy */ = { + 9597FB16871D9D4BDF6A58A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - 95FF20C7B96C39DAEA9783B7 /* PBXContainerItemProxy */ = { + 96EFEFE1AAD1D22BEBEADECE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - 9636074FB23CB93DD4FDD351 /* PBXContainerItemProxy */ = { + 9742AE7FC358856C1F997A37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 29279E4ADC71CC6522E7C012; + remoteInfo = "IceTimeout iOS"; }; - 96C749A2EF071F5E2130E695 /* PBXContainerItemProxy */ = { + 97A804BC39125A92D546055F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4426F98834307DB6D023DE51; - remoteInfo = "IceInheritance iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 98B15343A8E74143ED5B4B0A /* PBXContainerItemProxy */ = { + 98DB500817B95AC1BE905C7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = BCEAC60BF9D3DB0E6BB1DD33; - remoteInfo = "IceSlicingObjects macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 9E97558F58846088EB744D06 /* PBXContainerItemProxy */ = { + 991264BBD05F5B0C3EB15175 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D4F0B99BDEE21096E1027E; - remoteInfo = "IceInfo iOS"; + remoteGlobalIDString = BBA5FF013C8B19537743DE0C; + remoteInfo = "IceHold iOS"; }; - 9FC3D5756BE155623977F09D /* PBXContainerItemProxy */ = { + 9A9011F308379E6B0B07DF7C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 9FD62E260BCCE118132284B9 /* PBXContainerItemProxy */ = { + 9C64BBEB1865EAF981E3B50B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - A07196A81A2D3095AFD04529 /* PBXContainerItemProxy */ = { + 9D1505E60C38D15B1D840713 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3CC923BA7EC9201D602FFE65; - remoteInfo = "IceAcm iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - A1177BDA42ECB93DD19E9EEC /* PBXContainerItemProxy */ = { + 9D5A32D676174C1C468BC8C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 16C02D2C934DC57FE079663F; + remoteInfo = "IceStorm iOS"; }; - A3981340330BF1B2BBE5C5ED /* PBXContainerItemProxy */ = { + 9EAC2BB7D69A92CC378D399F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - A52B386CD17D3AC93A7BBB23 /* PBXContainerItemProxy */ = { + A14C3825AE339D2C4D4C65DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - A6D0AA617D51148B4A729D8B /* PBXContainerItemProxy */ = { + A2C96F9A6982B7F377ED37D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - A70E7564B3A082D6BCBE1D17 /* PBXContainerItemProxy */ = { + A51CFA7AB7E9E40ED0DF1944 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 457BBB51C97A0228B53F703A; - remoteInfo = "IceExceptions iOS"; + remoteGlobalIDString = 8E4EE2567B3C187D2F9C1173; + remoteInfo = "IceDefaultValue iOS"; }; - A8C02DAD0D072836518FAF59 /* PBXContainerItemProxy */ = { + A5B8085302BFA40AF3522E4B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - AA1D3D274DE1D1DACAF76475 /* PBXContainerItemProxy */ = { + A6DC1B99D20022B136E62F81 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = BBEFD25BD9A130DE61D90238; - remoteInfo = "IceOperationsAMD iOS"; + remoteGlobalIDString = CC929AD29689B47CA62D417E; + remoteInfo = "IceUdp iOS"; }; - AA999748EC22F00D7E5E42EB /* PBXContainerItemProxy */ = { + A9D86FD03FA249C0E1B1FF42 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - AAF7F7CC5EB52708BEAAC88A /* PBXContainerItemProxy */ = { + AB0351D1ED35B9AC93D57E65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 736E7E0279329997566B6CBD; - remoteInfo = "IceInterceptor iOS"; + remoteGlobalIDString = 0EDA203583B355501DD47E73; + remoteInfo = "IceSSLConfiguration iOS"; }; - AB9364286ACF8E12CD09F08F /* PBXContainerItemProxy */ = { + ABDC8BDE7C177CC5735A455B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - ABC6C317ECF9D9B7E1EA45F4 /* PBXContainerItemProxy */ = { + ABE4C8E7C88C74E206D2105E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - ABEABF70DC2F4D6B6E50A4BC /* PBXContainerItemProxy */ = { + ACE53CA2816C4E55258DDBF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 086D7EFAFD5B99B06915E82A; - remoteInfo = "IceStorm iOS"; - }; - AC1FECBB876831076416E474 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B49EEDD01A8C36F24785F1E7; - remoteInfo = "IceAdmin macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - AD02F61E11394A39B48185B1 /* PBXContainerItemProxy */ = { + AE9D345A351B33C079E3FC91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B1154CF85BB46C6CCA916ABD; - remoteInfo = "IceRetry macOS"; + remoteGlobalIDString = 45549440E1718C4D35E63237; + remoteInfo = "IceAcm macOS"; }; - AE21B8411D203C7FC4055270 /* PBXContainerItemProxy */ = { + B0030EF96F2C9179821DEEDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - B033F882805EFC28F4711FC0 /* PBXContainerItemProxy */ = { + B19925B9ED338D734914D922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - B0511C999599692CEF63C386 /* PBXContainerItemProxy */ = { + B285BE39E77D3B8ED9754FD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4CA64E4D7C1BECF901572919; - remoteInfo = "IceDiscovery C++11 macOS"; + remoteGlobalIDString = C07B8E267CA90FCDBE4E7E7D; + remoteInfo = "IceImpl macOS"; }; - B18B4B776B2C5C1E43BB8117 /* PBXContainerItemProxy */ = { + B2DBBBA58DCF59CA9E9CA36B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 6B689E233D18BEC5377ECFE9; - remoteInfo = "IceProxyAMD iOS"; + remoteGlobalIDString = 2997C7A465709CD09CD4C4BB; + remoteInfo = "IceDefaultServant macOS"; }; - B27B1B823F57615994AA87FE /* PBXContainerItemProxy */ = { + B38B23126632727546B9AF43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - B27F0A0C8164D50379B47811 /* PBXContainerItemProxy */ = { + B44F1E29F31C520BAD808D20 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - B2CB3A501165B7E78E956557 /* PBXContainerItemProxy */ = { + B58780123737EA9831766563 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 34AC5913121CF6E0F793DEDD; + remoteInfo = "IceOptional iOS"; }; - B394E49E013E4A6297833ACF /* PBXContainerItemProxy */ = { + B69CE10E62DE8F029C6CBA37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = B8D5C1F592E31ABE249CC078; + remoteInfo = "IceStorm macOS"; }; - B4D6DC6746AF83195798E010 /* PBXContainerItemProxy */ = { + B6C22FC8D0F087C940837712 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8DB5F9E207CEEFAD3CA28266; - remoteInfo = "IceDefaultServant macOS"; + remoteGlobalIDString = 4CDAAF1A166952EC0C4E0BF1; + remoteInfo = "IceImpl iOS"; }; - B50E757FD1BF6AF7A6F37EDE /* PBXContainerItemProxy */ = { + B7F1953731CF30A6D0C42344 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = AEE1F674AD81A9327E42EDDB; + remoteInfo = "IceAdapterDeactivation iOS"; }; - B7B7629BBC65294BCFA76061 /* PBXContainerItemProxy */ = { + B89F2D0235F69678736B2597 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8E23FF66CFB6287919E99A31; - remoteInfo = "IceLocatorDiscovery C++11 macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - B7F648BD936198D44B002228 /* PBXContainerItemProxy */ = { + B92E478B0BBBA773E2AC843C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - B83CA1F1B88DCBA5E07177D0 /* PBXContainerItemProxy */ = { + B98AF5B51203F4D0188792E2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 653844725C6B533AEBD3977F; - remoteInfo = "IceProxyAMD macOS"; + remoteGlobalIDString = AC5B52B4AAA6CC13CA8A2DDB; + remoteInfo = "Glacier2 iOS"; }; - B951D0A96AF960ED8F08DDFC /* PBXContainerItemProxy */ = { + BB2F38D82D49B3702C78F330 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - BA77B9323A7565435BBBB21C /* PBXContainerItemProxy */ = { + BC08447AFDB3B5F220C7F52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9D8A9741B7D4BD64D5B31B88; - remoteInfo = "IceLocation macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - BB2E208EBD5BE41E44F8EB27 /* PBXContainerItemProxy */ = { + BC52C300EB2A04A651C8A75E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C66C239BBA518B87D48C1C3; - remoteInfo = "IceSSLConfiguration macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - BB9C3870FD19928B2D211011 /* PBXContainerItemProxy */ = { + BC72A5BAF0F8B596CDDDDF97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 953A9306D1F74C3E46325E82; - remoteInfo = "IceGrid macOS"; + remoteGlobalIDString = 41AF2CA6936313B5E6F391BD; + remoteInfo = "IceHold macOS"; }; - BBE986EDE9CEA2409CEA11DC /* PBXContainerItemProxy */ = { + BCC16596ECA2804FEDB53B69 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = C07B8E267CA90FCDBE4E7E7D; + remoteInfo = "IceImpl macOS"; }; - BC400B6D1967FEED0EDD3926 /* PBXContainerItemProxy */ = { + BCEA82B1F942CA1B16338658 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = A250D484C77105742100E390; + remoteInfo = "IceGrid macOS"; }; - BD5BDE3817FEC6E0B6EF6DBE /* PBXContainerItemProxy */ = { + BD3E6E18E657D24DC3A40C9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - BD799E40E1B1231346583165 /* PBXContainerItemProxy */ = { + BE1E84FF3A8338A1BA3DFE4A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C65AA8108580E3668BDBC3F; - remoteInfo = "IceOptionalAMD macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - BE7A26630FA857A0F9DE2244 /* PBXContainerItemProxy */ = { + C177500A281F8265CCD482BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - C3147B2B67B7EBE5156B5365 /* PBXContainerItemProxy */ = { + C20D2C69AEEDD95371E42ACB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 60091C7C300D5092A8E52149; - remoteInfo = "IceExceptionsAMD macOS"; + remoteGlobalIDString = B7EFE020C9D77334FB6C5B4B; + remoteInfo = "IceOperations iOS"; }; - C32F4810A9B60D686D43153B /* PBXContainerItemProxy */ = { + C266014555D8E6DBEF4A28F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 7EB54A3072775CD2177DC7A7; + remoteInfo = "IceExceptions iOS"; }; - C38E4E0F120F34468BCB4F61 /* PBXContainerItemProxy */ = { + C35EB83D7756B70D9A40DD3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - C4648503F7E00B7B097DD352 /* PBXContainerItemProxy */ = { + C4D21D47AAB3654BCCDC3144 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 938EB0FB3FB9C74695580EBE; - remoteInfo = "IceServantLocator macOS"; + remoteGlobalIDString = 04ABE78C2D82D8E0F3B6615C; + remoteInfo = "Ice C++11 macOS"; }; - C48482DE10A162F47CEE22B0 /* PBXContainerItemProxy */ = { + C640207D4C684B47C8580F7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 563E7C5E9BFDDAD9AEB54CD4; - remoteInfo = "IceDiscovery C++11 iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - C77629519BBBB5C64DB1BEE7 /* PBXContainerItemProxy */ = { + C6FAC2B7A282B158A959FF06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 08063B79E151583B4BCA64E2; - remoteInfo = "IceSlicingExceptionsAMD iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - C82C192791BA7B79C32D9024 /* PBXContainerItemProxy */ = { + CA56ABC7E7B37A199F53B865 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D660697C6325570C429F2BC9; - remoteInfo = "IceOptional macOS"; + remoteGlobalIDString = AC5B52B4AAA6CC13CA8A2DDB; + remoteInfo = "Glacier2 iOS"; }; - C94FC3CACFFDF403942A0713 /* PBXContainerItemProxy */ = { + CAFBDF8687533CCA806C1502 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4CD1512C8E4830F6FAC5E6E4; - remoteInfo = "IceSSLConfiguration iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - C9567EC56D783D1440891852 /* PBXContainerItemProxy */ = { + CD34B6091220C74DD1668C00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = D2A90EB733FA2B780783AADF; + remoteInfo = "IceOptional macOS"; }; - CC3474720734885708BBBD6A /* PBXContainerItemProxy */ = { + CE57E0618D88D8B0EDCFAE66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - CD3F5FB4DE55DDA83EAF3052 /* PBXContainerItemProxy */ = { + CF727DA49691973064686C6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 1F99406342A96A78168E74BB; + remoteInfo = "IceServantLocator macOS"; }; - CDFC04EB2D7F9C1BDD4EE235 /* PBXContainerItemProxy */ = { + D0EC1560DF36D4E14A0B954C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = F9DF2DD34D62DDCA59B08490; - remoteInfo = "IceInvoke iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - CE6D8582F9E5F43FD4CA3741 /* PBXContainerItemProxy */ = { + D4D39EE0C45DB478740DD88A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - CEF13A536AF71E7BF67099FA /* PBXContainerItemProxy */ = { + D515AAF200C59B874CB199F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C2F3B80C3A24BFA9444F31E1; + remoteInfo = "IceInheritance iOS"; }; - CF6B626BD259CB7B40F13866 /* PBXContainerItemProxy */ = { + D60BD7E9DC5676E77F63EDDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 46452DCDFFD6A246079637CB; + remoteInfo = "IceAcm iOS"; }; - CF8051D30E715DB8FEBA9FD7 /* PBXContainerItemProxy */ = { + D673464449D815C693CED06F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E51388D0936150349DB47717; - remoteInfo = "IceInfo macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - D0EF17D320E8AB74A974F526 /* PBXContainerItemProxy */ = { + D738E969E2DDF9D604BAAD45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 92DFD90832239D72108865B4; - remoteInfo = "IceUdp iOS"; + remoteGlobalIDString = E47FCF3BB733DC4EC57A0924; + remoteInfo = "IceObjects iOS"; }; - D33424573227C409DB3052BE /* PBXContainerItemProxy */ = { + D97E20121570AE74FCF873DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 568C96C03F49810104EE6CD1; - remoteInfo = "IceSlicingObjects iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - D566C077519B17B006F4C457 /* PBXContainerItemProxy */ = { + DB666A0A9E696FCCA300C8D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - D5F74D0D75EAC0F8566B0B23 /* PBXContainerItemProxy */ = { + DC5AE239C7B721B9673DD654 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C4454250BFF2F744DA15043; - remoteInfo = "IceProxy iOS"; + remoteGlobalIDString = 4CDAAF1A166952EC0C4E0BF1; + remoteInfo = "IceImpl iOS"; }; - D6167EF5F451D5FA93AD9BB8 /* PBXContainerItemProxy */ = { + DC9398A2524EFC9ABDCDD65D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 57285D8128490A28FD5E1EA9; + remoteInfo = "IceSlicingExceptions macOS"; }; - D72F2F8587751A3BF793B388 /* PBXContainerItemProxy */ = { + DC9533A8C2C8F985E804CD9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - D8081E43C2CA5A8101CA8073 /* PBXContainerItemProxy */ = { + DD86754DFB50565D3B9C1645 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 2D69E78989BA05C0A499A44D; - remoteInfo = "IceHold iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - D89D5EEC26C160330B7B8AEF /* PBXContainerItemProxy */ = { + E00FE735E612D8AD79F39317 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C6B3F2AAE2C93C3A2670E5E; - remoteInfo = "IceHold macOS"; + remoteGlobalIDString = 9A9DEB6418C9257648D6A235; + remoteInfo = "IceAmi iOS"; }; - D960472284DF0ABCD771B249 /* PBXContainerItemProxy */ = { + E28C5869BB6C1CC613CD30BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - D961E429680328C9376ACD00 /* PBXContainerItemProxy */ = { + E32F18D290F55AE591D00478 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = CE79EFA5A2D0EEBD42B1DC53; - remoteInfo = "IceAcm macOS"; + remoteGlobalIDString = A1FCF6486037B74ACCD22503; + remoteInfo = "IceSlicingObjects macOS"; }; - DA2C65875456DE264A8FBF2A /* PBXContainerItemProxy */ = { + E455388208A742768A7D24EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 57D39C477D54466601C5A786; + remoteInfo = "IceExceptionsAMD iOS"; }; - DA4FD535D6ECC7CE2309F91A /* PBXContainerItemProxy */ = { + E650749F9DE5664CE7EFD2FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B06DD43CC98E177E5491959D; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = B8D5C1F592E31ABE249CC078; + remoteInfo = "IceStorm macOS"; }; - DB77A67E19C085ADDB8375E5 /* PBXContainerItemProxy */ = { + E6950B775308746D5C44E728 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD01C6A244838BF6DABEF5C; - remoteInfo = "IceLocation iOS"; + remoteGlobalIDString = BCD219D62CE917ADBC7AFD22; + remoteInfo = "IceProxyAMD iOS"; }; - DFBECEB61102BF7765DB140A /* PBXContainerItemProxy */ = { + E7695BD8EE27DDCDDC9CD1C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 3CB27B168E65D6B824278AE1; + remoteInfo = "IceSlicingExceptionsAMD iOS"; }; - E1AC4FB4D3B4CF7873039E01 /* PBXContainerItemProxy */ = { + E7C2FF626DBEF09B758F3F47 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 627EF9C25191013A38BA3C83; + remoteInfo = "IceDefaultValue macOS"; }; - E5906B2ADE3E196F77A1B16C /* PBXContainerItemProxy */ = { + E956E0C6D4280C3D1EC78328 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 14535688C6E2E4A839C04451; + remoteInfo = "IceLocatorDiscovery C++11 macOS"; }; - E91160C56A9113D9DF5D3D49 /* PBXContainerItemProxy */ = { + E99774074A8FF35E057B2617 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - E95A5D586C90B9F7D0D0EBB3 /* PBXContainerItemProxy */ = { + E9D5A68388B16A6E41C42542 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = F4A16370E4157DCD4CF7F964; + remoteInfo = "SliceEscape macOS"; }; - EA3D11C332176AD29691910F /* PBXContainerItemProxy */ = { + EA5010438DC08BDCE3A224EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = E1EEB80531F6CCE4CB628B62; + remoteInfo = "IceAdmin macOS"; }; - EAF9C98295A4D9DE76503537 /* PBXContainerItemProxy */ = { + EB4069F072DB9B568B95EE5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 25D99E456ADFE5745483AC23; - remoteInfo = "IceExceptions macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - EB5B0656FDEA65501DF4D528 /* PBXContainerItemProxy */ = { + EBDBA820E18BCDE686908DF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 7BD0591E1B5ABBDFE982E6E8; - remoteInfo = "IceServantLocatorAMD iOS"; + remoteGlobalIDString = 615480D42FAF508D7F8AA5BC; + remoteInfo = "IceOperations macOS"; }; - EC69D880228AE4E6A91615A1 /* PBXContainerItemProxy */ = { + EC4B7698A70E3DEE1849D547 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D6C19C2ACCB1CB3FB3B25FA9; - remoteInfo = "IceGrid iOS"; + remoteGlobalIDString = 31D342F49CC37B0DFA959D8A; + remoteInfo = "IceInvoke iOS"; }; - ECC059FC573C0C136A8DAD26 /* PBXContainerItemProxy */ = { + ED22EDC542CA4128A4272E26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - EE61473FD27F5A8827B87E34 /* PBXContainerItemProxy */ = { + EE9FB5C41B9FBA5CC9ADF816 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 3E69BE60A2C26A59EEE938DC; + remoteInfo = "IceScope iOS"; }; - EEA312042511A8F9B80EA1CE /* PBXContainerItemProxy */ = { + EF4E1423CA3DE48796FBF7D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B4C54B94A72325BA4250EB2E; - remoteInfo = "IceServantLocatorAMD macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - F1075D8455C9CE7882F11E53 /* PBXContainerItemProxy */ = { + F2074BD9EB83504F96A73C4C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - F1DF8648413A52CDB11A66C8 /* PBXContainerItemProxy */ = { + F292D38B412A25F57B561E8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D4D6FEE0BB4641B83FAB188E; - remoteInfo = "IceAmi macOS"; + remoteGlobalIDString = 5A26265E443FF04358AE528C; + remoteInfo = "IceExceptions macOS"; }; - F2B67D875A18BB46121D6096 /* PBXContainerItemProxy */ = { + F2C07CC5EC3AE2EF3E48430B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = ED67C4392ADE53C242195C57; - remoteInfo = "IceSlicingExceptions iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - F357B9DDB1618D1957526349 /* PBXContainerItemProxy */ = { + F347A0D0390120C571DF18FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - F478DDCD9811E6F09C91EAF1 /* PBXContainerItemProxy */ = { + F3A66F44F7A8713864CD6250 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 9F95E6A433F94E974D32566F; + remoteInfo = "IceTimeout macOS"; }; - F4F2783B8E2574AA2335D126 /* PBXContainerItemProxy */ = { + F3F9BFAF309FD4836BD0FDF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = DF67C7AEC35876C0CCF4A96A; + remoteInfo = "IceServices iOS"; }; - F7A1DB397366FD2B523DE3D2 /* PBXContainerItemProxy */ = { + F56C6CA8F14343C786663240 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - F8B1BB7CC7D12EA9B482F87D /* PBXContainerItemProxy */ = { + F61FA6822996E3BB551D7DDB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - F8D350B56D7FF192A55E7627 /* PBXContainerItemProxy */ = { + F8E3F3CD0C91D48B98C016D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 49D15054211B9CC6B08CB18E; + remoteInfo = "IceDiscovery C++11 iOS"; }; - FA3AD6B4016627232A0C7027 /* PBXContainerItemProxy */ = { + F999F6D9AA5364C5641B87EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 08C942FD89E4D9E7FA113627; + remoteInfo = "IceServantLocator iOS"; }; - FB24B8B91A047033703F023F /* PBXContainerItemProxy */ = { + FA38DD4A2599FD79A1FCA902 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - FB32F61FBDCCA0F3A6DA953C /* PBXContainerItemProxy */ = { + FAF02CF1DDD58658039E04DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F13DB1C06A1425528829C6C; - remoteInfo = "SliceEscape iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - FD2425EA92C135B5B7BBC01C /* PBXContainerItemProxy */ = { + FB51C03C494EF521DC56095E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 65B4CEBE6BC37BE3E80C822B; - remoteInfo = "IceInvoke macOS"; + remoteGlobalIDString = C4633684AA9C8E2D8E2A3BF1; + remoteInfo = "IceSSLConfiguration macOS"; }; - FE41A5548AB62154B45A8694 /* PBXContainerItemProxy */ = { + FBF4CD6EAD3CA367161D3B9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1D8E308F3BB453AE7F0F43D1; - remoteInfo = "IceLocatorDiscovery C++11 iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - FEB999A0E55F6F5ABEB4DAF1 /* PBXContainerItemProxy */ = { + FC804A9AB6BDB06C3653BEDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = B564F6A99559D774EF563A3F; + remoteInfo = "IceObjects macOS"; + }; + FDF9A5645B0240D99DE2FF8B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; + proxyType = 1; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ - 87798ACFBEEF1C10BC811D29 /* Copy Symbols */ = { + 7340F995D6B9555E6836DD71 /* Copy Symbols */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; @@ -4949,124 +4947,124 @@ name = "Copy Symbols"; runOnlyForDeploymentPostprocessing = 0; }; - CDD63FFC164A91851939E3AA /* Copy Frameworks */ = { + 78E695ABEF856CFDE7F09489 /* Copy Symbols */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; - dstSubfolderSpec = 10; + dstSubfolderSpec = 16; files = ( - D955BF173523838D2578BE8A /* Glacier2.framework in Copy Frameworks */, - 3591A708660FF91F8C65C626 /* Ice.framework in Copy Frameworks */, - 1E50D749D4591CA85812EBAE /* IceAcm.bundle in Copy Frameworks */, - 1C6C2644A6D1026DE4FBC581 /* IceAdapterDeactivation.bundle in Copy Frameworks */, - 032764A9F320B5E2A01187D5 /* IceAdmin.bundle in Copy Frameworks */, - 1B5966E1B33A5AFFABEBA0FB /* IceAmi.bundle in Copy Frameworks */, - FE4E27B04FCC8E805F514E6C /* IceBinding.bundle in Copy Frameworks */, - 26E228457782AF4FCBA04711 /* IceDefaultServant.bundle in Copy Frameworks */, - 9D5D518AA0ACFF12A7400F22 /* IceDefaultValue.bundle in Copy Frameworks */, - 9D516BC9467BC72BAB014BC4 /* IceEnums.bundle in Copy Frameworks */, - EC3C2389914C96A23284DCCB /* IceExceptions.bundle in Copy Frameworks */, - EFBF7C85101E51C0B361ACAB /* IceExceptionsAMD.bundle in Copy Frameworks */, - 941CE7AD33C9B9417E0B2662 /* IceFacets.bundle in Copy Frameworks */, - C38239E64DF0C66513FAF557 /* IceGrid.framework in Copy Frameworks */, - CCAA2D7B3E2791E83BBB7CB0 /* IceHold.bundle in Copy Frameworks */, - 257B47FE5312EF6F16280656 /* IceImpl.framework in Copy Frameworks */, - ED0CEF2F26CFA2DC3FCDA655 /* IceInfo.bundle in Copy Frameworks */, - 06CE8FC8FE5A8ECDB952171A /* IceInheritance.bundle in Copy Frameworks */, - 48BE21A34A2607076A50C159 /* IceInterceptor.bundle in Copy Frameworks */, - 5D2CD739BD63AFE1C0E63757 /* IceInvoke.bundle in Copy Frameworks */, - 4550804E625F049C13AF20D5 /* IceLocation.bundle in Copy Frameworks */, - 14EE1A5339C392282BE9AD8C /* IceObjects.bundle in Copy Frameworks */, - F837DB71399518E2FB5859B7 /* IceOperations.bundle in Copy Frameworks */, - D2A03376CAAE2E3F6D8B1FB8 /* IceOperationsAMD.bundle in Copy Frameworks */, - 98C3784C6E9F157DE99EE873 /* IceOptional.bundle in Copy Frameworks */, - 693CD15F67760B4DA2CE6053 /* IceOptionalAMD.bundle in Copy Frameworks */, - 5EABAB5360975F5829E476F8 /* IceProperties.bundle in Copy Frameworks */, - 3BF1C01B267BF6F604246AFC /* IceProxy.bundle in Copy Frameworks */, - CE23B4A0202816CF9FF1ADB1 /* IceProxyAMD.bundle in Copy Frameworks */, - A572F585119FF19DC390E7A5 /* IceRetry.bundle in Copy Frameworks */, - 76652B1402ED8732DA88B162 /* IceScope.bundle in Copy Frameworks */, - 036493F4B5DE25F64F7AFFB4 /* IceServantLocator.bundle in Copy Frameworks */, - 4007C9A39744A18F0C3CC309 /* IceServantLocatorAMD.bundle in Copy Frameworks */, - FE23ACDDB1F9CCA826FC33A4 /* IceServices.bundle in Copy Frameworks */, - 852C28BB013CD52187FE8690 /* IceSlicingExceptions.bundle in Copy Frameworks */, - 7FF6AA022A606590AB6597CF /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, - 1E92206BBFD74CCD895B62C0 /* IceSlicingObjects.bundle in Copy Frameworks */, - F2F25015F0E53F5F50549A64 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, - 955DE37C5B489F9389F121C3 /* IceSSLConfiguration.bundle in Copy Frameworks */, - 6AAE2D76080DF8913A9B80C5 /* IceStorm.framework in Copy Frameworks */, - CED3722C6B58DA53D25EDE26 /* IceStream.bundle in Copy Frameworks */, - 6A7F2FA3EA062C51B5F43F35 /* IceTimeout.bundle in Copy Frameworks */, - 21E17E188E900E1E00806701 /* IceUdp.bundle in Copy Frameworks */, - ECB6CD6BEDA808BBD121901E /* PromiseKit.xcframework in Copy Frameworks */, - C7C28354C04AFDD7D854B7E7 /* SliceEscape.bundle in Copy Frameworks */, - 006D9661C9AE6B9A9E4D7EA8 /* TestCommon.framework in Copy Frameworks */, ); - name = "Copy Frameworks"; + name = "Copy Symbols"; runOnlyForDeploymentPostprocessing = 0; }; - CFE22D2D567F96EB6E32E3F3 /* Copy Symbols */ = { + A1C4BAC4C5B1AD05F298379D /* Copy Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; - dstSubfolderSpec = 16; + dstSubfolderSpec = 10; files = ( + 5809CB6ED6828A14EDF9C412 /* Glacier2.framework in Copy Frameworks */, + 796CFCFC6EC0E1EDF0A13E80 /* Ice.framework in Copy Frameworks */, + 3F866C9887A2792FC2E4A378 /* IceAcm.bundle in Copy Frameworks */, + 9BBC2606E489122C6B89B25F /* IceAdapterDeactivation.bundle in Copy Frameworks */, + 76AB3F609763210CADB2669A /* IceAdmin.bundle in Copy Frameworks */, + 5DACC4F64C307F025A193A38 /* IceAmi.bundle in Copy Frameworks */, + 68D2683EE21084622B09A0B5 /* IceBinding.bundle in Copy Frameworks */, + 1418FB50C29E64B22D7AC9C7 /* IceDefaultServant.bundle in Copy Frameworks */, + DADBC1295E2A171BA2EC50A4 /* IceDefaultValue.bundle in Copy Frameworks */, + E35F2CFE3A1690512338A863 /* IceEnums.bundle in Copy Frameworks */, + 915E686BA5D881D50F25A172 /* IceExceptions.bundle in Copy Frameworks */, + 1A3144700DDAB2D396583969 /* IceExceptionsAMD.bundle in Copy Frameworks */, + 72C14BF972259BC91DF0E05A /* IceFacets.bundle in Copy Frameworks */, + 7DBD74A434564EE6E56CCF28 /* IceGrid.framework in Copy Frameworks */, + 5550AC3139C42F728A00525C /* IceHold.bundle in Copy Frameworks */, + 7A1F0F4549EE341F790E3683 /* IceImpl.framework in Copy Frameworks */, + D32123218F102E10A40E2517 /* IceInfo.bundle in Copy Frameworks */, + 5985839FAE4EE0CF1A8CBF29 /* IceInheritance.bundle in Copy Frameworks */, + 6F55B5D7669E20D8BA13C9DC /* IceInterceptor.bundle in Copy Frameworks */, + A10F7290BA66DE7A51301D0D /* IceInvoke.bundle in Copy Frameworks */, + 8D9B8B570A1B3FF36E97F891 /* IceLocation.bundle in Copy Frameworks */, + 46229BC73CCA413E698F213A /* IceObjects.bundle in Copy Frameworks */, + 4849446D8A82970A48427E10 /* IceOperations.bundle in Copy Frameworks */, + 5D67049EAB9EBF7B6F399BF4 /* IceOperationsAMD.bundle in Copy Frameworks */, + 3BC339AA4359E9137FE2652E /* IceOptional.bundle in Copy Frameworks */, + DE851618312004CEBFBCF914 /* IceOptionalAMD.bundle in Copy Frameworks */, + 3EC8CC8A1D1616069094D005 /* IceProperties.bundle in Copy Frameworks */, + C5C3A21713BE9FD46C8CFC16 /* IceProxy.bundle in Copy Frameworks */, + 080EEDE73F2FF5F205016E01 /* IceProxyAMD.bundle in Copy Frameworks */, + CD9E6556C12C343B208C4334 /* IceRetry.bundle in Copy Frameworks */, + 72953EAACD68F9D61B949B87 /* IceScope.bundle in Copy Frameworks */, + 10562A209CE78DB378186E8F /* IceServantLocator.bundle in Copy Frameworks */, + 457D960A94DA7E2108A1ED39 /* IceServantLocatorAMD.bundle in Copy Frameworks */, + 3C7D7AE5B9239FECD60E7511 /* IceServices.bundle in Copy Frameworks */, + 57FFDA3DEC427B2C9E9ED316 /* IceSlicingExceptions.bundle in Copy Frameworks */, + 7041CAFBF52559E93826C15A /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, + B3A10D4F4A68ABE204829210 /* IceSlicingObjects.bundle in Copy Frameworks */, + DDEC0533CBB5C093F7597307 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, + 5E9DED5B910192DE47EB112C /* IceSSLConfiguration.bundle in Copy Frameworks */, + E2D0A8536465DD4F82547451 /* IceStorm.framework in Copy Frameworks */, + 18822FD1740418AEAFA88F03 /* IceStream.bundle in Copy Frameworks */, + BDE077E9720EC27AE72D3DF7 /* IceTimeout.bundle in Copy Frameworks */, + C8AC511677CE0AF0FA3D29C5 /* IceUdp.bundle in Copy Frameworks */, + F6130667EEC45C8B8C04F6D5 /* PromiseKit.xcframework in Copy Frameworks */, + E2972B4D300F3C37F8B874AB /* SliceEscape.bundle in Copy Frameworks */, + A8A00A6905FDE0F8CC89FC0C /* TestCommon.framework in Copy Frameworks */, ); - name = "Copy Symbols"; + name = "Copy Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; - FE2A2E12EADD764C6E1249C9 /* Copy Frameworks */ = { + E5942E58C8A34C1C4ED4BD5C /* Copy Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; dstSubfolderSpec = 10; files = ( - F258789795CBF0946CFD2213 /* Glacier2.framework in Copy Frameworks */, - 6ACA72C9B69CC1F61D5E5D03 /* Ice.framework in Copy Frameworks */, - D9A1B050E60AB639F57A228D /* IceAcm.bundle in Copy Frameworks */, - 0A74100222EC8899C40F6491 /* IceAdapterDeactivation.bundle in Copy Frameworks */, - AA393F0E38A3D252F2CD17F4 /* IceAdmin.bundle in Copy Frameworks */, - AF81152ACBDBAE4766D74D5F /* IceAmi.bundle in Copy Frameworks */, - 347B5EB0541A8B2704F21AFA /* IceBinding.bundle in Copy Frameworks */, - CDC6B5300B2BE7330E359757 /* IceDefaultServant.bundle in Copy Frameworks */, - 11EBE50C024C3790D55274AC /* IceDefaultValue.bundle in Copy Frameworks */, - BB70D759CF03516D3D1F06A5 /* IceEnums.bundle in Copy Frameworks */, - ECBE622FD6983BA6AF85594E /* IceExceptions.bundle in Copy Frameworks */, - 39764C26AD3AE850DA69B588 /* IceExceptionsAMD.bundle in Copy Frameworks */, - 7A5B9211E41C7C70C9EA4203 /* IceFacets.bundle in Copy Frameworks */, - 4E45EDB7890B25061718EC51 /* IceGrid.framework in Copy Frameworks */, - 2639EB20DE44D7E632312A8C /* IceHold.bundle in Copy Frameworks */, - 7CD487DE45A3B3E1A391B7CA /* IceImpl.framework in Copy Frameworks */, - 6EB0D8FFD0D85B5455C91122 /* IceInfo.bundle in Copy Frameworks */, - F725849464842C5119A6A079 /* IceInheritance.bundle in Copy Frameworks */, - A2432B19209846FFE4676F41 /* IceInterceptor.bundle in Copy Frameworks */, - 37FD2F9F2E635053382A457E /* IceInvoke.bundle in Copy Frameworks */, - 10A97C63E2C7C1ECE1043E32 /* IceLocation.bundle in Copy Frameworks */, - 56117E2576613D74CE1CF107 /* IceObjects.bundle in Copy Frameworks */, - 209D47C31234364A95888304 /* IceOperations.bundle in Copy Frameworks */, - 96E2D842FFE1A9BBC7F19577 /* IceOperationsAMD.bundle in Copy Frameworks */, - 2FCA31173530C8D96AD3431E /* IceOptional.bundle in Copy Frameworks */, - 1A4C7D754BBCE5CEA90014E4 /* IceOptionalAMD.bundle in Copy Frameworks */, - CE7119D9E754E22EA7E06064 /* IceProperties.bundle in Copy Frameworks */, - EC20345A5A0F3DBD3CA2FF65 /* IceProxy.bundle in Copy Frameworks */, - B5D2C3F003E2F153A3A32471 /* IceProxyAMD.bundle in Copy Frameworks */, - 8CB5D2E76BE257B5A8A314C3 /* IceRetry.bundle in Copy Frameworks */, - C44119D1C9752D20F369FE1E /* IceScope.bundle in Copy Frameworks */, - BD1B9508F15DD3CC1892752D /* IceServantLocator.bundle in Copy Frameworks */, - 0FDFB5EEA1E23DC684B3CEF2 /* IceServantLocatorAMD.bundle in Copy Frameworks */, - 3E7C691CA3899EB94D587E36 /* IceServices.bundle in Copy Frameworks */, - 0049438039F0EE69E56B255B /* IceSlicingExceptions.bundle in Copy Frameworks */, - C23E92B3FD8A38824AB01380 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, - 5FA0A02D28ADAB3D5E61E348 /* IceSlicingObjects.bundle in Copy Frameworks */, - 77340EFA3358764C61B58EE2 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, - FE4BEF9F0D7676378475C5C7 /* IceSSLConfiguration.bundle in Copy Frameworks */, - E5BC584FBFBFF776197D68F9 /* IceStorm.framework in Copy Frameworks */, - 284A1EC58025DA8BB221D4D8 /* IceStream.bundle in Copy Frameworks */, - 3A73922FCF968D16EF9BAB59 /* IceTimeout.bundle in Copy Frameworks */, - F6F2E4E634E388450A6E3B49 /* IceUdp.bundle in Copy Frameworks */, - FCDBFEC5BE3C43FEFDBBBA6E /* PromiseKit.xcframework in Copy Frameworks */, - 8A0E9689DF60B6DFFE523ACC /* SliceEscape.bundle in Copy Frameworks */, - C0D43CFE1C742221E857AD7F /* TestCommon.framework in Copy Frameworks */, + 294378893FB3C4FCEB153D07 /* Glacier2.framework in Copy Frameworks */, + 233E83C9CC80D5734039B0CC /* Ice.framework in Copy Frameworks */, + E340CCAF0754D842188E25F0 /* IceAcm.bundle in Copy Frameworks */, + DDCA8F2E42DCD0F98C3B3AC3 /* IceAdapterDeactivation.bundle in Copy Frameworks */, + 492E2F80F56691FB212833D7 /* IceAdmin.bundle in Copy Frameworks */, + 9066AFC809A2A59E6B01F26E /* IceAmi.bundle in Copy Frameworks */, + 02CCBD8CD1225E63A31C030B /* IceBinding.bundle in Copy Frameworks */, + 8CE994248F535F6C71FF819C /* IceDefaultServant.bundle in Copy Frameworks */, + F14D5146507DA54D91A1BD68 /* IceDefaultValue.bundle in Copy Frameworks */, + 2C17AAA288AF09F376703FC3 /* IceEnums.bundle in Copy Frameworks */, + 06E1C5DA2EC742EDBD06BAD6 /* IceExceptions.bundle in Copy Frameworks */, + 7705645FFA52859BA4B62E48 /* IceExceptionsAMD.bundle in Copy Frameworks */, + 8CE6F4DF75D661EB1884EC78 /* IceFacets.bundle in Copy Frameworks */, + C6DA937A74733C9A94044CF2 /* IceGrid.framework in Copy Frameworks */, + 81DD1E2B67B8FE98B55A925C /* IceHold.bundle in Copy Frameworks */, + 58490D165A403189D14E5936 /* IceImpl.framework in Copy Frameworks */, + 41B948E332AFCE7FAFF70A6A /* IceInfo.bundle in Copy Frameworks */, + 058E2E780D1A291CA327F125 /* IceInheritance.bundle in Copy Frameworks */, + D41343A9E5B61EA1DF0EC0E4 /* IceInterceptor.bundle in Copy Frameworks */, + 4E1CBBF8A9B6B28D775E96D8 /* IceInvoke.bundle in Copy Frameworks */, + 7E2F060895F39C0B62036465 /* IceLocation.bundle in Copy Frameworks */, + B6ED4347B6CF8D570075A7CC /* IceObjects.bundle in Copy Frameworks */, + 48669C255F41F0EB9DE62096 /* IceOperations.bundle in Copy Frameworks */, + E7EBDF8C478244E67DC7DCFD /* IceOperationsAMD.bundle in Copy Frameworks */, + 43F7F85541CA284372832294 /* IceOptional.bundle in Copy Frameworks */, + 701C9599CE750EC22F3F7451 /* IceOptionalAMD.bundle in Copy Frameworks */, + A8D712086ECBFADE0C77F683 /* IceProperties.bundle in Copy Frameworks */, + C37ADCA5C9C062F551874C20 /* IceProxy.bundle in Copy Frameworks */, + F16D9AE5F816E0B62C072FF8 /* IceProxyAMD.bundle in Copy Frameworks */, + CF29DF860D834842B34492BA /* IceRetry.bundle in Copy Frameworks */, + CB9FBAEEE0623717B25517A1 /* IceScope.bundle in Copy Frameworks */, + A792D6FAFC79F36C2746CB04 /* IceServantLocator.bundle in Copy Frameworks */, + BECC94FA4529B520E530DACC /* IceServantLocatorAMD.bundle in Copy Frameworks */, + BBABD332601D721665111C4A /* IceServices.bundle in Copy Frameworks */, + 69F0C81FC2B253D2372DD635 /* IceSlicingExceptions.bundle in Copy Frameworks */, + 94B06C834B5F7ADB020BDCE3 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, + E2C6533B983B817B639CF4A8 /* IceSlicingObjects.bundle in Copy Frameworks */, + 24D5DC2E3769FC65D5B6DDB3 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, + 4CEBED00EBCCA068EB72F645 /* IceSSLConfiguration.bundle in Copy Frameworks */, + 7972927EC63E327C4FB459F7 /* IceStorm.framework in Copy Frameworks */, + BE44450971DFFDBA9992461E /* IceStream.bundle in Copy Frameworks */, + 4C5774A45EAE28E944207E23 /* IceTimeout.bundle in Copy Frameworks */, + 9A6EBEFACA2391633E65C9FE /* IceUdp.bundle in Copy Frameworks */, + 2C4433401B06DBEB4D29532D /* PromiseKit.xcframework in Copy Frameworks */, + 53F78F858311E38BC1611912 /* SliceEscape.bundle in Copy Frameworks */, + AFD44DCF2AF9821684BF709D /* TestCommon.framework in Copy Frameworks */, ); name = "Copy Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -5074,2997 +5072,2995 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 00C3014A2CFA76B443D73F46 /* Exception.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.mm; path = src/IceImpl/Exception.mm; sourceTree = ""; }; - 00D3B3D1EB8A265FFAA1C424 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/exceptions/TestAMDI.swift; sourceTree = ""; }; - 01CB046806C40FF9E09F98EC /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 01CF59A0A4F2EFCB462BC0EA /* ObserverHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverHelper.cpp; path = ../cpp/src/Ice/ObserverHelper.cpp; sourceTree = ""; }; - 0213BB5F4C1D9ABA471C52F6 /* CommunicatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorI.cpp; path = ../cpp/src/Ice/CommunicatorI.cpp; sourceTree = ""; }; - 0307582B11F0A01BAC6732B7 /* StreamConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamConnector.cpp; path = ../cpp/src/Ice/ios/StreamConnector.cpp; sourceTree = ""; }; - 038169BDD15B56BE2FDA00AB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/scope/TestI.swift; sourceTree = ""; }; - 046ACEB5C9821C9778BD3270 /* SSLEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLEndpointInfo.swift; path = src/Ice/SSLEndpointInfo.swift; sourceTree = ""; }; - 05286265BA8BCB8D08B75476 /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0540AD3E250E11B403EEABA4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/optional/AllTests.swift; sourceTree = ""; }; - 05B1434794EE607DEF633B3A /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/ExternalAccessory.framework; sourceTree = DEVELOPER_DIR; }; - 06BC492F3CD439079FA4A3A3 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/acm/Server.swift; sourceTree = ""; }; - 07361A4BE6DC9A43BBD8E849 /* UnsupportedAdminFacet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnsupportedAdminFacet.h; path = src/IceImpl/UnsupportedAdminFacet.h; sourceTree = ""; }; - 076A243C9F5B4CB2ECFA7F51 /* Properties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Properties.h; path = src/IceImpl/Properties.h; sourceTree = ""; }; - 07A3DC28B900D1AE3A048739 /* WSConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSConnector.cpp; path = ../cpp/src/Ice/WSConnector.cpp; sourceTree = ""; }; - 081E77A8123DC3600247F1BC /* TcpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpEndpointI.cpp; path = ../cpp/src/Ice/TcpEndpointI.cpp; sourceTree = ""; }; - 08B93C9A9DE53DEB2F31BDA4 /* LoggerUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerUtil.cpp; path = ../cpp/src/Ice/LoggerUtil.cpp; sourceTree = ""; }; - 097513BEF3C0FEF963ECFE13 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/ami/Collocated.swift; sourceTree = ""; }; - 09FF2464AB6823CA9BEF4264 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/objects/TestAMD.ice; sourceTree = ""; }; - 0A214B333A9CBC9A12B4FE7A /* BlobjectFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlobjectFacade.h; path = src/IceImpl/BlobjectFacade.h; sourceTree = ""; }; - 0B19FA205006766F6B2E1350 /* TraceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.mm; path = src/IceImpl/TraceUtil.mm; sourceTree = ""; }; - 0BCAFC8C49E5187C1AB25D11 /* Properties.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Properties.cpp; path = ../cpp/src/Ice/Properties.cpp; sourceTree = ""; }; - 0C479C4447657FF60E68C8D4 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/ami/TestI.swift; sourceTree = ""; }; - 0C6AA868B958A4B62ED7C5D5 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0CB402D9967B00BE923C2D03 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/binding/Test.ice; sourceTree = ""; }; - 0D12263260B9BE0610DCD36A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/timeout/TestI.swift; sourceTree = ""; }; - 0D30BA12F527E21D48DFD791 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0D598D4EEF2DB8A4A7C61F8C /* ServantManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantManager.cpp; path = ../cpp/src/Ice/ServantManager.cpp; sourceTree = ""; }; - 0D92B81AD14B5BB3BBC7F274 /* LoggerWrapperI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerWrapperI.h; path = src/IceImpl/LoggerWrapperI.h; sourceTree = ""; }; - 0F169549B67E17132D0100E5 /* InputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStream.swift; path = src/Ice/InputStream.swift; sourceTree = ""; }; - 0F1A91058A52D17DD5127653 /* ClassResolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassResolver.swift; path = src/Ice/ClassResolver.swift; sourceTree = ""; }; - 0FF2A72A70FF62EAC4F4C3D0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/facets/Client.swift; sourceTree = ""; }; - 10A974FBBC3239FDDEAF0562 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/admin/TestI.swift; sourceTree = ""; }; - 10CC54DEDC82E4004A463A6E /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/operations/ServerAMD.swift; sourceTree = ""; }; - 111B44D212156B847EA01C54 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/info/Client.swift; sourceTree = ""; }; - 11A152F03A7151A37E5BCA0B /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 11EE85F933402720B1EF6CF7 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/adapterDeactivation/Test.ice; sourceTree = ""; }; - 127A9834F351DA5E1B1AC377 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = src/IceImpl/Exception.h; sourceTree = ""; }; - 1292D7BDD24245A4E07C74D7 /* TraceLevels.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceLevels.cpp; path = ../cpp/src/Ice/TraceLevels.cpp; sourceTree = ""; }; - 12D5D56C338B4BC5F6CA83FD /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/Glacier2/Session.ice; sourceTree = ""; }; - 142D0BA7BE87AFD5C7CE9BC7 /* CommunicatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorF.cpp; path = ../cpp/src/Ice/CommunicatorF.cpp; sourceTree = ""; }; - 142F873E2849078287FD8CC6 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/objects/TestAMDI.swift; sourceTree = ""; }; - 146B256974FB51DD1265678F /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/invoke/Client.swift; sourceTree = ""; }; - 14798648A0D51B7C430E22D2 /* Admin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Admin.ice; path = ../slice/IceGrid/Admin.ice; sourceTree = ""; }; - 14A15B190451E14716CD830B /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/proxy/Collocated.swift; sourceTree = ""; }; - 14BBB915E0507F5D160ACEFA /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 14C28AE318E4928F506C915E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Slice/escape/Client.swift; sourceTree = ""; }; - 16670BEFB50A823C040927F7 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/ami/Server.swift; sourceTree = ""; }; - 167F66F4D885478055ED967C /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultServant/Test.ice; sourceTree = ""; }; - 169F0CFB6C30D66047E0EDB1 /* ObjectAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapter.swift; path = src/Ice/ObjectAdapter.swift; sourceTree = ""; }; - 17967AA9D3379BC4CB647F1E /* Current.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Current.cpp; path = ../cpp/src/Ice/Current.cpp; sourceTree = ""; }; - 17D6C3CB35C6DBF607E94B77 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connection.cpp; path = ../cpp/src/Ice/Connection.cpp; sourceTree = ""; }; - 185F5336C6BA21C015B7B9FA /* Protocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Protocol.cpp; path = ../cpp/src/Ice/Protocol.cpp; sourceTree = ""; }; - 189BE24954425D454F4EF9FB /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceIAP/EndpointInfo.cpp; sourceTree = ""; }; - 1959BEAAF7268C8B0022D948 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 195A241E0300852E69AADB88 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/acm/AllTests.swift; sourceTree = ""; }; - 1B0F40C37A8439A683B8C97C /* SliceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceInfo.swift; path = src/Ice/SliceInfo.swift; sourceTree = ""; }; - 1B10F3FF9F7989BA4FBD59F0 /* Context.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Context.ice; path = ../slice/Ice/Context.ice; sourceTree = ""; }; - 1B3CD69D0F2518B0505945D1 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/facets/Server.swift; sourceTree = ""; }; - 1B3D6DF29D8786877FD2AA2A /* ImplicitContextI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextI.cpp; path = ../cpp/src/Ice/ImplicitContextI.cpp; sourceTree = ""; }; - 1B79277683CA9B3529AC906D /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1B86D580E85AA9FDC21A6524 /* ConnectionRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionRequestHandler.cpp; path = ../cpp/src/Ice/ConnectionRequestHandler.cpp; sourceTree = ""; }; - 1B96E6391FBDC6A572CE2CA8 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultServant/Client.swift; sourceTree = ""; }; - 1C41EDECF5F3943979928068 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/udp/TestI.swift; sourceTree = ""; }; - 1D30D88901D3A373A29D0400 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/operations/TestI.swift; sourceTree = ""; }; - 1DABE1EF2249C07674CDC42A /* Incoming.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Incoming.swift; path = src/Ice/Incoming.swift; sourceTree = ""; }; - 1E41487C8DDE61F3EB934BB5 /* PropertiesAdmin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.ice; path = ../slice/Ice/PropertiesAdmin.ice; sourceTree = ""; }; - 1E60734E3E837C813043195B /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/stream/Test.ice; sourceTree = ""; }; - 1E68540A1B43B1CBC5942095 /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1EB568811E2BF696EC8E3B97 /* BuiltinSequences.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = BuiltinSequences.ice; path = ../slice/Ice/BuiltinSequences.ice; sourceTree = ""; }; - 1ED718874B7F4760BB5D8C7E /* Communicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Communicator.h; path = src/IceImpl/Communicator.h; sourceTree = ""; }; - 1F04BEF80E053F20F7E0FAD9 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/retry/Server.swift; sourceTree = ""; }; - 21D9F7A7A3EBC41F86994383 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/operations/AllTests.swift; sourceTree = ""; }; - 2215FA4DF66DE6FD987EDA9A /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 223E7C12AA05A09CB932E9A1 /* libIce C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 225F1A44C56068BBE7A7C5AC /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - 2356EF1BC9E19D1F6B3C07D1 /* Exception.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.ice; path = ../slice/IceGrid/Exception.ice; sourceTree = ""; }; - 23BA4FD4F07A1F312BB3804B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/adapterDeactivation/Client.swift; sourceTree = ""; }; - 23F1A85D0FB546A7190E150D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/objects/TestI.swift; sourceTree = ""; }; - 24803367329A3408EBEF3225 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/servantLocator/Client.swift; sourceTree = ""; }; - 24DF17C88033201714B50ED2 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 250B1B2824E81544BD56F671 /* ObjectAdapterI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapterI.swift; path = src/Ice/ObjectAdapterI.swift; sourceTree = ""; }; - 253491E3FEF80ACD0B5781B2 /* libIceLocatorDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 261059C5925105B6E65D91A0 /* Process.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.mm; path = src/IceImpl/Process.mm; sourceTree = ""; }; - 26333E41B14F786F1F2AE7BD /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 267C42793494C2AAB39ACB4C /* Notifications.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Notifications.mm; path = ../cpp/src/Ice/ios/Notifications.mm; sourceTree = ""; }; - 26A022C4D272BBC1296FC3D2 /* EndpointFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactory.cpp; path = ../cpp/src/Ice/EndpointFactory.cpp; sourceTree = ""; }; - 26C0F7B6692E6D473315573B /* Buffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Buffer.cpp; path = ../cpp/src/Ice/Buffer.cpp; sourceTree = ""; }; - 27341FF2E126E6E82D9FAE9B /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2781460B247EAB453369D750 /* Endpoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.mm; path = src/IceImpl/Endpoint.mm; sourceTree = ""; }; - 2786B7490F83497D5B9DC916 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 27CB991118839FEC4D2839FE /* UdpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpTransceiver.cpp; path = ../cpp/src/Ice/UdpTransceiver.cpp; sourceTree = ""; }; - 2802EE505EBBF7589ED5F209 /* ValueFactoryManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactoryManagerI.cpp; path = ../cpp/src/Ice/ValueFactoryManagerI.cpp; sourceTree = ""; }; - 2854FD4F4A1EA874F91B9E87 /* LocalObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalObject.cpp; path = ../cpp/src/Ice/LocalObject.cpp; sourceTree = ""; }; - 28A5057E4450E7A59C9901CC /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/ami/AllTests.swift; sourceTree = ""; }; - 28D89931781D7CD21FCC7CCB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceGrid/Info.plist; sourceTree = ""; }; - 28EBC6B052A9199638397392 /* Identity.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Identity.ice; path = ../slice/Ice/Identity.ice; sourceTree = ""; }; - 29032EF4B097556E6FC91088 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/exceptions/Client.swift; sourceTree = ""; }; - 293FD18B9AD65E3112B2020C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Ice/Info.plist; sourceTree = ""; }; - 29725771B14324C80912215D /* UnknownSlicedValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnknownSlicedValue.swift; path = src/Ice/UnknownSlicedValue.swift; sourceTree = ""; }; - 297ABB350A7C637780C074E9 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 29CCBA8E43B636B9DDCC8A12 /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceIAP/ConnectionInfo.cpp; sourceTree = ""; }; - 29DB74C0FB62F0BC5680DEB6 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/optional/TestI.swift; sourceTree = ""; }; - 2A80F7534B35B773563630E1 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/objects/ClientPrivate.ice; sourceTree = ""; }; - 2A9F1D1BFF611AEC3B1F525B /* UtilException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UtilException.cpp; path = ../cpp/src/IceUtil/UtilException.cpp; sourceTree = ""; }; - 2B30F4B19AFB12FA54B16AED /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2C16F4A69D766395D88FE602 /* ConnectRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectRequestHandler.cpp; path = ../cpp/src/Ice/ConnectRequestHandler.cpp; sourceTree = ""; }; - 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; - 2C956C7213BF93EBFF72A6A7 /* Mutex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mutex.swift; path = src/Ice/Mutex.swift; sourceTree = ""; }; - 2CC61BD40D7CBC56C18393B3 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = src/IceImpl/Config.h; sourceTree = ""; }; - 2CC6CDF02346EA5B8E08F76D /* TcpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpTransceiver.cpp; path = ../cpp/src/Ice/TcpTransceiver.cpp; sourceTree = ""; }; - 2D08C9B7366834B041FEC159 /* Registry.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Registry.ice; path = ../slice/IceGrid/Registry.ice; sourceTree = ""; }; - 2D1B2204B4DA05CE9C3E0E21 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/proxy/TestAMD.ice; sourceTree = ""; }; - 2D8BAD556F7D98625DF4BC58 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/optional/TestAMDI.swift; sourceTree = ""; }; - 2E513A8A056433D791A09BAB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/proxy/TestI.swift; sourceTree = ""; }; - 2EA069A716E434C038F0318F /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2F0C21A4264BC5D193BE88D2 /* IceLocatorDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceLocatorDiscovery.ice; path = ../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice; sourceTree = ""; }; - 2F163CAD96DA4D8B35B75F74 /* CollocatedRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CollocatedRequestHandler.cpp; path = ../cpp/src/Ice/CollocatedRequestHandler.cpp; sourceTree = ""; }; - 2F60A221428806098E72B6E0 /* ThreadException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadException.cpp; path = ../cpp/src/IceUtil/ThreadException.cpp; sourceTree = ""; }; - 2FA2F4951A0016B4BB9B3FDB /* BatchRequestQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchRequestQueue.cpp; path = ../cpp/src/Ice/BatchRequestQueue.cpp; sourceTree = ""; }; - 3035A059080501D7128194A8 /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = src/Ice/Object.swift; sourceTree = ""; }; - 30F7F6A5BEED228FBE431E55 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/servantLocator/Collocated.swift; sourceTree = ""; }; - 311B69EB6D89618997B1887B /* AdminFacetFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AdminFacetFactory.h; path = src/IceImpl/AdminFacetFactory.h; sourceTree = ""; }; - 314795999886E271CB9DB2EB /* Clash.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Clash.ice; path = test/Slice/escape/Clash.ice; sourceTree = ""; }; - 3168F7C0D127A7C48C30D615 /* Logger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.mm; path = src/IceImpl/Logger.mm; sourceTree = ""; }; - 32A4EEF0B311A639C5DB129D /* Connection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.mm; path = src/IceImpl/Connection.mm; sourceTree = ""; }; - 32BD4AEBE95CA55CB24D7A3D /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; - 32FB2DD7866F089F20373B22 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/admin/Test.ice; sourceTree = ""; }; - 33685F9F41A4C56E6B518A42 /* BatchOnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOnewaysAMI.swift; path = test/Ice/operations/BatchOnewaysAMI.swift; sourceTree = ""; }; - 336A43E8BEB51DFB4DA5FC77 /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 33C7DBD13018E9D53A2497D4 /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 33D2A20C5AB946EF734F130C /* ValueFactoryManagerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactoryManagerI.swift; path = src/Ice/ValueFactoryManagerI.swift; sourceTree = ""; }; - 33E2B8C087CCBBFCCFE0EDBB /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/optional/Server.swift; sourceTree = ""; }; - 3412FB23BF9F9E5DED5AF6B0 /* OperationMode.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = OperationMode.ice; path = ../slice/Ice/OperationMode.ice; sourceTree = ""; }; - 342085FA07DF4FC8C9D4BF6F /* Initialize.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Initialize.cpp; path = ../cpp/src/Ice/Initialize.cpp; sourceTree = ""; }; - 34B79084F15B3CCAE0CE07C7 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/timeout/Server.swift; sourceTree = ""; }; - 34E29AA242C9C15C1FE20DF0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/objects/Client.swift; sourceTree = ""; }; - 3519616430E9681021457E94 /* HttpParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HttpParser.cpp; path = ../cpp/src/Ice/HttpParser.cpp; sourceTree = ""; }; - 35D9409C55AEE7FF99166B57 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 36157027B4A9EB7D3EC1C47C /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Ice/Metrics.ice; sourceTree = ""; }; - 3621866FB3468BC2E48FB9B7 /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3635819F6819934528B2BA8B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/acm/Client.swift; sourceTree = ""; }; - 36C71BAF8FD41F9650AE8686 /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 37D892DE62DA65AD17EBD8AD /* MetricsObserverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsObserverI.cpp; path = ../cpp/src/Ice/MetricsObserverI.cpp; sourceTree = ""; }; - 38892522F82E945C6362F32C /* PropertyNames.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyNames.cpp; path = ../cpp/src/Ice/PropertyNames.cpp; sourceTree = ""; }; - 38EF1673D7836C658CD250DC /* Selector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Selector.cpp; path = ../cpp/src/Ice/Selector.cpp; sourceTree = ""; }; - 3AEDDE79BC9FA0E1503ADFA4 /* RecMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecMutex.cpp; path = ../cpp/src/IceUtil/RecMutex.cpp; sourceTree = ""; }; - 3BC64A21F03FBD8F32E4AEEF /* Properties.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.mm; path = src/IceImpl/Properties.mm; sourceTree = ""; }; - 3BCF7B4C0B439955561E8949 /* SlicedData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SlicedData.cpp; path = ../cpp/src/Ice/SlicedData.cpp; sourceTree = ""; }; - 3BE92039E393EF27B9C18847 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/operations/TestAMD.ice; sourceTree = ""; }; - 3C0E20E45D9B95CE8D5BAD4F /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultValue/AllTests.swift; sourceTree = ""; }; - 3C22AA887D26C5BB0C12CA79 /* Value.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Value.swift; path = src/Ice/Value.swift; sourceTree = ""; }; - 3C84040AFCBFD4AAE0B519DB /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/binding/Server.swift; sourceTree = ""; }; - 3CC388484314A4D11DA2CEA8 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3CF810C336E0D98C916A36DD /* Value.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../cpp/src/Ice/Value.cpp; sourceTree = ""; }; - 3D29EC47A6324333C0CB11E6 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3D99E4B9F11AB36F978CF616 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3DA45D6310FBF8AD14941A35 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/invoke/TestI.swift; sourceTree = ""; }; - 3E17813B2E31CDABA2621FA2 /* FacetMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacetMap.swift; path = src/Ice/FacetMap.swift; sourceTree = ""; }; - 3EB97D29C79CEB3038E5C4D7 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/scope/Test.ice; sourceTree = ""; }; - 3F1911BAB92A957302833169 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Glacier2/Metrics.ice; sourceTree = ""; }; - 401595CAE0B88CFE2DFDB61B /* CommunicatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommunicatorI.swift; path = src/Ice/CommunicatorI.swift; sourceTree = ""; }; - 4067439731844BE6F7E4526E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/info/AllTests.swift; sourceTree = ""; }; - 41DFD78B26A3BC5ABCE708CD /* OutputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputUtil.cpp; path = ../cpp/src/IceUtil/OutputUtil.cpp; sourceTree = ""; }; - 41E7E4C4720DDBD98AF18C6E /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceSSL/ConnectionInfo.cpp; sourceTree = ""; }; - 41EACC2EEAB15487754D6608 /* EndpointFactoryManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactoryManager.cpp; path = ../cpp/src/Ice/EndpointFactoryManager.cpp; sourceTree = ""; }; - 420A6EFB17E04444277813A0 /* UnsupportedAdminFacet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = UnsupportedAdminFacet.mm; path = src/IceImpl/UnsupportedAdminFacet.mm; sourceTree = ""; }; - 421D20F7517BB9BEE5FAA9EC /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 42B62A4842207650FD755725 /* PropertiesAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesAdminI.cpp; path = ../cpp/src/Ice/PropertiesAdminI.cpp; sourceTree = ""; }; - 43EA623C9F4C7F919225D487 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/interceptor/Client.swift; sourceTree = ""; }; - 4412FE2740F051C95BB99EEA /* Cond.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cond.cpp; path = ../cpp/src/Ice/Cond.cpp; sourceTree = ""; }; - 4413F36CC165568AA6327BD2 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/servantLocator/Test.ice; sourceTree = ""; }; - 45331497BAD84C6969F6C8C8 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/servantLocator/AllTests.swift; sourceTree = ""; }; - 454EE69AB462CEE4589AD002 /* Convert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Convert.mm; path = src/IceImpl/Convert.mm; sourceTree = ""; }; - 45ED38411CCEA7139E95679A /* Instrumentation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Instrumentation.swift; path = src/Ice/Instrumentation.swift; sourceTree = ""; }; - 45F4D1AC7C7A3062D28DF141 /* AdminFacetFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdminFacetFactory.swift; path = src/Ice/AdminFacetFactory.swift; sourceTree = ""; }; - 46220B1A861EDFDAF19989ED /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 4622324B5106A88CB515CB4D /* ACM.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ACM.cpp; path = ../cpp/src/Ice/ACM.cpp; sourceTree = ""; }; - 465F648252C614812204678B /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = ../cpp/src/IceUtil/Time.cpp; sourceTree = ""; }; - 46F5AE3157A6E271ABFC0425 /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = src/IceImpl/Convert.h; sourceTree = ""; }; - 4763D1EDD6ED9EE3A2F1DBE9 /* OutputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputStream.swift; path = src/Ice/OutputStream.swift; sourceTree = ""; }; - 47BCCEE21EF0C5C1C57D0197 /* IceStormSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceStormSwift.h; path = src/IceStorm/IceStormSwift.h; sourceTree = ""; }; - 47F3C0BF03857AE7150714D5 /* RFC2253.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RFC2253.cpp; path = ../cpp/src/IceSSL/RFC2253.cpp; sourceTree = ""; }; - 4869F95A4F0E2F0EB4A21C9F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/inheritance/Test.ice; sourceTree = ""; }; - 4926C66009891C6BE3389C72 /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 49A523EF80AE64499CA309E4 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 49CACF5578779D192C643FD8 /* Glacier2Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Glacier2Swift.h; path = src/Glacier2/Glacier2Swift.h; sourceTree = ""; }; - 49E3772BC00C40292C6EE74A /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/proxy/Server.swift; sourceTree = ""; }; - 4A0946E63B4A232965ABDC8F /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/adapterDeactivation/AllTests.swift; sourceTree = ""; }; - 4A2CA18364FCF5316BBC2888 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/proxy/Client.swift; sourceTree = ""; }; - 4C6167F6A18ADBBB27B0D7E4 /* MutexProtocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MutexProtocol.cpp; path = ../cpp/src/IceUtil/MutexProtocol.cpp; sourceTree = ""; }; - 4D1E8FAAB47BD0BAEDF4D2FF /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceSSL/PluginI.cpp; sourceTree = ""; }; - 4E343993404F7D8A254C8648 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Thread.cpp; path = ../cpp/src/Ice/Thread.cpp; sourceTree = ""; }; - 4E8DA336FE4300536CD71A43 /* AcceptorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AcceptorI.cpp; path = ../cpp/src/IceSSL/AcceptorI.cpp; sourceTree = ""; }; - 4EA2D25A82444D862E2E8FE7 /* OutputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputStream.cpp; path = ../cpp/src/Ice/OutputStream.cpp; sourceTree = ""; }; - 4F038B1EA12BEB61CA662B52 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/objects/TestI.swift; sourceTree = ""; }; - 4FA690BDA022D1D71A2563D7 /* LocalException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalException.swift; path = src/Ice/LocalException.swift; sourceTree = ""; }; - 50A02E35C0D489EE9FA527DA /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/exceptions/Server.swift; sourceTree = ""; }; - 50A2B975515FD9EEB3223999 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 50E681C36DEFAC7C6ADA5E59 /* Plugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Plugin.swift; path = src/Ice/Plugin.swift; sourceTree = ""; }; - 510D1B93F9F1E35D60692209 /* Endpoint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Endpoint.swift; path = src/Ice/Endpoint.swift; sourceTree = ""; }; - 5139077FB7FF05473C48016A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/stream/Client.swift; sourceTree = ""; }; - 5258134D3A215F2466435990 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5263C3738C3EF761B5202141 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/retry/Test.ice; sourceTree = ""; }; - 52AC5AE6897741655049E5E1 /* NativePropertiesAdmin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NativePropertiesAdmin.swift; path = src/Ice/NativePropertiesAdmin.swift; sourceTree = ""; }; - 534A5F8BE7C459A933D4054F /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 53A3ABE0E265451FAF1C27EB /* MetricsAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsAdminI.cpp; path = ../cpp/src/Ice/MetricsAdminI.cpp; sourceTree = ""; }; - 54BAFFFC7F040E1C113E258E /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = ../cpp/src/Ice/Exception.cpp; sourceTree = ""; }; - 54C9E37E3AF9656347BFE470 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/services/Client.swift; sourceTree = ""; }; - 54F3C8023ECF28890B143479 /* SecureTransportCertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportCertificateI.cpp; path = ../cpp/src/IceSSL/SecureTransportCertificateI.cpp; sourceTree = ""; }; - 55625944FF564A3D943D23D5 /* Blobject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Blobject.swift; path = src/Ice/Blobject.swift; sourceTree = ""; }; - 5635B405A32F12DFF335A1ED /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = test/TestDriver/iOS/Base.lproj/Main.storyboard; sourceTree = ""; }; - 563ADEC4C1B32BFEDE861B0D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/exceptions/Client.swift; sourceTree = ""; }; - 56CD9F58D686B914CD4E7062 /* LocalObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocalObject.h; path = src/IceImpl/LocalObject.h; sourceTree = ""; }; - 574A31600701185E9FDEC087 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 57A4D45FAFD10790DA8D9A1F /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 582CF8542C18DFEE777BE669 /* PropertiesAdminI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesAdminI.swift; path = src/Ice/PropertiesAdminI.swift; sourceTree = ""; }; - 5856D3133582D30B6424B442 /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 589870D40ED0745158B279A2 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/retry/Client.swift; sourceTree = ""; }; - 58C5E7464C1E1A08020CB59A /* InstrumentationF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationF.cpp; path = ../cpp/src/Ice/InstrumentationF.cpp; sourceTree = ""; }; - 58E70EA4C8E27D76F40CE7E8 /* StreamTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamTransceiver.cpp; path = ../cpp/src/Ice/ios/StreamTransceiver.cpp; sourceTree = ""; }; - 594301575AB6DA25D7CE8A90 /* Reference.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Reference.cpp; path = ../cpp/src/Ice/Reference.cpp; sourceTree = ""; }; - 5947529BCEAEF6399F92ED31 /* ValueFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactory.cpp; path = ../cpp/src/Ice/ValueFactory.cpp; sourceTree = ""; }; - 5A02DA5B2008898710B01134 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/operations/Collocated.swift; sourceTree = ""; }; - 5A68B6650365588738DD6CA4 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5A70BF6FEE8DA0A4A9AA500A /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/proxy/TestAMDI.swift; sourceTree = ""; }; - 5BBF8FCE266097F67D2ECD57 /* EndpointF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointF.cpp; path = ../cpp/src/Ice/EndpointF.cpp; sourceTree = ""; }; - 5C22AA8771C989C5BBD131D5 /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5D711F8F37F1A2CC99B3F53F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/hold/Server.swift; sourceTree = ""; }; - 5DD42CB75FDF93FE8F76667F /* IceImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceImpl.h; path = src/IceImpl/IceImpl.h; sourceTree = ""; }; - 5E9F23C8F79D563547DAC808 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/exceptions/ServerPrivate.ice; sourceTree = ""; }; - 5EC5830B2180DC75DE4E4E8F /* CtrlCHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CtrlCHandler.cpp; path = ../cpp/src/IceUtil/CtrlCHandler.cpp; sourceTree = ""; }; - 5EEB85F7C36B02C635BBFDB7 /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5F6AAC9E3757E6E91347477B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/IceSSL/configuration/Client.swift; sourceTree = ""; }; - 5FA0861C1DB82FD5CE33C4D6 /* libIce C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 5FA5B650BE7B3E7E2911DFEF /* IceStorm.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceStorm.ice; path = ../slice/IceStorm/IceStorm.ice; sourceTree = ""; }; - 6084656BDF75C648D467B6CC /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/Ice/EndpointI.cpp; sourceTree = ""; }; - 623289333D18DFA2108F0CE7 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 62456291EF0548032B7E3DA2 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/exceptions/Collocated.swift; sourceTree = ""; }; - 625CB263F55FD97BE49F1676 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/optional/Test.ice; sourceTree = ""; }; - 631E368C13A3530681F08764 /* LocalExceptionFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionFactory.swift; path = src/Ice/LocalExceptionFactory.swift; sourceTree = ""; }; - 643804113C7CACB4A7EB180E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/binding/Client.swift; sourceTree = ""; }; - 6485A6AB6C5A9D405C99A002 /* ObjectAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.mm; path = src/IceImpl/ObjectAdapter.mm; sourceTree = ""; }; - 6513CE00B5AF115579EADDCA /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/operations/Client.swift; sourceTree = ""; }; - 652EA402A805AA335ABDD34A /* ConnectionF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionF.cpp; path = ../cpp/src/Ice/ConnectionF.cpp; sourceTree = ""; }; - 654F7807429CD84D1849133C /* StreamAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamAcceptor.cpp; path = ../cpp/src/Ice/ios/StreamAcceptor.cpp; sourceTree = ""; }; - 66267617EEBA8219ADB97A02 /* IceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IceUtil.mm; path = src/IceImpl/IceUtil.mm; sourceTree = ""; }; - 667157F9CC50DAD96CB28E92 /* Oneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Oneways.swift; path = test/Ice/operations/Oneways.swift; sourceTree = ""; }; - 66B7E30EC0ADE6667DB0718E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/admin/AllTests.swift; sourceTree = ""; }; - 67C8D0331EE9F189030CF6FC /* LocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorF.ice; path = ../slice/Ice/LocatorF.ice; sourceTree = ""; }; - 6862C6DF1F03FD3BC6D46040 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 686977AFFABF87664221CF35 /* SysLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysLoggerI.cpp; path = ../cpp/src/Ice/SysLoggerI.cpp; sourceTree = ""; }; - 68EEAD6D4327F2D31CD9F050 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/exceptions/ServerAMD.swift; sourceTree = ""; }; - 6A000A916E9BBC2F74F97B21 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6A283F62CF4F1A840B9C8731 /* ObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectAdapter.h; path = src/IceImpl/ObjectAdapter.h; sourceTree = ""; }; - 6A8EFB4A80C533DBBE27643B /* Key.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Key.ice; path = test/Slice/escape/Key.ice; sourceTree = ""; }; - 6ABE37B5A790F5FD8B6CAB5F /* ImplicitContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContext.cpp; path = ../cpp/src/Ice/ImplicitContext.cpp; sourceTree = ""; }; - 6B08215B9CC0C2ED40F9DF81 /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6C04E61AE1032EFB42B418E1 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = ../cpp/src/IceUtil/FileUtil.cpp; sourceTree = ""; }; - 6C21F81A0DECE41C24F04C63 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/servantLocator/Server.swift; sourceTree = ""; }; - 6D2DD09C36EF45CDA56DB948 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/hold/Test.ice; sourceTree = ""; }; - 6DF2168E2E451864F9F40F88 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/optional/Client.swift; sourceTree = ""; }; - 6E437B10CC2A98D494235858 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/enums/Test.ice; sourceTree = ""; }; - 6EC3ACF5E7675DBCB1D86958 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Glacier2/Info.plist; sourceTree = ""; }; - 6EDB0B02B3ED8BEB70182162 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/enums/Client.swift; sourceTree = ""; }; - 6F3831ECBF61E1F468E14056 /* TcpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnector.cpp; path = ../cpp/src/Ice/TcpConnector.cpp; sourceTree = ""; }; - 70DC389A13F881E48EBCA25C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/invoke/Server.swift; sourceTree = ""; }; - 715E4D917D550570FD3CFF6A /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 718D975EF8CB9E404F1DE7D6 /* LocalObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.mm; path = src/IceImpl/LocalObject.mm; sourceTree = ""; }; - 71FF19753C75D718076D906A /* IceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceUtil.h; path = src/IceImpl/IceUtil.h; sourceTree = ""; }; - 72969A7BBA1DB8E3A31C4234 /* LocatorInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorInfo.cpp; path = ../cpp/src/Ice/LocatorInfo.cpp; sourceTree = ""; }; - 73563B2BA9D73A31D245E208 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/exceptions/ServerPrivateAMD.ice; sourceTree = ""; }; - 748F318E593607DC22BF7F52 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/exceptions/Test.ice; sourceTree = ""; }; - 74EAE965F45B9CED1FE9538F /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/objects/Client.swift; sourceTree = ""; }; - 75152288E3A29AD5C1FC467D /* SecureTransportUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportUtil.cpp; path = ../cpp/src/IceSSL/SecureTransportUtil.cpp; sourceTree = ""; }; - 7570FBDCEB1BE973537F63AB /* Connection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Connection.swift; path = src/Ice/Connection.swift; sourceTree = ""; }; - 75B0E1B932B09C64904B3E75 /* LookupI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LookupI.cpp; path = ../cpp/src/IceDiscovery/LookupI.cpp; sourceTree = ""; }; - 75F1365F7D43AAD84AF3A0B4 /* RetryQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RetryQueue.cpp; path = ../cpp/src/Ice/RetryQueue.cpp; sourceTree = ""; }; - 769101BD07C4F85CBCF6EC73 /* PermissionsVerifier.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifier.ice; path = ../slice/Glacier2/PermissionsVerifier.ice; sourceTree = ""; }; - 76B982881849592FB664DF9C /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/inheritance/TestI.swift; sourceTree = ""; }; - 76DC4BE1D25DA51A9795D589 /* OptionalFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalFormat.swift; path = src/Ice/OptionalFormat.swift; sourceTree = ""; }; - 77C88A641E9F7E5B40D7DCAE /* ProxyFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProxyFactory.cpp; path = ../cpp/src/Ice/ProxyFactory.cpp; sourceTree = ""; }; - 78B44D0BA063801FABE08C89 /* ServantLocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocator.cpp; path = ../cpp/src/Ice/ServantLocator.cpp; sourceTree = ""; }; - 78F16843E2BBB78CF5ECC73E /* EndpointI.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.mm; path = ../cpp/src/IceIAP/EndpointI.mm; sourceTree = ""; }; - 7956EECD3C94FF8CFA4E7EF5 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/info/Test.ice; sourceTree = ""; }; - 7A007F6524CA33A118530563 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/hold/AllTests.swift; sourceTree = ""; }; - 7A6DE490CAA151058A7A77AE /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/adapterDeactivation/Collocated.swift; sourceTree = ""; }; - 7A924B67C028B028C7286DCD /* Transceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Transceiver.cpp; path = ../cpp/src/Ice/Transceiver.cpp; sourceTree = ""; }; - 7B0D1B5B22833D175EEBFB78 /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/IceGrid/Session.ice; sourceTree = ""; }; - 7B1EF955F70B0A021A4F2C7E /* Process.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.ice; path = ../slice/Ice/Process.ice; sourceTree = ""; }; - 7B67A4218F8C7CF2FC0CF13A /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/scope/Server.swift; sourceTree = ""; }; - 7C2D6095118702AF4F895B01 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/facets/Test.ice; sourceTree = ""; }; - 7C33F6088CA51225D531E88F /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/properties/Client.swift; sourceTree = ""; }; - 7D09811ABF1129D166FBECD8 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7DBD797522D96E525024E477 /* TraceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceUtil.h; path = src/IceImpl/TraceUtil.h; sourceTree = ""; }; - 7DD30443F9ACFA3122DBBF34 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = ../certs; sourceTree = ""; }; - 7DDAC5988149325C9F48EAC1 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/ami/Test.ice; sourceTree = ""; }; - 7E18CC57E815D2169B082AD3 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7E5117A0E6AFC1C47DD12C3C /* SecureTransportTransceiverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportTransceiverI.cpp; path = ../cpp/src/IceSSL/SecureTransportTransceiverI.cpp; sourceTree = ""; }; - 7E759E64A1C646292070D481 /* WSAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSAcceptor.cpp; path = ../cpp/src/Ice/WSAcceptor.cpp; sourceTree = ""; }; - 7EE2506792F31CBED83E4851 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/retry/AllTests.swift; sourceTree = ""; }; - 7F170CA23DF8AE7150B4E3C7 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/proxy/AllTests.swift; sourceTree = ""; }; - 7F3619615028457B13D22FBD /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; - 802D024C9FA3113780412F5A /* PluginF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginF.cpp; path = ../cpp/src/Ice/PluginF.cpp; sourceTree = ""; }; - 80A836681C0AEC83887E925E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/udp/Server.swift; sourceTree = ""; }; - 81BBD19500FFDB5290F6EA34 /* libIceDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 81FA0473F73946ECEBCD0FE8 /* Acceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Acceptor.cpp; path = ../cpp/src/Ice/Acceptor.cpp; sourceTree = ""; }; - 8204B0FCE0AB6F68921A3D62 /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; - 824FC6BA5BCE19588DEC2AD8 /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 826C0C52CAC6A5F22BF6ACE9 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 82C71BD0A7B648E78E1EE63D /* DispatchInterceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DispatchInterceptor.cpp; path = ../cpp/src/Ice/DispatchInterceptor.cpp; sourceTree = ""; }; - 832185C7682C7BAE361C4F71 /* DynamicLibrary.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DynamicLibrary.cpp; path = ../cpp/src/Ice/DynamicLibrary.cpp; sourceTree = ""; }; - 832678821CEC317EBA1C6F2D /* UdpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpConnector.cpp; path = ../cpp/src/Ice/UdpConnector.cpp; sourceTree = ""; }; - 8381BC5D10FECBA8FD0504E0 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/objects/Server.swift; sourceTree = ""; }; - 83915D8BA4859BF0DBD7B548 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultServant/AllTests.swift; sourceTree = ""; }; - 83BB4164CB853953B834AADD /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/IceSSL/EndpointI.cpp; sourceTree = ""; }; - 83EAB33452165797F71F1CF6 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/operations/Server.swift; sourceTree = ""; }; - 84129524C4F70B842B955026 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8423266467D889E92F786035 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/timeout/Client.swift; sourceTree = ""; }; - 8496845BA1CB2961BCB4696C /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceStorm/Info.plist; sourceTree = ""; }; - 85842F8C7EF62C5232FD319E /* EndpointInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointInfoFactory.swift; path = src/Ice/EndpointInfoFactory.swift; sourceTree = ""; }; - 86ABB8F817591538D1E1A719 /* LoggerAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerAdminI.cpp; path = ../cpp/src/Ice/LoggerAdminI.cpp; sourceTree = ""; }; - 86FF409A4D607F7C3F700F8B /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 877C028D182B31A7DA65893F /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 88FF1FF8A94040F7F602F0C0 /* IceGridSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceGridSwift.h; path = src/IceGrid/IceGridSwift.h; sourceTree = ""; }; - 8970C2FBD5A08828E3B03752 /* SSLConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLConnectionInfo.swift; path = src/Ice/SSLConnectionInfo.swift; sourceTree = ""; }; - 897297169BA7DBDB87CE1088 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Ice/RouterF.ice; sourceTree = ""; }; - 8A247D6B9D6442FA04FBCC83 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/servantLocator/TestAMD.ice; sourceTree = ""; }; - 8BF71CF6804DEA75FC0B5376 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/exceptions/Server.swift; sourceTree = ""; }; - 8C143ED3B8F13A61B4DE515A /* StreamSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamSocket.cpp; path = ../cpp/src/Ice/StreamSocket.cpp; sourceTree = ""; }; - 8CC922FE8D3EAF73CEDB3CF7 /* ImplicitContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImplicitContext.h; path = src/IceImpl/ImplicitContext.h; sourceTree = ""; }; - 8DC843ECDCD1A4BB1CC2B4D7 /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Connection.h; path = src/IceImpl/Connection.h; sourceTree = ""; }; - 8DEF71C9DEB340E5082D4561 /* SystemdJournalI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SystemdJournalI.cpp; path = ../cpp/src/Ice/SystemdJournalI.cpp; sourceTree = ""; }; - 8E72A0E60CBE957A7F56F405 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/exceptions/ClientPrivate.ice; sourceTree = ""; }; - 8EC08889BCEC40A288945740 /* Proxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Proxy.swift; path = src/Ice/Proxy.swift; sourceTree = ""; }; - 8F19682F788B50D8AC95E275 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = ../cpp/src/Ice/EventHandler.cpp; sourceTree = ""; }; - 93221F7A8289C9024F246985 /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 9359C59FEC8D1829DE6D27FA /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/IceSSL/configuration/TestI.swift; sourceTree = ""; }; - 9366A44467F809D54376FC77 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/facets/Collocated.swift; sourceTree = ""; }; - 93B5CBAE0C70CA58A1C2C165 /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 944865D9D3ED0F6DF013AABF /* ProtocolPluginFacade.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolPluginFacade.cpp; path = ../cpp/src/Ice/ProtocolPluginFacade.cpp; sourceTree = ""; }; - 94B41AC208CDA308A3FF4EC5 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/proxy/Test.ice; sourceTree = ""; }; - 9527D4E7D5C57B3AC43961A6 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/Ice/Instance.cpp; sourceTree = ""; }; - 95851E43D0C4D60F6E643BAE /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/udp/Test.ice; sourceTree = ""; }; - 95C4777E39FA8DD4FBD09FD6 /* libIceLocatorDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 95F67E554DA07E38997B2C88 /* UdpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpEndpointI.cpp; path = ../cpp/src/Ice/UdpEndpointI.cpp; sourceTree = ""; }; - 962818DC4825125D91BF9095 /* LoggerF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerF.cpp; path = ../cpp/src/Ice/LoggerF.cpp; sourceTree = ""; }; - 965052459EF66532D1A53DAC /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/adapterDeactivation/Server.swift; sourceTree = ""; }; - 96E9FCBFD4A041F02FB124A6 /* ConnectionInfoF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfoF.cpp; path = ../cpp/src/IceSSL/ConnectionInfoF.cpp; sourceTree = ""; }; - 970CA66170893BFE76675169 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/TestCommon/Info.plist; sourceTree = ""; }; - 97480A250E2000119ACBB3C8 /* Communicator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.mm; path = src/IceImpl/Communicator.mm; sourceTree = ""; }; - 978BC6A012115CFED653D3D0 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/admin/Server.swift; sourceTree = ""; }; - 979C34B2FF762DA581B94308 /* IAPConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPConnectionInfo.swift; path = src/Ice/IAPConnectionInfo.swift; sourceTree = ""; }; - 9817538D39860D3F1D67F1EC /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/exceptions/TestAMD.ice; sourceTree = ""; }; - 983721C2494AFCC1CE30946C /* FactoryTableInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTableInit.cpp; path = ../cpp/src/Ice/FactoryTableInit.cpp; sourceTree = ""; }; - 98C07D589EA8C56AA7625DFF /* IPEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPEndpointI.cpp; path = ../cpp/src/Ice/IPEndpointI.cpp; sourceTree = ""; }; - 98C4E244B53E759A5893125C /* InitializationData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InitializationData.swift; path = src/Ice/InitializationData.swift; sourceTree = ""; }; - 99BDC735E930313F1DB88B63 /* SHA1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SHA1.cpp; path = ../cpp/src/Ice/SHA1.cpp; sourceTree = ""; }; - 9A3682E61FA973F15D18272C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/facets/AllTests.swift; sourceTree = ""; }; - 9A3965D141BF41DF1F0C551B /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 9A3D3FB492A2737DCD312850 /* ProcessI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProcessI.swift; path = src/Ice/ProcessI.swift; sourceTree = ""; }; - 9AA8D845DDA4210612874AEA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/objects/AllTests.swift; sourceTree = ""; }; - 9BB5410444BF6B374021801D /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/objects/Collocated.swift; sourceTree = ""; }; - 9C750448EB098CAFBE6C4C28 /* ConnectionI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionI.cpp; path = ../cpp/src/Ice/ConnectionI.cpp; sourceTree = ""; }; - 9C76356862A29F54F63817D6 /* ConnectorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectorI.cpp; path = ../cpp/src/IceSSL/ConnectorI.cpp; sourceTree = ""; }; - 9CBDC7A1A35ED6F24372F3BA /* LoggerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoggerWrapper.swift; path = src/Ice/LoggerWrapper.swift; sourceTree = ""; }; - 9DAAF34F8A69EEDC87F889E7 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 9E3EE46F30618B8E0211F6C4 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/acm/Test.ice; sourceTree = ""; }; - 9E86412341EF16ED15F320F0 /* WSTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSTransceiver.cpp; path = ../cpp/src/Ice/WSTransceiver.cpp; sourceTree = ""; }; - 9E8A849DF6717BC2390E7810 /* ServantLocatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocatorF.cpp; path = ../cpp/src/Ice/ServantLocatorF.cpp; sourceTree = ""; }; - 9F3434C8A073AA109B5C31EA /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/inheritance/Client.swift; sourceTree = ""; }; - 9F8909AB8A17501B1CF9A101 /* ThreadPool.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPool.cpp; path = ../cpp/src/Ice/ThreadPool.cpp; sourceTree = ""; }; - 9FDC86559C3FF6250119D8C3 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/admin/Client.swift; sourceTree = ""; }; - A02666D7734DCBD68E093E74 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/binding/TestI.swift; sourceTree = ""; }; - A063F480B1D518851F44CB38 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/servantLocator/ServerAMD.swift; sourceTree = ""; }; - A0671FF56B2EE882549AC8A9 /* TcpAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpAcceptor.cpp; path = ../cpp/src/Ice/TcpAcceptor.cpp; sourceTree = ""; }; - A0A21DA17C50EA979DEAAF80 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/exceptions/AllTests.swift; sourceTree = ""; }; - A0E69CF15D312799D1B24169 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/interceptor/Test.ice; sourceTree = ""; }; - A0E831000ECAB4DE416B693C /* Endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Endpoint.h; path = src/IceImpl/Endpoint.h; sourceTree = ""; }; - A10DD7682E3D7D09B6954580 /* Twoways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Twoways.swift; path = test/Ice/operations/Twoways.swift; sourceTree = ""; }; - A1F66CE853CF87B6E6AFD974 /* ServantLocatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocatorI.swift; path = test/Ice/servantLocator/ServantLocatorI.swift; sourceTree = ""; }; - A2D2E7E5D10022E66D22D66E /* PluginManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginManagerI.cpp; path = ../cpp/src/Ice/PluginManagerI.cpp; sourceTree = ""; }; - A2FED7F2609ACAA2CD5B5A7A /* ConsoleUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsoleUtil.cpp; path = ../cpp/src/IceUtil/ConsoleUtil.cpp; sourceTree = ""; }; - A36EC0AEC31627FD61F14E27 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A415328DFBFF6A7A21BF4E81 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/udp/Client.swift; sourceTree = ""; }; - A44522A036AA7C188A725680 /* Options.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Options.cpp; path = ../cpp/src/IceUtil/Options.cpp; sourceTree = ""; }; - A51D3574B7582F500ECB8109 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/timeout/AllTests.swift; sourceTree = ""; }; - A53D4CB88BF6A93411E641BE /* Communicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Communicator.swift; path = src/Ice/Communicator.swift; sourceTree = ""; }; - A6243D389694D099C0184BCF /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; - A67B37CC0489F03CF069A65C /* PropertiesAdmin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropertiesAdmin.h; path = src/IceImpl/PropertiesAdmin.h; sourceTree = ""; }; - A68D41A0941999BF76CC3B35 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/operations/Test.ice; sourceTree = ""; }; - A6AAC7C362454260CA2B0593 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/objects/Test.ice; sourceTree = ""; }; - A6EA1C8C1024620CA648E9E4 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A79AE45EE8A851627DB106A1 /* SecureTransportPluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportPluginI.cpp; path = ../cpp/src/IceSSL/SecureTransportPluginI.cpp; sourceTree = ""; }; - A7A335019D6FC3FE103657A6 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A7A86F3A81CCB9DB5D71756D /* Proxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Proxy.cpp; path = ../cpp/src/Ice/Proxy.cpp; sourceTree = ""; }; - A8A19A4F20919D5549598772 /* RegisterPluginsInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RegisterPluginsInit.cpp; path = ../cpp/src/Ice/RegisterPluginsInit.cpp; sourceTree = ""; }; - A8B8D3FB17F7288D5096BD8E /* Current.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Current.swift; path = src/Ice/Current.swift; sourceTree = ""; }; - A9EA4560530B2442EFCBDE12 /* Controller.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Controller.ice; path = ../scripts/Controller.ice; sourceTree = ""; }; - A9FEE9EA5FF7D393AB623659 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - AB1D1063C3987F97CD262B32 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/hold/TestI.swift; sourceTree = ""; }; - AB36820A5AC833BC1253F30D /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/optional/ServerAMD.swift; sourceTree = ""; }; - AB6A7AF6D1EC2B8A12F9B498 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/info/TestI.swift; sourceTree = ""; }; - AD1A7FC63C9D08DB4F5D1072 /* StreamEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamEndpointI.cpp; path = ../cpp/src/Ice/ios/StreamEndpointI.cpp; sourceTree = ""; }; - AD1DA82196FB0896919C1177 /* IconvStringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IconvStringConverter.cpp; path = ../cpp/src/Ice/IconvStringConverter.cpp; sourceTree = ""; }; - AD2B9AF2609CCA9D0A31526F /* WSEndpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSEndpoint.cpp; path = ../cpp/src/Ice/WSEndpoint.cpp; sourceTree = ""; }; - AD3C85DDDFFF996CE0DE043E /* LocalObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalObject.swift; path = src/Ice/LocalObject.swift; sourceTree = ""; }; - AD895AEC9101644623712329 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - AE2BBFDFF12EDF36B9AF8B2B /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/invoke/Test.ice; sourceTree = ""; }; - AE6DD4490D2D6A6C80BA2B03 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/IceSSL/configuration/Test.ice; sourceTree = ""; }; - AF859A3FB3C6011A75051175 /* ObjectAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapter.cpp; path = ../cpp/src/Ice/ObjectAdapter.cpp; sourceTree = ""; }; - AFF40E41BCC43087809AB261 /* Communicator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Communicator.cpp; path = ../cpp/src/Ice/Communicator.cpp; sourceTree = ""; }; - B01172F1BF8FD03715DB2993 /* NetworkProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkProxy.cpp; path = ../cpp/src/Ice/NetworkProxy.cpp; sourceTree = ""; }; - B057B033C9D2ED8D38A3D014 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/scope/Client.swift; sourceTree = ""; }; - B06E3E53A88EBCFBC944B38B /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B1A5D52941189B36C37824EE /* StringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverter.cpp; path = ../cpp/src/IceUtil/StringConverter.cpp; sourceTree = ""; }; - B24CB74D03AF69953C447D0F /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/objects/ServerPrivateAMD.ice; sourceTree = ""; }; - B2F15183B4084729299E75DB /* ImplicitContextF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextF.cpp; path = ../cpp/src/Ice/ImplicitContextF.cpp; sourceTree = ""; }; - B35DF098E417B51793D521BD /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/exceptions/TestI.swift; sourceTree = ""; }; - B3A30B1089D1296C6F7CED1C /* OnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnewaysAMI.swift; path = test/Ice/operations/OnewaysAMI.swift; sourceTree = ""; }; - B3A58977E346C1C41BEBC658 /* SliceFlags.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceFlags.swift; path = src/Ice/SliceFlags.swift; sourceTree = ""; }; - B4B9B6BEB54580685FFB367A /* ValueFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactory.swift; path = src/Ice/ValueFactory.swift; sourceTree = ""; }; - B582F6609244629C95C2BAA9 /* ReferenceFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReferenceFactory.cpp; path = ../cpp/src/Ice/ReferenceFactory.cpp; sourceTree = ""; }; - B6845B2E29E4080166CD6C26 /* ServantManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantManager.swift; path = src/Ice/ServantManager.swift; sourceTree = ""; }; - B6D3E94140669587BFA14843 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/objects/Server.swift; sourceTree = ""; }; - B7EE5328C7A8863943281E59 /* StringUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringUtil.cpp; path = ../cpp/src/IceUtil/StringUtil.cpp; sourceTree = ""; }; - B85B17A8DB3D78F163220271 /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B884A1F2FB9A50957E45CD4B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/hold/Client.swift; sourceTree = ""; }; - B995EA78E5B5397A8BF50B54 /* SSLInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLInfo.ice; path = ../slice/Glacier2/SSLInfo.ice; sourceTree = ""; }; - BA10DF21AA7BD6CE2F6005E2 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/IceSSL/Instance.cpp; sourceTree = ""; }; - BA2F00AB997753AF815C6D1E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/info/Server.swift; sourceTree = ""; }; - BA86F3F1E7780A996CC6C670 /* OpaqueEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpaqueEndpointI.cpp; path = ../cpp/src/Ice/OpaqueEndpointI.cpp; sourceTree = ""; }; - BAC520FFA73DABE04C898130 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BB3683C61806347682B83157 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceSSL/EndpointInfo.cpp; sourceTree = ""; }; - BB42DEB40EEAEA9E39A059D7 /* Transceiver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.mm; path = ../cpp/src/IceIAP/Transceiver.mm; sourceTree = ""; }; - BB964A860C92F7275D083A26 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BC45412E37CB39AB1326ADB0 /* ConnectionI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionI.swift; path = src/Ice/ConnectionI.swift; sourceTree = ""; }; - BC8188172D41ACF2F15B43E4 /* PropertiesI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesI.swift; path = src/Ice/PropertiesI.swift; sourceTree = ""; }; - BC8C1D2215CE75FCBF715EF9 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/facets/TestI.swift; sourceTree = ""; }; - BD45215B101FAA41346DA5A9 /* InstrumentationI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationI.cpp; path = ../cpp/src/Ice/InstrumentationI.cpp; sourceTree = ""; }; - BD7F723468E384E171830EC1 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BDDD6119D93F5A4C9BA2C1A5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/inheritance/Server.swift; sourceTree = ""; }; - BEA90AA9491C68F453CC2B76 /* IceDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceDiscovery.ice; path = ../slice/IceDiscovery/IceDiscovery.ice; sourceTree = ""; }; - BF0DC95EBCEEF58EE186A10F /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BF929EBD1CFFC7D11F369F19 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/exceptions/ServerAMD.swift; sourceTree = ""; }; - BFB3505005131A44524F72AE /* Plugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Plugin.cpp; path = ../cpp/src/Ice/Plugin.cpp; sourceTree = ""; }; - BFD88371730890D163B36559 /* EndpointI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointI.swift; path = src/Ice/EndpointI.swift; sourceTree = ""; }; - C01B21EF5B58D1BB8B436416 /* EndpointSelectionType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointSelectionType.swift; path = src/Ice/EndpointSelectionType.swift; sourceTree = ""; }; - C1E1D3C9DAC7F79D91E90087 /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = src/IceImpl/Logger.h; sourceTree = ""; }; - C3D39FB9794A458E44672EE2 /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = test/TestDriver/macOS/main.swift; sourceTree = ""; }; - C42A7B28B41EC36B0DCB6EC3 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Ice/Router.ice; sourceTree = ""; }; - C4D7B1A0626DB0DDFD4BD4B7 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C4D7BABAB3FF83E286B743F7 /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C4E592DCBE9E01D01056C207 /* BlobjectFacade.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = BlobjectFacade.mm; path = src/IceImpl/BlobjectFacade.mm; sourceTree = ""; }; - C6062E695220FACFAE9E172A /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/location/Test.ice; sourceTree = ""; }; - C63D63D5D753960C536720E5 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - C69B109A7B6681550B30E551 /* OutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OutputStream.h; path = src/IceImpl/OutputStream.h; sourceTree = ""; }; - C6A409D5F984C8F0BE68A557 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/ami/Client.swift; sourceTree = ""; }; - C6ADF01A80939731A6DE1044 /* PropertiesF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesF.cpp; path = ../cpp/src/Ice/PropertiesF.cpp; sourceTree = ""; }; - C6C634DF2652DE223BCB1B37 /* Process.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Process.h; path = src/IceImpl/Process.h; sourceTree = ""; }; - C7166379D55E37E1E0AA4876 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/exceptions/TestAMDI.swift; sourceTree = ""; }; - C83F4865F188690FA0ECA48C /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultValue/Test.ice; sourceTree = ""; }; - C90960781F3A665A7DA951D9 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/objects/ServerPrivate.ice; sourceTree = ""; }; - C9B36D91B9D68383E5F105B3 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CA3048781DE1F85C3C98A17C /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - CA697889B116706378E57DA6 /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CAAE15001A3C252F22A5E566 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; - CAFFEA2B5A8AE9C11E531B18 /* SSLEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLEngine.cpp; path = ../cpp/src/IceSSL/SSLEngine.cpp; sourceTree = ""; }; - CB082E75D7E8687246CC10D9 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CBA3784B8DB45FE8C568F7D8 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/location/TestI.swift; sourceTree = ""; }; - CBB1409BA01AD2ADEC3BD9D4 /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CC42579A7430183C78C09375 /* RequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandler.cpp; path = ../cpp/src/Ice/RequestHandler.cpp; sourceTree = ""; }; - CC46CBBAA7E4D120F8C9F3F1 /* IceSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceSwift.h; path = src/Ice/IceSwift.h; sourceTree = ""; }; - CCD0FE357CCF946FEC6A719F /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/enums/AllTests.swift; sourceTree = ""; }; - CCFC8BF05E482D90214B7A88 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultValue/Client.swift; sourceTree = ""; }; - CD03EE61CEA9E337ACD6C1F7 /* ServantLocator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocator.swift; path = src/Ice/ServantLocator.swift; sourceTree = ""; }; - CDAAA865B397968BFD6A854A /* Forward.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Forward.ice; path = test/Ice/objects/Forward.ice; sourceTree = ""; }; - CDD050FB49289A8E9B2D9942 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceLocatorDiscovery/PluginI.cpp; sourceTree = ""; }; - CDD4B038FAF18C50CBAD7DEA /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CEAB3F147F35686A47C5CD40 /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = src/Ice/Util.swift; sourceTree = ""; }; - CEF85180CA61C2F9F98973FA /* EndpointTypes.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointTypes.ice; path = ../slice/Ice/EndpointTypes.ice; sourceTree = ""; }; - CF293858815BF38D99B997A6 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/exceptions/Test.ice; sourceTree = ""; }; - CFA89E93E746AF249D44A7F1 /* TwowaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwowaysAMI.swift; path = test/Ice/operations/TwowaysAMI.swift; sourceTree = ""; }; - D0D8E0D429D160FEABB28CA0 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/retry/Collocated.swift; sourceTree = ""; }; - D1355ECA7BE2A8D99B53FA4E /* TestCommon.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestCommon.swift; path = test/TestCommon/TestCommon.swift; sourceTree = ""; }; - D16CDB2107A44877C9B96E26 /* ObjectAdapterI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterI.cpp; path = ../cpp/src/Ice/ObjectAdapterI.cpp; sourceTree = ""; }; - D19C24D6D98060F5D3DC767F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/IceSSL/configuration/Server.swift; sourceTree = ""; }; - D1A668F98BF103CE141085BF /* PropertyDict.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertyDict.ice; path = ../slice/Ice/PropertyDict.ice; sourceTree = ""; }; - D23FA024DB9F5B209956E3AE /* ArgVector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ArgVector.cpp; path = ../cpp/src/Ice/ArgVector.cpp; sourceTree = ""; }; - D24B423F747A922D48AC5A49 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/exceptions/TestI.swift; sourceTree = ""; }; - D2B630607BEC188670D6FC3E /* BlobjectAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlobjectAsync.swift; path = src/Ice/BlobjectAsync.swift; sourceTree = ""; }; - D2DFEE2EF4B478B06A53A6CC /* ImplicitContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContext.swift; path = src/Ice/ImplicitContext.swift; sourceTree = ""; }; - D2F0731B6D0D6CE30A96EC68 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/operations/TestAMDI.swift; sourceTree = ""; }; - D3292F3020C6049CFEA22E87 /* RequestHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandlerFactory.cpp; path = ../cpp/src/Ice/RequestHandlerFactory.cpp; sourceTree = ""; }; - D32E144F81EE10297B9F1C55 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/acm/TestI.swift; sourceTree = ""; }; - D584721E70A4A59344385873 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/enums/TestI.swift; sourceTree = ""; }; - D62655BDE99F0EFB5029C764 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - D69366BB47229C2CA21FBFAC /* UserAccountMapper.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = UserAccountMapper.ice; path = ../slice/IceGrid/UserAccountMapper.ice; sourceTree = ""; }; - D78A96F0E7C0185091A1D216 /* FactoryTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTable.cpp; path = ../cpp/src/Ice/FactoryTable.cpp; sourceTree = ""; }; - D7A23ACB7B51AA7355057DD3 /* ObjectPrx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectPrx.h; path = src/IceImpl/ObjectPrx.h; sourceTree = ""; }; - D8ABE21302DE3F9A7649731E /* OSLogLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OSLogLoggerI.cpp; path = ../cpp/src/Ice/OSLogLoggerI.cpp; sourceTree = ""; }; - D8BC5C768D15A8A8C296597B /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - D9AA20FA76371E7525561E7D /* Version.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Version.ice; path = ../slice/Ice/Version.ice; sourceTree = ""; }; - D9F8D61F43A53ADB59E8570F /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Glacier2/Router.ice; sourceTree = ""; }; - D9FBC3E66B0DE3441B70C975 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = test/TestDriver/iOS/Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - D9FD3392522AC4868A78AD1D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/binding/AllTests.swift; sourceTree = ""; }; - DAF14D8D3CD8494E5BF9201E /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/optional/TestAMD.ice; sourceTree = ""; }; - DB707853D1A0F03F7DC7561A /* Logger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Logger.cpp; path = ../cpp/src/Ice/Logger.cpp; sourceTree = ""; }; - DB847D66C5E3CCA14A7B5EAF /* Endpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Endpoint.cpp; path = ../cpp/src/Ice/Endpoint.cpp; sourceTree = ""; }; - DBE10FD0363BDE5EDFF0F511 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - DC9ED7619A57BEE47972336A /* RemoteLogger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RemoteLogger.ice; path = ../slice/Ice/RemoteLogger.ice; sourceTree = ""; }; - DCB07DDAE094BB3D44E1C3F7 /* ControllerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControllerI.swift; path = test/TestDriver/iOS/ControllerI.swift; sourceTree = ""; }; - DD2619C8768BBC9876A5A684 /* Object.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../cpp/src/Ice/Object.cpp; sourceTree = ""; }; - DD741643796E7F602007D9F4 /* TraceUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceUtil.cpp; path = ../cpp/src/Ice/TraceUtil.cpp; sourceTree = ""; }; - DDBA009CB8D3B5A0846CFA61 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - DE62615CE42FC045EF43AEF4 /* Service.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Service.cpp; path = ../cpp/src/Ice/Service.cpp; sourceTree = ""; }; - DF005D4DB20602C4F3EF5AA8 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/location/Client.swift; sourceTree = ""; }; - DF53E5C9769D0305AAB42633 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - DF610E634A5865F4DBA3B2D5 /* SlicedData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SlicedData.swift; path = src/Ice/SlicedData.swift; sourceTree = ""; }; - DFD8B204368D01D576A6D7BB /* Connector.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.mm; path = ../cpp/src/IceIAP/Connector.mm; sourceTree = ""; }; - E03E5416C65A53BFBA1435CB /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E06F35E158588B7C1D8BA3F6 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E089655B39A8835FFC0C9516 /* FormatType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatType.swift; path = src/Ice/FormatType.swift; sourceTree = ""; }; - E0BA05BEC1FC854319EDBA5B /* FacetMap.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FacetMap.cpp; path = ../cpp/src/Ice/FacetMap.cpp; sourceTree = ""; }; - E0EBA030768D756CAB63E5C5 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/objects/Test.ice; sourceTree = ""; }; - E10876EAB4A47A8DFC9CB0E7 /* LoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerI.cpp; path = ../cpp/src/Ice/LoggerI.cpp; sourceTree = ""; }; - E1C2EF0082C7579ECE9ED8BF /* TrustManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TrustManager.cpp; path = ../cpp/src/IceSSL/TrustManager.cpp; sourceTree = ""; }; - E1F28998274F3968D7E62348 /* RouterInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RouterInfo.cpp; path = ../cpp/src/Ice/RouterInfo.cpp; sourceTree = ""; }; - E24E0E30BCEE526832CFF2C0 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/adapterDeactivation/TestI.swift; sourceTree = ""; }; - E2CFE66499402454014FEC81 /* DefaultsAndOverrides.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultsAndOverrides.cpp; path = ../cpp/src/Ice/DefaultsAndOverrides.cpp; sourceTree = ""; }; - E2DB3B0D04B959637ABED20A /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E3CDD73D8E2EF9035ABD5D8E /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E3F7F6D02B6B524CA6F63378 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = test/TestDriver/iOS/Assets.xcassets; sourceTree = ""; }; - E415E99C053809FA95D690E5 /* Timer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Timer.cpp; path = ../cpp/src/Ice/Timer.cpp; sourceTree = ""; }; - E4AC7CF06B64C796FBA28CC5 /* FileParser.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FileParser.ice; path = ../slice/IceGrid/FileParser.ice; sourceTree = ""; }; - E4C4327A478904CF26F0F2F3 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/IceStorm/Metrics.ice; sourceTree = ""; }; - E52E96A3FD8751DCDB6A6B00 /* InputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputUtil.cpp; path = ../cpp/src/IceUtil/InputUtil.cpp; sourceTree = ""; }; - E5DC993B644DC3182951F6D8 /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = test/TestDriver/iOS/AppDelegate.swift; sourceTree = ""; }; - E6AE5573D03A0091F921C2EC /* Shared.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shared.cpp; path = ../cpp/src/IceUtil/Shared.cpp; sourceTree = ""; }; - E6BC1DF9A06ADA22DDBBE3DF /* ImplicitContextI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContextI.swift; path = src/Ice/ImplicitContextI.swift; sourceTree = ""; }; - E70D3533844B2CCD3FD16452 /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = test/TestDriver/iOS/ViewController.swift; sourceTree = ""; }; - E70F095DEAD8B11B20898CC9 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/exceptions/TestAMD.ice; sourceTree = ""; }; - E7D20169169F829071B5057F /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/retry/TestI.swift; sourceTree = ""; }; - E805BEA400CFDA8CB025129A /* IAPEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPEndpointInfo.swift; path = src/Ice/IAPEndpointInfo.swift; sourceTree = ""; }; - E8474C6715BC5D1EC8BB795D /* Instrumentation.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instrumentation.cpp; path = ../cpp/src/Ice/Instrumentation.cpp; sourceTree = ""; }; - E90675902D436ECB7A6A3254 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E910A7E27BBF0701EED9D16D /* PropertiesAdmin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.mm; path = src/IceImpl/PropertiesAdmin.mm; sourceTree = ""; }; - E93A41E857493EAD3A037003 /* BatchOneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOneways.swift; path = test/Ice/operations/BatchOneways.swift; sourceTree = ""; }; - E9FA81E47474D356CBCF7789 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/proxy/ServerAMD.swift; sourceTree = ""; }; - EA3623F9F4A1CA94B541C05C /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = test/IceSSL/configuration/../../../../cpp/test/IceSSL/certs; sourceTree = ""; }; - EAAE931013BC01817AD3CC59 /* Initialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Initialize.swift; path = src/Ice/Initialize.swift; sourceTree = ""; }; - EB3C3EF735A9A35FC0C0EA3D /* PropertiesI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesI.cpp; path = ../cpp/src/Ice/PropertiesI.cpp; sourceTree = ""; }; - EB58FB2F6F3C1FCCCCEBAE8E /* IncomingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IncomingAsync.cpp; path = ../cpp/src/Ice/IncomingAsync.cpp; sourceTree = ""; }; - EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; }; - EBA6B0FB94F3D71BFF5C870C /* SecureTransportEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportEngine.cpp; path = ../cpp/src/IceSSL/SecureTransportEngine.cpp; sourceTree = ""; }; - EC1C464D877DF1AFBB2D6425 /* Locator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Locator.ice; path = ../slice/Ice/Locator.ice; sourceTree = ""; }; - EC358D83F29EA095AE7953F4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/objects/AllTests.swift; sourceTree = ""; }; - EC71B2E86EF7591995578A75 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/timeout/Test.ice; sourceTree = ""; }; - EC8EB4350103B673F2C8492C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/enums/Server.swift; sourceTree = ""; }; - ECB72A94A18685EA341E3587 /* LocalException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalException.cpp; path = ../cpp/src/Ice/LocalException.cpp; sourceTree = ""; }; - ECC72E0F8FB0FAFD7B7C988B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/udp/AllTests.swift; sourceTree = ""; }; - ECDC030E98555E86A9E1CDDC /* ImplicitContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.mm; path = src/IceImpl/ImplicitContext.mm; sourceTree = ""; }; - EDC5BE7A4F70C81BE5E6EFC8 /* Network.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Network.cpp; path = ../cpp/src/Ice/Network.cpp; sourceTree = ""; }; - EDDC0839C27127CD64828388 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/objects/ServerAMD.swift; sourceTree = ""; }; - EE3A30A75CFFA35A55A81E20 /* ObjectAdapterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterFactory.cpp; path = ../cpp/src/Ice/ObjectAdapterFactory.cpp; sourceTree = ""; }; - EE3BA5B003AC1B18DE241794 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/location/AllTests.swift; sourceTree = ""; }; - EE844510C2D8711298D5FC31 /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - EF1988317337A4631AE99897 /* Connector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connector.cpp; path = ../cpp/src/Ice/Connector.cpp; sourceTree = ""; }; - EF613DCAD6834FD2362A04D5 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/inheritance/Collocated.swift; sourceTree = ""; }; - EF6E2A9B9FB41D79F32978A3 /* Exception.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Exception.swift; path = src/Ice/Exception.swift; sourceTree = ""; }; - EFD4D738B0672E237D0EB820 /* Incoming.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Incoming.cpp; path = ../cpp/src/Ice/Incoming.cpp; sourceTree = ""; }; - F080418FA4B75A04B9A8F7D7 /* Logger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Logger.swift; path = src/Ice/Logger.swift; sourceTree = ""; }; - F16006BDECE6873730A91890 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/servantLocator/TestI.swift; sourceTree = ""; }; - F1C374862263D78134D3A2AD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/scope/AllTests.swift; sourceTree = ""; }; - F1D304290414990EF0C45B8F /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F29465792F99C245D88FAB64 /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F33423CE6255B0CEC51423F2 /* Util.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Util.cpp; path = ../cpp/src/IceSSL/Util.cpp; sourceTree = ""; }; - F33FEFF5D565C07C45D4FFA3 /* Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Properties.swift; path = src/Ice/Properties.swift; sourceTree = ""; }; - F40EFAB766FDED146C9BA747 /* ProtocolInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolInstance.cpp; path = ../cpp/src/Ice/ProtocolInstance.cpp; sourceTree = ""; }; - F5D78CBF2CB618CDAB7C4CFE /* LocalExceptionDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionDescription.swift; path = src/Ice/LocalExceptionDescription.swift; sourceTree = ""; }; - F6031880CA768302715AF710 /* ConnectionInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionInfoFactory.swift; path = src/Ice/ConnectionInfoFactory.swift; sourceTree = ""; }; - F6099501585EAF4710021FDE /* OutgoingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutgoingAsync.cpp; path = ../cpp/src/Ice/OutgoingAsync.cpp; sourceTree = ""; }; - F6295A1BCB275C79338F200E /* InputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputStream.cpp; path = ../cpp/src/Ice/InputStream.cpp; sourceTree = ""; }; - F6BC25BEF6CE461EDD453F60 /* ObjectAdapterF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterF.cpp; path = ../cpp/src/Ice/ObjectAdapterF.cpp; sourceTree = ""; }; - F711FC1FF1A09C9363807725 /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F74B28F3482CE65CFFC31D5E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/IceSSL/configuration/AllTests.swift; sourceTree = ""; }; - F7687536A74185F0859012B6 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F7D0E1E196E9F210FC9000AD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/invoke/AllTests.swift; sourceTree = ""; }; - F80312C7D23DE15D9DBEA4B8 /* Descriptor.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Descriptor.ice; path = ../slice/IceGrid/Descriptor.ice; sourceTree = ""; }; - F80B65BA154B6DFE570284EE /* CertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateI.cpp; path = ../cpp/src/IceSSL/CertificateI.cpp; sourceTree = ""; }; - F9F109EDD838DBC121C3F0D3 /* UUID.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UUID.cpp; path = ../cpp/src/IceUtil/UUID.cpp; sourceTree = ""; }; - FA253345ADC3ADEBFD80630B /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/servantLocator/TestAMDI.swift; sourceTree = ""; }; - FA4A6F897448CBBFD0BD60EE /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/inheritance/AllTests.swift; sourceTree = ""; }; - FACB1E582A8BD8FE6C86628D /* ObjectPrx.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectPrx.mm; path = src/IceImpl/ObjectPrx.mm; sourceTree = ""; }; - FB3C826EC5ED81E33C86DFFB /* LocatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorI.cpp; path = ../cpp/src/IceDiscovery/LocatorI.cpp; sourceTree = ""; }; - FBDE5E179DE0FFBEFE10819F /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FC73C4C73D34B73CEC2085EB /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceDiscovery/PluginI.cpp; sourceTree = ""; }; - FD2F738D721475D92B0B7F10 /* StringConverterPlugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverterPlugin.cpp; path = ../cpp/src/Ice/StringConverterPlugin.cpp; sourceTree = ""; }; - FD85785801C128F8130987ED /* Base64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Base64.cpp; path = ../cpp/src/Ice/Base64.cpp; sourceTree = ""; }; - FE1126EB3A8EAD2D7D819A11 /* CountDownLatch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CountDownLatch.cpp; path = ../cpp/src/Ice/CountDownLatch.cpp; sourceTree = ""; }; - FE54115AF58BB636AF34BB12 /* ConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionFactory.cpp; path = ../cpp/src/Ice/ConnectionFactory.cpp; sourceTree = ""; }; - FEB12180C1DB3A1694DE7788 /* libIceDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FF59D1D7D0880B663094A951 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/exceptions/AllTests.swift; sourceTree = ""; }; - FF80542C911241FAB9075178 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FF99C502AB691B67373D09AE /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = ../cpp/src/IceUtil/Random.cpp; sourceTree = ""; }; - FFAE60227D1047550CEBCDD7 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/location/Server.swift; sourceTree = ""; }; + 0026EE92FD5C304A025799B2 /* Process.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Process.h; path = src/IceImpl/Process.h; sourceTree = ""; }; + 00B1BC62D4009B18B3E6DE80 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 00C7727DB84AFAE74242A27A /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/exceptions/ServerPrivateAMD.ice; sourceTree = ""; }; + 00F761E139DDBBEA1CA42172 /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = ../cpp/src/IceUtil/Random.cpp; sourceTree = ""; }; + 01108206A582A67F00C05EBC /* Incoming.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Incoming.cpp; path = ../cpp/src/Ice/Incoming.cpp; sourceTree = ""; }; + 012209B06380729805C41D0E /* ServantLocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocator.cpp; path = ../cpp/src/Ice/ServantLocator.cpp; sourceTree = ""; }; + 0141623AD37C70B98DDDA989 /* SlicedData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SlicedData.swift; path = src/Ice/SlicedData.swift; sourceTree = ""; }; + 01BF3D7D7748BB551DE4E9C5 /* Exception.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Exception.swift; path = src/Ice/Exception.swift; sourceTree = ""; }; + 024741EC9D6CFD0898B474E7 /* PropertyNames.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyNames.cpp; path = ../cpp/src/Ice/PropertyNames.cpp; sourceTree = ""; }; + 02F2B04E2560FF1CFFCF86DA /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = ../cpp/src/IceUtil/FileUtil.cpp; sourceTree = ""; }; + 039BF5E6C32CFEAC7B738A87 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 03C85223CF53FA8C62D9D7B6 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Ice/Metrics.ice; sourceTree = ""; }; + 0443C0420CF9B9FDB9AE0E48 /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 04A32B58F4D583452AEE62D6 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/exceptions/Collocated.swift; sourceTree = ""; }; + 051AA64F020D939F0BCE5A50 /* InstrumentationI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationI.cpp; path = ../cpp/src/Ice/InstrumentationI.cpp; sourceTree = ""; }; + 052495E30CFEFD5327466782 /* Service.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Service.cpp; path = ../cpp/src/Ice/Service.cpp; sourceTree = ""; }; + 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Cocoa.framework; sourceTree = DEVELOPER_DIR; }; + 069A48B23F945A72742CD39C /* Connector.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.mm; path = ../cpp/src/IceIAP/Connector.mm; sourceTree = ""; }; + 06FF3EB23F66FB5AF64C1B75 /* IconvStringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IconvStringConverter.cpp; path = ../cpp/src/Ice/IconvStringConverter.cpp; sourceTree = ""; }; + 072DFE1DF91B22D0966DB8E8 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/adapterDeactivation/AllTests.swift; sourceTree = ""; }; + 0753F097A120485770B9AAA7 /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 07B98AB5E4D60D7A85886DB5 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 07F3EDD1A3D763999E9C05E9 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/servantLocator/TestI.swift; sourceTree = ""; }; + 0826EF9628F3B4A99BBD3238 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/exceptions/Test.ice; sourceTree = ""; }; + 089C840BD2340196C1789813 /* UnknownSlicedValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnknownSlicedValue.swift; path = src/Ice/UnknownSlicedValue.swift; sourceTree = ""; }; + 09338C104543AFAA089DE918 /* ServantLocator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocator.swift; path = src/Ice/ServantLocator.swift; sourceTree = ""; }; + 097B3A1E14CCFB09E7E4CF92 /* IceStorm.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceStorm.ice; path = ../slice/IceStorm/IceStorm.ice; sourceTree = ""; }; + 0A4046F75C70A64F2CF9A29E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/udp/AllTests.swift; sourceTree = ""; }; + 0AE70EAEDEBB73331DA341D1 /* WSTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSTransceiver.cpp; path = ../cpp/src/Ice/WSTransceiver.cpp; sourceTree = ""; }; + 0AEBA30C56A413C37FEDC134 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/IceStorm/Metrics.ice; sourceTree = ""; }; + 0AF6D9D6FA59CAFDB3F6AEA8 /* SecureTransportUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportUtil.cpp; path = ../cpp/src/IceSSL/SecureTransportUtil.cpp; sourceTree = ""; }; + 0B858D15CFF07BA0E6A6FBA3 /* LocatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorI.cpp; path = ../cpp/src/IceDiscovery/LocatorI.cpp; sourceTree = ""; }; + 0B8D9DC9A4A10105943CA252 /* IceStormSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceStormSwift.h; path = src/IceStorm/IceStormSwift.h; sourceTree = ""; }; + 0BB35BFDB4D9B787E400326E /* PluginF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginF.cpp; path = ../cpp/src/Ice/PluginF.cpp; sourceTree = ""; }; + 0BF47819089271BCD4443183 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = ../cpp/src/Ice/Exception.cpp; sourceTree = ""; }; + 0C06BC9BB6B575A7285395AC /* TraceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceUtil.h; path = src/IceImpl/TraceUtil.h; sourceTree = ""; }; + 0C8E7374D8D5DA4006B190AC /* IncomingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IncomingAsync.cpp; path = ../cpp/src/Ice/IncomingAsync.cpp; sourceTree = ""; }; + 0CE2427693C29E4CEF450087 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/servantLocator/Server.swift; sourceTree = ""; }; + 0CE33F8BDE00D6E18E58B3C3 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/exceptions/TestAMD.ice; sourceTree = ""; }; + 0DA087232F08332FC98A97BC /* Endpoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.mm; path = src/IceImpl/Endpoint.mm; sourceTree = ""; }; + 0E5299A9AA357D51C620DC87 /* CommunicatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorI.cpp; path = ../cpp/src/Ice/CommunicatorI.cpp; sourceTree = ""; }; + 0E8CA41CAED77683EB6C5E74 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0EFFE201B94FAE9FB1295F1D /* Network.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Network.cpp; path = ../cpp/src/Ice/Network.cpp; sourceTree = ""; }; + 0F2B0C61F19BF428E1751327 /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F4E52F6B53EC59E12989136 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/udp/Server.swift; sourceTree = ""; }; + 0F4F314389C68631ED17CF4C /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/proxy/ServerAMD.swift; sourceTree = ""; }; + 0F906003B06BE6FF5CC28C49 /* Forward.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Forward.ice; path = test/Ice/objects/Forward.ice; sourceTree = ""; }; + 0FB6FFE9F654CF558339B7A0 /* CtrlCHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CtrlCHandler.cpp; path = ../cpp/src/IceUtil/CtrlCHandler.cpp; sourceTree = ""; }; + 0FC2161B7FFDD05E63318911 /* LoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerI.cpp; path = ../cpp/src/Ice/LoggerI.cpp; sourceTree = ""; }; + 1034928BF4CC47FCD19BE01C /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/location/Client.swift; sourceTree = ""; }; + 104801D9CD4099BFAF898CF0 /* OutgoingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutgoingAsync.cpp; path = ../cpp/src/Ice/OutgoingAsync.cpp; sourceTree = ""; }; + 1082EDDCF74692688AF946C2 /* EndpointTypes.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointTypes.ice; path = ../slice/Ice/EndpointTypes.ice; sourceTree = ""; }; + 1083A38AC12CA9C0F45A1422 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/ami/Client.swift; sourceTree = ""; }; + 10A591B1108FD3668546AB65 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/proxy/Server.swift; sourceTree = ""; }; + 111E017C3F3407C4582DC59A /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1124897FAD46E0C20C2CD5AF /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 123567924E68C349BAF887BF /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = ../cpp/src/IceUtil/Time.cpp; sourceTree = ""; }; + 1290DF39C865119AAFCA300B /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1362916B0814388BFB67F664 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 136757D4ECE48D0332330C07 /* ObjectPrx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectPrx.h; path = src/IceImpl/ObjectPrx.h; sourceTree = ""; }; + 13B8F6994B469BFB24A1CBF1 /* ObjectAdapterI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterI.cpp; path = ../cpp/src/Ice/ObjectAdapterI.cpp; sourceTree = ""; }; + 15F534469D81C24FFE8DCEE3 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/exceptions/Test.ice; sourceTree = ""; }; + 16B2D2F24F75A2CEA9588C92 /* ProtocolPluginFacade.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolPluginFacade.cpp; path = ../cpp/src/Ice/ProtocolPluginFacade.cpp; sourceTree = ""; }; + 1727CFF9063FD8695D6AE8AD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Ice/Info.plist; sourceTree = ""; }; + 177CE1264BA28FAD588640ED /* LoggerF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerF.cpp; path = ../cpp/src/Ice/LoggerF.cpp; sourceTree = ""; }; + 17996C6A0CAFEC7E4D7ECECA /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/objects/TestAMD.ice; sourceTree = ""; }; + 17A4E70233C2149ACD8FE4F9 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/timeout/AllTests.swift; sourceTree = ""; }; + 17A5B44F6AAFD44E0B814FED /* SHA1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SHA1.cpp; path = ../cpp/src/Ice/SHA1.cpp; sourceTree = ""; }; + 1805A9AC8B6C175A9078A8BE /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/objects/ServerPrivateAMD.ice; sourceTree = ""; }; + 182EAED50584404F22460330 /* Descriptor.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Descriptor.ice; path = ../slice/IceGrid/Descriptor.ice; sourceTree = ""; }; + 184B082770DE7259A12A3BD1 /* Communicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Communicator.swift; path = src/Ice/Communicator.swift; sourceTree = ""; }; + 18BC8EBDD63E0C2D34096A45 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/location/AllTests.swift; sourceTree = ""; }; + 1916BD7FFB0A4D852F04D618 /* FacetMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacetMap.swift; path = src/Ice/FacetMap.swift; sourceTree = ""; }; + 19266A1DAEA30EF728B73CC3 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/inheritance/TestI.swift; sourceTree = ""; }; + 1A781B49FC82F7FA0184F819 /* Exception.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.mm; path = src/IceImpl/Exception.mm; sourceTree = ""; }; + 1AA5332EE9D7AC564F1B4DC6 /* DefaultsAndOverrides.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultsAndOverrides.cpp; path = ../cpp/src/Ice/DefaultsAndOverrides.cpp; sourceTree = ""; }; + 1B7D798CB60FB962ADC8BB32 /* CollocatedRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CollocatedRequestHandler.cpp; path = ../cpp/src/Ice/CollocatedRequestHandler.cpp; sourceTree = ""; }; + 1BF190DF5F5598B978D43F7C /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/optional/TestAMD.ice; sourceTree = ""; }; + 1C10F4BCD402A666A979D101 /* ImplicitContextI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContextI.swift; path = src/Ice/ImplicitContextI.swift; sourceTree = ""; }; + 1C15A5FB6FD609998456F346 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = test/TestDriver/iOS/Assets.xcassets; sourceTree = ""; }; + 1C76C28FCC88C6C84EFCCBD0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/enums/Client.swift; sourceTree = ""; }; + 1CFF70BA10C4D6AE188D017E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/admin/Client.swift; sourceTree = ""; }; + 1D033003707757F652EA1B85 /* Options.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Options.cpp; path = ../cpp/src/IceUtil/Options.cpp; sourceTree = ""; }; + 1D37440609D6999223F5D3FC /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/operations/TestAMD.ice; sourceTree = ""; }; + 1D90F14637894A37678FC3C4 /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1DA9250AC15D1756168A2B45 /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/IceSSL/EndpointI.cpp; sourceTree = ""; }; + 1DB7EAB0C292EBBB3A8C6797 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/operations/TestI.swift; sourceTree = ""; }; + 1E6FDC3649CBA1598EAEBEA0 /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1FB327988DA6B56153EC048A /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/Glacier2/Session.ice; sourceTree = ""; }; + 1FDA295C05339DC58C0D9F8E /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/servantLocator/TestAMDI.swift; sourceTree = ""; }; + 20112BFE6EAD65723FA67120 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/objects/Test.ice; sourceTree = ""; }; + 20323F0CD7B9AE4569FF4757 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2080E2259670BD44DFA6BF51 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/operations/Test.ice; sourceTree = ""; }; + 20917172F64B1F0658E4FD1D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/scope/Server.swift; sourceTree = ""; }; + 20939A1E0430B68C7B8CBFDC /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/invoke/TestI.swift; sourceTree = ""; }; + 20B33ADC4ED75141C16290D9 /* BlobjectFacade.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = BlobjectFacade.mm; path = src/IceImpl/BlobjectFacade.mm; sourceTree = ""; }; + 213E7606B6C3CA1D4D891CC6 /* DispatchInterceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DispatchInterceptor.cpp; path = ../cpp/src/Ice/DispatchInterceptor.cpp; sourceTree = ""; }; + 219598874AE31277B34A82FA /* ObjectAdapterF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterF.cpp; path = ../cpp/src/Ice/ObjectAdapterF.cpp; sourceTree = ""; }; + 22437CADE6D8C1F4B4F6E399 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/IceSSL/configuration/Client.swift; sourceTree = ""; }; + 228A1E21539BF3DBB96E65FF /* Plugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Plugin.swift; path = src/Ice/Plugin.swift; sourceTree = ""; }; + 23205029365EA8B8CFAB923B /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 23C18BD31119A8393B61B049 /* SecureTransportPluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportPluginI.cpp; path = ../cpp/src/IceSSL/SecureTransportPluginI.cpp; sourceTree = ""; }; + 23CFD2FCAE3C1695E2970A65 /* RequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandler.cpp; path = ../cpp/src/Ice/RequestHandler.cpp; sourceTree = ""; }; + 245956FF449E351AEF203C2A /* BuiltinSequences.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = BuiltinSequences.ice; path = ../slice/Ice/BuiltinSequences.ice; sourceTree = ""; }; + 24D8133BFA0658F49BD7539D /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/operations/ServerAMD.swift; sourceTree = ""; }; + 254F677EC087A0400A2F76B1 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceSSL/PluginI.cpp; sourceTree = ""; }; + 259ABFD3A22C573FDAE353BA /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/ami/TestI.swift; sourceTree = ""; }; + 262A4BBE4803F28C3591381A /* Reference.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Reference.cpp; path = ../cpp/src/Ice/Reference.cpp; sourceTree = ""; }; + 264D776F123D481FEAD06C14 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/inheritance/Client.swift; sourceTree = ""; }; + 2709660761B36C91CB36FD31 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/servantLocator/AllTests.swift; sourceTree = ""; }; + 2817D930A52C7947C86C0F56 /* ImplicitContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContext.cpp; path = ../cpp/src/Ice/ImplicitContext.cpp; sourceTree = ""; }; + 28A0C809966F471AF3580423 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/optional/AllTests.swift; sourceTree = ""; }; + 290B87AA15456D1942D99E39 /* InstrumentationF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationF.cpp; path = ../cpp/src/Ice/InstrumentationF.cpp; sourceTree = ""; }; + 29771C1E7DCB8C9578ECF41A /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/optional/Test.ice; sourceTree = ""; }; + 298C03C34C25D9DDCA4DC7BF /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/optional/TestI.swift; sourceTree = ""; }; + 29F96EFF6178BC3FE5DB0F00 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/retry/TestI.swift; sourceTree = ""; }; + 2C1845D9001948A194C9BF3D /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2C7F78C569CF9618E842EF08 /* PropertiesI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesI.cpp; path = ../cpp/src/Ice/PropertiesI.cpp; sourceTree = ""; }; + 2CAE7DCA47B0E6DA9102DFA0 /* ImplicitContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContext.swift; path = src/Ice/ImplicitContext.swift; sourceTree = ""; }; + 2D1DA1259D07ADB52B759AD3 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2DF8C754C9DA80B0B434EF6B /* Instrumentation.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instrumentation.cpp; path = ../cpp/src/Ice/Instrumentation.cpp; sourceTree = ""; }; + 2EB8E16DCE315D105EBA63E6 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2F988BC0E5C27AAC15798F7E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/info/AllTests.swift; sourceTree = ""; }; + 3002D403128013C2404936BD /* Endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Endpoint.h; path = src/IceImpl/Endpoint.h; sourceTree = ""; }; + 3048472560513EE07558DAEE /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/exceptions/TestAMDI.swift; sourceTree = ""; }; + 30A005FA49909E00786C40AA /* NativePropertiesAdmin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NativePropertiesAdmin.swift; path = src/Ice/NativePropertiesAdmin.swift; sourceTree = ""; }; + 30A8799AA971D15AED949425 /* IAPConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPConnectionInfo.swift; path = src/Ice/IAPConnectionInfo.swift; sourceTree = ""; }; + 30EF7A48D5F3B8AF61ACE1F2 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/stream/Test.ice; sourceTree = ""; }; + 3157232929DAA590D328DEC9 /* LocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorF.ice; path = ../slice/Ice/LocatorF.ice; sourceTree = ""; }; + 316C086D0730E162FA3210E3 /* Process.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.ice; path = ../slice/Ice/Process.ice; sourceTree = ""; }; + 31A7531BFE63552977BE1908 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/binding/Test.ice; sourceTree = ""; }; + 31C4F4C9865AF32911F1A508 /* TestCommon.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestCommon.swift; path = test/TestCommon/TestCommon.swift; sourceTree = ""; }; + 31CED9038EC89062E2687C72 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 32061348E05540BA94F263F1 /* RetryQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RetryQueue.cpp; path = ../cpp/src/Ice/RetryQueue.cpp; sourceTree = ""; }; + 32CAEEF22B4B76CD87E065B0 /* OutputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputUtil.cpp; path = ../cpp/src/IceUtil/OutputUtil.cpp; sourceTree = ""; }; + 32E26E67BE14E1FFE12A7ABD /* BatchOnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOnewaysAMI.swift; path = test/Ice/operations/BatchOnewaysAMI.swift; sourceTree = ""; }; + 32F86D845456A70BA71A7775 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/invoke/Server.swift; sourceTree = ""; }; + 33F4442B1E4EB5B04F907471 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/IceSSL/configuration/Test.ice; sourceTree = ""; }; + 344ED5C42593ED171BE68E29 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/admin/TestI.swift; sourceTree = ""; }; + 34AEBCCD220042AB3BE523A8 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/Ice/Instance.cpp; sourceTree = ""; }; + 356A5466FDDC86F58D1F4D42 /* UdpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpEndpointI.cpp; path = ../cpp/src/Ice/UdpEndpointI.cpp; sourceTree = ""; }; + 35B05AF2B43317CD297363CA /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/timeout/TestI.swift; sourceTree = ""; }; + 35CD479A4FD1B76DA514E6A7 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/proxy/TestAMDI.swift; sourceTree = ""; }; + 35FF9CE9706BA3DC7134F434 /* EndpointF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointF.cpp; path = ../cpp/src/Ice/EndpointF.cpp; sourceTree = ""; }; + 3660CBA3E7714EF6A750EB80 /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 3798FD61820B41A64C69B2A9 /* ObjectAdapterI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapterI.swift; path = src/Ice/ObjectAdapterI.swift; sourceTree = ""; }; + 37BCBC566A446A9FB1903373 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 37F917AF2529230B31D362F2 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/scope/AllTests.swift; sourceTree = ""; }; + 383E5361C48546671985CEC1 /* UUID.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UUID.cpp; path = ../cpp/src/IceUtil/UUID.cpp; sourceTree = ""; }; + 38BF5DB9B9490714A81542C1 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 39C32C927265416D3C9E0334 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/acm/AllTests.swift; sourceTree = ""; }; + 3A334934D39F8288BF273ECE /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = src/Ice/Object.swift; sourceTree = ""; }; + 3A3A0B6FB6D6326BBB4971C4 /* Admin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Admin.ice; path = ../slice/IceGrid/Admin.ice; sourceTree = ""; }; + 3A42A2314F003B797A43F677 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/exceptions/TestAMD.ice; sourceTree = ""; }; + 3A5527F3E66D1C8E580EDC49 /* Current.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Current.swift; path = src/Ice/Current.swift; sourceTree = ""; }; + 3ACEF67499B23A250292B84D /* ObjectPrx.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectPrx.mm; path = src/IceImpl/ObjectPrx.mm; sourceTree = ""; }; + 3C8BAD4C851DA28C1DF9F17D /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 3CE3931DE5E459F004046D20 /* PropertiesI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesI.swift; path = src/Ice/PropertiesI.swift; sourceTree = ""; }; + 3D04234BB20E2E7E05183D0D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/hold/AllTests.swift; sourceTree = ""; }; + 3D9AB0F6AC4AB0F35FE74791 /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 3DCF8EE48A1C89A1B55517AA /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/optional/Server.swift; sourceTree = ""; }; + 3E4932165161ABA64172816A /* UdpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpConnector.cpp; path = ../cpp/src/Ice/UdpConnector.cpp; sourceTree = ""; }; + 3EA30CE30FF86630A51D19F8 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connection.cpp; path = ../cpp/src/Ice/Connection.cpp; sourceTree = ""; }; + 3EAD21EB605F400BA46ECBE5 /* Endpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Endpoint.cpp; path = ../cpp/src/Ice/Endpoint.cpp; sourceTree = ""; }; + 3F9A21CE53736A014B4EDECB /* LocalObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalObject.swift; path = src/Ice/LocalObject.swift; sourceTree = ""; }; + 4066C2CF37F090029B871117 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/retry/AllTests.swift; sourceTree = ""; }; + 407A0D1CC4E333ABC1A0EECD /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/servantLocator/TestAMD.ice; sourceTree = ""; }; + 40A8549E2D87C0E0C7322954 /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 40BDBD839BADBF15799D26C4 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/objects/Server.swift; sourceTree = ""; }; + 417ECCEE604C6E3005DA5A9A /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 42C3558A6946242208F8CFF1 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/operations/Server.swift; sourceTree = ""; }; + 42FCF5F723B9F42D13E7A575 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/exceptions/TestI.swift; sourceTree = ""; }; + 445A79064CF64948393E75BD /* LocalExceptionDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionDescription.swift; path = src/Ice/LocalExceptionDescription.swift; sourceTree = ""; }; + 4496C208706DABE2498E3D0A /* CertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateI.cpp; path = ../cpp/src/IceSSL/CertificateI.cpp; sourceTree = ""; }; + 44C06A1AEDD98E9D1115EB3E /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = src/IceImpl/Exception.h; sourceTree = ""; }; + 44E9A83E6111394E43220448 /* Shared.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shared.cpp; path = ../cpp/src/IceUtil/Shared.cpp; sourceTree = ""; }; + 4530DDD8E7C70EA73CE9806C /* CountDownLatch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CountDownLatch.cpp; path = ../cpp/src/Ice/CountDownLatch.cpp; sourceTree = ""; }; + 460C9BF801CDC866AC4DFE9F /* Initialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Initialize.swift; path = src/Ice/Initialize.swift; sourceTree = ""; }; + 46411EDDE8E438FD8EAE98E5 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultValue/AllTests.swift; sourceTree = ""; }; + 46495D8B50FD3CF57DCEE7F0 /* BlobjectFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlobjectFacade.h; path = src/IceImpl/BlobjectFacade.h; sourceTree = ""; }; + 46BD0BAC03B80804BF23E167 /* Locator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Locator.ice; path = ../slice/Ice/Locator.ice; sourceTree = ""; }; + 47C76C71FAF5177CE46CD3A6 /* IceLocatorDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceLocatorDiscovery.ice; path = ../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice; sourceTree = ""; }; + 488C831449F529C0B214CABE /* ProcessI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProcessI.swift; path = src/Ice/ProcessI.swift; sourceTree = ""; }; + 48E10D0AC873B9C7821B8DCA /* ObjectAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapter.cpp; path = ../cpp/src/Ice/ObjectAdapter.cpp; sourceTree = ""; }; + 4945A8EB3582EC6DE2591D30 /* BatchOneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOneways.swift; path = test/Ice/operations/BatchOneways.swift; sourceTree = ""; }; + 49E2780B30D2DAD681184D1B /* Convert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Convert.mm; path = src/IceImpl/Convert.mm; sourceTree = ""; }; + 4A1720B2080C837E243F2B03 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceIAP/EndpointInfo.cpp; sourceTree = ""; }; + 4A23D3F73B4FB00D1F7749FA /* PropertiesAdmin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropertiesAdmin.h; path = src/IceImpl/PropertiesAdmin.h; sourceTree = ""; }; + 4AA6F7EAE7C3E4C3B39E26A6 /* ACM.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ACM.cpp; path = ../cpp/src/Ice/ACM.cpp; sourceTree = ""; }; + 4AB5AD4F60E4B47BF3908206 /* Clash.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Clash.ice; path = test/Slice/escape/Clash.ice; sourceTree = ""; }; + 4AEA593E8C6F3F0525BEB029 /* TcpAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpAcceptor.cpp; path = ../cpp/src/Ice/TcpAcceptor.cpp; sourceTree = ""; }; + 4B4F81CBE09B9EC7215B359B /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 4D0FE56C219D015301CB1369 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/hold/Client.swift; sourceTree = ""; }; + 4D117E7E0EC5C30487CF9329 /* ObjectAdapterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterFactory.cpp; path = ../cpp/src/Ice/ObjectAdapterFactory.cpp; sourceTree = ""; }; + 4D35CFAF36E324DC12502013 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultServant/Test.ice; sourceTree = ""; }; + 4E225F52C80B142297214C92 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 4FE354D95153ECFD51CECEE4 /* Logger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Logger.swift; path = src/Ice/Logger.swift; sourceTree = ""; }; + 5208C1A489762B290922821B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/facets/AllTests.swift; sourceTree = ""; }; + 521B530EB810B4F3FDF103AE /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 52278F0A9D3CC113108CA88D /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 527D2F42A3A39B2F888A301D /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 52D616F0A4C2D7002EE8EE6C /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 53899169BFAB829939A10CB9 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; + 53905C1AE3214B94DDA79E59 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceSSL/EndpointInfo.cpp; sourceTree = ""; }; + 539605938D0800C084345197 /* InputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputUtil.cpp; path = ../cpp/src/IceUtil/InputUtil.cpp; sourceTree = ""; }; + 53DFCB095E700117F6137EEE /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/servantLocator/ServerAMD.swift; sourceTree = ""; }; + 53F964ABBD543305F85E892C /* SliceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceInfo.swift; path = src/Ice/SliceInfo.swift; sourceTree = ""; }; + 54985FA2DF8607E8EEBCF4D2 /* Incoming.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Incoming.swift; path = src/Ice/Incoming.swift; sourceTree = ""; }; + 54BEEE0D2C2D30B880D903F2 /* EndpointInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointInfoFactory.swift; path = src/Ice/EndpointInfoFactory.swift; sourceTree = ""; }; + 54DC8E443E82EBB5B393862E /* Connector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connector.cpp; path = ../cpp/src/Ice/Connector.cpp; sourceTree = ""; }; + 54F210B44A3817B414C37EF0 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/invoke/AllTests.swift; sourceTree = ""; }; + 55085F9A97549394CFD026B6 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/acm/TestI.swift; sourceTree = ""; }; + 550E7CC0FD0E1918D7A9AB38 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 551620868D0184DF2FBB2F56 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/IceSSL/configuration/TestI.swift; sourceTree = ""; }; + 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 55D284414C8201FF6861AD7E /* Selector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Selector.cpp; path = ../cpp/src/Ice/Selector.cpp; sourceTree = ""; }; + 55EDAF98FFDD5285D1D33F96 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/operations/Collocated.swift; sourceTree = ""; }; + 563E87FE0656F0B5B4ECBC45 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/adapterDeactivation/TestI.swift; sourceTree = ""; }; + 5728530DC35D7B52A550D7E8 /* ThreadPool.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPool.cpp; path = ../cpp/src/Ice/ThreadPool.cpp; sourceTree = ""; }; + 57B4FD55C85D50B346DAC00F /* Key.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Key.ice; path = test/Slice/escape/Key.ice; sourceTree = ""; }; + 57E9BE44DC6129D6174B2306 /* UserAccountMapper.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = UserAccountMapper.ice; path = ../slice/IceGrid/UserAccountMapper.ice; sourceTree = ""; }; + 58E4626AB44A7F584A615366 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 59F988EA1C5CCD503309CAAC /* Util.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Util.cpp; path = ../cpp/src/IceSSL/Util.cpp; sourceTree = ""; }; + 5A2A558DF05365793BE1EDB3 /* InitializationData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InitializationData.swift; path = src/Ice/InitializationData.swift; sourceTree = ""; }; + 5A39082637C810A7FA44C8BC /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/operations/TestAMDI.swift; sourceTree = ""; }; + 5A4F6ED397F0755CDCDD8ACA /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = ../certs; sourceTree = ""; }; + 5A78C4D73F6D7790B04847E2 /* OperationMode.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = OperationMode.ice; path = ../slice/Ice/OperationMode.ice; sourceTree = ""; }; + 5A864DCFB7D453663CD16FD7 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/binding/Client.swift; sourceTree = ""; }; + 5B3CF540FFDDB8D8BB9DF0C5 /* ValueFactoryManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactoryManagerI.cpp; path = ../cpp/src/Ice/ValueFactoryManagerI.cpp; sourceTree = ""; }; + 5CC0CB6129CE22F51EF8C00D /* SlicedData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SlicedData.cpp; path = ../cpp/src/Ice/SlicedData.cpp; sourceTree = ""; }; + 5DAAC857DBB56205C7CCD7F7 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/adapterDeactivation/Server.swift; sourceTree = ""; }; + 5DC630E9AB4CD732D75C3AEA /* ConnectionInfoF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfoF.cpp; path = ../cpp/src/IceSSL/ConnectionInfoF.cpp; sourceTree = ""; }; + 5DF959949FDCEE7CC6B0467A /* OutputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputStream.cpp; path = ../cpp/src/Ice/OutputStream.cpp; sourceTree = ""; }; + 5E49FEDA41C839C2DB5BFA9D /* WSEndpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSEndpoint.cpp; path = ../cpp/src/Ice/WSEndpoint.cpp; sourceTree = ""; }; + 5EC22E4227147E53CE7F4835 /* SysLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysLoggerI.cpp; path = ../cpp/src/Ice/SysLoggerI.cpp; sourceTree = ""; }; + 5F9F46F2B6EF9528E9EEA0A0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/scope/Client.swift; sourceTree = ""; }; + 5FD566BEBA418C9151C0CC95 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/udp/Client.swift; sourceTree = ""; }; + 60CB3BFC19DFE9088A67D092 /* Blobject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Blobject.swift; path = src/Ice/Blobject.swift; sourceTree = ""; }; + 60CB9F01352AB79EE50AD568 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 610608EEED146B107B5293A5 /* MetricsObserverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsObserverI.cpp; path = ../cpp/src/Ice/MetricsObserverI.cpp; sourceTree = ""; }; + 61579E1435780C538ABE9460 /* LocalExceptionFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionFactory.swift; path = src/Ice/LocalExceptionFactory.swift; sourceTree = ""; }; + 61BF1C2278EF3139FA423B0C /* FactoryTableInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTableInit.cpp; path = ../cpp/src/Ice/FactoryTableInit.cpp; sourceTree = ""; }; + 61FD2D97AAE33B8E0DAD2E48 /* UnsupportedAdminFacet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = UnsupportedAdminFacet.mm; path = src/IceImpl/UnsupportedAdminFacet.mm; sourceTree = ""; }; + 6237E0C8AD8FD3CE4B7CFAA4 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/timeout/Client.swift; sourceTree = ""; }; + 623E717A20F91E615D53E150 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 625E4E47BE0B8C13B100A33B /* ServantManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantManager.cpp; path = ../cpp/src/Ice/ServantManager.cpp; sourceTree = ""; }; + 62A61E872435F58924471D31 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/acm/Test.ice; sourceTree = ""; }; + 62FEBA73AE042571D01D4F88 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/inheritance/Test.ice; sourceTree = ""; }; + 6317DF41896C81DC9D6A94F0 /* Buffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Buffer.cpp; path = ../cpp/src/Ice/Buffer.cpp; sourceTree = ""; }; + 6407F8C33CF3719F6547CE3E /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 641754B3600E4B8A31487EBC /* Base64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Base64.cpp; path = ../cpp/src/Ice/Base64.cpp; sourceTree = ""; }; + 646675FFD1880B556F62E835 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/info/Client.swift; sourceTree = ""; }; + 64A4D123257EF075A8AA0433 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultServant/Client.swift; sourceTree = ""; }; + 650FAAE913B2A55BF40BDCC9 /* SliceFlags.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceFlags.swift; path = src/Ice/SliceFlags.swift; sourceTree = ""; }; + 6629A6F5DD07DBEF2C036E46 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 665569D1BB698FBBAD74786F /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6658CBA7425F4413E4A2845D /* ConnectionInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionInfoFactory.swift; path = src/Ice/ConnectionInfoFactory.swift; sourceTree = ""; }; + 669CDFA4C81273C4A8439769 /* Twoways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Twoways.swift; path = test/Ice/operations/Twoways.swift; sourceTree = ""; }; + 66B3742B1FD8BF38A13DB528 /* StringConverterPlugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverterPlugin.cpp; path = ../cpp/src/Ice/StringConverterPlugin.cpp; sourceTree = ""; }; + 6773D68D1A68AE755B5B28D3 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 67AF0C2725586B3CF91B8D5B /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/objects/TestI.swift; sourceTree = ""; }; + 69986A0036CFB94E71AFAEB2 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 699F0DFE09B6CD4066FBF4C3 /* Version.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Version.ice; path = ../slice/Ice/Version.ice; sourceTree = ""; }; + 69C937818B79D71765A58104 /* EndpointFactoryManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactoryManager.cpp; path = ../cpp/src/Ice/EndpointFactoryManager.cpp; sourceTree = ""; }; + 6A510B59CE2B6AA8EFA619EC /* libIceLocatorDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6B3240DA41D618B1A973AB23 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceLocatorDiscovery/PluginI.cpp; sourceTree = ""; }; + 6B7F99C1A7C43654FACDAA54 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6B98B9DFC1163605AFE57B8F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/facets/Server.swift; sourceTree = ""; }; + 6B9E54977F5C39E7DEA70EA5 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/operations/Client.swift; sourceTree = ""; }; + 6C6C2523849920E54B5C3674 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/udp/TestI.swift; sourceTree = ""; }; + 6CE17F65AD7D95CE4D52AEB8 /* Properties.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Properties.cpp; path = ../cpp/src/Ice/Properties.cpp; sourceTree = ""; }; + 6D3DB17839D1905C961285D5 /* PropertyDict.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertyDict.ice; path = ../slice/Ice/PropertyDict.ice; sourceTree = ""; }; + 6D635B8A9885F1816618FFF5 /* Communicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Communicator.h; path = src/IceImpl/Communicator.h; sourceTree = ""; }; + 6E87C9E4A4FD2945C3A68008 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6E8EFB40B36345385787390F /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/optional/ServerAMD.swift; sourceTree = ""; }; + 6E9CE949ADDB5DA57B0A2360 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/exceptions/Client.swift; sourceTree = ""; }; + 6F6F9065B966515883E3A81F /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceSSL/ConnectionInfo.cpp; sourceTree = ""; }; + 7064E95255F87EA955FE604D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/servantLocator/Test.ice; sourceTree = ""; }; + 7100AF407ED59019E77AC492 /* Logger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Logger.cpp; path = ../cpp/src/Ice/Logger.cpp; sourceTree = ""; }; + 716DB7C607CA120F7407022D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/enums/Test.ice; sourceTree = ""; }; + 71C738B29B990967A0EC29C9 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7370B3F9D40F36F1BD730CCA /* TraceUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceUtil.cpp; path = ../cpp/src/Ice/TraceUtil.cpp; sourceTree = ""; }; + 73A88EA74CCC4616D710AFB6 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/location/Server.swift; sourceTree = ""; }; + 7430D6EB5ECE9ED78A4B9BA1 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Thread.cpp; path = ../cpp/src/Ice/Thread.cpp; sourceTree = ""; }; + 748D6B2B330737998D89EFDD /* ProtocolInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolInstance.cpp; path = ../cpp/src/Ice/ProtocolInstance.cpp; sourceTree = ""; }; + 74CAD313ABBD56B539F69B27 /* Plugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Plugin.cpp; path = ../cpp/src/Ice/Plugin.cpp; sourceTree = ""; }; + 7529B82331E9F8857C04C1C1 /* ThreadException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadException.cpp; path = ../cpp/src/IceUtil/ThreadException.cpp; sourceTree = ""; }; + 75539742281DFE7E4DC5F602 /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7592510233717E6CA95DA038 /* StreamSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamSocket.cpp; path = ../cpp/src/Ice/StreamSocket.cpp; sourceTree = ""; }; + 75A01B0041D27E76F5889DE4 /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = test/TestDriver/macOS/main.swift; sourceTree = ""; }; + 75BDF818FC40E0B1A7E2DCCD /* OutputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputStream.swift; path = src/Ice/OutputStream.swift; sourceTree = ""; }; + 75F40F1911A6EA4452908C71 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 76311088F5303F630B9D1AE3 /* ObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectAdapter.h; path = src/IceImpl/ObjectAdapter.h; sourceTree = ""; }; + 7644F0F2714625FA88C9AD42 /* Registry.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Registry.ice; path = ../slice/IceGrid/Registry.ice; sourceTree = ""; }; + 76660D1C75C5895B539F597E /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7817994383F3B13BD7F75310 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/exceptions/TestI.swift; sourceTree = ""; }; + 783AC53508ED2C4B2092DD5C /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Connection.h; path = src/IceImpl/Connection.h; sourceTree = ""; }; + 785159C3CF8A869678895694 /* OpaqueEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpaqueEndpointI.cpp; path = ../cpp/src/Ice/OpaqueEndpointI.cpp; sourceTree = ""; }; + 78C5BD54F95050856DFE68B6 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/admin/Test.ice; sourceTree = ""; }; + 7B839F8BB619665F6310934B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/binding/AllTests.swift; sourceTree = ""; }; + 7C3AA0639A1EDE5ADB774E21 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7D349A4F305ED46BDBBEC05D /* IAPEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPEndpointInfo.swift; path = src/Ice/IAPEndpointInfo.swift; sourceTree = ""; }; + 7DCC9D507EDF3CD2A1A3150F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/udp/Test.ice; sourceTree = ""; }; + 7E752D08EB62E167C213E390 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7ED051A2BDDB9511D133CC34 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/proxy/Client.swift; sourceTree = ""; }; + 8009BD807CE901360AA23914 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/retry/Collocated.swift; sourceTree = ""; }; + 82876D1602C1CC12EE6FAB84 /* StreamAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamAcceptor.cpp; path = ../cpp/src/Ice/ios/StreamAcceptor.cpp; sourceTree = ""; }; + 82C6B16C4B7E40482A56F033 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/exceptions/ServerPrivate.ice; sourceTree = ""; }; + 839B1E915C0CBD0129F6BAC4 /* MutexProtocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MutexProtocol.cpp; path = ../cpp/src/IceUtil/MutexProtocol.cpp; sourceTree = ""; }; + 8425D2B0B3D5867C0C9F3351 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 847F20E8EE2CB3D83F522A4D /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = ../cpp/src/Ice/EventHandler.cpp; sourceTree = ""; }; + 8488FB8F37D7958B38971E9F /* ConnectionF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionF.cpp; path = ../cpp/src/Ice/ConnectionF.cpp; sourceTree = ""; }; + 84A4B98757E5D39A8CF508CD /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 84C9F21E9071D52008E29F7D /* SSLEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLEngine.cpp; path = ../cpp/src/IceSSL/SSLEngine.cpp; sourceTree = ""; }; + 84CFA96B1376810A278A1749 /* Glacier2Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Glacier2Swift.h; path = src/Glacier2/Glacier2Swift.h; sourceTree = ""; }; + 851EBE7BCB0ABDCADDDBE688 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/adapterDeactivation/Test.ice; sourceTree = ""; }; + 857C1887760380EA7D969C13 /* LocalException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalException.cpp; path = ../cpp/src/Ice/LocalException.cpp; sourceTree = ""; }; + 85E5A74751EB43D4ED344FCE /* Communicator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.mm; path = src/IceImpl/Communicator.mm; sourceTree = ""; }; + 8604FDEB96C920773DEF9A73 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/TestCommon/Info.plist; sourceTree = ""; }; + 860EEE47FA5F73DF18371EB0 /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceIAP/ConnectionInfo.cpp; sourceTree = ""; }; + 8629DC53723BDBF2B619738A /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 864791648F2C6EEBD4033544 /* ProxyFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProxyFactory.cpp; path = ../cpp/src/Ice/ProxyFactory.cpp; sourceTree = ""; }; + 86525836B17F14E966E687FC /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 867D107D3A25FB9B5C7EB522 /* InputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputStream.cpp; path = ../cpp/src/Ice/InputStream.cpp; sourceTree = ""; }; + 86BC667FEF2BA5820A7B7BA5 /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = src/IceImpl/Convert.h; sourceTree = ""; }; + 87A3043D1B1B7D7DE0B165C3 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 87F199BFCA75EA1D85ED8573 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/objects/TestI.swift; sourceTree = ""; }; + 883D1C33472953A1CD1DB112 /* Initialize.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Initialize.cpp; path = ../cpp/src/Ice/Initialize.cpp; sourceTree = ""; }; + 885AE89496BA237CFD217347 /* StreamTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamTransceiver.cpp; path = ../cpp/src/Ice/ios/StreamTransceiver.cpp; sourceTree = ""; }; + 8865E47F058CCABBA06DB4AE /* PluginManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginManagerI.cpp; path = ../cpp/src/Ice/PluginManagerI.cpp; sourceTree = ""; }; + 8873EA7FF0431868BF97BF8D /* Context.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Context.ice; path = ../slice/Ice/Context.ice; sourceTree = ""; }; + 888B3167CD8A4968215F0A38 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 897808914C54B9799F9A2F91 /* ReferenceFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReferenceFactory.cpp; path = ../cpp/src/Ice/ReferenceFactory.cpp; sourceTree = ""; }; + 8A39FB52971B8BCC7CD607F3 /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 8A9C59F0ED0E375A09B03481 /* LocalObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalObject.cpp; path = ../cpp/src/Ice/LocalObject.cpp; sourceTree = ""; }; + 8BD60FA4285B90536DAE2ABC /* CommunicatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommunicatorI.swift; path = src/Ice/CommunicatorI.swift; sourceTree = ""; }; + 8BE034D58C57F544FFE3F539 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/facets/Client.swift; sourceTree = ""; }; + 8C01588ADEBCFAC81EF7766F /* libIceLocatorDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8C6C2E58CEE36AE17B95BBDF /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/IceGrid/Session.ice; sourceTree = ""; }; + 8CEA95C263FCF61FDAC35F2D /* TcpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnector.cpp; path = ../cpp/src/Ice/TcpConnector.cpp; sourceTree = ""; }; + 8D126B446148A88233AA2278 /* TcpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpTransceiver.cpp; path = ../cpp/src/Ice/TcpTransceiver.cpp; sourceTree = ""; }; + 8D3D49BC0C29B23231C962C1 /* StreamConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamConnector.cpp; path = ../cpp/src/Ice/ios/StreamConnector.cpp; sourceTree = ""; }; + 8DEFB158CC638F81D597598D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/objects/Client.swift; sourceTree = ""; }; + 90787AF0A37EEA37C85695B9 /* SSLConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLConnectionInfo.swift; path = src/Ice/SSLConnectionInfo.swift; sourceTree = ""; }; + 909200862AB304F9E9056BD3 /* Properties.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.mm; path = src/IceImpl/Properties.mm; sourceTree = ""; }; + 90AB8161442DBB20C4926B3B /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 91079E777372B4F182F41A0A /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/inheritance/Collocated.swift; sourceTree = ""; }; + 91702C97E64FB532023CE75D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/IceSSL/configuration/Server.swift; sourceTree = ""; }; + 91DC2A0D34F096C05AFFAFE6 /* LookupI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LookupI.cpp; path = ../cpp/src/IceDiscovery/LookupI.cpp; sourceTree = ""; }; + 92923B4684A1BF23B89BA01C /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/binding/TestI.swift; sourceTree = ""; }; + 92BDF144EAE646068BBBDC31 /* LocalObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocalObject.h; path = src/IceImpl/LocalObject.h; sourceTree = ""; }; + 92DFE8DFF46D7EFF704D4522 /* ConsoleUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsoleUtil.cpp; path = ../cpp/src/IceUtil/ConsoleUtil.cpp; sourceTree = ""; }; + 935EA09433CAE9AE4444BFCC /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceGrid/Info.plist; sourceTree = ""; }; + 93C246AC846FCC1E1E510D6C /* Mutex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mutex.swift; path = src/Ice/Mutex.swift; sourceTree = ""; }; + 94212BAD957A78E36EC3EED4 /* ConnectionI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionI.cpp; path = ../cpp/src/Ice/ConnectionI.cpp; sourceTree = ""; }; + 943F62DEE4D6B5F3DE6B0D22 /* IceDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceDiscovery.ice; path = ../slice/IceDiscovery/IceDiscovery.ice; sourceTree = ""; }; + 94611F392D00B8B8E3640D6B /* ImplicitContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImplicitContext.h; path = src/IceImpl/ImplicitContext.h; sourceTree = ""; }; + 947C60AB5690BEF1175C6AE8 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 94CF1B1374A50ED7765868B6 /* LocatorInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorInfo.cpp; path = ../cpp/src/Ice/LocatorInfo.cpp; sourceTree = ""; }; + 94E64A8A4468924DD9A7C2D2 /* Transceiver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.mm; path = ../cpp/src/IceIAP/Transceiver.mm; sourceTree = ""; }; + 952160511B9A724C82F64990 /* libIce C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 960889AE80EE23F4AB9A7899 /* TraceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.mm; path = src/IceImpl/TraceUtil.mm; sourceTree = ""; }; + 96F1FC4C6C4A3154388E702E /* ObjectAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapter.swift; path = src/Ice/ObjectAdapter.swift; sourceTree = ""; }; + 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; + 9826BFD5D5016B5B7DA30496 /* UdpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpTransceiver.cpp; path = ../cpp/src/Ice/UdpTransceiver.cpp; sourceTree = ""; }; + 982DC694739062479B93510C /* LoggerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoggerWrapper.swift; path = src/Ice/LoggerWrapper.swift; sourceTree = ""; }; + 984E408AE1C36AB3B759095E /* BatchRequestQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchRequestQueue.cpp; path = ../cpp/src/Ice/BatchRequestQueue.cpp; sourceTree = ""; }; + 98AB2A03D7BA843F9831286D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/objects/AllTests.swift; sourceTree = ""; }; + 99528469CD587F598337AACA /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/location/TestI.swift; sourceTree = ""; }; + 99578A940F2AE450A4088200 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/binding/Server.swift; sourceTree = ""; }; + 9987215BF230537852456754 /* LoggerUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerUtil.cpp; path = ../cpp/src/Ice/LoggerUtil.cpp; sourceTree = ""; }; + 9A5B352FEADCB1E176B01CED /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceDiscovery/PluginI.cpp; sourceTree = ""; }; + 9A5D217FA26C556261BDDDB2 /* ImplicitContextI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextI.cpp; path = ../cpp/src/Ice/ImplicitContextI.cpp; sourceTree = ""; }; + 9A5EDE74C3A3591BBEF47D29 /* ValueFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactory.cpp; path = ../cpp/src/Ice/ValueFactory.cpp; sourceTree = ""; }; + 9B32AF013885664AA93CDF20 /* Controller.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Controller.ice; path = ../scripts/Controller.ice; sourceTree = ""; }; + 9B548B1CC74CF128EB62110C /* RecMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecMutex.cpp; path = ../cpp/src/IceUtil/RecMutex.cpp; sourceTree = ""; }; + 9B9DC4A0F25EC95FDA68E396 /* PermissionsVerifier.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifier.ice; path = ../slice/Glacier2/PermissionsVerifier.ice; sourceTree = ""; }; + 9D31D9B7BAF73B3647C64990 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/objects/ServerPrivate.ice; sourceTree = ""; }; + 9E33109A1F05AA19BCF9156F /* Communicator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Communicator.cpp; path = ../cpp/src/Ice/Communicator.cpp; sourceTree = ""; }; + 9F1F158B962A78341F9EF225 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Slice/escape/Client.swift; sourceTree = ""; }; + 9F4B82012902E7A12E38A2AF /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/objects/ClientPrivate.ice; sourceTree = ""; }; + 9F9C864BECBB215D589B5735 /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A1998FED769C42CDC7AB11C5 /* StringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverter.cpp; path = ../cpp/src/IceUtil/StringConverter.cpp; sourceTree = ""; }; + A1C88ECE6870F60549A0EE24 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Glacier2/Router.ice; sourceTree = ""; }; + A274FC67FF85EE280823CAA5 /* Instrumentation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Instrumentation.swift; path = src/Ice/Instrumentation.swift; sourceTree = ""; }; + A325D1883148FBD7D53A2698 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/objects/AllTests.swift; sourceTree = ""; }; + A369565B5F8B3323E92DFD73 /* Properties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Properties.h; path = src/IceImpl/Properties.h; sourceTree = ""; }; + A3D1AE0406A87BA43230C922 /* FileParser.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FileParser.ice; path = ../slice/IceGrid/FileParser.ice; sourceTree = ""; }; + A4FAE8887A8A2B8B5AB2BFA1 /* Endpoint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Endpoint.swift; path = src/Ice/Endpoint.swift; sourceTree = ""; }; + A60DFD912C3076C2441A6EEB /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/scope/Test.ice; sourceTree = ""; }; + A6DB7AA8D03D71EC9B23B390 /* LocalObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.mm; path = src/IceImpl/LocalObject.mm; sourceTree = ""; }; + A76BBEE914CB874C8B739408 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.15.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; + A76F2988E9F63DA40311F76A /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = src/IceImpl/Logger.h; sourceTree = ""; }; + A85AAECD4BA9FD8995F84E21 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = src/IceImpl/Config.h; sourceTree = ""; }; + A8E6E1452E1DA4C8ED9914AA /* LocalException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalException.swift; path = src/Ice/LocalException.swift; sourceTree = ""; }; + A8FBA68CBD78E9ADC871C4C5 /* Exception.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.ice; path = ../slice/IceGrid/Exception.ice; sourceTree = ""; }; + A92AF9829CC12933812E31B7 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/exceptions/AllTests.swift; sourceTree = ""; }; + A97E29B6434137D42CB3F467 /* StreamEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamEndpointI.cpp; path = ../cpp/src/Ice/ios/StreamEndpointI.cpp; sourceTree = ""; }; + A981A15C3C763E3DF3AFDF3A /* UtilException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UtilException.cpp; path = ../cpp/src/IceUtil/UtilException.cpp; sourceTree = ""; }; + A98619140D09F4A271DA212C /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A9BFE5D27E6A8D49C4BDD2EA /* ImplicitContextF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextF.cpp; path = ../cpp/src/Ice/ImplicitContextF.cpp; sourceTree = ""; }; + AA144D7BB355829B28020F78 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = test/TestDriver/iOS/Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + ACB54D91532B125D146C8F52 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + ACB597B2CB96C20CBF0FDA64 /* InputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStream.swift; path = src/Ice/InputStream.swift; sourceTree = ""; }; + AD8AC0525446464A4513C8E8 /* HttpParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HttpParser.cpp; path = ../cpp/src/Ice/HttpParser.cpp; sourceTree = ""; }; + AE24775D969D93908EB8704B /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + AE9FF7D3CCA47C89D218FFEE /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + AEF69473A2BBE7E2944931A1 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/ami/Server.swift; sourceTree = ""; }; + AF2F997A9136C0D57A644334 /* UnsupportedAdminFacet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnsupportedAdminFacet.h; path = src/IceImpl/UnsupportedAdminFacet.h; sourceTree = ""; }; + AF9A4516C12A26D9D9FBBED9 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/exceptions/ClientPrivate.ice; sourceTree = ""; }; + AFE02F4EBE4026D7ABF4C2FD /* RequestHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandlerFactory.cpp; path = ../cpp/src/Ice/RequestHandlerFactory.cpp; sourceTree = ""; }; + B01C28336B07FA327829314A /* libIceDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + B06214B3EFADD6728F980622 /* IceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceUtil.h; path = src/IceImpl/IceUtil.h; sourceTree = ""; }; + B086B5175F1B76E321C3F86D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/proxy/TestI.swift; sourceTree = ""; }; + B0A16E1F318A236067C0E62C /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/services/Client.swift; sourceTree = ""; }; + B0BFBF405F4644470BC57DA2 /* SecureTransportTransceiverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportTransceiverI.cpp; path = ../cpp/src/IceSSL/SecureTransportTransceiverI.cpp; sourceTree = ""; }; + B1D1ED077D2A30E8ADBE189D /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/proxy/TestAMD.ice; sourceTree = ""; }; + B1E77773C9E5111EC13CAB7D /* ServantManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantManager.swift; path = src/Ice/ServantManager.swift; sourceTree = ""; }; + B215297BE120F8697A57E235 /* Protocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Protocol.cpp; path = ../cpp/src/Ice/Protocol.cpp; sourceTree = ""; }; + B286694690297FFF7DF31EA9 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/retry/Client.swift; sourceTree = ""; }; + B29BEC4319D17CB3605C32E1 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/facets/TestI.swift; sourceTree = ""; }; + B2C05AE8C73A007F79D23190 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + B2D6CB1AC0F0C2259F0F5B65 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/servantLocator/Client.swift; sourceTree = ""; }; + B30555E6708ECEFAA4EDD334 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/scope/TestI.swift; sourceTree = ""; }; + B30F448C0594430A4E0E1449 /* AdminFacetFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AdminFacetFactory.h; path = src/IceImpl/AdminFacetFactory.h; sourceTree = ""; }; + B407E5A8D5B156671264DFC5 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; + B43B0FAA9A029A4458C3590F /* SSLInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLInfo.ice; path = ../slice/Glacier2/SSLInfo.ice; sourceTree = ""; }; + B446E87A9F659C4A964E6F73 /* ValueFactoryManagerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactoryManagerI.swift; path = src/Ice/ValueFactoryManagerI.swift; sourceTree = ""; }; + B4BEBA247618BA49B306637B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/invoke/Client.swift; sourceTree = ""; }; + B4DEA2B3E46B392AE8FA078C /* OptionalFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalFormat.swift; path = src/Ice/OptionalFormat.swift; sourceTree = ""; }; + B5E2090C4D1E0D664633C3C5 /* RouterInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RouterInfo.cpp; path = ../cpp/src/Ice/RouterInfo.cpp; sourceTree = ""; }; + B64E1BCBF28AC80B97565EF1 /* RFC2253.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RFC2253.cpp; path = ../cpp/src/IceSSL/RFC2253.cpp; sourceTree = ""; }; + B667A5C8DD4F6EB3E5C9B46A /* SecureTransportEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportEngine.cpp; path = ../cpp/src/IceSSL/SecureTransportEngine.cpp; sourceTree = ""; }; + B678281893C42981DD91CE27 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + B7A43DB55534C1EC4B2C2B8B /* IceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IceUtil.mm; path = src/IceImpl/IceUtil.mm; sourceTree = ""; }; + B7C84F9F86A2642B4DB21761 /* ConnectionRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionRequestHandler.cpp; path = ../cpp/src/Ice/ConnectionRequestHandler.cpp; sourceTree = ""; }; + B7CC3EAFDBBAED579CB65E02 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + B80D1F29C6A35D955A94B1AE /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = test/TestDriver/iOS/AppDelegate.swift; sourceTree = ""; }; + B88F26BEC7B480A327AB48B0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/interceptor/Client.swift; sourceTree = ""; }; + B8CC643DD42F1A5B6B27A542 /* Notifications.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Notifications.mm; path = ../cpp/src/Ice/ios/Notifications.mm; sourceTree = ""; }; + B93100931C7208B5D3064FEF /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/exceptions/Server.swift; sourceTree = ""; }; + B9394803D622D0ECAAE9E923 /* Proxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Proxy.cpp; path = ../cpp/src/Ice/Proxy.cpp; sourceTree = ""; }; + BB2FDEF71FCA90CDBDB32AAB /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = test/TestDriver/iOS/Base.lproj/Main.storyboard; sourceTree = ""; }; + BBB10CD52BD86395BC343A0B /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + BBB75B8D55DDA16960177189 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/enums/TestI.swift; sourceTree = ""; }; + BBBD5106BD3CD7763C850ACE /* Oneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Oneways.swift; path = test/Ice/operations/Oneways.swift; sourceTree = ""; }; + BC3DC35F22EE9E9C9B4BB176 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/enums/AllTests.swift; sourceTree = ""; }; + BCF9BA52A64AED325C68A383 /* SecureTransportCertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportCertificateI.cpp; path = ../cpp/src/IceSSL/SecureTransportCertificateI.cpp; sourceTree = ""; }; + BD5215EC1E4F66AFE89CA625 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/stream/Client.swift; sourceTree = ""; }; + BE7456538444EC0F07561F0C /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/CFNetwork.framework; sourceTree = DEVELOPER_DIR; }; + BF56A55F9B39D512B0DD722C /* AcceptorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AcceptorI.cpp; path = ../cpp/src/IceSSL/AcceptorI.cpp; sourceTree = ""; }; + BFD81A96B2FEDC7DD5A61FF8 /* ObjectAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.mm; path = src/IceImpl/ObjectAdapter.mm; sourceTree = ""; }; + C12F72D326BA31E4F3222697 /* WSConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSConnector.cpp; path = ../cpp/src/Ice/WSConnector.cpp; sourceTree = ""; }; + C131E5D67136A0CA59E41363 /* Connection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Connection.swift; path = src/Ice/Connection.swift; sourceTree = ""; }; + C170AEFA2DAA25C77B642B50 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/exceptions/ServerAMD.swift; sourceTree = ""; }; + C19E1DCD6ED441B62D90114D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/exceptions/Server.swift; sourceTree = ""; }; + C1AFCED0816ADEA6C571C2E7 /* PropertiesAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesAdminI.cpp; path = ../cpp/src/Ice/PropertiesAdminI.cpp; sourceTree = ""; }; + C1EB023D3B85638F4414F46A /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C2252508F6DC523B17A69C5E /* DynamicLibrary.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DynamicLibrary.cpp; path = ../cpp/src/Ice/DynamicLibrary.cpp; sourceTree = ""; }; + C2C6131D4A6ED131271C07ED /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/adapterDeactivation/Client.swift; sourceTree = ""; }; + C2DCE61256F8846CB481C917 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Ice/RouterF.ice; sourceTree = ""; }; + C2F0B4FF873A76833E941826 /* Transceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Transceiver.cpp; path = ../cpp/src/Ice/Transceiver.cpp; sourceTree = ""; }; + C307ECD76BE33A0CF42D8C5E /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/info/TestI.swift; sourceTree = ""; }; + C3253615704AD8092CF5F9D9 /* TwowaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwowaysAMI.swift; path = test/Ice/operations/TwowaysAMI.swift; sourceTree = ""; }; + C39BB4ED7CFFA4DACD478D9B /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = src/Ice/Util.swift; sourceTree = ""; }; + C4D40FD4D514C6255DCF1E88 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C5A0671B53C97F7A32AFCFA1 /* RemoteLogger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RemoteLogger.ice; path = ../slice/Ice/RemoteLogger.ice; sourceTree = ""; }; + C6AA934BC1D34654E098F584 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultValue/Client.swift; sourceTree = ""; }; + C6C97867F488137BCC0EB004 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/hold/Test.ice; sourceTree = ""; }; + C75AC8274DA14FCDB42058FA /* EndpointFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactory.cpp; path = ../cpp/src/Ice/EndpointFactory.cpp; sourceTree = ""; }; + C8EEEFFBAEF23056FD049102 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceStorm/Info.plist; sourceTree = ""; }; + C931BC0FF471A0F481027ADD /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/proxy/Test.ice; sourceTree = ""; }; + C95A65FBDD4DD8B4198F49DF /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/ami/Test.ice; sourceTree = ""; }; + CA0D87A615782B7CB24C3F4C /* ArgVector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ArgVector.cpp; path = ../cpp/src/Ice/ArgVector.cpp; sourceTree = ""; }; + CAF52D8D0936AD9DAC5FB260 /* Value.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../cpp/src/Ice/Value.cpp; sourceTree = ""; }; + CB3BD1DF07A3C09CF5FF39EB /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/proxy/AllTests.swift; sourceTree = ""; }; + CB5AF66AE62474538F3B4C8A /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Glacier2/Metrics.ice; sourceTree = ""; }; + CB65DF0EB3BC9182E42B33C6 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + CC034BBCB34C7182E33E5260 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/inheritance/AllTests.swift; sourceTree = ""; }; + CC9E31096285763A44ED387C /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + CCFAA81005DA44D89E41494D /* PropertiesAdmin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.ice; path = ../slice/Ice/PropertiesAdmin.ice; sourceTree = ""; }; + CE7D6C632EB030AE96F5F06C /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + CE7FC47F6D6B7DAFEE7F7199 /* WSAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSAcceptor.cpp; path = ../cpp/src/Ice/WSAcceptor.cpp; sourceTree = ""; }; + CF2AEC43FB6AF0355BAC4EF7 /* Logger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.mm; path = src/IceImpl/Logger.mm; sourceTree = ""; }; + CF5998B9EC791F4A15E4E0AF /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/objects/Server.swift; sourceTree = ""; }; + D02E0C0E582227D272D99C1A /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/invoke/Test.ice; sourceTree = ""; }; + D045E859A2B4BFF7C830734D /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/IceSSL/Instance.cpp; sourceTree = ""; }; + D0635A59EF2F6E52013CF218 /* OnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnewaysAMI.swift; path = test/Ice/operations/OnewaysAMI.swift; sourceTree = ""; }; + D0E3AEAA11EF708457A97AFC /* SystemdJournalI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SystemdJournalI.cpp; path = ../cpp/src/Ice/SystemdJournalI.cpp; sourceTree = ""; }; + D18F07031EC4C85F5159AFE9 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + D255BAB7E5E515B654EDAD67 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultValue/Test.ice; sourceTree = ""; }; + D2A78D4720673DAF9D7E7F17 /* IceGridSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceGridSwift.h; path = src/IceGrid/IceGridSwift.h; sourceTree = ""; }; + D30F73A7A6497E2340EAC041 /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + D31585DF150199617B8B170F /* TcpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpEndpointI.cpp; path = ../cpp/src/Ice/TcpEndpointI.cpp; sourceTree = ""; }; + D31F7CBFF920A0CF7FB2382A /* BlobjectAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlobjectAsync.swift; path = src/Ice/BlobjectAsync.swift; sourceTree = ""; }; + D36CEA6C13079203D960A28A /* TraceLevels.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceLevels.cpp; path = ../cpp/src/Ice/TraceLevels.cpp; sourceTree = ""; }; + D3823D97E04C4BFCD7FB534C /* Timer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Timer.cpp; path = ../cpp/src/Ice/Timer.cpp; sourceTree = ""; }; + D44AFC725628521459EA373E /* Value.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Value.swift; path = src/Ice/Value.swift; sourceTree = ""; }; + D570457F4FC3998BFFBC686B /* ConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionFactory.cpp; path = ../cpp/src/Ice/ConnectionFactory.cpp; sourceTree = ""; }; + D7348ED97038DE804E76B4F3 /* EndpointI.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.mm; path = ../cpp/src/IceIAP/EndpointI.mm; sourceTree = ""; }; + D789BAF0BE9CC7DA9EAB63A2 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/ami/Collocated.swift; sourceTree = ""; }; + D78CE34686A4B4BFD16057B6 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/adapterDeactivation/Collocated.swift; sourceTree = ""; }; + D7D1EED80BE188B0BAFB69F1 /* PropertiesF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesF.cpp; path = ../cpp/src/Ice/PropertiesF.cpp; sourceTree = ""; }; + D7D263D2E578BF1F7AF589B9 /* Object.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../cpp/src/Ice/Object.cpp; sourceTree = ""; }; + D7EC10FCBDFB6A2DECEF109D /* PropertiesAdminI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesAdminI.swift; path = src/Ice/PropertiesAdminI.swift; sourceTree = ""; }; + D82D2DB3437A859C9A02427E /* IceSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceSwift.h; path = src/Ice/IceSwift.h; sourceTree = ""; }; + D86BEF346F9EC95AE96B2542 /* Cond.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cond.cpp; path = ../cpp/src/Ice/Cond.cpp; sourceTree = ""; }; + D9380D40DF12A3318B74FC8B /* ImplicitContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.mm; path = src/IceImpl/ImplicitContext.mm; sourceTree = ""; }; + DA4864743AE51C6261C21300 /* Process.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.mm; path = src/IceImpl/Process.mm; sourceTree = ""; }; + DA9E2ECE0BEF16EAE0EA036F /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/objects/ServerAMD.swift; sourceTree = ""; }; + DAFBF6BFF7EDE9F0FB64766F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/admin/Server.swift; sourceTree = ""; }; + DBBA56D618556333971F2555 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/info/Server.swift; sourceTree = ""; }; + DD1F0A3B85E7C703B656F50B /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/enums/Server.swift; sourceTree = ""; }; + DDBB3E496664C584AD5364E5 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + DDF2419DBADC2D1CB04E0823 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/interceptor/Test.ice; sourceTree = ""; }; + DE3D88FE76A1440B3A0C4DF5 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/admin/AllTests.swift; sourceTree = ""; }; + DE4C4A3FC0CBE37945762D1B /* FormatType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatType.swift; path = src/Ice/FormatType.swift; sourceTree = ""; }; + DEF8392F8E40DDD59B323CB4 /* ServantLocatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocatorI.swift; path = test/Ice/servantLocator/ServantLocatorI.swift; sourceTree = ""; }; + E004376D0DBB79789D7E0BB1 /* PropertiesAdmin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.mm; path = src/IceImpl/PropertiesAdmin.mm; sourceTree = ""; }; + E00EC3B82938848CFB40EC31 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/retry/Test.ice; sourceTree = ""; }; + E13FB9A9AF502F1522420390 /* TrustManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TrustManager.cpp; path = ../cpp/src/IceSSL/TrustManager.cpp; sourceTree = ""; }; + E2405C9C20444A782D096AF0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/optional/Client.swift; sourceTree = ""; }; + E2543300D55BB8126BF01178 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultServant/AllTests.swift; sourceTree = ""; }; + E263606DB96A9375B3DB0862 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/hold/TestI.swift; sourceTree = ""; }; + E2876A8434BDA95E5E67FA4D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/location/Test.ice; sourceTree = ""; }; + E2C01CEC70FAB4F5A70D2671 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + E3C9AD082A4CE3A5F5435669 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/timeout/Server.swift; sourceTree = ""; }; + E3F96F9704EBDCFBCAE0D3C3 /* EndpointI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointI.swift; path = src/Ice/EndpointI.swift; sourceTree = ""; }; + E47A14897F2C93447F45EFCA /* libIce C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E4E970020786C4F7F72C5207 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + E512A7FBE87BE4C3D0241122 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/retry/Server.swift; sourceTree = ""; }; + E53219E3EA6910F7E5D579A5 /* OutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OutputStream.h; path = src/IceImpl/OutputStream.h; sourceTree = ""; }; + E560304D19C84FD096965E6C /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/objects/Client.swift; sourceTree = ""; }; + E56A381E1ECD60A933EDE0C3 /* Proxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Proxy.swift; path = src/Ice/Proxy.swift; sourceTree = ""; }; + E57283A07B637882DC9B8F71 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/exceptions/ServerAMD.swift; sourceTree = ""; }; + E5D56F4CFBCB26C84B24DFB5 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/proxy/Collocated.swift; sourceTree = ""; }; + E64154AC1BD079614CFE6D0B /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + E64DA691FE8767C9AE657374 /* MetricsAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsAdminI.cpp; path = ../cpp/src/Ice/MetricsAdminI.cpp; sourceTree = ""; }; + E65F59B3B48188E5E72C27D6 /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + E672D54C33B901EEFAD1A9FF /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/exceptions/TestAMDI.swift; sourceTree = ""; }; + E80B06A40D65F65EF6C553E5 /* RegisterPluginsInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RegisterPluginsInit.cpp; path = ../cpp/src/Ice/RegisterPluginsInit.cpp; sourceTree = ""; }; + E8AFF8ED68FE8D153138422D /* ConnectorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectorI.cpp; path = ../cpp/src/IceSSL/ConnectorI.cpp; sourceTree = ""; }; + E8D821D8582839A7FD652F7F /* OSLogLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OSLogLoggerI.cpp; path = ../cpp/src/Ice/OSLogLoggerI.cpp; sourceTree = ""; }; + E9827291A2B8B54C49FD1C85 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Ice/Router.ice; sourceTree = ""; }; + E9AE62B725D03CDAC1B7BCBF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/operations/AllTests.swift; sourceTree = ""; }; + EA0C9E634315389E93760409 /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; + EA284C28AD71C2D624582DC7 /* LoggerAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerAdminI.cpp; path = ../cpp/src/Ice/LoggerAdminI.cpp; sourceTree = ""; }; + EA63D38F273987B6208237F7 /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/ExternalAccessory.framework; sourceTree = DEVELOPER_DIR; }; + EA894B52D407082F22D345EF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/exceptions/AllTests.swift; sourceTree = ""; }; + EB071CD809B5D6642DD39E53 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/objects/TestAMDI.swift; sourceTree = ""; }; + EB4A218E07221A655D54AA36 /* ObserverHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverHelper.cpp; path = ../cpp/src/Ice/ObserverHelper.cpp; sourceTree = ""; }; + EB64AD8D0C4921CF515944A6 /* CommunicatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorF.cpp; path = ../cpp/src/Ice/CommunicatorF.cpp; sourceTree = ""; }; + EBA8491A44D0E0482F4677BC /* ConnectionI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionI.swift; path = src/Ice/ConnectionI.swift; sourceTree = ""; }; + EBD23A978B397DAF53B55273 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + EBEAB016AE060E51B33C88C5 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/facets/Test.ice; sourceTree = ""; }; + EC3920B0A3180CE9468B5D48 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + EC428F92C038CB75D721C046 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/objects/Collocated.swift; sourceTree = ""; }; + ECAF5F62EDCF29B918CCA154 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/properties/Client.swift; sourceTree = ""; }; + ECE37EE5C08B6FFE1F009314 /* ValueFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactory.swift; path = src/Ice/ValueFactory.swift; sourceTree = ""; }; + ED0D8471106CE1DAD728538A /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + ED98AEC78D53B98EF9216B56 /* SSLEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLEndpointInfo.swift; path = src/Ice/SSLEndpointInfo.swift; sourceTree = ""; }; + EDDF24D23BCAEE53F2E5E335 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Glacier2/Info.plist; sourceTree = ""; }; + EDDFDF674093FB356181A861 /* ConnectRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectRequestHandler.cpp; path = ../cpp/src/Ice/ConnectRequestHandler.cpp; sourceTree = ""; }; + EE02DD17EB206613ADA00EC9 /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/Ice/EndpointI.cpp; sourceTree = ""; }; + EE12756CF23A83E52C61D223 /* NetworkProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkProxy.cpp; path = ../cpp/src/Ice/NetworkProxy.cpp; sourceTree = ""; }; + EE6273EFDFF34C2B0E6CC267 /* StringUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringUtil.cpp; path = ../cpp/src/IceUtil/StringUtil.cpp; sourceTree = ""; }; + EE75E6D4EF3B33DFB659E39C /* Connection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.mm; path = src/IceImpl/Connection.mm; sourceTree = ""; }; + EEAC0D6D20FA5E489B7D4EAB /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + EEB12A56E8C359F1729F44DD /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/acm/Client.swift; sourceTree = ""; }; + EEB9F4EFA4B5E11103B64F2B /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/optional/TestAMDI.swift; sourceTree = ""; }; + EECF4655D8774B8E48A8D6C2 /* Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Properties.swift; path = src/Ice/Properties.swift; sourceTree = ""; }; + EEE2D909D236CA9996023106 /* libIceDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + EF8280C5D17209751E14553C /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F0503C372876754560BBB8C7 /* LoggerWrapperI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerWrapperI.h; path = src/IceImpl/LoggerWrapperI.h; sourceTree = ""; }; + F0FBBD74A0A5794E1AF7F7CA /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F17CE2C8EAC28CBD9A0667B3 /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F1BA415B45FE40D1AF4C892C /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F32ED048C90725C7C38CC684 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS14.0.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; + F48A4C9DD1628D724648AA45 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = test/IceSSL/configuration/../../../../cpp/test/IceSSL/certs; sourceTree = ""; }; + F48CF258CC15C9D7DB246467 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/inheritance/Server.swift; sourceTree = ""; }; + F4B6E42CEF5AD0D3B22131A5 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/objects/Test.ice; sourceTree = ""; }; + F4CCBD4643B37D4081B89334 /* ClassResolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassResolver.swift; path = src/Ice/ClassResolver.swift; sourceTree = ""; }; + F507DE59727141A808786F2E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/hold/Server.swift; sourceTree = ""; }; + F52CDE27C04211B51976AF73 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/IceSSL/configuration/AllTests.swift; sourceTree = ""; }; + F5C224A90E0F866706D2C93A /* Current.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Current.cpp; path = ../cpp/src/Ice/Current.cpp; sourceTree = ""; }; + F624035F99B563D25F09B7C7 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/servantLocator/Collocated.swift; sourceTree = ""; }; + F65E818320EBA8D182AD4B31 /* FactoryTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTable.cpp; path = ../cpp/src/Ice/FactoryTable.cpp; sourceTree = ""; }; + F7263472329A47DFD021C4A7 /* EndpointSelectionType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointSelectionType.swift; path = src/Ice/EndpointSelectionType.swift; sourceTree = ""; }; + F76B6CFDC81E7D00110BA047 /* Acceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Acceptor.cpp; path = ../cpp/src/Ice/Acceptor.cpp; sourceTree = ""; }; + F79211AF57FD9BFFC2CA5E3F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/timeout/Test.ice; sourceTree = ""; }; + F7AF984294EC849DC6C9C7C4 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/acm/Server.swift; sourceTree = ""; }; + F82270A0824387C79330584C /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/exceptions/Client.swift; sourceTree = ""; }; + F87C572B2EE3F2EB8C41205D /* AdminFacetFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdminFacetFactory.swift; path = src/Ice/AdminFacetFactory.swift; sourceTree = ""; }; + F8C2266EFA8E48B90FC6D26F /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = test/TestDriver/iOS/ViewController.swift; sourceTree = ""; }; + F92FE3784F36CF61C114C8A7 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/info/Test.ice; sourceTree = ""; }; + F943822FF946957243189A7E /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/facets/Collocated.swift; sourceTree = ""; }; + F94F9CD8FEEC71F621DD3BB0 /* IceImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceImpl.h; path = src/IceImpl/IceImpl.h; sourceTree = ""; }; + FA5ED0AF00325B25AA3D49E3 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + FA6925D0243F823802CF0D97 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + FB93EDD11FFD843B54F08CD6 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/ami/AllTests.swift; sourceTree = ""; }; + FBA41C7E4F8D63EBFF2A282F /* IPEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPEndpointI.cpp; path = ../cpp/src/Ice/IPEndpointI.cpp; sourceTree = ""; }; + FDB2B8CC413A604BFE6E9BEB /* ControllerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControllerI.swift; path = test/TestDriver/iOS/ControllerI.swift; sourceTree = ""; }; + FF5926EFAECD9C0572AFEE64 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + FF9AEE9480B3623AF7E5DCA7 /* ServantLocatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocatorF.cpp; path = ../cpp/src/Ice/ServantLocatorF.cpp; sourceTree = ""; }; + FFC16F00DE4220D83CB10211 /* Identity.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Identity.ice; path = ../slice/Ice/Identity.ice; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 03002C90EFE637815A0A72E5 /* Frameworks */ = { + 04BAD54A6C582D75141D296D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 24EA0BB9AD25145D45E17784 /* Cocoa.framework in Frameworks */, - F0F4CC4AB409543BCD67B7CA /* Ice.framework in Frameworks */, - DCB7062239CD3916B540E036 /* PromiseKit.xcframework in Frameworks */, - 056B8DF4006FA98ADCDB961C /* TestCommon.framework in Frameworks */, + D5FCA2ECAEAB0118A83B1084 /* Foundation.framework in Frameworks */, + F000C7B14C676D9958496224 /* Ice.framework in Frameworks */, + 7C8AE5C6582DBF5FA5D12218 /* PromiseKit.xcframework in Frameworks */, + BD59F6B7FBF3420436A94A16 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 08C55A113D26874EB5C02B30 /* Frameworks */ = { + 050FCA0466F0A2C79D1D677A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 22BFA9CCC15CD1784546B9E1 /* Foundation.framework in Frameworks */, - 9DF30E51840EEAAA60203C68 /* Ice.framework in Frameworks */, - 6DD62BBF88AF2014E5411470 /* PromiseKit.xcframework in Frameworks */, - F1590D68831B6F374FD8FDAC /* TestCommon.framework in Frameworks */, + 3CF061122BD01A3A50D9DAE0 /* Cocoa.framework in Frameworks */, + 7E6E06DEC096327E76FCE368 /* Ice.framework in Frameworks */, + F15FFA97EB815CA125B02D0D /* PromiseKit.xcframework in Frameworks */, + 99D32FFF57DFC1C87F61B73A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0B40E563316A44A6683EA42E /* Frameworks */ = { + 081D5E6091599199E20BCD0C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6D55911EB4D6369502FA3C64 /* Foundation.framework in Frameworks */, - D3DC99A7D77A0D5587926A92 /* Ice.framework in Frameworks */, - 7F4771F8B5533DDC50215F00 /* PromiseKit.xcframework in Frameworks */, - 49BD7A7897FCAC2A93EEE5E7 /* TestCommon.framework in Frameworks */, + 67D1F7BF9D2EFC7BBCE1D40D /* Foundation.framework in Frameworks */, + 3A300747325BF345D2FD2045 /* Ice.framework in Frameworks */, + 1507DED8F8D6DC4758A2A377 /* PromiseKit.xcframework in Frameworks */, + B0F89911A50D01531A70FD85 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0EA9E0BBBDCDB4A805183653 /* Frameworks */ = { + 0C1567231CCF603369BE0A1A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3AAA11E33B0CA8689101D19E /* Foundation.framework in Frameworks */, - 4E1A703FBCD554DC34159EF0 /* Ice.framework in Frameworks */, - D485D659F29206FE35E13F72 /* PromiseKit.xcframework in Frameworks */, - 1D08717CD679835A0F80AC9E /* TestCommon.framework in Frameworks */, + 787FA1F8D035BE7F702CEFF9 /* Foundation.framework in Frameworks */, + 0862D895FC7F30B13C2FE695 /* Ice.framework in Frameworks */, + 2995EB2F2B5ADF44E37B5F22 /* PromiseKit.xcframework in Frameworks */, + 4A56A0CED3F67194A4F51956 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1054FB4FA1C7CF26A6A0D064 /* Frameworks */ = { + 0F7A2524B0DFD0F27C624F7D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AB76AF0EB53544364B7DECEB /* CFNetwork.framework in Frameworks */, - 485265492B84DDDF7D6499EA /* ExternalAccessory.framework in Frameworks */, - C676B071A8F6FA898A150F6D /* Foundation.framework in Frameworks */, - 8213798EAC108F906AE79A0F /* libIce C++11 iOS.a in Frameworks */, - BE68B16F3FB8BD246ED70E1C /* libIceDiscovery C++11 iOS.a in Frameworks */, - 4FB165B39FD4BE9555418386 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */, - 74BBF559788F38EFFD1CECBF /* Security.framework in Frameworks */, - 411127689BC47D3EF64DBE60 /* UIKit.framework in Frameworks */, + 2FB7707ED1CDB4B417038EDD /* Foundation.framework in Frameworks */, + 9E9E317B02130ED5FC126EC7 /* Ice.framework in Frameworks */, + B2035F4B69A53A945C18D536 /* PromiseKit.xcframework in Frameworks */, + EBBE0DA68CFE17CB462F7A33 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 171C4A90BA726A75547AF7FE /* Frameworks */ = { + 10A9E6818829CF9EAFF1F3CD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 254FC20AF19B2AB1DA3F6ED4 /* Foundation.framework in Frameworks */, - 704AA66EA49BFE92C6D27D53 /* Ice.framework in Frameworks */, - 070EBB35D2B15A992F53033D /* PromiseKit.xcframework in Frameworks */, - 3BF811698BECEA2B8175F1A4 /* TestCommon.framework in Frameworks */, + EC63C9E225E8A81C43F571F5 /* Foundation.framework in Frameworks */, + B6D66631D45C7F3DBA49048B /* Ice.framework in Frameworks */, + D153EC50266E9B2F09907800 /* PromiseKit.xcframework in Frameworks */, + 9E289FCA7BA6C73117470546 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1A7F3764046C3DBAE17928D9 /* Frameworks */ = { + 117D55DE7670DA2B05A6D64D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F4E103C783B4C53DDFDA2EEC /* Foundation.framework in Frameworks */, - 07492536973EB71E6B679F94 /* Ice.framework in Frameworks */, - F22C86CEE908C2D798E45CC4 /* PromiseKit.xcframework in Frameworks */, - 64BE5003052F0E83B3C62B28 /* TestCommon.framework in Frameworks */, + 4E66E803E7AFC81462FCFB66 /* Foundation.framework in Frameworks */, + 08FABEF1E13D5FEEC9454D1E /* Ice.framework in Frameworks */, + CEE0F269C74426DE6DB3DAD6 /* PromiseKit.xcframework in Frameworks */, + BAF5E489392114DC2B84822F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1E292281FE72E31B659889D0 /* Frameworks */ = { + 15F0EFA54A71375556FA69E5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 41501CB46CD0860E5344FF1E /* Cocoa.framework in Frameworks */, - F169698C5AE8C61A7A1B015E /* Glacier2.framework in Frameworks */, - 10E20347DCDE7E98D6B032E5 /* Ice.framework in Frameworks */, - B40553C47ACFF50B1A03BFE4 /* IceGrid.framework in Frameworks */, - 9C525F5D657452E38C3D5299 /* IceImpl.framework in Frameworks */, - 0B13305191DE6D726E6DF202 /* IceStorm.framework in Frameworks */, - DC8F6E8D538B88B5ED6F1107 /* PromiseKit.xcframework in Frameworks */, + 80A12B2043A9A99F8B48E108 /* Foundation.framework in Frameworks */, + BF6B21A85068A6A6CC69B6F4 /* Ice.framework in Frameworks */, + 338650FF2D4A1BB972846AC8 /* PromiseKit.xcframework in Frameworks */, + AA91EE92EDBDF9C3B9BA2A60 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 22E96229AAC022EFCED7CE61 /* Frameworks */ = { + 170FE239220FCD1C495B6CAF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 33D6C496A2254C171A6AED27 /* Cocoa.framework in Frameworks */, - 49AB6D9F76B71E6A935E2C0D /* Ice.framework in Frameworks */, - 9EE0DAABEEFD5FE35FEF08D2 /* PromiseKit.xcframework in Frameworks */, - EBCA72748C8D491B5C04D315 /* TestCommon.framework in Frameworks */, + 9F87661B5B22D9C4863CCB8F /* Cocoa.framework in Frameworks */, + C81496216924244A9E8178C7 /* Ice.framework in Frameworks */, + DCB11FBA6D5CA80E865C2819 /* PromiseKit.xcframework in Frameworks */, + 62C75AA5E2F9462280B14ED6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 257358A49EDC4DD950BE92C9 /* Frameworks */ = { + 17C34293249186306E0389C9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 54743BB925951525AFC2116C /* Cocoa.framework in Frameworks */, - 7085FB1B5DD93FF7D5425659 /* Ice.framework in Frameworks */, - FFEA8322B9E288491729A66B /* PromiseKit.xcframework in Frameworks */, - A8FDE3B374515C263547E679 /* TestCommon.framework in Frameworks */, + CC42C6CB3220213E9E19480B /* Cocoa.framework in Frameworks */, + DBD9C22B3087AE2BE513DAB7 /* Ice.framework in Frameworks */, + E89BA43278472B643EAAB3B6 /* PromiseKit.xcframework in Frameworks */, + DBCA5CCA1700E23B869F20D0 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2738A3546E0DDA4969F3016D /* Frameworks */ = { + 1B9E81991548528CE7E8BFBB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A1BA85247442A911E549835A /* Foundation.framework in Frameworks */, - 9B723F3658960090D6568889 /* Ice.framework in Frameworks */, - 345BD76BF49CCC1DF1E06039 /* PromiseKit.xcframework in Frameworks */, - 6B3424D4D3B94B73C9D6F8E1 /* TestCommon.framework in Frameworks */, + 9E8E5B398CE5DC0CFCF02101 /* Glacier2.framework in Frameworks */, + 4024701E9F4ACCF8AB23ABC7 /* Ice.framework in Frameworks */, + F982DDE3FB82C7D1898A75EA /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2929744F90ED76DA401853BC /* Frameworks */ = { + 1FB77E020C94D6255CBA55FA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DFD7725125172C2C08211776 /* Cocoa.framework in Frameworks */, - 20F258BAD0EE09D3FEDFF770 /* Ice.framework in Frameworks */, - A34D5957B8FB8F1FBA842AAA /* PromiseKit.xcframework in Frameworks */, - 8934ED7B9A151D27B8CBF5C2 /* TestCommon.framework in Frameworks */, + 809946911F1EF30B663ACC2A /* Foundation.framework in Frameworks */, + 243364C28ED03D10E5FB3CA1 /* Ice.framework in Frameworks */, + 9BF0A328E074D17A570E7617 /* PromiseKit.xcframework in Frameworks */, + EBD24F5DB9010C8B469F9827 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2D981833CC8FBEDFAEA491DA /* Frameworks */ = { + 204A198613FC71122473A254 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - CB80FD67325978394B00A514 /* Cocoa.framework in Frameworks */, - 39FAD3177C4BEFB8221A7752 /* Ice.framework in Frameworks */, - BF46EBF5DCD87A39A3BF02A0 /* PromiseKit.xcframework in Frameworks */, - 1D6D3B8D7D344C8F284DED5D /* TestCommon.framework in Frameworks */, + FC7B26ED74639F2BB9F93A02 /* Foundation.framework in Frameworks */, + 30205464EC737F45B69C26E7 /* Ice.framework in Frameworks */, + ED8968CF101C1ACB84813849 /* PromiseKit.xcframework in Frameworks */, + 05372BF0755A63B4D7F7719E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 30B7EF8233591FD7F4FC7DD6 /* Frameworks */ = { + 20BFB48425DC59B7EB1CF535 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 93226176A7454027D65A5725 /* Cocoa.framework in Frameworks */, - 845478051C8826B4A74F84CC /* Ice.framework in Frameworks */, - 421CB7581BE042B95301A003 /* PromiseKit.xcframework in Frameworks */, - 6333E0DD25B14D8989A8DCDE /* TestCommon.framework in Frameworks */, + 15FD882CA27413DE0F49BA47 /* Foundation.framework in Frameworks */, + C5762D07DF81F6545ED7D54A /* Glacier2.framework in Frameworks */, + 64915A83269638F4343A9B15 /* Ice.framework in Frameworks */, + 1F517EBF12320E73F70F5AA7 /* IceGrid.framework in Frameworks */, + 46E6DF799438F7400A518777 /* IceStorm.framework in Frameworks */, + EC0384061AFFE85E8AB9C198 /* PromiseKit.xcframework in Frameworks */, + FF242AA9EF6B6A08B2C704D7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 333B0F42C2DF1CA7DBAA70FA /* Frameworks */ = { + 283FB009630341DAD17469AC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 11FF1324D8EC75E9DB1420C3 /* IceImpl.framework in Frameworks */, - 3C67B902CEE9CE73ECF71EA6 /* PromiseKit.xcframework in Frameworks */, + 63B7797EF929CDA27B444C39 /* Foundation.framework in Frameworks */, + 3DB726F734862E4EEF4130F7 /* Ice.framework in Frameworks */, + 6398C43CC7E21C1827260529 /* PromiseKit.xcframework in Frameworks */, + D2EC16CDEC89CB28A7ECC4B8 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 37DE080F347BD90B7BBF3015 /* Frameworks */ = { + 2923CF8B8E12477B3B3F0865 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 820DD7926788B37D5A447D6C /* Glacier2.framework in Frameworks */, - E0C8BDEEF18485F39295CE9B /* Ice.framework in Frameworks */, - 96A76C5CB4A38EAF7FA8982A /* PromiseKit.xcframework in Frameworks */, + 28DAD5B7044F8811A0E05B0E /* Foundation.framework in Frameworks */, + E4AE87EB9BC7E71107135D00 /* Ice.framework in Frameworks */, + 1B80D7C545F9A73A92A3B923 /* PromiseKit.xcframework in Frameworks */, + 9625F96F5B2DA2128F38A766 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 389135B675237CD8C315291E /* Frameworks */ = { + 2CED16271A7251484C385690 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 35AE4286A792BC9C566E98DB /* Foundation.framework in Frameworks */, - D8E20DACF6392FD30804B0D0 /* Ice.framework in Frameworks */, - B58F22D92AA4DAB98534102B /* PromiseKit.xcframework in Frameworks */, - C198718BB744F40C54F3A64A /* TestCommon.framework in Frameworks */, + 0D7EFEBA6A9B4AE0904EA614 /* Foundation.framework in Frameworks */, + 9FE9A033D9A7E93EAF3910C4 /* Ice.framework in Frameworks */, + EA6D83B47C084C836B155733 /* PromiseKit.xcframework in Frameworks */, + 083B4ABA39CF77E46070E0CF /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 38A30BF368587D5331801126 /* Frameworks */ = { + 2D4B8047B44D76BD331EB826 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9F8D650B3D4930591928D56E /* Cocoa.framework in Frameworks */, - EF79D3396CCB50892EDA7B2B /* Ice.framework in Frameworks */, - A92ADF8377CE2E6C9CC0D845 /* PromiseKit.xcframework in Frameworks */, - AA54E977253EC98DDD8BD88C /* TestCommon.framework in Frameworks */, + FBBCD12CB9D5CA67DBDD41E1 /* Cocoa.framework in Frameworks */, + 2AC04CDAD01D9DE947F7BCF3 /* Ice.framework in Frameworks */, + 3A6A457DBFB9C18C408B95E9 /* PromiseKit.xcframework in Frameworks */, + DB25127E76899AD620191D16 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 39695CF1EB348643B8ECC770 /* Frameworks */ = { + 2DD679EBE33EA28973E97CE2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6CE9F7E7C0345CBF66D21E50 /* Foundation.framework in Frameworks */, - 61B702BA9B69ED3FA0FF7760 /* Ice.framework in Frameworks */, - 80AA56660C754B715AA9C10D /* PromiseKit.xcframework in Frameworks */, - 7AEA9447315B84ECD967D4FE /* TestCommon.framework in Frameworks */, + F60726DED3F8C32EDC364E5E /* CFNetwork.framework in Frameworks */, + 2231279E9F256B0B395FC509 /* ExternalAccessory.framework in Frameworks */, + 1B440BF02864D6B8271B0A62 /* Foundation.framework in Frameworks */, + 441FB4DEBABB3F66593FD472 /* libIce C++11 iOS.a in Frameworks */, + 151D8C47C55E4416AF6B11DF /* libIceDiscovery C++11 iOS.a in Frameworks */, + 9FD7D2A4411E0993C9BC89B5 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */, + BAE2651008892F7A89A3905B /* Security.framework in Frameworks */, + 682F19F25DB41B208374EE97 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 399D208837EDCF48AC2A4519 /* Frameworks */ = { + 2EE446DDB7698D9EFD7BD4D7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + BCACC500C9573DB69AF80F00 /* Foundation.framework in Frameworks */, + 28CF14C38303CA25BE961124 /* Ice.framework in Frameworks */, + 82BEA96ABDBD8803939F7F24 /* PromiseKit.xcframework in Frameworks */, + 22E551533CEADB6D0DCE21F9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3BDA4E445ACB0AD365C74687 /* Frameworks */ = { + 31FB515E0D1B88401DF0F91E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 74D1AED362D03626DDB0D4BC /* Foundation.framework in Frameworks */, - 517C213E097EA805EB42AC50 /* Ice.framework in Frameworks */, - 9A20C8D52FC5AA74F246ABCE /* PromiseKit.xcframework in Frameworks */, - 332C08B11E505B76EC482E65 /* TestCommon.framework in Frameworks */, + 22AE1A032B0CAB4DEF018BC8 /* Cocoa.framework in Frameworks */, + 8A4DE6709B669E026271F2C9 /* Ice.framework in Frameworks */, + 46F614989B590A0C1A43D6D6 /* PromiseKit.xcframework in Frameworks */, + 0DE28B2E8764B81D88E14BB8 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3C0007CD6741A74F1A7A48D7 /* Frameworks */ = { + 3B3BC4302997971676561F02 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 840CEDD6341336C27FA54D77 /* Foundation.framework in Frameworks */, - 33ED316D21501F28A66087D7 /* Ice.framework in Frameworks */, - 1297254876059CDC3579B4C9 /* PromiseKit.xcframework in Frameworks */, - 8B71CF3E64FA78D0F82D03C1 /* TestCommon.framework in Frameworks */, + 2C72E73DC2B678BCFCB5E569 /* Cocoa.framework in Frameworks */, + 5C1B98574EA118AFBB73E88A /* Ice.framework in Frameworks */, + 4F394A8821C1A621A16CA9B5 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3FE56539D5B16E4CF3A7A6CA /* Frameworks */ = { + 3B55A16059E0DFBD64EAF00E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 85E6A52C345AF901D0F9C50C /* Cocoa.framework in Frameworks */, - 6FF2D48A8780835AACC3A9C3 /* Ice.framework in Frameworks */, - 5ED85E8756E6F6FCE7AB131F /* PromiseKit.xcframework in Frameworks */, - 7BDEB5DEB09165F64C6C07FD /* TestCommon.framework in Frameworks */, + C791A58653F684CACAC0C044 /* Cocoa.framework in Frameworks */, + 151DDAFA47B8ADD3D4B86F76 /* Ice.framework in Frameworks */, + 8B0482C7FCF2A1BA5293851C /* PromiseKit.xcframework in Frameworks */, + 4C343EA6D74F70FB09E1A7FD /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4225DE0ABFAFD6A5B629A73F /* Frameworks */ = { + 3CB9F8DEC2F44EF89307391D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 67E1A5DCEDFEE9B30AF6DBF4 /* Foundation.framework in Frameworks */, + F5BEA2EED4C65B3DAE24BD89 /* Ice.framework in Frameworks */, + 12100F39595AFD02BC5F7624 /* PromiseKit.xcframework in Frameworks */, + 24BA557DC339872F595A77BA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 42B5B51628781D8D580FCCA9 /* Frameworks */ = { + 3E0103E2585D26982A6D31E7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B34ED408956561DE1ED521D4 /* Cocoa.framework in Frameworks */, - F54D9BE425DB88876FF6645D /* Ice.framework in Frameworks */, - D8DDC0C388B2F2668B76882F /* PromiseKit.xcframework in Frameworks */, - B9CB61390AE16B3D433332CA /* TestCommon.framework in Frameworks */, + FF94B860B7BEA9E1457D83AD /* Foundation.framework in Frameworks */, + D85502B5DD415C191999FC52 /* Ice.framework in Frameworks */, + 91F37D276B3C3CBD684876B4 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4338F70855D84CB1D837309C /* Frameworks */ = { + 4392D0D4C892065A256DF985 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 125384E9C8C8895C756DF450 /* Cocoa.framework in Frameworks */, - 2E97A144E2DA0A160918A0B3 /* Ice.framework in Frameworks */, - 12D3007DA8C1B503B47CFE0F /* PromiseKit.xcframework in Frameworks */, - 3EEBA2EDD362264F2A38FCB1 /* TestCommon.framework in Frameworks */, + CEB1C40BD472C200638316CF /* Foundation.framework in Frameworks */, + 0B7A95230903FA8C03003FCA /* Ice.framework in Frameworks */, + 931AE25BE4E64DB26AD849CC /* PromiseKit.xcframework in Frameworks */, + B2DF0CB00702A0398BC76D2D /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4344970BC2EDC456530C36A1 /* Frameworks */ = { + 4457BF715A1812CE4382BDB6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 44AB013182C89AF5F71B511F /* Foundation.framework in Frameworks */, - DE554A61DB28E261D8B3A9D8 /* Ice.framework in Frameworks */, - FC5BC27134FCE34AE9F55320 /* PromiseKit.xcframework in Frameworks */, - EEEB1862D4E5355BEBC87E23 /* TestCommon.framework in Frameworks */, + 6A003273EC22AD6896290404 /* libIce C++11 macOS.a in Frameworks */, + 63C21F69B4FA5FBE2B9F03BA /* libIceDiscovery C++11 macOS.a in Frameworks */, + F409F00F203EC89CA51E0A38 /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */, + D08C9B039F3B7FFA8A628B3E /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 47996774354869BDD5E2817F /* Frameworks */ = { + 480014FEF9CE3E5FA6D7F184 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7148836C749DFCC362FAB952 /* Cocoa.framework in Frameworks */, - DCB4D20442F1878CCF4B8372 /* Ice.framework in Frameworks */, - 5CC58D4B6354F3E1A21F67E8 /* PromiseKit.xcframework in Frameworks */, - 1AF0DDBC559BB5D445FB0A61 /* TestCommon.framework in Frameworks */, + 5A58FCF998EF33D64C39C23D /* Foundation.framework in Frameworks */, + C14A8BB9ACABDBDC2EFC985C /* Ice.framework in Frameworks */, + 66FDBA47A5715EAD2C524C4A /* PromiseKit.xcframework in Frameworks */, + 4A33D7C70788D24C4ACE5DDD /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4912B80B1313E741407D866F /* Frameworks */ = { + 49EB2686A47CA3035B5D5931 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 753296DB0C528AD21D7084DB /* Cocoa.framework in Frameworks */, - EE8E048FE9A8F89187C213D1 /* Ice.framework in Frameworks */, - F83122E600F6C235FACB5041 /* PromiseKit.xcframework in Frameworks */, - 2181F0AD253C7C3EF2C6D308 /* TestCommon.framework in Frameworks */, + 63087916BE595731F32AF218 /* Foundation.framework in Frameworks */, + D43A0276A7E9664595C9F36B /* Ice.framework in Frameworks */, + 871C9625015AA4FF703DEF2E /* PromiseKit.xcframework in Frameworks */, + 93269C8D9CEF7ABDB75301B9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9B2B0185CCAA7FD7FAA466 /* Frameworks */ = { + 4A2CB4D8C78C4B319C72D082 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + B21EC75B9C09FC3EBF1905BC /* Foundation.framework in Frameworks */, + 7AEED7CC582485369211CBC6 /* Ice.framework in Frameworks */, + 43C51957B5E17FDD6C8D16FE /* PromiseKit.xcframework in Frameworks */, + 0CCA4D2914190B3E279D8B90 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5074C8710F531749B559D654 /* Frameworks */ = { + 4A59713A78007D44BF693678 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 47A88FA52B1CE103B754C0E0 /* Foundation.framework in Frameworks */, - D6BA33D6493921BE20C7E0FA /* Ice.framework in Frameworks */, - DDFF4628FDEEBB8329C977E3 /* PromiseKit.xcframework in Frameworks */, - A28677345C2C65FF7867309D /* TestCommon.framework in Frameworks */, + 8A19C0F341C695F17A7A9EBE /* Cocoa.framework in Frameworks */, + 4C2B315490C533624127FAE9 /* Ice.framework in Frameworks */, + D8C81CE7F1DED28C44ABB600 /* PromiseKit.xcframework in Frameworks */, + 969CBA3C3CF4D1BB678D89EC /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 52160D59C60F78DCB817F32A /* Frameworks */ = { + 4D469B9E372D64EF06F90C6F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + CDE84069274E7AA63091B286 /* Cocoa.framework in Frameworks */, + 9F92C5F149B853CC995E232A /* Ice.framework in Frameworks */, + 3CA6C0464036C0B817007A46 /* PromiseKit.xcframework in Frameworks */, + 3A59718C7DF060E457DD3DA6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5307656E1CA96839A50B1D38 /* Frameworks */ = { + 4D5DE839DBEF6FE4290079E4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2959F6EB62C8F824441DDB06 /* Cocoa.framework in Frameworks */, - 2FCC3AE62D31D52E775F46BB /* Ice.framework in Frameworks */, - 16CF294551FA8A6E854AFAAC /* PromiseKit.xcframework in Frameworks */, - 7A96FF1140F5489EA38AF239 /* TestCommon.framework in Frameworks */, + 8ED95361CECF3A6567470C56 /* Cocoa.framework in Frameworks */, + EA51FF5B9B7905F24C928234 /* Ice.framework in Frameworks */, + 428C932CEC8D496A09081B04 /* PromiseKit.xcframework in Frameworks */, + F8AE7086EF9EDB76BE7A3A53 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58ACA75F58B30E2E8A2D79F0 /* Frameworks */ = { + 526A78150CEC0DC513C23FA9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E31C7D7C89F32503866496D5 /* Cocoa.framework in Frameworks */, - 2F40C81A632AEA8546F7ABAC /* Ice.framework in Frameworks */, - 103668E8E406C6F322816D48 /* PromiseKit.xcframework in Frameworks */, - 5FBF101240C63396564E6718 /* TestCommon.framework in Frameworks */, + 623EC808571025B7AB023173 /* Foundation.framework in Frameworks */, + 016D532E9D6B59BAFC1A65E9 /* Ice.framework in Frameworks */, + 8DAD2AC8F8CF08679A296548 /* PromiseKit.xcframework in Frameworks */, + 569276BD74AAFEECCA2ED63B /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58D9E510A9859F1DF2FBC7E4 /* Frameworks */ = { + 52A82FE47013310F296127FD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8278369E116B478C0C3BD62F /* Cocoa.framework in Frameworks */, - D1FA9CE5AD29F87058BF2A3E /* Glacier2.framework in Frameworks */, - C532B6FFEAE6482B2A5CAB11 /* Ice.framework in Frameworks */, - 4041D25E665FFC4CE69B94A6 /* IceGrid.framework in Frameworks */, - B2434136999150ECCA42352C /* IceStorm.framework in Frameworks */, - 48680CCEDEB891AE8EF7F9E9 /* PromiseKit.xcframework in Frameworks */, - EE710C8BDFBB2810FA2F3C08 /* TestCommon.framework in Frameworks */, + 5228591E57F8B56D8145739F /* Cocoa.framework in Frameworks */, + B2A519C09270B84605895A6F /* Ice.framework in Frameworks */, + 1A5C9A8E1B9EB05D2029E596 /* PromiseKit.xcframework in Frameworks */, + 83E24C9B70C54A07077AC0C7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5AA0C6FD48872CDC5D3C72DC /* Frameworks */ = { + 5377C93A323471D70E6CD0CB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - FCD5F1EF6FD6EA1DFF42F964 /* Cocoa.framework in Frameworks */, - A707DD230F8734C7F12B204B /* Ice.framework in Frameworks */, - CECC3B46D342E0CF40FC68CF /* PromiseKit.xcframework in Frameworks */, - EA1405958234BCAC8A703D33 /* TestCommon.framework in Frameworks */, + F5F3067FDC9D9F16CB71BA52 /* Cocoa.framework in Frameworks */, + 7B5B54D1B3A5C346B8B31807 /* Ice.framework in Frameworks */, + 2B080DA92DFD0C14662D1B57 /* PromiseKit.xcframework in Frameworks */, + 3BF94AEAF11638FF2023B6E4 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5D433EC02B004D382ACC5A6B /* Frameworks */ = { + 551A33C4769D54FE2E0B181D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 39817A4094B6FBD024DF46B2 /* Cocoa.framework in Frameworks */, - 2221886DF511586574DFD643 /* Ice.framework in Frameworks */, - 79BA71A3D0D7A0C4438AFCC1 /* PromiseKit.xcframework in Frameworks */, - 45577A9F611C86E97249E75C /* TestCommon.framework in Frameworks */, + 02563DFBF11EF3AC04BDA54B /* Foundation.framework in Frameworks */, + D3C12C588ECD99B77FD53F5F /* Ice.framework in Frameworks */, + 9E58EC0247EC4CD99BF56748 /* PromiseKit.xcframework in Frameworks */, + AE67083C56398BC5DE7D4D99 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 60CA31B074CDF4D99A3ED0B5 /* Frameworks */ = { + 55224A4B1A2B2FF203837392 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E2A320E5CE0DF866CC81A6D4 /* Foundation.framework in Frameworks */, - D0364F3F425C395537197FD0 /* Ice.framework in Frameworks */, - CFF37FEB720497989956480C /* PromiseKit.xcframework in Frameworks */, + F008FF5C531FCFA968DB43FC /* Cocoa.framework in Frameworks */, + 75D4023894060253FF73C1B4 /* Ice.framework in Frameworks */, + 2CFACED03E2DD9B7C026EE0E /* PromiseKit.xcframework in Frameworks */, + 505713015BF559EAB37FDE0E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 62526843A68A93AD8005A93C /* Frameworks */ = { + 62093BE74F53D2410F354FB3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 0E2B363E690A224CF1BE537E /* Cocoa.framework in Frameworks */, + 52AC421DE2E727BBC7BBFE5C /* Ice.framework in Frameworks */, + 32C555D12D60C06AD0D87EBC /* PromiseKit.xcframework in Frameworks */, + 14003DF2C2853A4E8EB766EB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6274C70D4B655BDB6F78024A /* Frameworks */ = { + 62FA6B43A012A2B27F747639 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C07A766A35CC4BF62AE148CC /* Foundation.framework in Frameworks */, - 82E1FB20B81554EB0579165D /* Glacier2.framework in Frameworks */, - 74CDC0ADB3298AC8D206F5AB /* Ice.framework in Frameworks */, - 5ADEEE5D14E8BDB82E80A7D8 /* IceGrid.framework in Frameworks */, - D2CBF14D9C3D0941A1D2CCD0 /* IceStorm.framework in Frameworks */, - 285733CC3256AC49BFDD9FB6 /* PromiseKit.xcframework in Frameworks */, - A0C27378E1B1A8B6E7F53FA3 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 65FE965E05FC83E506ED93B4 /* Frameworks */ = { + 652F989614A0CD7EA9C93857 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1606ED874F463AF9916C8A85 /* Cocoa.framework in Frameworks */, - 4E966822BB21CE62BA8FFC04 /* Ice.framework in Frameworks */, - ED06B38FB0FE8F6AC26D5857 /* PromiseKit.xcframework in Frameworks */, - 6FEF923DD090237AEC7A66B6 /* TestCommon.framework in Frameworks */, + D78A6E3CEF457BBFFB8E4BBB /* Foundation.framework in Frameworks */, + BA6BBC581D1B8813C818F2F4 /* Ice.framework in Frameworks */, + 70AF8225D209C2BE88E0CB37 /* PromiseKit.xcframework in Frameworks */, + 3E05969AB4F71D8A8AF0324F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 67F08892C0AB4291F92513F7 /* Frameworks */ = { + 65807EFDB81EB26FA0B0CEFF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7909DF54B34512292FC8714E /* Cocoa.framework in Frameworks */, - 5D63E7D5C868278390A7A1A2 /* Ice.framework in Frameworks */, - F5349B0122283A4EDF05581D /* PromiseKit.xcframework in Frameworks */, - 88C0DB7E0240317107E247D5 /* TestCommon.framework in Frameworks */, + 978105E1EE75A7FE3F79078B /* Cocoa.framework in Frameworks */, + C53F42963A4AFD4544698CC7 /* Ice.framework in Frameworks */, + AD131E0147C3854B0C729B0A /* PromiseKit.xcframework in Frameworks */, + 9B37D544BD6B420966C6F71A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6A3583740550C02B94108F7D /* Frameworks */ = { + 6756B0801AFD5646083EA47D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4A3A294945A7FDD9CED24F54 /* Cocoa.framework in Frameworks */, - 68B432AEA1EC2D4B78155227 /* Ice.framework in Frameworks */, - E6B481D92BFD9BB89A3D0619 /* PromiseKit.xcframework in Frameworks */, - 67601A5D8785A20A51D4B55E /* TestCommon.framework in Frameworks */, + 5F8A79A42975C82B22B1100A /* Cocoa.framework in Frameworks */, + C6A08EAAFC95EB40B7AA7CA1 /* Ice.framework in Frameworks */, + A290CAE93C6AE71E72B09C17 /* PromiseKit.xcframework in Frameworks */, + 68119B06C32BBB0CDD428C42 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 74810A9ECEC424FFDD7A8EFE /* Frameworks */ = { + 70B54BD6C23881584479D162 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B7BA9CC6203BDFBCDDBFF7A5 /* Foundation.framework in Frameworks */, - 67A6B6A49B853ABA830AF8A5 /* Ice.framework in Frameworks */, - 48A417E2AF1332A115ED4AA1 /* PromiseKit.xcframework in Frameworks */, - C1065F759AC7D5A4B13007FD /* TestCommon.framework in Frameworks */, + 15EEF88440CCC3D00B34CEC3 /* IceImpl.framework in Frameworks */, + FDFEF92494E9C48648F75CE8 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 76C166581A47F871D5F800EF /* Frameworks */ = { + 770D467AAF89E88EF37AD409 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3C373C2411B5AB81B5AF2C9C /* Foundation.framework in Frameworks */, - 4D888AEE4EF4D02301A03775 /* Ice.framework in Frameworks */, - 720690A2A0D8822482C2871F /* PromiseKit.xcframework in Frameworks */, - BDCC0AC1DA115CB3614B0504 /* TestCommon.framework in Frameworks */, + B7563680C62BF02B4C170D43 /* Foundation.framework in Frameworks */, + 5A3ACC83C1089CD674851178 /* Ice.framework in Frameworks */, + 65B695F97D7140A81973BFEB /* PromiseKit.xcframework in Frameworks */, + F3AE9F326A4E8D3C7742A825 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7827187285BD2EBAF9F34A78 /* Frameworks */ = { + 7C6CDCE57D922E0B787A535D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DDA5174FEF8FE9DF82EA2A98 /* Foundation.framework in Frameworks */, - BE1C7F0FF4EA6DE979F08079 /* Ice.framework in Frameworks */, - A5C5E49D2B0C8493E7BB4559 /* PromiseKit.xcframework in Frameworks */, - 9D7B94ECA18113CAB00FC07F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 78BF00B37BB177564D54DB40 /* Frameworks */ = { + 7E2EB1E4DC8F28640470290A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BAD2C655F757D6BD2453ECCA /* Foundation.framework in Frameworks */, - 1C8DEA6F6E5CB57D18FBE884 /* Ice.framework in Frameworks */, - DA9AFD6C000591CBEC410DB2 /* PromiseKit.xcframework in Frameworks */, - 8D323C09FAD9499457AC5354 /* TestCommon.framework in Frameworks */, + 0D6CBA4FB26518C981C3AF34 /* Cocoa.framework in Frameworks */, + 8E050B46CDE17D7B5B9F7A10 /* Ice.framework in Frameworks */, + B1E529E427369E6AF8DE3496 /* PromiseKit.xcframework in Frameworks */, + 79A86C9B8A76ED5F724223AA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7CEEB150555D1A002F03561A /* Frameworks */ = { + 7E89AA06F95141112E2308DF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9C4D1032747EC6F01089B6CC /* Cocoa.framework in Frameworks */, - 79682239CB6E1929C2E53C70 /* Ice.framework in Frameworks */, - DC6A9E2CF823F3A0D846B05A /* PromiseKit.xcframework in Frameworks */, - B17CF9F23F30C2161AF9094B /* TestCommon.framework in Frameworks */, + 769880B85C8F3EBE542ED952 /* Foundation.framework in Frameworks */, + 7698603D5D4483688C1E06C2 /* Ice.framework in Frameworks */, + 17846C75A0ADCBE674506CD0 /* PromiseKit.xcframework in Frameworks */, + 301F50C233B74FA25BE32961 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 826CD0B7B0270DF0E8876A7C /* Frameworks */ = { + 7F9E1AD9DD8D88862F46796A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E64D745242CAAEC18C82B0E0 /* Cocoa.framework in Frameworks */, - 9E8EEB6D0B9982CF2B85E629 /* Ice.framework in Frameworks */, - D2BB4405992C4142FEB3CFC3 /* PromiseKit.xcframework in Frameworks */, - A2B37F59D33384ED6B36F274 /* TestCommon.framework in Frameworks */, + 5FE7D74B959988C90EA8A902 /* Foundation.framework in Frameworks */, + E29F4A25A6CB7DDB3B674446 /* Ice.framework in Frameworks */, + BDD69450839996D1DFF9B742 /* PromiseKit.xcframework in Frameworks */, + 42E48DA1CC978B2FB811F604 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 85E1224885777FE59B8588A0 /* Frameworks */ = { + 806EB0C01E531EFDADC577DA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 304822A0CC5A6D572D89D076 /* Cocoa.framework in Frameworks */, - F74B4F1ECD669359457DB230 /* Ice.framework in Frameworks */, - 3D0656CEB9B75448F59AE67C /* PromiseKit.xcframework in Frameworks */, - 0B2AD27C14BEE586FB7AAE59 /* TestCommon.framework in Frameworks */, + D927230E991DEA814CAEB807 /* Ice.framework in Frameworks */, + 99B61F6318EA66063E904A49 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8681D5A664086601EC157CD3 /* Frameworks */ = { + 85CF7E25AB6EC680828A8D52 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 451069726E6B804F7B8CAD14 /* Foundation.framework in Frameworks */, - 6DBAD591469FDA7B5DD25BD6 /* Ice.framework in Frameworks */, - CF54BFCB2521295308295A11 /* PromiseKit.xcframework in Frameworks */, - CA6F1D3EE17127498C4A7403 /* TestCommon.framework in Frameworks */, + 6A6D70F561CD85DCEF156C4E /* Cocoa.framework in Frameworks */, + 7CCECBCEAC3F95EC662EFB82 /* Glacier2.framework in Frameworks */, + 9CBF1661F887687BE135F131 /* Ice.framework in Frameworks */, + BFF4C3194AA5DF25334E99F2 /* IceGrid.framework in Frameworks */, + 7985A726F62967CC6068ADBC /* IceStorm.framework in Frameworks */, + 9D6541DB0B14FFBA3D2B5499 /* PromiseKit.xcframework in Frameworks */, + E2E0F43EA08F84F854E28815 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8865B8FABFE304C12A58F80E /* Frameworks */ = { + 85D54E0F6421C5110E7CF3B7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9BEA38704ECB66BD778A2447 /* Foundation.framework in Frameworks */, - 16F6D99E041E59299F890747 /* Ice.framework in Frameworks */, - 79AE1F0C7EF27BDD0B3CC058 /* PromiseKit.xcframework in Frameworks */, - 69D5A3BEDA72FA46A6439692 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8928FC2CBFF06DB45BDB514E /* Frameworks */ = { + 8BA7996027CFD288252705D0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 96AB95EDD74B6731901E693F /* Cocoa.framework in Frameworks */, - ECB63FC548952FF10D92FD83 /* Ice.framework in Frameworks */, - F39C4FC78C06ACEC3709A84D /* PromiseKit.xcframework in Frameworks */, - 9E3D0C2FB66AF07D4EC1E04F /* TestCommon.framework in Frameworks */, + 22095258D3235EF8954B4F9B /* Cocoa.framework in Frameworks */, + 91D947E3DA5B82A6D68059B7 /* Ice.framework in Frameworks */, + 421967360C02DA383EB26582 /* PromiseKit.xcframework in Frameworks */, + 62DD04A4A316728D4B07AAEB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 89D1C4C755D5BCDF9E70577E /* Frameworks */ = { + 8CA367470D856CD12514BED1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 84D001C720E2696986CC1027 /* Foundation.framework in Frameworks */, - 13A91EAEDBC5FB0D57384A90 /* Ice.framework in Frameworks */, - 1C21DDEC268739C52FD53E88 /* PromiseKit.xcframework in Frameworks */, - 865D5D07D61DC8B5DAF0214A /* TestCommon.framework in Frameworks */, + 585D504007D0FB3158A3466C /* Cocoa.framework in Frameworks */, + 43521A3B58A1646B167B6836 /* Ice.framework in Frameworks */, + 3D0ADEE0F497BBFEA52F86B2 /* PromiseKit.xcframework in Frameworks */, + 65F080DDE980D3D59A2DD0F9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8C65073F217D444C9804C18C /* Frameworks */ = { + 8E8F345C6D0DCBC478E23DA6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7ABA73EF40B18D54673CB39A /* Foundation.framework in Frameworks */, - 797961729B1F5DA11839343D /* Ice.framework in Frameworks */, - 4143B926A83828CF62B0EE17 /* PromiseKit.xcframework in Frameworks */, - B8693EBD54ED020ED4BF2EC7 /* TestCommon.framework in Frameworks */, + B7E3CFE8300D0B2396E927C8 /* Cocoa.framework in Frameworks */, + 317A6D4AB6E8239408DBB274 /* Ice.framework in Frameworks */, + 2DADB317F9325844198C645C /* PromiseKit.xcframework in Frameworks */, + 8B1D34C9CB1A7C8EDEA0F631 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8E638FBEA17B67241BF63E4A /* Frameworks */ = { + 929112A7DA19D98ED0DA1FA1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1463058E0B0C8964827B0C18 /* Foundation.framework in Frameworks */, - DCDF7A9707754E40F69394CF /* Ice.framework in Frameworks */, - 6FD371425BB72D269EE12541 /* PromiseKit.xcframework in Frameworks */, - 05283E6C07BA5F644158BA19 /* TestCommon.framework in Frameworks */, + 156744825C7A2C11539D4C53 /* Foundation.framework in Frameworks */, + CB99DA49E34E24584CAD6913 /* Ice.framework in Frameworks */, + E918EEBC3D0F1CE51176DCEE /* PromiseKit.xcframework in Frameworks */, + D7A30EE1AC30494211B6235B /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9149500CC47C66691660B0BD /* Frameworks */ = { + 92A7548ABB7FCBD369C28797 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F8F586E4A785806BCC1BF218 /* Cocoa.framework in Frameworks */, - DA528E42CC5C175607FA979A /* Ice.framework in Frameworks */, - DA5AD33E697F017C932CD12D /* PromiseKit.xcframework in Frameworks */, - 733894B1F9ECC44CDBEDDA5D /* TestCommon.framework in Frameworks */, + A2BCAFFF02E5784D7E4C907F /* IceImpl.framework in Frameworks */, + D50693D75429F2F8FDE1D556 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 91D1BE9803153FDBF6BF3114 /* Frameworks */ = { + 97EED2E3C98D3F5AF3A1552A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C0BE6135D81BEF99F0087DE3 /* Cocoa.framework in Frameworks */, - 8E5F256FA7D5732F28DB13E3 /* Ice.framework in Frameworks */, - 532D547FC126A24364C4FE92 /* PromiseKit.xcframework in Frameworks */, - 5D8A07D833E1B8DFA57B7977 /* TestCommon.framework in Frameworks */, + BEEE7AF560043BA147111E0F /* Foundation.framework in Frameworks */, + 6D54381C98639F00C3A4CD95 /* Ice.framework in Frameworks */, + 073241141AC1010142E8B38B /* PromiseKit.xcframework in Frameworks */, + BF91B71139F96707D007F191 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 94A5C40D5F58EC042120F57D /* Frameworks */ = { + 97F410FDB59D1A621BEC3DF3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BBBA7F8603B6F37E96D9D1D9 /* Ice.framework in Frameworks */, - 5DE99190F12D2FDFDA5155C2 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 980E7859C7304340AFF182E5 /* Frameworks */ = { + 9844B33CD363109631307713 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 452396734ADEF7D4B123FA00 /* Foundation.framework in Frameworks */, - 2F3E183D119CFAC446CFCDAF /* Ice.framework in Frameworks */, - 7F45B7591AB3408F290A4556 /* PromiseKit.xcframework in Frameworks */, - A86238468E4D90D665A15185 /* TestCommon.framework in Frameworks */, + CB7452679BCD75117D5A3606 /* Cocoa.framework in Frameworks */, + 3BFF865CDEB153F412420A48 /* Ice.framework in Frameworks */, + CB85179282353A2E6162CF6C /* PromiseKit.xcframework in Frameworks */, + 9EBE5B2FA2CD2481F058ABA9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 98471EBD3C8B374440FCD0BD /* Frameworks */ = { + 985F505F3ED81C0489D5822C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DEE1048D996F854856521478 /* Cocoa.framework in Frameworks */, - 3B4A47C1F2AB011C6E29D992 /* Ice.framework in Frameworks */, - 57394B0C2E0152E0F8A867DD /* PromiseKit.xcframework in Frameworks */, - 272537DDAD4BF29C8AE4EF44 /* TestCommon.framework in Frameworks */, + 223690B9C2ED48C823677945 /* Foundation.framework in Frameworks */, + CA06CB0C5AB2857659D30283 /* Ice.framework in Frameworks */, + E308EC7E46EE3A0299C0B22B /* PromiseKit.xcframework in Frameworks */, + 3A98BFB96F4C1E36DDC7EEDD /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 99179EC419F7BE9D94FD7680 /* Frameworks */ = { + 9D141EDE4C7711B1D7969C8E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 556A42E32FBAD4D7A4C0DEAA /* Foundation.framework in Frameworks */, - 933C4E4461EC1FED94FD1043 /* Ice.framework in Frameworks */, - EE159F768EAD7E2248B65B63 /* PromiseKit.xcframework in Frameworks */, - 7A14131D304679B10D74D40C /* TestCommon.framework in Frameworks */, + 7244859C37DD01B58316B701 /* Foundation.framework in Frameworks */, + 792CAE6A3A01483676FFA9AD /* Ice.framework in Frameworks */, + C70008E9B4D3760A7C19887F /* PromiseKit.xcframework in Frameworks */, + 3D5EB1B7BCA03B3E9F9BF095 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9F70203AB3C9FE1000CF9ADC /* Frameworks */ = { + 9F5EBBFEADA209B38F96E7DF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 689B1899EFD0C431F156F3B5 /* Cocoa.framework in Frameworks */, - A41431463DDC6FC91024841F /* Ice.framework in Frameworks */, - 2DCBE713B7BCF52D378ACEF9 /* PromiseKit.xcframework in Frameworks */, - F5D8C23D2B551C5AA43522DF /* TestCommon.framework in Frameworks */, + 56D20B23AD1EA8D353A9CFAC /* Glacier2.framework in Frameworks */, + 9898C48A4731EFE8210D6AB4 /* Ice.framework in Frameworks */, + 5B093A17DEF1D680BB4A9CE0 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A01C44ECAEFA068E8278FBA4 /* Frameworks */ = { + A2C34056BCFA8E0038DD79A4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6086C68313FA6145E6D237F8 /* Cocoa.framework in Frameworks */, - 61E590176025B655D7D601F6 /* Ice.framework in Frameworks */, - 42686B42BB0FAFE20C358CF2 /* PromiseKit.xcframework in Frameworks */, - 0858DB436577D4CB87578C4E /* TestCommon.framework in Frameworks */, + F6F23CE71F35F38DE87E9E34 /* Foundation.framework in Frameworks */, + 254974E6B74962DA0AFF1D36 /* Glacier2.framework in Frameworks */, + 185572D86691304C327944AA /* Ice.framework in Frameworks */, + 81397D2218A8E70ECB59F5EF /* IceGrid.framework in Frameworks */, + 44601EEDC5B00B337E6A7A7B /* IceImpl.framework in Frameworks */, + CE104544E2C5CE0767FB43B6 /* IceStorm.framework in Frameworks */, + D9F2CEAC2E915D020F5912D0 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A2E7C82065BE84DCB2D44F40 /* Frameworks */ = { + A590247DC8420FF253C22E0B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EB2EEA1F784EF02CC2039FDC /* Foundation.framework in Frameworks */, - 5506E49CACCEFAE677F57172 /* Ice.framework in Frameworks */, - B81F85F33E43DA3D33BCB15F /* PromiseKit.xcframework in Frameworks */, - 37E3DC181D022604DD912BA4 /* TestCommon.framework in Frameworks */, + 0CCD6A235A86107E6E7CEB44 /* Ice.framework in Frameworks */, + B70E3D3C1C12B5939CC0AEE5 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A3F0D705D910ED5C5DC4390B /* Frameworks */ = { + ABCA9F03D86E6110D1859173 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AFFE91854CBD01580D687BC4 /* Foundation.framework in Frameworks */, - CC990722CD87F945B512F95A /* Ice.framework in Frameworks */, - 33DE54B349CD69B0F9AF0343 /* PromiseKit.xcframework in Frameworks */, - 6307B756FE5932F18859CF89 /* TestCommon.framework in Frameworks */, + F44F09FC50983B33CA155BCC /* Cocoa.framework in Frameworks */, + 66CF4471D25A3E2BAEF91788 /* Ice.framework in Frameworks */, + AF630E86E313FC6E6AD60ED6 /* PromiseKit.xcframework in Frameworks */, + 71F25A6E62265E90DBFAF9E7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A3FD6EC628483AFEFF0DABDC /* Frameworks */ = { + B3650CA7FFEC001254FF4F90 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E8C11268A982743A4BACB963 /* Foundation.framework in Frameworks */, - 0635F827CA24EF11AC6E556D /* Ice.framework in Frameworks */, - 54DAB5A256868016FB2A32DA /* PromiseKit.xcframework in Frameworks */, - A7C5B5FEDAA21672F8C61E43 /* TestCommon.framework in Frameworks */, + 5924D7AE289EE5AAC5D67202 /* Cocoa.framework in Frameworks */, + EC748BF1BB9717982863E011 /* Ice.framework in Frameworks */, + B49E109AEDBEF311AE201AD3 /* PromiseKit.xcframework in Frameworks */, + E3100941E2344C35E29B6220 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A6FF3006FB5665C3C42E218A /* Frameworks */ = { + B367B8328583C66CB3B65E11 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9E82B600E5E113537B22EBA3 /* Ice.framework in Frameworks */, - D088AC610C4A760618EFA0F8 /* PromiseKit.xcframework in Frameworks */, + EFA435C5A247BC5BCE19D259 /* Cocoa.framework in Frameworks */, + 8B5A5AE06BB2EDB5B38A62DB /* Glacier2.framework in Frameworks */, + EA0D065C1E4099C44E194E8C /* Ice.framework in Frameworks */, + 536BFB67716719424AD9BC71 /* IceGrid.framework in Frameworks */, + D1CE0391F2DC75CB87425047 /* IceImpl.framework in Frameworks */, + F4D4D42004E2A8B4848C1974 /* IceStorm.framework in Frameworks */, + 47C5D873A39A3B0E63C684A8 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A75D3924BD339CBD5D8F513E /* Frameworks */ = { + B3A87C11E0F7FE17A76F4C35 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C1F0CEC092A82CE3DF40BA61 /* Ice.framework in Frameworks */, - 23795425500F12168B65D9C4 /* PromiseKit.xcframework in Frameworks */, + E3DEACACB95B8C3102DDB545 /* Foundation.framework in Frameworks */, + 85AD81EFF581BFF94527C071 /* Ice.framework in Frameworks */, + 1B7DCFEC630B333062000E92 /* PromiseKit.xcframework in Frameworks */, + DCF75D9CA0611B6B1B4956E3 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A8BB4A1FD3E0B51E85DC7E4D /* Frameworks */ = { + B55FDCB5E4F9CA0785C2645B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5B8468A69958D2DE0A3526C3 /* Cocoa.framework in Frameworks */, - 1F62B00163885AD9E79354BE /* Ice.framework in Frameworks */, - BFA0072B8E21A59128984713 /* PromiseKit.xcframework in Frameworks */, - BC478633F3A1996A530B7D52 /* TestCommon.framework in Frameworks */, + F7003057ACD7706B34EB16DE /* Cocoa.framework in Frameworks */, + 9BB9662792C162BE6D308D68 /* Ice.framework in Frameworks */, + 17B51970734597216995DDDC /* PromiseKit.xcframework in Frameworks */, + 6E9CD3A191545F54F5BC486E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - AFC321E8DC9AA82D1F23BA2F /* Frameworks */ = { + B885FB6DA86044C3C3BD4492 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 79CD4C58C8ED9B9750C761B1 /* Foundation.framework in Frameworks */, - 54214C78E0A6FD97880A71D8 /* Ice.framework in Frameworks */, - AA38608997EF3E146838B881 /* PromiseKit.xcframework in Frameworks */, - 08D8DBA56C3CC3629931C37A /* TestCommon.framework in Frameworks */, + 016E13902F402548A0BA098C /* Cocoa.framework in Frameworks */, + FAD9CD415201EFD644E6C067 /* Ice.framework in Frameworks */, + 4E7BA8D1B521A2CA30CE4B34 /* PromiseKit.xcframework in Frameworks */, + 743EE122A059516C2329E364 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B6AD14A6A89BC2F1ACE138BB /* Frameworks */ = { + BBEEFF0A68121EE4209D00C8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F25FB49661C89B6DE658B9B5 /* Ice.framework in Frameworks */, - 767FEDB9DB388B148494966D /* PromiseKit.xcframework in Frameworks */, + 29633158A02ED93E6CB64E03 /* Cocoa.framework in Frameworks */, + E05843FBC3FB2C0977CFC6B5 /* Ice.framework in Frameworks */, + F54E29A83133FED14C4AA068 /* PromiseKit.xcframework in Frameworks */, + 744E26419A08CF0CD57C48CB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B6BF6917EC2D7AE47DE7C6DA /* Frameworks */ = { + BF7FE0D35C2CFFCA8AE47C9F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8445081EBC7EDE698FD2B85A /* Foundation.framework in Frameworks */, - B46349D03E19955C04A734E2 /* Ice.framework in Frameworks */, - E62B6C966B7B6BC970D3F918 /* PromiseKit.xcframework in Frameworks */, - 7264324A55F9D60774E48A54 /* TestCommon.framework in Frameworks */, + 02932AFCE7BA335363810B9D /* Cocoa.framework in Frameworks */, + 198498A649B7132421146680 /* Ice.framework in Frameworks */, + 340068DA4C4C800CEFFAD5BB /* PromiseKit.xcframework in Frameworks */, + D7627C6559C1000CD02F4CA7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B6D2D2F943D8B4EEED3B299A /* Frameworks */ = { + C18F8BCB0605A7BBC62E6F05 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A333CE56CB206BDCD787603E /* Foundation.framework in Frameworks */, - 7039A0DD5C960D83433009E7 /* Ice.framework in Frameworks */, - 5BFEA505326A872656ED4437 /* PromiseKit.xcframework in Frameworks */, - A3475F49025F15C524D53179 /* TestCommon.framework in Frameworks */, + 708372DEE0A39A86DAA7EB59 /* Foundation.framework in Frameworks */, + 7F297CE3301586D2DE283BB0 /* Ice.framework in Frameworks */, + 0064FB5868041AA654A52DD5 /* PromiseKit.xcframework in Frameworks */, + C700D8EA841D2A3DA0DB25E6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B855C0B526D3E65C1B97B340 /* Frameworks */ = { + C34E0052B14CF37479E06DB4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8525CC22BDC944B6AA085EAF /* Glacier2.framework in Frameworks */, - 0F6CB533088A321015E50D0A /* Ice.framework in Frameworks */, - 7D26D53D80612BA8A62738F5 /* PromiseKit.xcframework in Frameworks */, + 01033CC145D7EEF0A900EAE5 /* Cocoa.framework in Frameworks */, + 3C3D961062FE6BBC0159C88B /* Ice.framework in Frameworks */, + 454EA9653401A2346AE4CBE1 /* PromiseKit.xcframework in Frameworks */, + 6002F3A63234126AAC8E048E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - BADFCC2D4AA7F3A177C681E0 /* Frameworks */ = { + C3D709A49D80D17285D3FDD8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0CBE9E4B1796348B5F80D16F /* Cocoa.framework in Frameworks */, - F316C5F5215DEBFFD3F8758B /* Ice.framework in Frameworks */, - B42A4CCA471AAB21797987FE /* PromiseKit.xcframework in Frameworks */, - 2B66511B5487543B5168E5D6 /* TestCommon.framework in Frameworks */, + 1172F44789421B6E15B653C1 /* Cocoa.framework in Frameworks */, + 68897C8BF672B7300D87D199 /* Ice.framework in Frameworks */, + 8814309D74871A707A294D4D /* PromiseKit.xcframework in Frameworks */, + FA8A89058765313529AEEBB5 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C27CDD5D5FEA7255B77E1A92 /* Frameworks */ = { + C3E1F38BA06E190B7CC98682 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BE0FE599DC2602A847CA17A7 /* Cocoa.framework in Frameworks */, - 98DCF70AD8E7B955DF9474E0 /* Ice.framework in Frameworks */, - 4DB713427F4D4A19C465E29F /* PromiseKit.xcframework in Frameworks */, + 7AB696B1B1B7409BF7D07D5D /* Cocoa.framework in Frameworks */, + 175491539AF5B8E3A29FE9EE /* Ice.framework in Frameworks */, + 39E78190DC29186945EC4D48 /* PromiseKit.xcframework in Frameworks */, + DF26340484CF5EA4B18F615D /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C3DAEA1191A26EC1A664D6D6 /* Frameworks */ = { + C446E0776A800C79B6069B3A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C419AA3B3AD0E57511730659 /* Foundation.framework in Frameworks */, - 7D984768EFCEA0886D12FA18 /* Glacier2.framework in Frameworks */, - DC733EE9AADC2C16F18B55BA /* Ice.framework in Frameworks */, - FECC4F111BBFB2DC96A01EF0 /* IceGrid.framework in Frameworks */, - F9534BBC8B59F52EBAD0211A /* IceImpl.framework in Frameworks */, - B9B095DD6CA80060213D39F1 /* IceStorm.framework in Frameworks */, - 10A39E968D3020CAE27734D0 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C52DF0FB31041A0894EB2CB7 /* Frameworks */ = { + C834C22CAF0520D2749F4FD8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 108BFE643A4DEAECE1AD45AF /* Foundation.framework in Frameworks */, - 8A91CBE82793E8C014A99E14 /* Ice.framework in Frameworks */, - 23F6A43C052E54D562795621 /* PromiseKit.xcframework in Frameworks */, - 46B642BE8B0828AF5EF2A4CB /* TestCommon.framework in Frameworks */, + 3659D3660E0D13EE3C5B21D6 /* Foundation.framework in Frameworks */, + ADA1F2D1BF7FC5B1D901DF68 /* Ice.framework in Frameworks */, + 34ADCE55C9125B913D3E9873 /* PromiseKit.xcframework in Frameworks */, + 3D08DE01538E011B4F7F2A1A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C676C4CCE2EAF9138EF0A402 /* Frameworks */ = { + CD976712DDCAA3224E58C775 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3CEBBB4CB40602472A603623 /* Cocoa.framework in Frameworks */, - D8EDC5E61FE4D72650A4E191 /* Ice.framework in Frameworks */, - 182FA80A651F60908CE69F2E /* PromiseKit.xcframework in Frameworks */, - C4EEFB68C2F8C09391C3C55E /* TestCommon.framework in Frameworks */, + 6689B702E44E486F1D5BD97A /* Cocoa.framework in Frameworks */, + 2249AA1725889F6940E2FBB4 /* Ice.framework in Frameworks */, + D4B13738FC7E917F448E9D1A /* PromiseKit.xcframework in Frameworks */, + EFCD4FF028F6D0D0394EFF15 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C8E3F5B2F0F283B0FA96EF8F /* Frameworks */ = { + CDDC0380D0A062DCEB6F87F7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 43B191AAE7A8CBAB1BE79F27 /* Foundation.framework in Frameworks */, - 4DC34EA67C73B8F2675EFC11 /* Ice.framework in Frameworks */, - 94D596C24BD7B94DAC14962A /* PromiseKit.xcframework in Frameworks */, - A9547E7ED2757918249F172B /* TestCommon.framework in Frameworks */, + 787292652516D87D14D2A3F5 /* Foundation.framework in Frameworks */, + D79D5036D144871CAA38E8DD /* Ice.framework in Frameworks */, + B75DD1605DEF5643E944BCB1 /* PromiseKit.xcframework in Frameworks */, + 7881A10B3D81DEF82EC2DEC0 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C918A614C2340AAFACCEB349 /* Frameworks */ = { + D10C1C4751624F6A08A7F209 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9CA049F065B15AE0B15B5695 /* Cocoa.framework in Frameworks */, - 058626AB7CED23E3CDA098D2 /* Ice.framework in Frameworks */, - 9D28A3434AAC71CEA97807DA /* PromiseKit.xcframework in Frameworks */, - 52D3B5D9F02F39874364AF7C /* TestCommon.framework in Frameworks */, + 602CAAEF12802DD779A041DE /* Ice.framework in Frameworks */, + 7520F3D097B0AE4BC26D6DB8 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CA98DBD4C387687255A8FBCD /* Frameworks */ = { + D40ED5C22867DF7D772839B8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 71DDACB50B367962DC6FF2F9 /* Foundation.framework in Frameworks */, + BF15744731598046FEFAC839 /* Ice.framework in Frameworks */, + 96E121D5F989C98A2229047A /* PromiseKit.xcframework in Frameworks */, + 3ED586FFA65D9A2ACDCF8F61 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CD736BC768782D15441D7285 /* Frameworks */ = { + D92113C9FF7B0AEB581F1C83 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 776EC492F46ECC93E7D93962 /* Cocoa.framework in Frameworks */, - C5D4ABF5136B8C325C9FE1B2 /* Ice.framework in Frameworks */, - 18F1E6D6C18F9EB77F88998D /* PromiseKit.xcframework in Frameworks */, - 9B19CF489D9085EBB8810289 /* TestCommon.framework in Frameworks */, + 1430954E8129EA244E25447F /* Cocoa.framework in Frameworks */, + 7A8AD5F78970C0A610B02EDC /* Ice.framework in Frameworks */, + B2BC1B5F5775358D61C23C4F /* PromiseKit.xcframework in Frameworks */, + A6F3DAE7E090AEFE39E3B0E2 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D36BA87EFCF951121584B562 /* Frameworks */ = { + DB78C24C92B766330E59B250 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6C389215B5256EE33235522F /* Cocoa.framework in Frameworks */, - 531473A933C25F2AFF15AB54 /* Ice.framework in Frameworks */, - C8F977323DC79BFBD223F982 /* PromiseKit.xcframework in Frameworks */, - 35C885580BD0678A60EB143D /* TestCommon.framework in Frameworks */, + 56151081C11849A401DA5C1E /* Foundation.framework in Frameworks */, + 3766AC01275B8452443E1446 /* Ice.framework in Frameworks */, + EFEB20A1051E651311733724 /* PromiseKit.xcframework in Frameworks */, + BF5B0279E492FBD1DD08B770 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D38A7982F950B86FBDBB5556 /* Frameworks */ = { + DCCA52359AA036281A864758 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 28BA1954D31386C468ABF363 /* Foundation.framework in Frameworks */, - 637A05DEAC546C9A60608EE2 /* Ice.framework in Frameworks */, - D132F621FDC83E99EE584EF4 /* PromiseKit.xcframework in Frameworks */, - 62AECF0269720B620AA90985 /* TestCommon.framework in Frameworks */, + 536E623763C231F6DE8297B8 /* Cocoa.framework in Frameworks */, + 0A030A4337C3044D72D4AB42 /* Ice.framework in Frameworks */, + 29D9A3026AF24D8AFDD663BA /* PromiseKit.xcframework in Frameworks */, + 140E53724B5A0B1FA66E5DF7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D70F361075F24E65D05F4D73 /* Frameworks */ = { + DD1561F5393DB7AF211BE308 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9D2923F830F3C632490940A9 /* Cocoa.framework in Frameworks */, - 5631C818A5CCD0F8BB0C8D78 /* Ice.framework in Frameworks */, - 2E1ED6D315D81B4A046EE053 /* PromiseKit.xcframework in Frameworks */, - 3841A1031BDCF0C47FB37E6B /* TestCommon.framework in Frameworks */, + 0AF7F5D1DD475A958F6C655A /* Foundation.framework in Frameworks */, + EB6C3B8252BD2D2AF409093F /* Ice.framework in Frameworks */, + 29C9619426FD5B794A369532 /* PromiseKit.xcframework in Frameworks */, + EBA1DA967D35C0D0A341DA44 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D9891DB1D6563977E1045D2D /* Frameworks */ = { + DDF270C3F565AB7125102577 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 58F7829D5B7D2D081E54E1F0 /* Cocoa.framework in Frameworks */, - FDF6805BCE76276FF06D212F /* Ice.framework in Frameworks */, - C3AE8A6B6FC2E0F57DF11419 /* PromiseKit.xcframework in Frameworks */, - E3560531DD376A2D0F7F8155 /* TestCommon.framework in Frameworks */, + 1D5F98C0B015EB6F1E6FBBF8 /* Foundation.framework in Frameworks */, + 5AB28B3FD75FBE7503736B30 /* Ice.framework in Frameworks */, + 61D2C7ED3FFCF5E888AA0FF9 /* PromiseKit.xcframework in Frameworks */, + BF40D440923D78CD05EDDC10 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - ECE5C7CB1617D199246BDF6C /* Frameworks */ = { + DFDF87A72488FB1BE6891D48 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A4E92F800C86833DDC400DE8 /* Foundation.framework in Frameworks */, - EA567EA164BF44B6D47E1375 /* Ice.framework in Frameworks */, - 69DCD5B31BA8B48B4CD5C96E /* PromiseKit.xcframework in Frameworks */, - 28EBFEA6FBD333021E263EB9 /* TestCommon.framework in Frameworks */, + 7B6A1EC67FD0F82E50AE84B1 /* Cocoa.framework in Frameworks */, + 60309A689F48B5F17ED0AC5F /* Ice.framework in Frameworks */, + 7E18BB634EEF0315FF704C7E /* PromiseKit.xcframework in Frameworks */, + 51FB508FA4FCD7002382865E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - ECF89FCBC92B39B5D8F1C3B2 /* Frameworks */ = { + E1FCCD7331B1B2DE7B2A2C81 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 476F8043116EF9C59DCDBA16 /* Foundation.framework in Frameworks */, - 6EA495B791122414DA65A0B6 /* Ice.framework in Frameworks */, - 600CD1BE6E0045B42B373E58 /* PromiseKit.xcframework in Frameworks */, - 6D9FAF41D28BA00D81C8C933 /* TestCommon.framework in Frameworks */, + CEE0EE82A6664D4B381E4F16 /* Cocoa.framework in Frameworks */, + 63174316458448AC4E7DC92D /* Ice.framework in Frameworks */, + 98EF39FE3767FF915B1216C0 /* PromiseKit.xcframework in Frameworks */, + C3DD6CA2DF4541A112267210 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EE16A89C5E0F293D4C340515 /* Frameworks */ = { + E407893EB03864C359677FAF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EACB825EA3D2E6744B44BC9B /* Cocoa.framework in Frameworks */, - DA0731B1E300593E7564B38E /* Ice.framework in Frameworks */, - 9D9EFC1A14EC81F44E536F9B /* PromiseKit.xcframework in Frameworks */, - A96ECF941C1FDF6E90D97BDE /* TestCommon.framework in Frameworks */, + 11CEF453382D7531AF40BBEA /* Cocoa.framework in Frameworks */, + CB622D3E7281ED439F00EB46 /* Ice.framework in Frameworks */, + 907C7F6424252479BE0E6979 /* PromiseKit.xcframework in Frameworks */, + 7F904A60E772473B02D33A2E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EEDEA6EC91B4BA3437E07BF0 /* Frameworks */ = { + E572B71F7B0310B0FBB5FA3F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - ADAA89F1CBAE08F2EF7FF4AB /* Foundation.framework in Frameworks */, - CB4653936B09FC4F2465A845 /* Ice.framework in Frameworks */, - 12AE0B9871A53F4BF66FDAFA /* PromiseKit.xcframework in Frameworks */, - 2F4D5ED75ED31DA29CA4AF27 /* TestCommon.framework in Frameworks */, + 0FC5F1E1412F26368F6A9F7A /* Cocoa.framework in Frameworks */, + 6ACD683ABFC9D02D45B3A65D /* Ice.framework in Frameworks */, + BD8D7C3F1DA36FA0A413D715 /* PromiseKit.xcframework in Frameworks */, + 207B48D545B1526630D2833A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EFA2B6AB7748628FA398563F /* Frameworks */ = { + E6039FA4196A2B58B28A49CE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2015196331C7920661F0BF11 /* Foundation.framework in Frameworks */, - A2579741B1E2D5FBF4EBBE54 /* Ice.framework in Frameworks */, - 0BD84F35A678AA453ADB7C94 /* PromiseKit.xcframework in Frameworks */, - 63D3B7F3882221E421677E8B /* TestCommon.framework in Frameworks */, + 4D56766F605D17F748102503 /* Foundation.framework in Frameworks */, + 6346D3A3C72F84AA4AB41DEA /* Ice.framework in Frameworks */, + 0A8F32F410E4BA3969572AD4 /* PromiseKit.xcframework in Frameworks */, + 1EEF1385B4C9B44DE0EA805E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F0C18FC8F60F88F78807B80A /* Frameworks */ = { + E7CE9EAD6B41D15F33A3BC5F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4E33F382E994614A0F164D0C /* IceImpl.framework in Frameworks */, - D25324AACE8C147D1A94A12D /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F1EC417D238DBCC54E934CA1 /* Frameworks */ = { + EB9BC4C9F2A7DE2A7357AC51 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B53AD59106D14637B5D4939F /* libIce C++11 macOS.a in Frameworks */, - B1FA9B40223782BB1F8AEEF0 /* libIceDiscovery C++11 macOS.a in Frameworks */, - BBCFD056E87FA7FC55B934DB /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */, - F93A507B61F47809F9AE7700 /* Security.framework in Frameworks */, + A9ED6155E60D72CF3A047F5F /* Cocoa.framework in Frameworks */, + 4A3AF18B9557A0770E8AA10A /* Ice.framework in Frameworks */, + 813B64002946C11C4F6CBF20 /* PromiseKit.xcframework in Frameworks */, + 6F768B38BC0FAB1112ECFB36 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F35D18FC2FF416D7E79FFB7A /* Frameworks */ = { + F1E137735CAC0DC93E63C75D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F131DED6D6B3A70D2AA9ECE5 /* Foundation.framework in Frameworks */, - F05EC75E667C728C9E47C777 /* Ice.framework in Frameworks */, - 0C71C7C86EFBD2BCE547E14C /* PromiseKit.xcframework in Frameworks */, - BEF2DB12CEA4E08291814A1D /* TestCommon.framework in Frameworks */, + 4960A857834E2440A0AA8CDB /* Ice.framework in Frameworks */, + F42733420894D924995579FA /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F4F4BCC0ACD0684EC9228104 /* Frameworks */ = { + F8E7C240ABCB208AF20991BA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7DDF90E9B4C050EA119512F9 /* Cocoa.framework in Frameworks */, - 528D1BB26746DB6AD909E203 /* Ice.framework in Frameworks */, - B1D624747520479448B10B12 /* PromiseKit.xcframework in Frameworks */, - 636058B38D26215D4559197F /* TestCommon.framework in Frameworks */, + 150B3CA3A01868537A293868 /* Cocoa.framework in Frameworks */, + 64EFF36105ECB5C38BE791DA /* Ice.framework in Frameworks */, + 0D2D61EDFC698E92643535F1 /* PromiseKit.xcframework in Frameworks */, + B216FFA98EF5680F9E86F586 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F798FF6A1825C3FBD0C31CB0 /* Frameworks */ = { + FC33E14EC639571B6432A1DE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 94E2DD51BF36AD3B802DAD7F /* Foundation.framework in Frameworks */, - A31C1D418A2198B829983D1C /* Ice.framework in Frameworks */, - DCA56EFF91B6518D35576EE4 /* PromiseKit.xcframework in Frameworks */, - 43D628E7223E62FF2142D2DE /* TestCommon.framework in Frameworks */, + 7A0F589A3B4FEFE8BD19AA12 /* Foundation.framework in Frameworks */, + E32DDB7B74A4B86863D3EEF1 /* Ice.framework in Frameworks */, + 6B1EAECED0D88834C269FEBD /* PromiseKit.xcframework in Frameworks */, + 0F629D5783C738CBC90B1850 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0076768C510885867AE1A4C9 /* exceptions */ = { + 01DC9BABF5CB1E0340D41BB6 /* OS X */ = { isa = PBXGroup; children = ( - FF59D1D7D0880B663094A951 /* AllTests.swift */, - 563ADEC4C1B32BFEDE861B0D /* Client.swift */, - 62456291EF0548032B7E3DA2 /* Collocated.swift */, - 8BF71CF6804DEA75FC0B5376 /* Server.swift */, - BF929EBD1CFFC7D11F369F19 /* ServerAMD.swift */, - 748F318E593607DC22BF7F52 /* Test.ice */, - 9817538D39860D3F1D67F1EC /* TestAMD.ice */, - C7166379D55E37E1E0AA4876 /* TestAMDI.swift */, - D24B423F747A922D48AC5A49 /* TestI.swift */, + 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */, + 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */, + A76BBEE914CB874C8B739408 /* Security.framework */, ); - name = exceptions; + name = "OS X"; sourceTree = ""; }; - 0835DEBEC4826CFCE50C4C30 /* slicing */ = { + 0263165D25E2764D1515EDD0 /* retry */ = { isa = PBXGroup; children = ( - 0FC31392C5A46897AF3671AE /* exceptions */, - 680084F4D8F0751662C4BC71 /* objects */, + 4066C2CF37F090029B871117 /* AllTests.swift */, + B286694690297FFF7DF31EA9 /* Client.swift */, + 8009BD807CE901360AA23914 /* Collocated.swift */, + E512A7FBE87BE4C3D0241122 /* Server.swift */, + E00EC3B82938848CFB40EC31 /* Test.ice */, + 29F96EFF6178BC3FE5DB0F00 /* TestI.swift */, ); - name = slicing; + name = retry; sourceTree = ""; }; - 0FC31392C5A46897AF3671AE /* exceptions */ = { + 02DA2E65A276493B65A20414 /* stream */ = { isa = PBXGroup; children = ( - A0A21DA17C50EA979DEAAF80 /* AllTests.swift */, - 29032EF4B097556E6FC91088 /* Client.swift */, - 8E72A0E60CBE957A7F56F405 /* ClientPrivate.ice */, - 50A02E35C0D489EE9FA527DA /* Server.swift */, - 68EEAD6D4327F2D31CD9F050 /* ServerAMD.swift */, - 5E9F23C8F79D563547DAC808 /* ServerPrivate.ice */, - 73563B2BA9D73A31D245E208 /* ServerPrivateAMD.ice */, - CF293858815BF38D99B997A6 /* Test.ice */, - E70F095DEAD8B11B20898CC9 /* TestAMD.ice */, - 00D3B3D1EB8A265FFAA1C424 /* TestAMDI.swift */, - B35DF098E417B51793D521BD /* TestI.swift */, + BD5215EC1E4F66AFE89CA625 /* Client.swift */, + 30EF7A48D5F3B8AF61ACE1F2 /* Test.ice */, ); - name = exceptions; + name = stream; sourceTree = ""; }; - 1D9EDE94B796C06BC401F400 /* Frameworks */ = { + 055434BF6DE84E9628D6C120 /* Frameworks */ = { isa = PBXGroup; children = ( - 3DA9BA4F6912DE108F7C8F63 /* iOS */, - 608412CDB55DAB827867DD06 /* OS X */, + FD01717E3C1F108D0BF0CAC5 /* iOS */, + 01DC9BABF5CB1E0340D41BB6 /* OS X */, ); name = Frameworks; sourceTree = ""; }; - 22B21896CD5F73CB268B5EDF /* location */ = { + 09F3FD3EB504797666466B34 /* IceDiscovery */ = { isa = PBXGroup; children = ( - EE3BA5B003AC1B18DE241794 /* AllTests.swift */, - DF005D4DB20602C4F3EF5AA8 /* Client.swift */, - FFAE60227D1047550CEBCDD7 /* Server.swift */, - C6062E695220FACFAE9E172A /* Test.ice */, - CBA3784B8DB45FE8C568F7D8 /* TestI.swift */, + 0B858D15CFF07BA0E6A6FBA3 /* LocatorI.cpp */, + 91DC2A0D34F096C05AFFAFE6 /* LookupI.cpp */, + 9A5B352FEADCB1E176B01CED /* PluginI.cpp */, ); - name = location; + name = IceDiscovery; sourceTree = ""; }; - 26B621CADB2EA17A3A4E64CE /* TestCommon */ = { + 0B7370BA2BB47E98429992B1 /* ios */ = { isa = PBXGroup; children = ( - 970CA66170893BFE76675169 /* Info.plist */, - D1355ECA7BE2A8D99B53FA4E /* TestCommon.swift */, + B8CC643DD42F1A5B6B27A542 /* Notifications.mm */, + 82876D1602C1CC12EE6FAB84 /* StreamAcceptor.cpp */, + 8D3D49BC0C29B23231C962C1 /* StreamConnector.cpp */, + A97E29B6434137D42CB3F467 /* StreamEndpointI.cpp */, + 885AE89496BA237CFD217347 /* StreamTransceiver.cpp */, ); - name = TestCommon; + name = ios; sourceTree = ""; }; - 2A55C02CB23E08907CC59536 /* test */ = { + 11D4943EFA68EF5327C530AF /* Ice */ = { isa = PBXGroup; children = ( - 3961A4222E38E708276B7FDE /* Ice */, - 76CD9CB718EA44E2F9213E26 /* IceSSL */, - 654E73A58D9B5231AE86F9AE /* Slice */, - 26B621CADB2EA17A3A4E64CE /* TestCommon */, - B930C18F08BA6B4A51B506DD /* TestDriver */, + E1E4F7CE0405F5134961ACAB /* acm */, + 28A84410D5EC3F2ECCFBA7FB /* adapterDeactivation */, + B57AAB92F70293A574524A4F /* admin */, + 4713C738241F632037645D12 /* ami */, + F1D895EADEA8B7AEEFE4ADBE /* binding */, + 7C3B7866DDCD4DAA2388B0AD /* defaultServant */, + 4A05594C686A4BD390151A9B /* defaultValue */, + E2C75096D03A467FF2DB68B7 /* enums */, + BC9489EF19D4542F39A6A72D /* exceptions */, + 1B3896B776E58AB128FDF316 /* facets */, + C92FDEA681B2B886B584D14B /* hold */, + 294D1C9DB3A42F07506BBBA6 /* info */, + FA93554C364A3D8246EC4A47 /* inheritance */, + 292E27D69151D8775F086BCC /* interceptor */, + 2F9B997C1535E319875ABC0B /* invoke */, + 6EFD967A66790788845F5915 /* location */, + 2B5D6307AAB378C03A1BA330 /* objects */, + 6BF0497DFD56C5EE3DB71DB4 /* operations */, + 520B1B1329BCC645395C88F6 /* optional */, + D0BB45136F4A0AEE7CEE5896 /* properties */, + A8ABC11E97AE6B281D7D88D8 /* proxy */, + 0263165D25E2764D1515EDD0 /* retry */, + 4400A32CCB5E5E6DA5F6E8E5 /* scope */, + 6E35F9F76FAC3ECAC357F56A /* servantLocator */, + 71E4275A150472ED26C3FD80 /* services */, + C0AC7A1C666A2430B3A709D8 /* slicing */, + 02DA2E65A276493B65A20414 /* stream */, + 6CDEFD8A9FC747F214A76CEF /* timeout */, + 8513436CDC02E4DEC403F6F1 /* udp */, ); - name = test; + name = Ice; sourceTree = ""; }; - 2EF040BFB684E74CC67A27D2 /* iOS */ = { + 1B3896B776E58AB128FDF316 /* facets */ = { isa = PBXGroup; children = ( - E5DC993B644DC3182951F6D8 /* AppDelegate.swift */, - E3F7F6D02B6B524CA6F63378 /* Assets.xcassets */, - 7DD30443F9ACFA3122DBBF34 /* certs */, - A9EA4560530B2442EFCBDE12 /* Controller.ice */, - DCB07DDAE094BB3D44E1C3F7 /* ControllerI.swift */, - D9FBC3E66B0DE3441B70C975 /* LaunchScreen.storyboard */, - 5635B405A32F12DFF335A1ED /* Main.storyboard */, - E70D3533844B2CCD3FD16452 /* ViewController.swift */, + 5208C1A489762B290922821B /* AllTests.swift */, + 8BE034D58C57F544FFE3F539 /* Client.swift */, + F943822FF946957243189A7E /* Collocated.swift */, + 6B98B9DFC1163605AFE57B8F /* Server.swift */, + EBEAB016AE060E51B33C88C5 /* Test.ice */, + B29BEC4319D17CB3605C32E1 /* TestI.swift */, ); - name = iOS; + name = facets; sourceTree = ""; }; - 34341740F619D6D83C3E1D1C /* timeout */ = { + 268D111CA956A6D51FF1B161 /* cpp */ = { isa = PBXGroup; children = ( - A51D3574B7582F500ECB8109 /* AllTests.swift */, - 8423266467D889E92F786035 /* Client.swift */, - 34B79084F15B3CCAE0CE07C7 /* Server.swift */, - EC71B2E86EF7591995578A75 /* Test.ice */, - 0D12263260B9BE0610DCD36A /* TestI.swift */, + 2AAB54C9B624C56DF9532637 /* src */, ); - name = timeout; + name = cpp; sourceTree = ""; }; - 3961A4222E38E708276B7FDE /* Ice */ = { + 28A84410D5EC3F2ECCFBA7FB /* adapterDeactivation */ = { isa = PBXGroup; children = ( - F32F843625F719F7D14C5713 /* acm */, - C0917F12C17273DC361CE27A /* adapterDeactivation */, - 3AC12A96C0EAA6A2A0E1F40B /* admin */, - 88A015C194A50B8DE5341407 /* ami */, - FFBB91B8B43735262EB442F0 /* binding */, - 992AEF6E3846A59BC019B87A /* defaultServant */, - 55C0ADFAC325409D3DCC8070 /* defaultValue */, - ACF55F422858B8E5D541155F /* enums */, - 0076768C510885867AE1A4C9 /* exceptions */, - 7A85518B77514701F40A8B29 /* facets */, - EC55BF468418479529109C96 /* hold */, - 729475B3576BB933EFF4AD93 /* info */, - F1815AADDEFD6FCF493B9897 /* inheritance */, - C7EF7738F348B2900CE9C6DD /* interceptor */, - 767AB163095FF035CA1AE85B /* invoke */, - 22B21896CD5F73CB268B5EDF /* location */, - F0C85AEFAEDDF58E830F63AB /* objects */, - 44AFCE0A6A5A7C5622A182B4 /* operations */, - E33A843FF97946D59286BF55 /* optional */, - C84C9887453A3AC9C96AC570 /* properties */, - 93F87AFA44EBFB4B7D4E527F /* proxy */, - B3E074842B36A8DC3E0C6613 /* retry */, - 9548A1F162AA67AF56FB069F /* scope */, - DD2E44A180FD4333D0012449 /* servantLocator */, - 4626C75C7E4EC2E7A6812887 /* services */, - 0835DEBEC4826CFCE50C4C30 /* slicing */, - EBA8D056F4BCCB84D9F89878 /* stream */, - 34341740F619D6D83C3E1D1C /* timeout */, - E977D9A3178A4B1DCB07E849 /* udp */, + 072DFE1DF91B22D0966DB8E8 /* AllTests.swift */, + C2C6131D4A6ED131271C07ED /* Client.swift */, + D78CE34686A4B4BFD16057B6 /* Collocated.swift */, + 5DAAC857DBB56205C7CCD7F7 /* Server.swift */, + 851EBE7BCB0ABDCADDDBE688 /* Test.ice */, + 563E87FE0656F0B5B4ECBC45 /* TestI.swift */, ); - name = Ice; + name = adapterDeactivation; sourceTree = ""; }; - 3AC12A96C0EAA6A2A0E1F40B /* admin */ = { + 292E27D69151D8775F086BCC /* interceptor */ = { isa = PBXGroup; children = ( - 66B7E30EC0ADE6667DB0718E /* AllTests.swift */, - 9FDC86559C3FF6250119D8C3 /* Client.swift */, - 978BC6A012115CFED653D3D0 /* Server.swift */, - 32FB2DD7866F089F20373B22 /* Test.ice */, - 10A974FBBC3239FDDEAF0562 /* TestI.swift */, + B88F26BEC7B480A327AB48B0 /* Client.swift */, + DDF2419DBADC2D1CB04E0823 /* Test.ice */, ); - name = admin; + name = interceptor; sourceTree = ""; }; - 3DA9BA4F6912DE108F7C8F63 /* iOS */ = { + 294D1C9DB3A42F07506BBBA6 /* info */ = { isa = PBXGroup; children = ( - 8204B0FCE0AB6F68921A3D62 /* CFNetwork.framework */, - 05B1434794EE607DEF633B3A /* ExternalAccessory.framework */, - 46220B1A861EDFDAF19989ED /* Foundation.framework */, - 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */, - C63D63D5D753960C536720E5 /* Security.framework */, - 32BD4AEBE95CA55CB24D7A3D /* UIKit.framework */, + 2F988BC0E5C27AAC15798F7E /* AllTests.swift */, + 646675FFD1880B556F62E835 /* Client.swift */, + DBBA56D618556333971F2555 /* Server.swift */, + F92FE3784F36CF61C114C8A7 /* Test.ice */, + C307ECD76BE33A0CF42D8C5E /* TestI.swift */, ); - name = iOS; + name = info; sourceTree = ""; }; - 411FA658D03F31E668106E47 /* IceGrid */ = { + 2954FE0766C617A0A50AB153 /* Glacier2 */ = { isa = PBXGroup; children = ( - 14798648A0D51B7C430E22D2 /* Admin.ice */, - F80312C7D23DE15D9DBEA4B8 /* Descriptor.ice */, - 2356EF1BC9E19D1F6B3C07D1 /* Exception.ice */, - E4AC7CF06B64C796FBA28CC5 /* FileParser.ice */, - 2D08C9B7366834B041FEC159 /* Registry.ice */, - 7B0D1B5B22833D175EEBFB78 /* Session.ice */, - D69366BB47229C2CA21FBFAC /* UserAccountMapper.ice */, + CB5AF66AE62474538F3B4C8A /* Metrics.ice */, + 9B9DC4A0F25EC95FDA68E396 /* PermissionsVerifier.ice */, + A1C88ECE6870F60549A0EE24 /* Router.ice */, + 1FB327988DA6B56153EC048A /* Session.ice */, + B43B0FAA9A029A4458C3590F /* SSLInfo.ice */, ); - name = IceGrid; + name = Glacier2; sourceTree = ""; }; - 44AFCE0A6A5A7C5622A182B4 /* operations */ = { + 2AAB54C9B624C56DF9532637 /* src */ = { isa = PBXGroup; children = ( - 21D9F7A7A3EBC41F86994383 /* AllTests.swift */, - E93A41E857493EAD3A037003 /* BatchOneways.swift */, - 33685F9F41A4C56E6B518A42 /* BatchOnewaysAMI.swift */, - 6513CE00B5AF115579EADDCA /* Client.swift */, - 5A02DA5B2008898710B01134 /* Collocated.swift */, - 667157F9CC50DAD96CB28E92 /* Oneways.swift */, - B3A30B1089D1296C6F7CED1C /* OnewaysAMI.swift */, - 83EAB33452165797F71F1CF6 /* Server.swift */, - 10CC54DEDC82E4004A463A6E /* ServerAMD.swift */, - A68D41A0941999BF76CC3B35 /* Test.ice */, - 3BE92039E393EF27B9C18847 /* TestAMD.ice */, - D2F0731B6D0D6CE30A96EC68 /* TestAMDI.swift */, - 1D30D88901D3A373A29D0400 /* TestI.swift */, - A10DD7682E3D7D09B6954580 /* Twoways.swift */, - CFA89E93E746AF249D44A7F1 /* TwowaysAMI.swift */, + 95DBB600FA77D84EA35A8CDB /* Ice */, + 09F3FD3EB504797666466B34 /* IceDiscovery */, + 92F57F8532BC14A57F09091E /* IceIAP */, + F2540931AE3E6DE5D924B3A2 /* IceLocatorDiscovery */, + 79661E8792BFD29B3A8ABF76 /* IceSSL */, + 58C32C33667E0F81295A9978 /* IceUtil */, ); - name = operations; + name = src; sourceTree = ""; }; - 4626C75C7E4EC2E7A6812887 /* services */ = { + 2B5D6307AAB378C03A1BA330 /* objects */ = { isa = PBXGroup; children = ( - 54C9E37E3AF9656347BFE470 /* Client.swift */, + 98AB2A03D7BA843F9831286D /* AllTests.swift */, + E560304D19C84FD096965E6C /* Client.swift */, + EC428F92C038CB75D721C046 /* Collocated.swift */, + 0F906003B06BE6FF5CC28C49 /* Forward.ice */, + CF5998B9EC791F4A15E4E0AF /* Server.swift */, + F4B6E42CEF5AD0D3B22131A5 /* Test.ice */, + 67AF0C2725586B3CF91B8D5B /* TestI.swift */, ); - name = services; + name = objects; sourceTree = ""; }; - 463E6BA0691C4DE352EEED99 /* cpp */ = { + 2E501B6FC9C84500B946FA98 /* IceDiscovery */ = { isa = PBXGroup; children = ( - F5787C141D9EAB10CAD77F86 /* src */, + 943F62DEE4D6B5F3DE6B0D22 /* IceDiscovery.ice */, ); - name = cpp; + name = IceDiscovery; sourceTree = ""; }; - 47001A855DF6B013B31CC977 /* IceLocatorDiscovery */ = { + 2F9B997C1535E319875ABC0B /* invoke */ = { isa = PBXGroup; children = ( - 2F0C21A4264BC5D193BE88D2 /* IceLocatorDiscovery.ice */, + 54F210B44A3817B414C37EF0 /* AllTests.swift */, + B4BEBA247618BA49B306637B /* Client.swift */, + 32F86D845456A70BA71A7775 /* Server.swift */, + D02E0C0E582227D272D99C1A /* Test.ice */, + 20939A1E0430B68C7B8CBFDC /* TestI.swift */, ); - name = IceLocatorDiscovery; + name = invoke; sourceTree = ""; }; - 476BBC488BCBBCAE959C8C18 /* IceStorm */ = { + 4400A32CCB5E5E6DA5F6E8E5 /* scope */ = { isa = PBXGroup; children = ( - 47BCCEE21EF0C5C1C57D0197 /* IceStormSwift.h */, - 8496845BA1CB2961BCB4696C /* Info.plist */, + 37F917AF2529230B31D362F2 /* AllTests.swift */, + 5F9F46F2B6EF9528E9EEA0A0 /* Client.swift */, + 20917172F64B1F0658E4FD1D /* Server.swift */, + A60DFD912C3076C2441A6EEB /* Test.ice */, + B30555E6708ECEFAA4EDD334 /* TestI.swift */, ); - name = IceStorm; + name = scope; sourceTree = ""; }; - 505CDA137FA8E0D6E44D95B8 /* ios */ = { + 4713C738241F632037645D12 /* ami */ = { isa = PBXGroup; children = ( - 267C42793494C2AAB39ACB4C /* Notifications.mm */, - 654F7807429CD84D1849133C /* StreamAcceptor.cpp */, - 0307582B11F0A01BAC6732B7 /* StreamConnector.cpp */, - AD1A7FC63C9D08DB4F5D1072 /* StreamEndpointI.cpp */, - 58E70EA4C8E27D76F40CE7E8 /* StreamTransceiver.cpp */, + FB93EDD11FFD843B54F08CD6 /* AllTests.swift */, + 1083A38AC12CA9C0F45A1422 /* Client.swift */, + D789BAF0BE9CC7DA9EAB63A2 /* Collocated.swift */, + AEF69473A2BBE7E2944931A1 /* Server.swift */, + C95A65FBDD4DD8B4198F49DF /* Test.ice */, + 259ABFD3A22C573FDAE353BA /* TestI.swift */, ); - name = ios; + name = ami; sourceTree = ""; }; - 50FA1B5FC2D8608E7F3E0176 /* escape */ = { + 4A05594C686A4BD390151A9B /* defaultValue */ = { isa = PBXGroup; children = ( - 314795999886E271CB9DB2EB /* Clash.ice */, - 14C28AE318E4928F506C915E /* Client.swift */, - 6A8EFB4A80C533DBBE27643B /* Key.ice */, + 46411EDDE8E438FD8EAE98E5 /* AllTests.swift */, + C6AA934BC1D34654E098F584 /* Client.swift */, + D255BAB7E5E515B654EDAD67 /* Test.ice */, ); - name = escape; + name = defaultValue; sourceTree = ""; }; - 51899DE1FEE5EFB1B2546434 /* slice */ = { + 520B1B1329BCC645395C88F6 /* optional */ = { isa = PBXGroup; children = ( - D1EC47AFED2B219DDF33DE6E /* Glacier2 */, - B24D8A817AD3EFE92CDCE132 /* Ice */, - A71C15587ABD149863402737 /* IceDiscovery */, - 411FA658D03F31E668106E47 /* IceGrid */, - 47001A855DF6B013B31CC977 /* IceLocatorDiscovery */, - 6FDF522C514765E690E807F5 /* IceStorm */, + 28A0C809966F471AF3580423 /* AllTests.swift */, + E2405C9C20444A782D096AF0 /* Client.swift */, + 3DCF8EE48A1C89A1B55517AA /* Server.swift */, + 6E8EFB40B36345385787390F /* ServerAMD.swift */, + 29771C1E7DCB8C9578ECF41A /* Test.ice */, + 1BF190DF5F5598B978D43F7C /* TestAMD.ice */, + EEB9F4EFA4B5E11103B64F2B /* TestAMDI.swift */, + 298C03C34C25D9DDCA4DC7BF /* TestI.swift */, ); - name = slice; + name = optional; sourceTree = ""; }; - 55C0ADFAC325409D3DCC8070 /* defaultValue */ = { + 58C32C33667E0F81295A9978 /* IceUtil */ = { isa = PBXGroup; children = ( - 3C0E20E45D9B95CE8D5BAD4F /* AllTests.swift */, - CCFC8BF05E482D90214B7A88 /* Client.swift */, - C83F4865F188690FA0ECA48C /* Test.ice */, + 92DFE8DFF46D7EFF704D4522 /* ConsoleUtil.cpp */, + 0FB6FFE9F654CF558339B7A0 /* CtrlCHandler.cpp */, + 02F2B04E2560FF1CFFCF86DA /* FileUtil.cpp */, + 539605938D0800C084345197 /* InputUtil.cpp */, + 839B1E915C0CBD0129F6BAC4 /* MutexProtocol.cpp */, + 1D033003707757F652EA1B85 /* Options.cpp */, + 32CAEEF22B4B76CD87E065B0 /* OutputUtil.cpp */, + 00F761E139DDBBEA1CA42172 /* Random.cpp */, + 9B548B1CC74CF128EB62110C /* RecMutex.cpp */, + 44E9A83E6111394E43220448 /* Shared.cpp */, + A1998FED769C42CDC7AB11C5 /* StringConverter.cpp */, + EE6273EFDFF34C2B0E6CC267 /* StringUtil.cpp */, + 7529B82331E9F8857C04C1C1 /* ThreadException.cpp */, + 123567924E68C349BAF887BF /* Time.cpp */, + A981A15C3C763E3DF3AFDF3A /* UtilException.cpp */, + 383E5361C48546671985CEC1 /* UUID.cpp */, ); - name = defaultValue; + name = IceUtil; sourceTree = ""; }; - 608412CDB55DAB827867DD06 /* OS X */ = { + 604A9AF6E2246ADA42502415 /* objects */ = { isa = PBXGroup; children = ( - EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */, - 7F3619615028457B13D22FBD /* PromiseKit.xcframework */, - 225F1A44C56068BBE7A7C5AC /* Security.framework */, + A325D1883148FBD7D53A2698 /* AllTests.swift */, + 8DEFB158CC638F81D597598D /* Client.swift */, + 9F4B82012902E7A12E38A2AF /* ClientPrivate.ice */, + 40BDBD839BADBF15799D26C4 /* Server.swift */, + DA9E2ECE0BEF16EAE0EA036F /* ServerAMD.swift */, + 9D31D9B7BAF73B3647C64990 /* ServerPrivate.ice */, + 1805A9AC8B6C175A9078A8BE /* ServerPrivateAMD.ice */, + 20112BFE6EAD65723FA67120 /* Test.ice */, + 17996C6A0CAFEC7E4D7ECECA /* TestAMD.ice */, + EB071CD809B5D6642DD39E53 /* TestAMDI.swift */, + 87F199BFCA75EA1D85ED8573 /* TestI.swift */, ); - name = "OS X"; + name = objects; sourceTree = ""; }; - 630E28857EDEA8737E5229A1 /* Ice */ = { + 63F4BFE04237875C764B4579 /* macOS */ = { isa = PBXGroup; children = ( - 505CDA137FA8E0D6E44D95B8 /* ios */, - 81FA0473F73946ECEBCD0FE8 /* Acceptor.cpp */, - 4622324B5106A88CB515CB4D /* ACM.cpp */, - D23FA024DB9F5B209956E3AE /* ArgVector.cpp */, - FD85785801C128F8130987ED /* Base64.cpp */, - 2FA2F4951A0016B4BB9B3FDB /* BatchRequestQueue.cpp */, - 26C0F7B6692E6D473315573B /* Buffer.cpp */, - 2F163CAD96DA4D8B35B75F74 /* CollocatedRequestHandler.cpp */, - AFF40E41BCC43087809AB261 /* Communicator.cpp */, - 142D0BA7BE87AFD5C7CE9BC7 /* CommunicatorF.cpp */, - 0213BB5F4C1D9ABA471C52F6 /* CommunicatorI.cpp */, - 4412FE2740F051C95BB99EEA /* Cond.cpp */, - 17D6C3CB35C6DBF607E94B77 /* Connection.cpp */, - 652EA402A805AA335ABDD34A /* ConnectionF.cpp */, - FE54115AF58BB636AF34BB12 /* ConnectionFactory.cpp */, - 9C750448EB098CAFBE6C4C28 /* ConnectionI.cpp */, - 1B86D580E85AA9FDC21A6524 /* ConnectionRequestHandler.cpp */, - EF1988317337A4631AE99897 /* Connector.cpp */, - 2C16F4A69D766395D88FE602 /* ConnectRequestHandler.cpp */, - FE1126EB3A8EAD2D7D819A11 /* CountDownLatch.cpp */, - 17967AA9D3379BC4CB647F1E /* Current.cpp */, - E2CFE66499402454014FEC81 /* DefaultsAndOverrides.cpp */, - 82C71BD0A7B648E78E1EE63D /* DispatchInterceptor.cpp */, - 832185C7682C7BAE361C4F71 /* DynamicLibrary.cpp */, - DB847D66C5E3CCA14A7B5EAF /* Endpoint.cpp */, - 5BBF8FCE266097F67D2ECD57 /* EndpointF.cpp */, - 26A022C4D272BBC1296FC3D2 /* EndpointFactory.cpp */, - 41EACC2EEAB15487754D6608 /* EndpointFactoryManager.cpp */, - 6084656BDF75C648D467B6CC /* EndpointI.cpp */, - 8F19682F788B50D8AC95E275 /* EventHandler.cpp */, - 54BAFFFC7F040E1C113E258E /* Exception.cpp */, - E0BA05BEC1FC854319EDBA5B /* FacetMap.cpp */, - D78A96F0E7C0185091A1D216 /* FactoryTable.cpp */, - 983721C2494AFCC1CE30946C /* FactoryTableInit.cpp */, - 3519616430E9681021457E94 /* HttpParser.cpp */, - AD1DA82196FB0896919C1177 /* IconvStringConverter.cpp */, - 6ABE37B5A790F5FD8B6CAB5F /* ImplicitContext.cpp */, - B2F15183B4084729299E75DB /* ImplicitContextF.cpp */, - 1B3D6DF29D8786877FD2AA2A /* ImplicitContextI.cpp */, - EFD4D738B0672E237D0EB820 /* Incoming.cpp */, - EB58FB2F6F3C1FCCCCEBAE8E /* IncomingAsync.cpp */, - 342085FA07DF4FC8C9D4BF6F /* Initialize.cpp */, - F6295A1BCB275C79338F200E /* InputStream.cpp */, - 9527D4E7D5C57B3AC43961A6 /* Instance.cpp */, - E8474C6715BC5D1EC8BB795D /* Instrumentation.cpp */, - 58C5E7464C1E1A08020CB59A /* InstrumentationF.cpp */, - BD45215B101FAA41346DA5A9 /* InstrumentationI.cpp */, - 98C07D589EA8C56AA7625DFF /* IPEndpointI.cpp */, - ECB72A94A18685EA341E3587 /* LocalException.cpp */, - 2854FD4F4A1EA874F91B9E87 /* LocalObject.cpp */, - 72969A7BBA1DB8E3A31C4234 /* LocatorInfo.cpp */, - DB707853D1A0F03F7DC7561A /* Logger.cpp */, - 86ABB8F817591538D1E1A719 /* LoggerAdminI.cpp */, - 962818DC4825125D91BF9095 /* LoggerF.cpp */, - E10876EAB4A47A8DFC9CB0E7 /* LoggerI.cpp */, - 08B93C9A9DE53DEB2F31BDA4 /* LoggerUtil.cpp */, - 53A3ABE0E265451FAF1C27EB /* MetricsAdminI.cpp */, - 37D892DE62DA65AD17EBD8AD /* MetricsObserverI.cpp */, - EDC5BE7A4F70C81BE5E6EFC8 /* Network.cpp */, - B01172F1BF8FD03715DB2993 /* NetworkProxy.cpp */, - DD2619C8768BBC9876A5A684 /* Object.cpp */, - AF859A3FB3C6011A75051175 /* ObjectAdapter.cpp */, - F6BC25BEF6CE461EDD453F60 /* ObjectAdapterF.cpp */, - EE3A30A75CFFA35A55A81E20 /* ObjectAdapterFactory.cpp */, - D16CDB2107A44877C9B96E26 /* ObjectAdapterI.cpp */, - 01CF59A0A4F2EFCB462BC0EA /* ObserverHelper.cpp */, - BA86F3F1E7780A996CC6C670 /* OpaqueEndpointI.cpp */, - D8ABE21302DE3F9A7649731E /* OSLogLoggerI.cpp */, - F6099501585EAF4710021FDE /* OutgoingAsync.cpp */, - 4EA2D25A82444D862E2E8FE7 /* OutputStream.cpp */, - BFB3505005131A44524F72AE /* Plugin.cpp */, - 802D024C9FA3113780412F5A /* PluginF.cpp */, - A2D2E7E5D10022E66D22D66E /* PluginManagerI.cpp */, - 0BCAFC8C49E5187C1AB25D11 /* Properties.cpp */, - 42B62A4842207650FD755725 /* PropertiesAdminI.cpp */, - C6ADF01A80939731A6DE1044 /* PropertiesF.cpp */, - EB3C3EF735A9A35FC0C0EA3D /* PropertiesI.cpp */, - 38892522F82E945C6362F32C /* PropertyNames.cpp */, - 185F5336C6BA21C015B7B9FA /* Protocol.cpp */, - F40EFAB766FDED146C9BA747 /* ProtocolInstance.cpp */, - 944865D9D3ED0F6DF013AABF /* ProtocolPluginFacade.cpp */, - A7A86F3A81CCB9DB5D71756D /* Proxy.cpp */, - 77C88A641E9F7E5B40D7DCAE /* ProxyFactory.cpp */, - 594301575AB6DA25D7CE8A90 /* Reference.cpp */, - B582F6609244629C95C2BAA9 /* ReferenceFactory.cpp */, - A8A19A4F20919D5549598772 /* RegisterPluginsInit.cpp */, - CC42579A7430183C78C09375 /* RequestHandler.cpp */, - D3292F3020C6049CFEA22E87 /* RequestHandlerFactory.cpp */, - 75F1365F7D43AAD84AF3A0B4 /* RetryQueue.cpp */, - E1F28998274F3968D7E62348 /* RouterInfo.cpp */, - 38EF1673D7836C658CD250DC /* Selector.cpp */, - 78B44D0BA063801FABE08C89 /* ServantLocator.cpp */, - 9E8A849DF6717BC2390E7810 /* ServantLocatorF.cpp */, - 0D598D4EEF2DB8A4A7C61F8C /* ServantManager.cpp */, - DE62615CE42FC045EF43AEF4 /* Service.cpp */, - 99BDC735E930313F1DB88B63 /* SHA1.cpp */, - 3BCF7B4C0B439955561E8949 /* SlicedData.cpp */, - 8C143ED3B8F13A61B4DE515A /* StreamSocket.cpp */, - FD2F738D721475D92B0B7F10 /* StringConverterPlugin.cpp */, - 686977AFFABF87664221CF35 /* SysLoggerI.cpp */, - 8DEF71C9DEB340E5082D4561 /* SystemdJournalI.cpp */, - A0671FF56B2EE882549AC8A9 /* TcpAcceptor.cpp */, - 6F3831ECBF61E1F468E14056 /* TcpConnector.cpp */, - 081E77A8123DC3600247F1BC /* TcpEndpointI.cpp */, - 2CC6CDF02346EA5B8E08F76D /* TcpTransceiver.cpp */, - 4E343993404F7D8A254C8648 /* Thread.cpp */, - 9F8909AB8A17501B1CF9A101 /* ThreadPool.cpp */, - E415E99C053809FA95D690E5 /* Timer.cpp */, - 1292D7BDD24245A4E07C74D7 /* TraceLevels.cpp */, - DD741643796E7F602007D9F4 /* TraceUtil.cpp */, - 7A924B67C028B028C7286DCD /* Transceiver.cpp */, - 832678821CEC317EBA1C6F2D /* UdpConnector.cpp */, - 95F67E554DA07E38997B2C88 /* UdpEndpointI.cpp */, - 27CB991118839FEC4D2839FE /* UdpTransceiver.cpp */, - 3CF810C336E0D98C916A36DD /* Value.cpp */, - 5947529BCEAEF6399F92ED31 /* ValueFactory.cpp */, - 2802EE505EBBF7589ED5F209 /* ValueFactoryManagerI.cpp */, - 7E759E64A1C646292070D481 /* WSAcceptor.cpp */, - 07A3DC28B900D1AE3A048739 /* WSConnector.cpp */, - AD2B9AF2609CCA9D0A31526F /* WSEndpoint.cpp */, - 9E86412341EF16ED15F320F0 /* WSTransceiver.cpp */, + 75A01B0041D27E76F5889DE4 /* main.swift */, ); - name = Ice; + name = macOS; sourceTree = ""; }; - 654E73A58D9B5231AE86F9AE /* Slice */ = { + 674B84CFD4634D4C60853BE4 /* TestCommon */ = { isa = PBXGroup; children = ( - 50FA1B5FC2D8608E7F3E0176 /* escape */, + 8604FDEB96C920773DEF9A73 /* Info.plist */, + 31C4F4C9865AF32911F1A508 /* TestCommon.swift */, ); - name = Slice; + name = TestCommon; sourceTree = ""; }; - 680084F4D8F0751662C4BC71 /* objects */ = { + 6BF0497DFD56C5EE3DB71DB4 /* operations */ = { isa = PBXGroup; children = ( - 9AA8D845DDA4210612874AEA /* AllTests.swift */, - 74EAE965F45B9CED1FE9538F /* Client.swift */, - 2A80F7534B35B773563630E1 /* ClientPrivate.ice */, - 8381BC5D10FECBA8FD0504E0 /* Server.swift */, - EDDC0839C27127CD64828388 /* ServerAMD.swift */, - C90960781F3A665A7DA951D9 /* ServerPrivate.ice */, - B24CB74D03AF69953C447D0F /* ServerPrivateAMD.ice */, - A6AAC7C362454260CA2B0593 /* Test.ice */, - 09FF2464AB6823CA9BEF4264 /* TestAMD.ice */, - 142F873E2849078287FD8CC6 /* TestAMDI.swift */, - 4F038B1EA12BEB61CA662B52 /* TestI.swift */, + E9AE62B725D03CDAC1B7BCBF /* AllTests.swift */, + 4945A8EB3582EC6DE2591D30 /* BatchOneways.swift */, + 32E26E67BE14E1FFE12A7ABD /* BatchOnewaysAMI.swift */, + 6B9E54977F5C39E7DEA70EA5 /* Client.swift */, + 55EDAF98FFDD5285D1D33F96 /* Collocated.swift */, + BBBD5106BD3CD7763C850ACE /* Oneways.swift */, + D0635A59EF2F6E52013CF218 /* OnewaysAMI.swift */, + 42C3558A6946242208F8CFF1 /* Server.swift */, + 24D8133BFA0658F49BD7539D /* ServerAMD.swift */, + 2080E2259670BD44DFA6BF51 /* Test.ice */, + 1D37440609D6999223F5D3FC /* TestAMD.ice */, + 5A39082637C810A7FA44C8BC /* TestAMDI.swift */, + 1DB7EAB0C292EBBB3A8C6797 /* TestI.swift */, + 669CDFA4C81273C4A8439769 /* Twoways.swift */, + C3253615704AD8092CF5F9D9 /* TwowaysAMI.swift */, ); - name = objects; + name = operations; sourceTree = ""; }; - 689B29ECB5E92DE29E918548 /* Glacier2 */ = { + 6CDEFD8A9FC747F214A76CEF /* timeout */ = { isa = PBXGroup; children = ( - 49CACF5578779D192C643FD8 /* Glacier2Swift.h */, - 6EC3ACF5E7675DBCB1D86958 /* Info.plist */, + 17A4E70233C2149ACD8FE4F9 /* AllTests.swift */, + 6237E0C8AD8FD3CE4B7CFAA4 /* Client.swift */, + E3C9AD082A4CE3A5F5435669 /* Server.swift */, + F79211AF57FD9BFFC2CA5E3F /* Test.ice */, + 35B05AF2B43317CD297363CA /* TestI.swift */, ); - name = Glacier2; + name = timeout; sourceTree = ""; }; - 6FDF522C514765E690E807F5 /* IceStorm */ = { + 6E35F9F76FAC3ECAC357F56A /* servantLocator */ = { isa = PBXGroup; children = ( - 5FA5B650BE7B3E7E2911DFEF /* IceStorm.ice */, - E4C4327A478904CF26F0F2F3 /* Metrics.ice */, + 2709660761B36C91CB36FD31 /* AllTests.swift */, + B2D6CB1AC0F0C2259F0F5B65 /* Client.swift */, + F624035F99B563D25F09B7C7 /* Collocated.swift */, + DEF8392F8E40DDD59B323CB4 /* ServantLocatorI.swift */, + 0CE2427693C29E4CEF450087 /* Server.swift */, + 53DFCB095E700117F6137EEE /* ServerAMD.swift */, + 7064E95255F87EA955FE604D /* Test.ice */, + 407A0D1CC4E333ABC1A0EECD /* TestAMD.ice */, + 1FDA295C05339DC58C0D9F8E /* TestAMDI.swift */, + 07F3EDD1A3D763999E9C05E9 /* TestI.swift */, ); - name = IceStorm; + name = servantLocator; sourceTree = ""; }; - 729475B3576BB933EFF4AD93 /* info */ = { + 6EFD967A66790788845F5915 /* location */ = { isa = PBXGroup; children = ( - 4067439731844BE6F7E4526E /* AllTests.swift */, - 111B44D212156B847EA01C54 /* Client.swift */, - BA2F00AB997753AF815C6D1E /* Server.swift */, - 7956EECD3C94FF8CFA4E7EF5 /* Test.ice */, - AB6A7AF6D1EC2B8A12F9B498 /* TestI.swift */, + 18BC8EBDD63E0C2D34096A45 /* AllTests.swift */, + 1034928BF4CC47FCD19BE01C /* Client.swift */, + 73A88EA74CCC4616D710AFB6 /* Server.swift */, + E2876A8434BDA95E5E67FA4D /* Test.ice */, + 99528469CD587F598337AACA /* TestI.swift */, ); - name = info; + name = location; sourceTree = ""; }; - 767AB163095FF035CA1AE85B /* invoke */ = { + 71E4275A150472ED26C3FD80 /* services */ = { isa = PBXGroup; children = ( - F7D0E1E196E9F210FC9000AD /* AllTests.swift */, - 146B256974FB51DD1265678F /* Client.swift */, - 70DC389A13F881E48EBCA25C /* Server.swift */, - AE2BBFDFF12EDF36B9AF8B2B /* Test.ice */, - 3DA45D6310FBF8AD14941A35 /* TestI.swift */, + B0A16E1F318A236067C0E62C /* Client.swift */, ); - name = invoke; + name = services; sourceTree = ""; }; - 76CD9CB718EA44E2F9213E26 /* IceSSL */ = { + 7543BE265BB5DB13ADA5B2BC /* IceStorm */ = { isa = PBXGroup; children = ( - A29499781462110F9F525708 /* configuration */, + 097B3A1E14CCFB09E7E4CF92 /* IceStorm.ice */, + 0AEBA30C56A413C37FEDC134 /* Metrics.ice */, ); - name = IceSSL; + name = IceStorm; sourceTree = ""; }; - 7A85518B77514701F40A8B29 /* facets */ = { + 760772C12F4740EB4CB773F3 /* Products */ = { isa = PBXGroup; children = ( - 9A3682E61FA973F15D18272C /* AllTests.swift */, - 0FF2A72A70FF62EAC4F4C3D0 /* Client.swift */, - 9366A44467F809D54376FC77 /* Collocated.swift */, - 1B3CD69D0F2518B0505945D1 /* Server.swift */, - 7C2D6095118702AF4F895B01 /* Test.ice */, - BC8C1D2215CE75FCBF715EF9 /* TestI.swift */, + CC9E31096285763A44ED387C /* Glacier2.framework */, + EC3920B0A3180CE9468B5D48 /* Glacier2.framework */, + 665569D1BB698FBBAD74786F /* Ice.framework */, + 623E717A20F91E615D53E150 /* Ice.framework */, + EF8280C5D17209751E14553C /* IceAcm.bundle */, + 8629DC53723BDBF2B619738A /* IceAcm.bundle */, + 947C60AB5690BEF1175C6AE8 /* IceAdapterDeactivation.bundle */, + C4D40FD4D514C6255DCF1E88 /* IceAdapterDeactivation.bundle */, + 90AB8161442DBB20C4926B3B /* IceAdmin.bundle */, + FA6925D0243F823802CF0D97 /* IceAdmin.bundle */, + 2EB8E16DCE315D105EBA63E6 /* IceAmi.bundle */, + 71C738B29B990967A0EC29C9 /* IceAmi.bundle */, + 00B1BC62D4009B18B3E6DE80 /* IceBinding.bundle */, + ACB54D91532B125D146C8F52 /* IceBinding.bundle */, + 6773D68D1A68AE755B5B28D3 /* IceDefaultServant.bundle */, + F1BA415B45FE40D1AF4C892C /* IceDefaultServant.bundle */, + 3D9AB0F6AC4AB0F35FE74791 /* IceDefaultValue.bundle */, + 8A39FB52971B8BCC7CD607F3 /* IceDefaultValue.bundle */, + 527D2F42A3A39B2F888A301D /* IceEnums.bundle */, + EEAC0D6D20FA5E489B7D4EAB /* IceEnums.bundle */, + ED0D8471106CE1DAD728538A /* IceExceptions.bundle */, + D30F73A7A6497E2340EAC041 /* IceExceptions.bundle */, + F0FBBD74A0A5794E1AF7F7CA /* IceExceptionsAMD.bundle */, + 0443C0420CF9B9FDB9AE0E48 /* IceExceptionsAMD.bundle */, + 75539742281DFE7E4DC5F602 /* IceFacets.bundle */, + 40A8549E2D87C0E0C7322954 /* IceFacets.bundle */, + 4B4F81CBE09B9EC7215B359B /* IceGrid.framework */, + 38BF5DB9B9490714A81542C1 /* IceGrid.framework */, + F17CE2C8EAC28CBD9A0667B3 /* IceHold.bundle */, + 9F9C864BECBB215D589B5735 /* IceHold.bundle */, + 75F40F1911A6EA4452908C71 /* IceImpl.framework */, + 550E7CC0FD0E1918D7A9AB38 /* IceImpl.framework */, + 31CED9038EC89062E2687C72 /* IceInfo.bundle */, + FF5926EFAECD9C0572AFEE64 /* IceInfo.bundle */, + 23205029365EA8B8CFAB923B /* IceInheritance.bundle */, + EBD23A978B397DAF53B55273 /* IceInheritance.bundle */, + AE9FF7D3CCA47C89D218FFEE /* IceInterceptor.bundle */, + 417ECCEE604C6E3005DA5A9A /* IceInterceptor.bundle */, + 87A3043D1B1B7D7DE0B165C3 /* IceInvoke.bundle */, + AE24775D969D93908EB8704B /* IceInvoke.bundle */, + 7C3AA0639A1EDE5ADB774E21 /* IceLocation.bundle */, + B7CC3EAFDBBAED579CB65E02 /* IceLocation.bundle */, + 7E752D08EB62E167C213E390 /* IceObjects.bundle */, + 58E4626AB44A7F584A615366 /* IceObjects.bundle */, + 07B98AB5E4D60D7A85886DB5 /* IceOperations.bundle */, + 6629A6F5DD07DBEF2C036E46 /* IceOperations.bundle */, + 3660CBA3E7714EF6A750EB80 /* IceOperationsAMD.bundle */, + A98619140D09F4A271DA212C /* IceOperationsAMD.bundle */, + 69986A0036CFB94E71AFAEB2 /* IceOptional.bundle */, + 60CB9F01352AB79EE50AD568 /* IceOptional.bundle */, + 4E225F52C80B142297214C92 /* IceOptionalAMD.bundle */, + CB65DF0EB3BC9182E42B33C6 /* IceOptionalAMD.bundle */, + B678281893C42981DD91CE27 /* IceProperties.bundle */, + 6B7F99C1A7C43654FACDAA54 /* IceProperties.bundle */, + 0E8CA41CAED77683EB6C5E74 /* IceProxy.bundle */, + 2D1DA1259D07ADB52B759AD3 /* IceProxy.bundle */, + E64154AC1BD079614CFE6D0B /* IceProxyAMD.bundle */, + 521B530EB810B4F3FDF103AE /* IceProxyAMD.bundle */, + 52278F0A9D3CC113108CA88D /* IceRetry.bundle */, + 111E017C3F3407C4582DC59A /* IceRetry.bundle */, + E4E970020786C4F7F72C5207 /* IceScope.bundle */, + 888B3167CD8A4968215F0A38 /* IceScope.bundle */, + 1290DF39C865119AAFCA300B /* IceServantLocator.bundle */, + 1E6FDC3649CBA1598EAEBEA0 /* IceServantLocator.bundle */, + E65F59B3B48188E5E72C27D6 /* IceServantLocatorAMD.bundle */, + C1EB023D3B85638F4414F46A /* IceServantLocatorAMD.bundle */, + 1D90F14637894A37678FC3C4 /* IceServices.bundle */, + 76660D1C75C5895B539F597E /* IceServices.bundle */, + 52D616F0A4C2D7002EE8EE6C /* IceSlicingExceptions.bundle */, + 6E87C9E4A4FD2945C3A68008 /* IceSlicingExceptions.bundle */, + D18F07031EC4C85F5159AFE9 /* IceSlicingExceptionsAMD.bundle */, + 6407F8C33CF3719F6547CE3E /* IceSlicingExceptionsAMD.bundle */, + 86525836B17F14E966E687FC /* IceSlicingObjects.bundle */, + FA5ED0AF00325B25AA3D49E3 /* IceSlicingObjects.bundle */, + 37BCBC566A446A9FB1903373 /* IceSlicingObjectsAMD.bundle */, + 20323F0CD7B9AE4569FF4757 /* IceSlicingObjectsAMD.bundle */, + 8425D2B0B3D5867C0C9F3351 /* IceSSLConfiguration.bundle */, + DDBB3E496664C584AD5364E5 /* IceSSLConfiguration.bundle */, + 1124897FAD46E0C20C2CD5AF /* IceStorm.framework */, + BBB10CD52BD86395BC343A0B /* IceStorm.framework */, + CE7D6C632EB030AE96F5F06C /* IceStream.bundle */, + 3C8BAD4C851DA28C1DF9F17D /* IceStream.bundle */, + 1362916B0814388BFB67F664 /* IceTimeout.bundle */, + B2C05AE8C73A007F79D23190 /* IceTimeout.bundle */, + 039BF5E6C32CFEAC7B738A87 /* IceUdp.bundle */, + E2C01CEC70FAB4F5A70D2671 /* IceUdp.bundle */, + E47A14897F2C93447F45EFCA /* libIce C++11 iOS.a */, + 952160511B9A724C82F64990 /* libIce C++11 macOS.a */, + EEE2D909D236CA9996023106 /* libIceDiscovery C++11 iOS.a */, + B01C28336B07FA327829314A /* libIceDiscovery C++11 macOS.a */, + 8C01588ADEBCFAC81EF7766F /* libIceLocatorDiscovery C++11 iOS.a */, + 6A510B59CE2B6AA8EFA619EC /* libIceLocatorDiscovery C++11 macOS.a */, + 2C1845D9001948A194C9BF3D /* SliceEscape.bundle */, + 0753F097A120485770B9AAA7 /* SliceEscape.bundle */, + 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */, + 0F2B0C61F19BF428E1751327 /* TestCommon.framework */, + B407E5A8D5B156671264DFC5 /* TestDriver.app */, + 84A4B98757E5D39A8CF508CD /* TestDriver.app */, ); - name = facets; + name = Products; sourceTree = ""; }; - 88A015C194A50B8DE5341407 /* ami */ = { + 79661E8792BFD29B3A8ABF76 /* IceSSL */ = { isa = PBXGroup; children = ( - 28A5057E4450E7A59C9901CC /* AllTests.swift */, - C6A409D5F984C8F0BE68A557 /* Client.swift */, - 097513BEF3C0FEF963ECFE13 /* Collocated.swift */, - 16670BEFB50A823C040927F7 /* Server.swift */, - 7DDAC5988149325C9F48EAC1 /* Test.ice */, - 0C479C4447657FF60E68C8D4 /* TestI.swift */, + BF56A55F9B39D512B0DD722C /* AcceptorI.cpp */, + 4496C208706DABE2498E3D0A /* CertificateI.cpp */, + 6F6F9065B966515883E3A81F /* ConnectionInfo.cpp */, + 5DC630E9AB4CD732D75C3AEA /* ConnectionInfoF.cpp */, + E8AFF8ED68FE8D153138422D /* ConnectorI.cpp */, + 1DA9250AC15D1756168A2B45 /* EndpointI.cpp */, + 53905C1AE3214B94DDA79E59 /* EndpointInfo.cpp */, + D045E859A2B4BFF7C830734D /* Instance.cpp */, + 254F677EC087A0400A2F76B1 /* PluginI.cpp */, + B64E1BCBF28AC80B97565EF1 /* RFC2253.cpp */, + BCF9BA52A64AED325C68A383 /* SecureTransportCertificateI.cpp */, + B667A5C8DD4F6EB3E5C9B46A /* SecureTransportEngine.cpp */, + 23C18BD31119A8393B61B049 /* SecureTransportPluginI.cpp */, + B0BFBF405F4644470BC57DA2 /* SecureTransportTransceiverI.cpp */, + 0AF6D9D6FA59CAFDB3F6AEA8 /* SecureTransportUtil.cpp */, + 84C9F21E9071D52008E29F7D /* SSLEngine.cpp */, + E13FB9A9AF502F1522420390 /* TrustManager.cpp */, + 59F988EA1C5CCD503309CAAC /* Util.cpp */, ); - name = ami; + name = IceSSL; sourceTree = ""; }; - 93F87AFA44EBFB4B7D4E527F /* proxy */ = { + 7C3B7866DDCD4DAA2388B0AD /* defaultServant */ = { isa = PBXGroup; children = ( - 7F170CA23DF8AE7150B4E3C7 /* AllTests.swift */, - 4A2CA18364FCF5316BBC2888 /* Client.swift */, - 14A15B190451E14716CD830B /* Collocated.swift */, - 49E3772BC00C40292C6EE74A /* Server.swift */, - E9FA81E47474D356CBCF7789 /* ServerAMD.swift */, - 94B41AC208CDA308A3FF4EC5 /* Test.ice */, - 2D1B2204B4DA05CE9C3E0E21 /* TestAMD.ice */, - 5A70BF6FEE8DA0A4A9AA500A /* TestAMDI.swift */, - 2E513A8A056433D791A09BAB /* TestI.swift */, + E2543300D55BB8126BF01178 /* AllTests.swift */, + 64A4D123257EF075A8AA0433 /* Client.swift */, + 4D35CFAF36E324DC12502013 /* Test.ice */, ); - name = proxy; + name = defaultServant; sourceTree = ""; }; - 9548A1F162AA67AF56FB069F /* scope */ = { + 7D1405F9F477AA2EEA7EB164 /* IceSSL */ = { isa = PBXGroup; children = ( - F1C374862263D78134D3A2AD /* AllTests.swift */, - B057B033C9D2ED8D38A3D014 /* Client.swift */, - 7B67A4218F8C7CF2FC0CF13A /* Server.swift */, - 3EB97D29C79CEB3038E5C4D7 /* Test.ice */, - 038169BDD15B56BE2FDA00AB /* TestI.swift */, + CA3C5BCF6960FD1380CD864E /* configuration */, ); - name = scope; + name = IceSSL; sourceTree = ""; }; - 9810E379CD8BCC43A32C2B12 /* IceUtil */ = { + 7F869F89402E785E27FE1228 /* exceptions */ = { isa = PBXGroup; children = ( - A2FED7F2609ACAA2CD5B5A7A /* ConsoleUtil.cpp */, - 5EC5830B2180DC75DE4E4E8F /* CtrlCHandler.cpp */, - 6C04E61AE1032EFB42B418E1 /* FileUtil.cpp */, - E52E96A3FD8751DCDB6A6B00 /* InputUtil.cpp */, - 4C6167F6A18ADBBB27B0D7E4 /* MutexProtocol.cpp */, - A44522A036AA7C188A725680 /* Options.cpp */, - 41DFD78B26A3BC5ABCE708CD /* OutputUtil.cpp */, - FF99C502AB691B67373D09AE /* Random.cpp */, - 3AEDDE79BC9FA0E1503ADFA4 /* RecMutex.cpp */, - E6AE5573D03A0091F921C2EC /* Shared.cpp */, - B1A5D52941189B36C37824EE /* StringConverter.cpp */, - B7EE5328C7A8863943281E59 /* StringUtil.cpp */, - 2F60A221428806098E72B6E0 /* ThreadException.cpp */, - 465F648252C614812204678B /* Time.cpp */, - 2A9F1D1BFF611AEC3B1F525B /* UtilException.cpp */, - F9F109EDD838DBC121C3F0D3 /* UUID.cpp */, + EA894B52D407082F22D345EF /* AllTests.swift */, + F82270A0824387C79330584C /* Client.swift */, + AF9A4516C12A26D9D9FBBED9 /* ClientPrivate.ice */, + C19E1DCD6ED441B62D90114D /* Server.swift */, + C170AEFA2DAA25C77B642B50 /* ServerAMD.swift */, + 82C6B16C4B7E40482A56F033 /* ServerPrivate.ice */, + 00C7727DB84AFAE74242A27A /* ServerPrivateAMD.ice */, + 0826EF9628F3B4A99BBD3238 /* Test.ice */, + 3A42A2314F003B797A43F677 /* TestAMD.ice */, + E672D54C33B901EEFAD1A9FF /* TestAMDI.swift */, + 7817994383F3B13BD7F75310 /* TestI.swift */, ); - name = IceUtil; + name = exceptions; sourceTree = ""; }; - 992AEF6E3846A59BC019B87A /* defaultServant */ = { + 8513436CDC02E4DEC403F6F1 /* udp */ = { isa = PBXGroup; children = ( - 83915D8BA4859BF0DBD7B548 /* AllTests.swift */, - 1B96E6391FBDC6A572CE2CA8 /* Client.swift */, - 167F66F4D885478055ED967C /* Test.ice */, + 0A4046F75C70A64F2CF9A29E /* AllTests.swift */, + 5FD566BEBA418C9151C0CC95 /* Client.swift */, + 0F4E52F6B53EC59E12989136 /* Server.swift */, + 7DCC9D507EDF3CD2A1A3150F /* Test.ice */, + 6C6C2523849920E54B5C3674 /* TestI.swift */, ); - name = defaultServant; + name = udp; sourceTree = ""; }; - A29499781462110F9F525708 /* configuration */ = { + 85CE760D134EBA779C2606EB /* Slice */ = { isa = PBXGroup; children = ( - F74B28F3482CE65CFFC31D5E /* AllTests.swift */, - EA3623F9F4A1CA94B541C05C /* certs */, - 5F6AAC9E3757E6E91347477B /* Client.swift */, - D19C24D6D98060F5D3DC767F /* Server.swift */, - AE6DD4490D2D6A6C80BA2B03 /* Test.ice */, - 9359C59FEC8D1829DE6D27FA /* TestI.swift */, + C77E0B705D52E399E5609326 /* escape */, ); - name = configuration; + name = Slice; sourceTree = ""; }; - A71C15587ABD149863402737 /* IceDiscovery */ = { + 881E71B53AA71733450D62A8 /* test */ = { isa = PBXGroup; children = ( - BEA90AA9491C68F453CC2B76 /* IceDiscovery.ice */, + 11D4943EFA68EF5327C530AF /* Ice */, + 7D1405F9F477AA2EEA7EB164 /* IceSSL */, + 85CE760D134EBA779C2606EB /* Slice */, + 674B84CFD4634D4C60853BE4 /* TestCommon */, + B82B3738410A4815146AB77F /* TestDriver */, ); - name = IceDiscovery; + name = test; sourceTree = ""; }; - ACF55F422858B8E5D541155F /* enums */ = { + 92F57F8532BC14A57F09091E /* IceIAP */ = { isa = PBXGroup; children = ( - CCD0FE357CCF946FEC6A719F /* AllTests.swift */, - 6EDB0B02B3ED8BEB70182162 /* Client.swift */, - EC8EB4350103B673F2C8492C /* Server.swift */, - 6E437B10CC2A98D494235858 /* Test.ice */, - D584721E70A4A59344385873 /* TestI.swift */, + 860EEE47FA5F73DF18371EB0 /* ConnectionInfo.cpp */, + 069A48B23F945A72742CD39C /* Connector.mm */, + D7348ED97038DE804E76B4F3 /* EndpointI.mm */, + 4A1720B2080C837E243F2B03 /* EndpointInfo.cpp */, + 94E64A8A4468924DD9A7C2D2 /* Transceiver.mm */, ); - name = enums; + name = IceIAP; sourceTree = ""; }; - B24D8A817AD3EFE92CDCE132 /* Ice */ = { + 93F8BD5B95CB7AA1FD5A9D25 /* iOS */ = { isa = PBXGroup; children = ( - 1EB568811E2BF696EC8E3B97 /* BuiltinSequences.ice */, - 1B10F3FF9F7989BA4FBD59F0 /* Context.ice */, - CEF85180CA61C2F9F98973FA /* EndpointTypes.ice */, - 28EBC6B052A9199638397392 /* Identity.ice */, - EC1C464D877DF1AFBB2D6425 /* Locator.ice */, - 67C8D0331EE9F189030CF6FC /* LocatorF.ice */, - 36157027B4A9EB7D3EC1C47C /* Metrics.ice */, - 3412FB23BF9F9E5DED5AF6B0 /* OperationMode.ice */, - 7B1EF955F70B0A021A4F2C7E /* Process.ice */, - 1E41487C8DDE61F3EB934BB5 /* PropertiesAdmin.ice */, - D1A668F98BF103CE141085BF /* PropertyDict.ice */, - DC9ED7619A57BEE47972336A /* RemoteLogger.ice */, - C42A7B28B41EC36B0DCB6EC3 /* Router.ice */, - 897297169BA7DBDB87CE1088 /* RouterF.ice */, - D9AA20FA76371E7525561E7D /* Version.ice */, + B80D1F29C6A35D955A94B1AE /* AppDelegate.swift */, + 1C15A5FB6FD609998456F346 /* Assets.xcassets */, + 5A4F6ED397F0755CDCDD8ACA /* certs */, + 9B32AF013885664AA93CDF20 /* Controller.ice */, + FDB2B8CC413A604BFE6E9BEB /* ControllerI.swift */, + AA144D7BB355829B28020F78 /* LaunchScreen.storyboard */, + BB2FDEF71FCA90CDBDB32AAB /* Main.storyboard */, + F8C2266EFA8E48B90FC6D26F /* ViewController.swift */, ); - name = Ice; + name = iOS; sourceTree = ""; }; - B3E074842B36A8DC3E0C6613 /* retry */ = { + 95DBB600FA77D84EA35A8CDB /* Ice */ = { isa = PBXGroup; children = ( - 7EE2506792F31CBED83E4851 /* AllTests.swift */, - 589870D40ED0745158B279A2 /* Client.swift */, - D0D8E0D429D160FEABB28CA0 /* Collocated.swift */, - 1F04BEF80E053F20F7E0FAD9 /* Server.swift */, - 5263C3738C3EF761B5202141 /* Test.ice */, - E7D20169169F829071B5057F /* TestI.swift */, + 0B7370BA2BB47E98429992B1 /* ios */, + F76B6CFDC81E7D00110BA047 /* Acceptor.cpp */, + 4AA6F7EAE7C3E4C3B39E26A6 /* ACM.cpp */, + CA0D87A615782B7CB24C3F4C /* ArgVector.cpp */, + 641754B3600E4B8A31487EBC /* Base64.cpp */, + 984E408AE1C36AB3B759095E /* BatchRequestQueue.cpp */, + 6317DF41896C81DC9D6A94F0 /* Buffer.cpp */, + 1B7D798CB60FB962ADC8BB32 /* CollocatedRequestHandler.cpp */, + 9E33109A1F05AA19BCF9156F /* Communicator.cpp */, + EB64AD8D0C4921CF515944A6 /* CommunicatorF.cpp */, + 0E5299A9AA357D51C620DC87 /* CommunicatorI.cpp */, + D86BEF346F9EC95AE96B2542 /* Cond.cpp */, + 3EA30CE30FF86630A51D19F8 /* Connection.cpp */, + 8488FB8F37D7958B38971E9F /* ConnectionF.cpp */, + D570457F4FC3998BFFBC686B /* ConnectionFactory.cpp */, + 94212BAD957A78E36EC3EED4 /* ConnectionI.cpp */, + B7C84F9F86A2642B4DB21761 /* ConnectionRequestHandler.cpp */, + 54DC8E443E82EBB5B393862E /* Connector.cpp */, + EDDFDF674093FB356181A861 /* ConnectRequestHandler.cpp */, + 4530DDD8E7C70EA73CE9806C /* CountDownLatch.cpp */, + F5C224A90E0F866706D2C93A /* Current.cpp */, + 1AA5332EE9D7AC564F1B4DC6 /* DefaultsAndOverrides.cpp */, + 213E7606B6C3CA1D4D891CC6 /* DispatchInterceptor.cpp */, + C2252508F6DC523B17A69C5E /* DynamicLibrary.cpp */, + 3EAD21EB605F400BA46ECBE5 /* Endpoint.cpp */, + 35FF9CE9706BA3DC7134F434 /* EndpointF.cpp */, + C75AC8274DA14FCDB42058FA /* EndpointFactory.cpp */, + 69C937818B79D71765A58104 /* EndpointFactoryManager.cpp */, + EE02DD17EB206613ADA00EC9 /* EndpointI.cpp */, + 847F20E8EE2CB3D83F522A4D /* EventHandler.cpp */, + 0BF47819089271BCD4443183 /* Exception.cpp */, + F65E818320EBA8D182AD4B31 /* FactoryTable.cpp */, + 61BF1C2278EF3139FA423B0C /* FactoryTableInit.cpp */, + AD8AC0525446464A4513C8E8 /* HttpParser.cpp */, + 06FF3EB23F66FB5AF64C1B75 /* IconvStringConverter.cpp */, + 2817D930A52C7947C86C0F56 /* ImplicitContext.cpp */, + A9BFE5D27E6A8D49C4BDD2EA /* ImplicitContextF.cpp */, + 9A5D217FA26C556261BDDDB2 /* ImplicitContextI.cpp */, + 01108206A582A67F00C05EBC /* Incoming.cpp */, + 0C8E7374D8D5DA4006B190AC /* IncomingAsync.cpp */, + 883D1C33472953A1CD1DB112 /* Initialize.cpp */, + 867D107D3A25FB9B5C7EB522 /* InputStream.cpp */, + 34AEBCCD220042AB3BE523A8 /* Instance.cpp */, + 2DF8C754C9DA80B0B434EF6B /* Instrumentation.cpp */, + 290B87AA15456D1942D99E39 /* InstrumentationF.cpp */, + 051AA64F020D939F0BCE5A50 /* InstrumentationI.cpp */, + FBA41C7E4F8D63EBFF2A282F /* IPEndpointI.cpp */, + 857C1887760380EA7D969C13 /* LocalException.cpp */, + 8A9C59F0ED0E375A09B03481 /* LocalObject.cpp */, + 94CF1B1374A50ED7765868B6 /* LocatorInfo.cpp */, + 7100AF407ED59019E77AC492 /* Logger.cpp */, + EA284C28AD71C2D624582DC7 /* LoggerAdminI.cpp */, + 177CE1264BA28FAD588640ED /* LoggerF.cpp */, + 0FC2161B7FFDD05E63318911 /* LoggerI.cpp */, + 9987215BF230537852456754 /* LoggerUtil.cpp */, + E64DA691FE8767C9AE657374 /* MetricsAdminI.cpp */, + 610608EEED146B107B5293A5 /* MetricsObserverI.cpp */, + 0EFFE201B94FAE9FB1295F1D /* Network.cpp */, + EE12756CF23A83E52C61D223 /* NetworkProxy.cpp */, + D7D263D2E578BF1F7AF589B9 /* Object.cpp */, + 48E10D0AC873B9C7821B8DCA /* ObjectAdapter.cpp */, + 219598874AE31277B34A82FA /* ObjectAdapterF.cpp */, + 4D117E7E0EC5C30487CF9329 /* ObjectAdapterFactory.cpp */, + 13B8F6994B469BFB24A1CBF1 /* ObjectAdapterI.cpp */, + EB4A218E07221A655D54AA36 /* ObserverHelper.cpp */, + 785159C3CF8A869678895694 /* OpaqueEndpointI.cpp */, + E8D821D8582839A7FD652F7F /* OSLogLoggerI.cpp */, + 104801D9CD4099BFAF898CF0 /* OutgoingAsync.cpp */, + 5DF959949FDCEE7CC6B0467A /* OutputStream.cpp */, + 74CAD313ABBD56B539F69B27 /* Plugin.cpp */, + 0BB35BFDB4D9B787E400326E /* PluginF.cpp */, + 8865E47F058CCABBA06DB4AE /* PluginManagerI.cpp */, + 6CE17F65AD7D95CE4D52AEB8 /* Properties.cpp */, + C1AFCED0816ADEA6C571C2E7 /* PropertiesAdminI.cpp */, + D7D1EED80BE188B0BAFB69F1 /* PropertiesF.cpp */, + 2C7F78C569CF9618E842EF08 /* PropertiesI.cpp */, + 024741EC9D6CFD0898B474E7 /* PropertyNames.cpp */, + B215297BE120F8697A57E235 /* Protocol.cpp */, + 748D6B2B330737998D89EFDD /* ProtocolInstance.cpp */, + 16B2D2F24F75A2CEA9588C92 /* ProtocolPluginFacade.cpp */, + B9394803D622D0ECAAE9E923 /* Proxy.cpp */, + 864791648F2C6EEBD4033544 /* ProxyFactory.cpp */, + 262A4BBE4803F28C3591381A /* Reference.cpp */, + 897808914C54B9799F9A2F91 /* ReferenceFactory.cpp */, + E80B06A40D65F65EF6C553E5 /* RegisterPluginsInit.cpp */, + 23CFD2FCAE3C1695E2970A65 /* RequestHandler.cpp */, + AFE02F4EBE4026D7ABF4C2FD /* RequestHandlerFactory.cpp */, + 32061348E05540BA94F263F1 /* RetryQueue.cpp */, + B5E2090C4D1E0D664633C3C5 /* RouterInfo.cpp */, + 55D284414C8201FF6861AD7E /* Selector.cpp */, + 012209B06380729805C41D0E /* ServantLocator.cpp */, + FF9AEE9480B3623AF7E5DCA7 /* ServantLocatorF.cpp */, + 625E4E47BE0B8C13B100A33B /* ServantManager.cpp */, + 052495E30CFEFD5327466782 /* Service.cpp */, + 17A5B44F6AAFD44E0B814FED /* SHA1.cpp */, + 5CC0CB6129CE22F51EF8C00D /* SlicedData.cpp */, + 7592510233717E6CA95DA038 /* StreamSocket.cpp */, + 66B3742B1FD8BF38A13DB528 /* StringConverterPlugin.cpp */, + 5EC22E4227147E53CE7F4835 /* SysLoggerI.cpp */, + D0E3AEAA11EF708457A97AFC /* SystemdJournalI.cpp */, + 4AEA593E8C6F3F0525BEB029 /* TcpAcceptor.cpp */, + 8CEA95C263FCF61FDAC35F2D /* TcpConnector.cpp */, + D31585DF150199617B8B170F /* TcpEndpointI.cpp */, + 8D126B446148A88233AA2278 /* TcpTransceiver.cpp */, + 7430D6EB5ECE9ED78A4B9BA1 /* Thread.cpp */, + 5728530DC35D7B52A550D7E8 /* ThreadPool.cpp */, + D3823D97E04C4BFCD7FB534C /* Timer.cpp */, + D36CEA6C13079203D960A28A /* TraceLevels.cpp */, + 7370B3F9D40F36F1BD730CCA /* TraceUtil.cpp */, + C2F0B4FF873A76833E941826 /* Transceiver.cpp */, + 3E4932165161ABA64172816A /* UdpConnector.cpp */, + 356A5466FDDC86F58D1F4D42 /* UdpEndpointI.cpp */, + 9826BFD5D5016B5B7DA30496 /* UdpTransceiver.cpp */, + CAF52D8D0936AD9DAC5FB260 /* Value.cpp */, + 9A5EDE74C3A3591BBEF47D29 /* ValueFactory.cpp */, + 5B3CF540FFDDB8D8BB9DF0C5 /* ValueFactoryManagerI.cpp */, + CE7FC47F6D6B7DAFEE7F7199 /* WSAcceptor.cpp */, + C12F72D326BA31E4F3222697 /* WSConnector.cpp */, + 5E49FEDA41C839C2DB5BFA9D /* WSEndpoint.cpp */, + 0AE70EAEDEBB73331DA341D1 /* WSTransceiver.cpp */, ); - name = retry; + name = Ice; sourceTree = ""; }; - B7BF652928970190AC67ADB8 /* IceDiscovery */ = { + 9C1A17CD0E8467D306B6927B /* Ice */ = { isa = PBXGroup; children = ( - FB3C826EC5ED81E33C86DFFB /* LocatorI.cpp */, - 75B0E1B932B09C64904B3E75 /* LookupI.cpp */, - FC73C4C73D34B73CEC2085EB /* PluginI.cpp */, + 245956FF449E351AEF203C2A /* BuiltinSequences.ice */, + 8873EA7FF0431868BF97BF8D /* Context.ice */, + 1082EDDCF74692688AF946C2 /* EndpointTypes.ice */, + FFC16F00DE4220D83CB10211 /* Identity.ice */, + 46BD0BAC03B80804BF23E167 /* Locator.ice */, + 3157232929DAA590D328DEC9 /* LocatorF.ice */, + 03C85223CF53FA8C62D9D7B6 /* Metrics.ice */, + 5A78C4D73F6D7790B04847E2 /* OperationMode.ice */, + 316C086D0730E162FA3210E3 /* Process.ice */, + CCFAA81005DA44D89E41494D /* PropertiesAdmin.ice */, + 6D3DB17839D1905C961285D5 /* PropertyDict.ice */, + C5A0671B53C97F7A32AFCFA1 /* RemoteLogger.ice */, + E9827291A2B8B54C49FD1C85 /* Router.ice */, + C2DCE61256F8846CB481C917 /* RouterF.ice */, + 699F0DFE09B6CD4066FBF4C3 /* Version.ice */, ); - name = IceDiscovery; + name = Ice; sourceTree = ""; }; - B930C18F08BA6B4A51B506DD /* TestDriver */ = { + A8ABC11E97AE6B281D7D88D8 /* proxy */ = { isa = PBXGroup; children = ( - 2EF040BFB684E74CC67A27D2 /* iOS */, - FDEE0305EA36CD2B21DBED3F /* macOS */, + CB3BD1DF07A3C09CF5FF39EB /* AllTests.swift */, + 7ED051A2BDDB9511D133CC34 /* Client.swift */, + E5D56F4CFBCB26C84B24DFB5 /* Collocated.swift */, + 10A591B1108FD3668546AB65 /* Server.swift */, + 0F4F314389C68631ED17CF4C /* ServerAMD.swift */, + C931BC0FF471A0F481027ADD /* Test.ice */, + B1D1ED077D2A30E8ADBE189D /* TestAMD.ice */, + 35CD479A4FD1B76DA514E6A7 /* TestAMDI.swift */, + B086B5175F1B76E321C3F86D /* TestI.swift */, ); - name = TestDriver; + name = proxy; sourceTree = ""; }; - BF68810F9F6E9F0E5E50E686 /* IceSSL */ = { + B049F4E434D8EE83BE042906 /* src */ = { isa = PBXGroup; children = ( - 4E8DA336FE4300536CD71A43 /* AcceptorI.cpp */, - F80B65BA154B6DFE570284EE /* CertificateI.cpp */, - 41E7E4C4720DDBD98AF18C6E /* ConnectionInfo.cpp */, - 96E9FCBFD4A041F02FB124A6 /* ConnectionInfoF.cpp */, - 9C76356862A29F54F63817D6 /* ConnectorI.cpp */, - 83BB4164CB853953B834AADD /* EndpointI.cpp */, - BB3683C61806347682B83157 /* EndpointInfo.cpp */, - BA10DF21AA7BD6CE2F6005E2 /* Instance.cpp */, - 4D1E8FAAB47BD0BAEDF4D2FF /* PluginI.cpp */, - 47F3C0BF03857AE7150714D5 /* RFC2253.cpp */, - 54F3C8023ECF28890B143479 /* SecureTransportCertificateI.cpp */, - EBA6B0FB94F3D71BFF5C870C /* SecureTransportEngine.cpp */, - A79AE45EE8A851627DB106A1 /* SecureTransportPluginI.cpp */, - 7E5117A0E6AFC1C47DD12C3C /* SecureTransportTransceiverI.cpp */, - 75152288E3A29AD5C1FC467D /* SecureTransportUtil.cpp */, - CAFFEA2B5A8AE9C11E531B18 /* SSLEngine.cpp */, - E1C2EF0082C7579ECE9ED8BF /* TrustManager.cpp */, - F33423CE6255B0CEC51423F2 /* Util.cpp */, + C47D21C7C0BF4FFF86CE899B /* Glacier2 */, + C6C0F9269324698F9CF16115 /* Ice */, + C5484D2A3AB3A955FDDEE694 /* IceGrid */, + B1ED1A50FDE6061434467CC1 /* IceImpl */, + FD8286BE0A069336112BA7F8 /* IceStorm */, ); - name = IceSSL; + name = src; sourceTree = ""; }; - C0917F12C17273DC361CE27A /* adapterDeactivation */ = { + B0C3452D122A26EAB9C7E207 = { isa = PBXGroup; children = ( - 4A0946E63B4A232965ABDC8F /* AllTests.swift */, - 23BA4FD4F07A1F312BB3804B /* Client.swift */, - 7A6DE490CAA151058A7A77AE /* Collocated.swift */, - 965052459EF66532D1A53DAC /* Server.swift */, - 11EE85F933402720B1EF6CF7 /* Test.ice */, - E24E0E30BCEE526832CFF2C0 /* TestI.swift */, + 268D111CA956A6D51FF1B161 /* cpp */, + 055434BF6DE84E9628D6C120 /* Frameworks */, + 760772C12F4740EB4CB773F3 /* Products */, + F15C905CB42BC3261A5947C5 /* slice */, + B049F4E434D8EE83BE042906 /* src */, + 881E71B53AA71733450D62A8 /* test */, ); - name = adapterDeactivation; sourceTree = ""; }; - C4B9FBD376A1113679514F16 /* Products */ = { + B1ED1A50FDE6061434467CC1 /* IceImpl */ = { isa = PBXGroup; children = ( - 534A5F8BE7C459A933D4054F /* Glacier2.framework */, - 1B79277683CA9B3529AC906D /* Glacier2.framework */, - D8BC5C768D15A8A8C296597B /* Ice.framework */, - 1959BEAAF7268C8B0022D948 /* Ice.framework */, - 5856D3133582D30B6424B442 /* IceAcm.bundle */, - 4926C66009891C6BE3389C72 /* IceAcm.bundle */, - 6A000A916E9BBC2F74F97B21 /* IceAdapterDeactivation.bundle */, - CB082E75D7E8687246CC10D9 /* IceAdapterDeactivation.bundle */, - 0D30BA12F527E21D48DFD791 /* IceAdmin.bundle */, - DF53E5C9769D0305AAB42633 /* IceAdmin.bundle */, - F1D304290414990EF0C45B8F /* IceAmi.bundle */, - 5A68B6650365588738DD6CA4 /* IceAmi.bundle */, - 877C028D182B31A7DA65893F /* IceBinding.bundle */, - 2B30F4B19AFB12FA54B16AED /* IceBinding.bundle */, - 5258134D3A215F2466435990 /* IceDefaultServant.bundle */, - BAC520FFA73DABE04C898130 /* IceDefaultServant.bundle */, - B85B17A8DB3D78F163220271 /* IceDefaultValue.bundle */, - 9A3965D141BF41DF1F0C551B /* IceDefaultValue.bundle */, - 574A31600701185E9FDEC087 /* IceEnums.bundle */, - C4D7B1A0626DB0DDFD4BD4B7 /* IceEnums.bundle */, - 2215FA4DF66DE6FD987EDA9A /* IceExceptions.bundle */, - 36C71BAF8FD41F9650AE8686 /* IceExceptions.bundle */, - B06E3E53A88EBCFBC944B38B /* IceExceptionsAMD.bundle */, - 33C7DBD13018E9D53A2497D4 /* IceExceptionsAMD.bundle */, - 86FF409A4D607F7C3F700F8B /* IceFacets.bundle */, - CBB1409BA01AD2ADEC3BD9D4 /* IceFacets.bundle */, - CA3048781DE1F85C3C98A17C /* IceGrid.framework */, - 421D20F7517BB9BEE5FAA9EC /* IceGrid.framework */, - 5C22AA8771C989C5BBD131D5 /* IceHold.bundle */, - 93B5CBAE0C70CA58A1C2C165 /* IceHold.bundle */, - 24DF17C88033201714B50ED2 /* IceImpl.framework */, - 297ABB350A7C637780C074E9 /* IceImpl.framework */, - FBDE5E179DE0FFBEFE10819F /* IceInfo.bundle */, - A9FEE9EA5FF7D393AB623659 /* IceInfo.bundle */, - D62655BDE99F0EFB5029C764 /* IceInheritance.bundle */, - 35D9409C55AEE7FF99166B57 /* IceInheritance.bundle */, - E03E5416C65A53BFBA1435CB /* IceInterceptor.bundle */, - 623289333D18DFA2108F0CE7 /* IceInterceptor.bundle */, - 9DAAF34F8A69EEDC87F889E7 /* IceInvoke.bundle */, - 49A523EF80AE64499CA309E4 /* IceInvoke.bundle */, - DDBA009CB8D3B5A0846CFA61 /* IceLocation.bundle */, - BB964A860C92F7275D083A26 /* IceLocation.bundle */, - 3D99E4B9F11AB36F978CF616 /* IceObjects.bundle */, - 26333E41B14F786F1F2AE7BD /* IceObjects.bundle */, - 01CB046806C40FF9E09F98EC /* IceOperations.bundle */, - FF80542C911241FAB9075178 /* IceOperations.bundle */, - 1E68540A1B43B1CBC5942095 /* IceOperationsAMD.bundle */, - F711FC1FF1A09C9363807725 /* IceOperationsAMD.bundle */, - 7D09811ABF1129D166FBECD8 /* IceOptional.bundle */, - 27341FF2E126E6E82D9FAE9B /* IceOptional.bundle */, - A36EC0AEC31627FD61F14E27 /* IceOptionalAMD.bundle */, - 3D29EC47A6324333C0CB11E6 /* IceOptionalAMD.bundle */, - DBE10FD0363BDE5EDFF0F511 /* IceProperties.bundle */, - E90675902D436ECB7A6A3254 /* IceProperties.bundle */, - BF0DC95EBCEEF58EE186A10F /* IceProxy.bundle */, - 7E18CC57E815D2169B082AD3 /* IceProxy.bundle */, - E3CDD73D8E2EF9035ABD5D8E /* IceProxyAMD.bundle */, - 336A43E8BEB51DFB4DA5FC77 /* IceProxyAMD.bundle */, - 5EEB85F7C36B02C635BBFDB7 /* IceRetry.bundle */, - 6B08215B9CC0C2ED40F9DF81 /* IceRetry.bundle */, - CDD4B038FAF18C50CBAD7DEA /* IceScope.bundle */, - 0C6AA868B958A4B62ED7C5D5 /* IceScope.bundle */, - 11A152F03A7151A37E5BCA0B /* IceServantLocator.bundle */, - 715E4D917D550570FD3CFF6A /* IceServantLocator.bundle */, - 05286265BA8BCB8D08B75476 /* IceServantLocatorAMD.bundle */, - EE844510C2D8711298D5FC31 /* IceServantLocatorAMD.bundle */, - 93221F7A8289C9024F246985 /* IceServices.bundle */, - 824FC6BA5BCE19588DEC2AD8 /* IceServices.bundle */, - 826C0C52CAC6A5F22BF6ACE9 /* IceSlicingExceptions.bundle */, - A6EA1C8C1024620CA648E9E4 /* IceSlicingExceptions.bundle */, - AD895AEC9101644623712329 /* IceSlicingExceptionsAMD.bundle */, - 3CC388484314A4D11DA2CEA8 /* IceSlicingExceptionsAMD.bundle */, - E06F35E158588B7C1D8BA3F6 /* IceSlicingObjects.bundle */, - 57A4D45FAFD10790DA8D9A1F /* IceSlicingObjects.bundle */, - C9B36D91B9D68383E5F105B3 /* IceSlicingObjectsAMD.bundle */, - 14BBB915E0507F5D160ACEFA /* IceSlicingObjectsAMD.bundle */, - BD7F723468E384E171830EC1 /* IceSSLConfiguration.bundle */, - E2DB3B0D04B959637ABED20A /* IceSSLConfiguration.bundle */, - F7687536A74185F0859012B6 /* IceStorm.framework */, - A7A335019D6FC3FE103657A6 /* IceStorm.framework */, - C4D7BABAB3FF83E286B743F7 /* IceStream.bundle */, - 3621866FB3468BC2E48FB9B7 /* IceStream.bundle */, - 2786B7490F83497D5B9DC916 /* IceTimeout.bundle */, - 84129524C4F70B842B955026 /* IceTimeout.bundle */, - 6862C6DF1F03FD3BC6D46040 /* IceUdp.bundle */, - 50A2B975515FD9EEB3223999 /* IceUdp.bundle */, - 5FA0861C1DB82FD5CE33C4D6 /* libIce C++11 iOS.a */, - 223E7C12AA05A09CB932E9A1 /* libIce C++11 macOS.a */, - 81BBD19500FFDB5290F6EA34 /* libIceDiscovery C++11 iOS.a */, - FEB12180C1DB3A1694DE7788 /* libIceDiscovery C++11 macOS.a */, - 95C4777E39FA8DD4FBD09FD6 /* libIceLocatorDiscovery C++11 iOS.a */, - 253491E3FEF80ACD0B5781B2 /* libIceLocatorDiscovery C++11 macOS.a */, - CA697889B116706378E57DA6 /* SliceEscape.bundle */, - F29465792F99C245D88FAB64 /* SliceEscape.bundle */, - 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */, - 2EA069A716E434C038F0318F /* TestCommon.framework */, - A6243D389694D099C0184BCF /* TestDriver.app */, - CAAE15001A3C252F22A5E566 /* TestDriver.app */, + B30F448C0594430A4E0E1449 /* AdminFacetFactory.h */, + 46495D8B50FD3CF57DCEE7F0 /* BlobjectFacade.h */, + 20B33ADC4ED75141C16290D9 /* BlobjectFacade.mm */, + 6D635B8A9885F1816618FFF5 /* Communicator.h */, + 85E5A74751EB43D4ED344FCE /* Communicator.mm */, + A85AAECD4BA9FD8995F84E21 /* Config.h */, + 783AC53508ED2C4B2092DD5C /* Connection.h */, + EE75E6D4EF3B33DFB659E39C /* Connection.mm */, + 86BC667FEF2BA5820A7B7BA5 /* Convert.h */, + 49E2780B30D2DAD681184D1B /* Convert.mm */, + 3002D403128013C2404936BD /* Endpoint.h */, + 0DA087232F08332FC98A97BC /* Endpoint.mm */, + 44C06A1AEDD98E9D1115EB3E /* Exception.h */, + 1A781B49FC82F7FA0184F819 /* Exception.mm */, + F94F9CD8FEEC71F621DD3BB0 /* IceImpl.h */, + B06214B3EFADD6728F980622 /* IceUtil.h */, + B7A43DB55534C1EC4B2C2B8B /* IceUtil.mm */, + 94611F392D00B8B8E3640D6B /* ImplicitContext.h */, + D9380D40DF12A3318B74FC8B /* ImplicitContext.mm */, + 92BDF144EAE646068BBBDC31 /* LocalObject.h */, + A6DB7AA8D03D71EC9B23B390 /* LocalObject.mm */, + A76F2988E9F63DA40311F76A /* Logger.h */, + CF2AEC43FB6AF0355BAC4EF7 /* Logger.mm */, + F0503C372876754560BBB8C7 /* LoggerWrapperI.h */, + 76311088F5303F630B9D1AE3 /* ObjectAdapter.h */, + BFD81A96B2FEDC7DD5A61FF8 /* ObjectAdapter.mm */, + 136757D4ECE48D0332330C07 /* ObjectPrx.h */, + 3ACEF67499B23A250292B84D /* ObjectPrx.mm */, + E53219E3EA6910F7E5D579A5 /* OutputStream.h */, + 0026EE92FD5C304A025799B2 /* Process.h */, + DA4864743AE51C6261C21300 /* Process.mm */, + A369565B5F8B3323E92DFD73 /* Properties.h */, + 909200862AB304F9E9056BD3 /* Properties.mm */, + 4A23D3F73B4FB00D1F7749FA /* PropertiesAdmin.h */, + E004376D0DBB79789D7E0BB1 /* PropertiesAdmin.mm */, + 0C06BC9BB6B575A7285395AC /* TraceUtil.h */, + 960889AE80EE23F4AB9A7899 /* TraceUtil.mm */, + AF2F997A9136C0D57A644334 /* UnsupportedAdminFacet.h */, + 61FD2D97AAE33B8E0DAD2E48 /* UnsupportedAdminFacet.mm */, ); - name = Products; + name = IceImpl; sourceTree = ""; }; - C6D99228F97446551EA2EB25 /* IceGrid */ = { + B57AAB92F70293A574524A4F /* admin */ = { isa = PBXGroup; children = ( - 88FF1FF8A94040F7F602F0C0 /* IceGridSwift.h */, - 28D89931781D7CD21FCC7CCB /* Info.plist */, + DE3D88FE76A1440B3A0C4DF5 /* AllTests.swift */, + 1CFF70BA10C4D6AE188D017E /* Client.swift */, + DAFBF6BFF7EDE9F0FB64766F /* Server.swift */, + 78C5BD54F95050856DFE68B6 /* Test.ice */, + 344ED5C42593ED171BE68E29 /* TestI.swift */, ); - name = IceGrid; + name = admin; sourceTree = ""; }; - C7EF7738F348B2900CE9C6DD /* interceptor */ = { + B82B3738410A4815146AB77F /* TestDriver */ = { isa = PBXGroup; children = ( - 43EA623C9F4C7F919225D487 /* Client.swift */, - A0E69CF15D312799D1B24169 /* Test.ice */, + 93F8BD5B95CB7AA1FD5A9D25 /* iOS */, + 63F4BFE04237875C764B4579 /* macOS */, ); - name = interceptor; + name = TestDriver; sourceTree = ""; }; - C84C9887453A3AC9C96AC570 /* properties */ = { + BC9489EF19D4542F39A6A72D /* exceptions */ = { isa = PBXGroup; children = ( - 7C33F6088CA51225D531E88F /* Client.swift */, + A92AF9829CC12933812E31B7 /* AllTests.swift */, + 6E9CE949ADDB5DA57B0A2360 /* Client.swift */, + 04A32B58F4D583452AEE62D6 /* Collocated.swift */, + B93100931C7208B5D3064FEF /* Server.swift */, + E57283A07B637882DC9B8F71 /* ServerAMD.swift */, + 15F534469D81C24FFE8DCEE3 /* Test.ice */, + 0CE33F8BDE00D6E18E58B3C3 /* TestAMD.ice */, + 3048472560513EE07558DAEE /* TestAMDI.swift */, + 42FCF5F723B9F42D13E7A575 /* TestI.swift */, ); - name = properties; + name = exceptions; sourceTree = ""; }; - C9CC85BF8BC4BB8716340680 /* IceLocatorDiscovery */ = { + C0AC7A1C666A2430B3A709D8 /* slicing */ = { isa = PBXGroup; children = ( - CDD050FB49289A8E9B2D9942 /* PluginI.cpp */, + 7F869F89402E785E27FE1228 /* exceptions */, + 604A9AF6E2246ADA42502415 /* objects */, ); - name = IceLocatorDiscovery; + name = slicing; sourceTree = ""; }; - CBA9BA80D35487FB48989A16 /* IceImpl */ = { + C47D21C7C0BF4FFF86CE899B /* Glacier2 */ = { isa = PBXGroup; children = ( - 311B69EB6D89618997B1887B /* AdminFacetFactory.h */, - 0A214B333A9CBC9A12B4FE7A /* BlobjectFacade.h */, - C4E592DCBE9E01D01056C207 /* BlobjectFacade.mm */, - 1ED718874B7F4760BB5D8C7E /* Communicator.h */, - 97480A250E2000119ACBB3C8 /* Communicator.mm */, - 2CC61BD40D7CBC56C18393B3 /* Config.h */, - 8DC843ECDCD1A4BB1CC2B4D7 /* Connection.h */, - 32A4EEF0B311A639C5DB129D /* Connection.mm */, - 46F5AE3157A6E271ABFC0425 /* Convert.h */, - 454EE69AB462CEE4589AD002 /* Convert.mm */, - A0E831000ECAB4DE416B693C /* Endpoint.h */, - 2781460B247EAB453369D750 /* Endpoint.mm */, - 127A9834F351DA5E1B1AC377 /* Exception.h */, - 00C3014A2CFA76B443D73F46 /* Exception.mm */, - 5DD42CB75FDF93FE8F76667F /* IceImpl.h */, - 71FF19753C75D718076D906A /* IceUtil.h */, - 66267617EEBA8219ADB97A02 /* IceUtil.mm */, - 8CC922FE8D3EAF73CEDB3CF7 /* ImplicitContext.h */, - ECDC030E98555E86A9E1CDDC /* ImplicitContext.mm */, - 56CD9F58D686B914CD4E7062 /* LocalObject.h */, - 718D975EF8CB9E404F1DE7D6 /* LocalObject.mm */, - C1E1D3C9DAC7F79D91E90087 /* Logger.h */, - 3168F7C0D127A7C48C30D615 /* Logger.mm */, - 0D92B81AD14B5BB3BBC7F274 /* LoggerWrapperI.h */, - 6A283F62CF4F1A840B9C8731 /* ObjectAdapter.h */, - 6485A6AB6C5A9D405C99A002 /* ObjectAdapter.mm */, - D7A23ACB7B51AA7355057DD3 /* ObjectPrx.h */, - FACB1E582A8BD8FE6C86628D /* ObjectPrx.mm */, - C69B109A7B6681550B30E551 /* OutputStream.h */, - C6C634DF2652DE223BCB1B37 /* Process.h */, - 261059C5925105B6E65D91A0 /* Process.mm */, - 076A243C9F5B4CB2ECFA7F51 /* Properties.h */, - 3BC64A21F03FBD8F32E4AEEF /* Properties.mm */, - A67B37CC0489F03CF069A65C /* PropertiesAdmin.h */, - E910A7E27BBF0701EED9D16D /* PropertiesAdmin.mm */, - 7DBD797522D96E525024E477 /* TraceUtil.h */, - 0B19FA205006766F6B2E1350 /* TraceUtil.mm */, - 07361A4BE6DC9A43BBD8E849 /* UnsupportedAdminFacet.h */, - 420A6EFB17E04444277813A0 /* UnsupportedAdminFacet.mm */, + 84CFA96B1376810A278A1749 /* Glacier2Swift.h */, + EDDF24D23BCAEE53F2E5E335 /* Info.plist */, ); - name = IceImpl; + name = Glacier2; sourceTree = ""; }; - D1EC47AFED2B219DDF33DE6E /* Glacier2 */ = { + C5484D2A3AB3A955FDDEE694 /* IceGrid */ = { isa = PBXGroup; children = ( - 3F1911BAB92A957302833169 /* Metrics.ice */, - 769101BD07C4F85CBCF6EC73 /* PermissionsVerifier.ice */, - D9F8D61F43A53ADB59E8570F /* Router.ice */, - 12D5D56C338B4BC5F6CA83FD /* Session.ice */, - B995EA78E5B5397A8BF50B54 /* SSLInfo.ice */, + D2A78D4720673DAF9D7E7F17 /* IceGridSwift.h */, + 935EA09433CAE9AE4444BFCC /* Info.plist */, ); - name = Glacier2; + name = IceGrid; sourceTree = ""; }; - DD2E44A180FD4333D0012449 /* servantLocator */ = { + C6C0F9269324698F9CF16115 /* Ice */ = { isa = PBXGroup; children = ( - 45331497BAD84C6969F6C8C8 /* AllTests.swift */, - 24803367329A3408EBEF3225 /* Client.swift */, - 30F7F6A5BEED228FBE431E55 /* Collocated.swift */, - A1F66CE853CF87B6E6AFD974 /* ServantLocatorI.swift */, - 6C21F81A0DECE41C24F04C63 /* Server.swift */, - A063F480B1D518851F44CB38 /* ServerAMD.swift */, - 4413F36CC165568AA6327BD2 /* Test.ice */, - 8A247D6B9D6442FA04FBCC83 /* TestAMD.ice */, - FA253345ADC3ADEBFD80630B /* TestAMDI.swift */, - F16006BDECE6873730A91890 /* TestI.swift */, + F87C572B2EE3F2EB8C41205D /* AdminFacetFactory.swift */, + 60CB3BFC19DFE9088A67D092 /* Blobject.swift */, + D31F7CBFF920A0CF7FB2382A /* BlobjectAsync.swift */, + F4CCBD4643B37D4081B89334 /* ClassResolver.swift */, + 184B082770DE7259A12A3BD1 /* Communicator.swift */, + 8BD60FA4285B90536DAE2ABC /* CommunicatorI.swift */, + C131E5D67136A0CA59E41363 /* Connection.swift */, + EBA8491A44D0E0482F4677BC /* ConnectionI.swift */, + 6658CBA7425F4413E4A2845D /* ConnectionInfoFactory.swift */, + 3A5527F3E66D1C8E580EDC49 /* Current.swift */, + A4FAE8887A8A2B8B5AB2BFA1 /* Endpoint.swift */, + E3F96F9704EBDCFBCAE0D3C3 /* EndpointI.swift */, + 54BEEE0D2C2D30B880D903F2 /* EndpointInfoFactory.swift */, + F7263472329A47DFD021C4A7 /* EndpointSelectionType.swift */, + 01BF3D7D7748BB551DE4E9C5 /* Exception.swift */, + 1916BD7FFB0A4D852F04D618 /* FacetMap.swift */, + DE4C4A3FC0CBE37945762D1B /* FormatType.swift */, + 30A8799AA971D15AED949425 /* IAPConnectionInfo.swift */, + 7D349A4F305ED46BDBBEC05D /* IAPEndpointInfo.swift */, + D82D2DB3437A859C9A02427E /* IceSwift.h */, + 2CAE7DCA47B0E6DA9102DFA0 /* ImplicitContext.swift */, + 1C10F4BCD402A666A979D101 /* ImplicitContextI.swift */, + 54985FA2DF8607E8EEBCF4D2 /* Incoming.swift */, + 1727CFF9063FD8695D6AE8AD /* Info.plist */, + 5A2A558DF05365793BE1EDB3 /* InitializationData.swift */, + 460C9BF801CDC866AC4DFE9F /* Initialize.swift */, + ACB597B2CB96C20CBF0FDA64 /* InputStream.swift */, + A274FC67FF85EE280823CAA5 /* Instrumentation.swift */, + A8E6E1452E1DA4C8ED9914AA /* LocalException.swift */, + 445A79064CF64948393E75BD /* LocalExceptionDescription.swift */, + 61579E1435780C538ABE9460 /* LocalExceptionFactory.swift */, + 3F9A21CE53736A014B4EDECB /* LocalObject.swift */, + 4FE354D95153ECFD51CECEE4 /* Logger.swift */, + 982DC694739062479B93510C /* LoggerWrapper.swift */, + 93C246AC846FCC1E1E510D6C /* Mutex.swift */, + 30A005FA49909E00786C40AA /* NativePropertiesAdmin.swift */, + 3A334934D39F8288BF273ECE /* Object.swift */, + 96F1FC4C6C4A3154388E702E /* ObjectAdapter.swift */, + 3798FD61820B41A64C69B2A9 /* ObjectAdapterI.swift */, + B4DEA2B3E46B392AE8FA078C /* OptionalFormat.swift */, + 75BDF818FC40E0B1A7E2DCCD /* OutputStream.swift */, + 228A1E21539BF3DBB96E65FF /* Plugin.swift */, + 488C831449F529C0B214CABE /* ProcessI.swift */, + EECF4655D8774B8E48A8D6C2 /* Properties.swift */, + D7EC10FCBDFB6A2DECEF109D /* PropertiesAdminI.swift */, + 3CE3931DE5E459F004046D20 /* PropertiesI.swift */, + E56A381E1ECD60A933EDE0C3 /* Proxy.swift */, + 09338C104543AFAA089DE918 /* ServantLocator.swift */, + B1E77773C9E5111EC13CAB7D /* ServantManager.swift */, + 0141623AD37C70B98DDDA989 /* SlicedData.swift */, + 650FAAE913B2A55BF40BDCC9 /* SliceFlags.swift */, + 53F964ABBD543305F85E892C /* SliceInfo.swift */, + 90787AF0A37EEA37C85695B9 /* SSLConnectionInfo.swift */, + ED98AEC78D53B98EF9216B56 /* SSLEndpointInfo.swift */, + 089C840BD2340196C1789813 /* UnknownSlicedValue.swift */, + C39BB4ED7CFFA4DACD478D9B /* Util.swift */, + D44AFC725628521459EA373E /* Value.swift */, + ECE37EE5C08B6FFE1F009314 /* ValueFactory.swift */, + B446E87A9F659C4A964E6F73 /* ValueFactoryManagerI.swift */, ); - name = servantLocator; + name = Ice; sourceTree = ""; }; - E33A843FF97946D59286BF55 /* optional */ = { + C77E0B705D52E399E5609326 /* escape */ = { isa = PBXGroup; children = ( - 0540AD3E250E11B403EEABA4 /* AllTests.swift */, - 6DF2168E2E451864F9F40F88 /* Client.swift */, - 33E2B8C087CCBBFCCFE0EDBB /* Server.swift */, - AB36820A5AC833BC1253F30D /* ServerAMD.swift */, - 625CB263F55FD97BE49F1676 /* Test.ice */, - DAF14D8D3CD8494E5BF9201E /* TestAMD.ice */, - 2D8BAD556F7D98625DF4BC58 /* TestAMDI.swift */, - 29DB74C0FB62F0BC5680DEB6 /* TestI.swift */, + 4AB5AD4F60E4B47BF3908206 /* Clash.ice */, + 9F1F158B962A78341F9EF225 /* Client.swift */, + 57B4FD55C85D50B346DAC00F /* Key.ice */, ); - name = optional; + name = escape; sourceTree = ""; }; - E8261DF757B888C3FABB4DAC /* src */ = { + C92FDEA681B2B886B584D14B /* hold */ = { isa = PBXGroup; children = ( - 689B29ECB5E92DE29E918548 /* Glacier2 */, - F15C3BD7C2A83DC618EF97D0 /* Ice */, - C6D99228F97446551EA2EB25 /* IceGrid */, - CBA9BA80D35487FB48989A16 /* IceImpl */, - 476BBC488BCBBCAE959C8C18 /* IceStorm */, + 3D04234BB20E2E7E05183D0D /* AllTests.swift */, + 4D0FE56C219D015301CB1369 /* Client.swift */, + F507DE59727141A808786F2E /* Server.swift */, + C6C97867F488137BCC0EB004 /* Test.ice */, + E263606DB96A9375B3DB0862 /* TestI.swift */, ); - name = src; + name = hold; sourceTree = ""; }; - E977D9A3178A4B1DCB07E849 /* udp */ = { + CA3C5BCF6960FD1380CD864E /* configuration */ = { isa = PBXGroup; children = ( - ECC72E0F8FB0FAFD7B7C988B /* AllTests.swift */, - A415328DFBFF6A7A21BF4E81 /* Client.swift */, - 80A836681C0AEC83887E925E /* Server.swift */, - 95851E43D0C4D60F6E643BAE /* Test.ice */, - 1C41EDECF5F3943979928068 /* TestI.swift */, + F52CDE27C04211B51976AF73 /* AllTests.swift */, + F48A4C9DD1628D724648AA45 /* certs */, + 22437CADE6D8C1F4B4F6E399 /* Client.swift */, + 91702C97E64FB532023CE75D /* Server.swift */, + 33F4442B1E4EB5B04F907471 /* Test.ice */, + 551620868D0184DF2FBB2F56 /* TestI.swift */, ); - name = udp; + name = configuration; sourceTree = ""; }; - EBA8D056F4BCCB84D9F89878 /* stream */ = { + D0BB45136F4A0AEE7CEE5896 /* properties */ = { isa = PBXGroup; children = ( - 5139077FB7FF05473C48016A /* Client.swift */, - 1E60734E3E837C813043195B /* Test.ice */, + ECAF5F62EDCF29B918CCA154 /* Client.swift */, ); - name = stream; + name = properties; sourceTree = ""; }; - EC55BF468418479529109C96 /* hold */ = { + E1E4F7CE0405F5134961ACAB /* acm */ = { isa = PBXGroup; children = ( - 7A007F6524CA33A118530563 /* AllTests.swift */, - B884A1F2FB9A50957E45CD4B /* Client.swift */, - 5D711F8F37F1A2CC99B3F53F /* Server.swift */, - 6D2DD09C36EF45CDA56DB948 /* Test.ice */, - AB1D1063C3987F97CD262B32 /* TestI.swift */, + 39C32C927265416D3C9E0334 /* AllTests.swift */, + EEB12A56E8C359F1729F44DD /* Client.swift */, + F7AF984294EC849DC6C9C7C4 /* Server.swift */, + 62A61E872435F58924471D31 /* Test.ice */, + 55085F9A97549394CFD026B6 /* TestI.swift */, ); - name = hold; + name = acm; sourceTree = ""; }; - F0C85AEFAEDDF58E830F63AB /* objects */ = { + E2C75096D03A467FF2DB68B7 /* enums */ = { isa = PBXGroup; children = ( - EC358D83F29EA095AE7953F4 /* AllTests.swift */, - 34E29AA242C9C15C1FE20DF0 /* Client.swift */, - 9BB5410444BF6B374021801D /* Collocated.swift */, - CDAAA865B397968BFD6A854A /* Forward.ice */, - B6D3E94140669587BFA14843 /* Server.swift */, - E0EBA030768D756CAB63E5C5 /* Test.ice */, - 23F1A85D0FB546A7190E150D /* TestI.swift */, + BC3DC35F22EE9E9C9B4BB176 /* AllTests.swift */, + 1C76C28FCC88C6C84EFCCBD0 /* Client.swift */, + DD1F0A3B85E7C703B656F50B /* Server.swift */, + 716DB7C607CA120F7407022D /* Test.ice */, + BBB75B8D55DDA16960177189 /* TestI.swift */, ); - name = objects; + name = enums; sourceTree = ""; }; - F15C3BD7C2A83DC618EF97D0 /* Ice */ = { + E4B7F599D449A5F6A3224A2F /* IceLocatorDiscovery */ = { isa = PBXGroup; children = ( - 45F4D1AC7C7A3062D28DF141 /* AdminFacetFactory.swift */, - 55625944FF564A3D943D23D5 /* Blobject.swift */, - D2B630607BEC188670D6FC3E /* BlobjectAsync.swift */, - 0F1A91058A52D17DD5127653 /* ClassResolver.swift */, - A53D4CB88BF6A93411E641BE /* Communicator.swift */, - 401595CAE0B88CFE2DFDB61B /* CommunicatorI.swift */, - 7570FBDCEB1BE973537F63AB /* Connection.swift */, - BC45412E37CB39AB1326ADB0 /* ConnectionI.swift */, - F6031880CA768302715AF710 /* ConnectionInfoFactory.swift */, - A8B8D3FB17F7288D5096BD8E /* Current.swift */, - 510D1B93F9F1E35D60692209 /* Endpoint.swift */, - BFD88371730890D163B36559 /* EndpointI.swift */, - 85842F8C7EF62C5232FD319E /* EndpointInfoFactory.swift */, - C01B21EF5B58D1BB8B436416 /* EndpointSelectionType.swift */, - EF6E2A9B9FB41D79F32978A3 /* Exception.swift */, - 3E17813B2E31CDABA2621FA2 /* FacetMap.swift */, - E089655B39A8835FFC0C9516 /* FormatType.swift */, - 979C34B2FF762DA581B94308 /* IAPConnectionInfo.swift */, - E805BEA400CFDA8CB025129A /* IAPEndpointInfo.swift */, - CC46CBBAA7E4D120F8C9F3F1 /* IceSwift.h */, - D2DFEE2EF4B478B06A53A6CC /* ImplicitContext.swift */, - E6BC1DF9A06ADA22DDBBE3DF /* ImplicitContextI.swift */, - 1DABE1EF2249C07674CDC42A /* Incoming.swift */, - 293FD18B9AD65E3112B2020C /* Info.plist */, - 98C4E244B53E759A5893125C /* InitializationData.swift */, - EAAE931013BC01817AD3CC59 /* Initialize.swift */, - 0F169549B67E17132D0100E5 /* InputStream.swift */, - 45ED38411CCEA7139E95679A /* Instrumentation.swift */, - 4FA690BDA022D1D71A2563D7 /* LocalException.swift */, - F5D78CBF2CB618CDAB7C4CFE /* LocalExceptionDescription.swift */, - 631E368C13A3530681F08764 /* LocalExceptionFactory.swift */, - AD3C85DDDFFF996CE0DE043E /* LocalObject.swift */, - F080418FA4B75A04B9A8F7D7 /* Logger.swift */, - 9CBDC7A1A35ED6F24372F3BA /* LoggerWrapper.swift */, - 2C956C7213BF93EBFF72A6A7 /* Mutex.swift */, - 52AC5AE6897741655049E5E1 /* NativePropertiesAdmin.swift */, - 3035A059080501D7128194A8 /* Object.swift */, - 169F0CFB6C30D66047E0EDB1 /* ObjectAdapter.swift */, - 250B1B2824E81544BD56F671 /* ObjectAdapterI.swift */, - 76DC4BE1D25DA51A9795D589 /* OptionalFormat.swift */, - 4763D1EDD6ED9EE3A2F1DBE9 /* OutputStream.swift */, - 50E681C36DEFAC7C6ADA5E59 /* Plugin.swift */, - 9A3D3FB492A2737DCD312850 /* ProcessI.swift */, - F33FEFF5D565C07C45D4FFA3 /* Properties.swift */, - 582CF8542C18DFEE777BE669 /* PropertiesAdminI.swift */, - BC8188172D41ACF2F15B43E4 /* PropertiesI.swift */, - 8EC08889BCEC40A288945740 /* Proxy.swift */, - CD03EE61CEA9E337ACD6C1F7 /* ServantLocator.swift */, - B6845B2E29E4080166CD6C26 /* ServantManager.swift */, - DF610E634A5865F4DBA3B2D5 /* SlicedData.swift */, - B3A58977E346C1C41BEBC658 /* SliceFlags.swift */, - 1B0F40C37A8439A683B8C97C /* SliceInfo.swift */, - 8970C2FBD5A08828E3B03752 /* SSLConnectionInfo.swift */, - 046ACEB5C9821C9778BD3270 /* SSLEndpointInfo.swift */, - 29725771B14324C80912215D /* UnknownSlicedValue.swift */, - CEAB3F147F35686A47C5CD40 /* Util.swift */, - 3C22AA887D26C5BB0C12CA79 /* Value.swift */, - B4B9B6BEB54580685FFB367A /* ValueFactory.swift */, - 33D2A20C5AB946EF734F130C /* ValueFactoryManagerI.swift */, + 47C76C71FAF5177CE46CD3A6 /* IceLocatorDiscovery.ice */, ); - name = Ice; + name = IceLocatorDiscovery; sourceTree = ""; }; - F1815AADDEFD6FCF493B9897 /* inheritance */ = { + F15C905CB42BC3261A5947C5 /* slice */ = { isa = PBXGroup; children = ( - FA4A6F897448CBBFD0BD60EE /* AllTests.swift */, - 9F3434C8A073AA109B5C31EA /* Client.swift */, - EF613DCAD6834FD2362A04D5 /* Collocated.swift */, - BDDD6119D93F5A4C9BA2C1A5 /* Server.swift */, - 4869F95A4F0E2F0EB4A21C9F /* Test.ice */, - 76B982881849592FB664DF9C /* TestI.swift */, + 2954FE0766C617A0A50AB153 /* Glacier2 */, + 9C1A17CD0E8467D306B6927B /* Ice */, + 2E501B6FC9C84500B946FA98 /* IceDiscovery */, + FD840516866220AEA21DA14C /* IceGrid */, + E4B7F599D449A5F6A3224A2F /* IceLocatorDiscovery */, + 7543BE265BB5DB13ADA5B2BC /* IceStorm */, ); - name = inheritance; + name = slice; sourceTree = ""; }; - F32F843625F719F7D14C5713 /* acm */ = { + F1D895EADEA8B7AEEFE4ADBE /* binding */ = { isa = PBXGroup; children = ( - 195A241E0300852E69AADB88 /* AllTests.swift */, - 3635819F6819934528B2BA8B /* Client.swift */, - 06BC492F3CD439079FA4A3A3 /* Server.swift */, - 9E3EE46F30618B8E0211F6C4 /* Test.ice */, - D32E144F81EE10297B9F1C55 /* TestI.swift */, + 7B839F8BB619665F6310934B /* AllTests.swift */, + 5A864DCFB7D453663CD16FD7 /* Client.swift */, + 99578A940F2AE450A4088200 /* Server.swift */, + 31A7531BFE63552977BE1908 /* Test.ice */, + 92923B4684A1BF23B89BA01C /* TestI.swift */, ); - name = acm; + name = binding; sourceTree = ""; }; - F5787C141D9EAB10CAD77F86 /* src */ = { + F2540931AE3E6DE5D924B3A2 /* IceLocatorDiscovery */ = { isa = PBXGroup; children = ( - 630E28857EDEA8737E5229A1 /* Ice */, - B7BF652928970190AC67ADB8 /* IceDiscovery */, - FAD8993251EA85A855B7D53A /* IceIAP */, - C9CC85BF8BC4BB8716340680 /* IceLocatorDiscovery */, - BF68810F9F6E9F0E5E50E686 /* IceSSL */, - 9810E379CD8BCC43A32C2B12 /* IceUtil */, + 6B3240DA41D618B1A973AB23 /* PluginI.cpp */, ); - name = src; + name = IceLocatorDiscovery; sourceTree = ""; }; - F6445D7F6837A9E5721B6DE1 = { + FA93554C364A3D8246EC4A47 /* inheritance */ = { isa = PBXGroup; children = ( - 463E6BA0691C4DE352EEED99 /* cpp */, - 1D9EDE94B796C06BC401F400 /* Frameworks */, - C4B9FBD376A1113679514F16 /* Products */, - 51899DE1FEE5EFB1B2546434 /* slice */, - E8261DF757B888C3FABB4DAC /* src */, - 2A55C02CB23E08907CC59536 /* test */, + CC034BBCB34C7182E33E5260 /* AllTests.swift */, + 264D776F123D481FEAD06C14 /* Client.swift */, + 91079E777372B4F182F41A0A /* Collocated.swift */, + F48CF258CC15C9D7DB246467 /* Server.swift */, + 62FEBA73AE042571D01D4F88 /* Test.ice */, + 19266A1DAEA30EF728B73CC3 /* TestI.swift */, ); + name = inheritance; sourceTree = ""; }; - FAD8993251EA85A855B7D53A /* IceIAP */ = { + FD01717E3C1F108D0BF0CAC5 /* iOS */ = { isa = PBXGroup; children = ( - 29CCBA8E43B636B9DDCC8A12 /* ConnectionInfo.cpp */, - DFD8B204368D01D576A6D7BB /* Connector.mm */, - 78F16843E2BBB78CF5ECC73E /* EndpointI.mm */, - 189BE24954425D454F4EF9FB /* EndpointInfo.cpp */, - BB42DEB40EEAEA9E39A059D7 /* Transceiver.mm */, + BE7456538444EC0F07561F0C /* CFNetwork.framework */, + EA63D38F273987B6208237F7 /* ExternalAccessory.framework */, + 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */, + EA0C9E634315389E93760409 /* PromiseKit.xcframework */, + F32ED048C90725C7C38CC684 /* Security.framework */, + 53899169BFAB829939A10CB9 /* UIKit.framework */, ); - name = IceIAP; + name = iOS; sourceTree = ""; }; - FDEE0305EA36CD2B21DBED3F /* macOS */ = { + FD8286BE0A069336112BA7F8 /* IceStorm */ = { isa = PBXGroup; children = ( - C3D39FB9794A458E44672EE2 /* main.swift */, + 0B8D9DC9A4A10105943CA252 /* IceStormSwift.h */, + C8EEEFFBAEF23056FD049102 /* Info.plist */, ); - name = macOS; + name = IceStorm; sourceTree = ""; }; - FFBB91B8B43735262EB442F0 /* binding */ = { + FD840516866220AEA21DA14C /* IceGrid */ = { isa = PBXGroup; children = ( - D9FD3392522AC4868A78AD1D /* AllTests.swift */, - 643804113C7CACB4A7EB180E /* Client.swift */, - 3C84040AFCBFD4AAE0B519DB /* Server.swift */, - 0CB402D9967B00BE923C2D03 /* Test.ice */, - A02666D7734DCBD68E093E74 /* TestI.swift */, + 3A3A0B6FB6D6326BBB4971C4 /* Admin.ice */, + 182EAED50584404F22460330 /* Descriptor.ice */, + A8FBA68CBD78E9ADC871C4C5 /* Exception.ice */, + A3D1AE0406A87BA43230C922 /* FileParser.ice */, + 7644F0F2714625FA88C9AD42 /* Registry.ice */, + 8C6C2E58CEE36AE17B95BBDF /* Session.ice */, + 57E9BE44DC6129D6174B2306 /* UserAccountMapper.ice */, ); - name = binding; + name = IceGrid; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 068352613F3C040788D83E6C /* Headers */ = { + 0634D9BC86B197EFCC8CDB0E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9801A9293D5D8E5A5097B580 /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0D3CDD20FB2E828DFE6459C5 /* Headers */ = { + 10C89778826B0C0BB91E9BC6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 24AEC3C23E7C27E16EB9B508 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1B60567B354A71B70D9F17FA /* Headers */ = { + 1B2D7D0CD597712FF7B67871 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - AAB6DF67986B8C40494AEE5F /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 270C88AB742B9A18218C3A9D /* Headers */ = { + 2719167A458B015D49557716 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2F61CAFC8944727E15EE9E24 /* Headers */ = { + D1B35391E8FCD2989699CBA6 /* AdminFacetFactory.h in Headers */, + 5BD577FEA68EF357F3768DDA /* BlobjectFacade.h in Headers */, + D105991EF83EACF61F5208BC /* Communicator.h in Headers */, + CA252256CC2991D092545DBC /* Config.h in Headers */, + 48242D3F8B32E780A6590C31 /* Connection.h in Headers */, + B7FDDD203AA66654A5607812 /* Convert.h in Headers */, + B2304A8CA53E03EBA25BABD0 /* Endpoint.h in Headers */, + F5DCD092A15EABAC72CD123F /* Exception.h in Headers */, + 1AC167753FA5219719B70CD4 /* IceImpl.h in Headers */, + 5AB9FCFBA6E43BABF8FFDAAF /* IceUtil.h in Headers */, + 4F3B2AB9A204D008BD7D8CC8 /* ImplicitContext.h in Headers */, + 9B953359C6EBA787F7BAAB5D /* LocalObject.h in Headers */, + 2C1F210EAFAA586BBBF37B3A /* Logger.h in Headers */, + 8A826F49F5AF070F54B28EFD /* LoggerWrapperI.h in Headers */, + C44BE1C922D3653173116D1A /* ObjectAdapter.h in Headers */, + 6CA1D8BF90A51D369EB4B35C /* ObjectPrx.h in Headers */, + A6379853F830F8DEE339CA2C /* OutputStream.h in Headers */, + 0BBC6D50B04D0B3E9EEECC28 /* Process.h in Headers */, + 8D715640337A72A7BEAFEB1D /* Properties.h in Headers */, + 832ABBB17BD2AFF9D7A6DA06 /* PropertiesAdmin.h in Headers */, + 6C7E660F6F0CFFC90869D97B /* TraceUtil.h in Headers */, + 00AC98F3B5ED9798585C66C8 /* UnsupportedAdminFacet.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 2B90F8B4C459B49C79A80DB3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 349379033E27FFB71B80F96C /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6103BE0C1BA576488160D922 /* Headers */ = { + 3940C02D995F91447AEF86D6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D846FDFFD9D51F06B4BDF1F6 /* Glacier2Swift.h in Headers */, + ECE0414F228AF7BD0A6CD5BE /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6A98037C6324B3A1488130FF /* Headers */ = { + 4276B381C3BD8D8C5F41828A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 0B21DE753DFDE6AAAFD1C0D3 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6C4B8D4B387E1BC59293EAEF /* Headers */ = { + 43F59ECC32ECCFE75BE7A2A5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8126C6AFA4C819E3C321558C /* Headers */ = { + 470C12FF538C8ED135C4B638 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + FA555EB54DACFD9D761D6FC4 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8323A7E88064AE338418B26B /* Headers */ = { + 55DD80E69F422DD4C622B77B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 862D91464BD6C32DACC110CD /* Headers */ = { + 720A96257940D9A201712617 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 3BE4D5BF24575AAEBE3DF8E2 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 95A52FF4E720C126DE092E83 /* Headers */ = { + 7F2B895A025ACE2CC4F5E2AF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0C347CE8ECF5359625657A8D /* IceSwift.h in Headers */, + D57842885C9223C95EEA23FB /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A08B15AFFA3944C7821C1B10 /* Headers */ = { + A9E1D1783813AA8D71AD2477 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 81DDA9D18B42EC07A3E80190 /* AdminFacetFactory.h in Headers */, - A36233A2763B8BC7D1B6A37F /* BlobjectFacade.h in Headers */, - 732EEC5F38214B80B3029ECA /* Communicator.h in Headers */, - A158F1CDFAFC7013F7804A6E /* Config.h in Headers */, - CD4893563F1B6949A91540ED /* Connection.h in Headers */, - BC7BED7D9996F4E585DC2CBE /* Convert.h in Headers */, - ABF1F14CA23F74EE1FC3EF9A /* Endpoint.h in Headers */, - F5706E094B8CF5C17E221C01 /* Exception.h in Headers */, - 86AFC684D615382232AD1B10 /* IceImpl.h in Headers */, - 2624A53D5C87E276245F7321 /* IceUtil.h in Headers */, - 4094848A3B3C886D1C1C2A89 /* ImplicitContext.h in Headers */, - F62BD691273E84C86F519A79 /* LocalObject.h in Headers */, - BF6C6AF4A43F6C44625D9FF8 /* Logger.h in Headers */, - 8C2C73130A6C55087B6CAEAF /* LoggerWrapperI.h in Headers */, - 51A2E163B4B698455D4EB1A9 /* ObjectAdapter.h in Headers */, - F6C09D35C437949A89E6A6A2 /* ObjectPrx.h in Headers */, - A7D46DA49FB421DB90C6E482 /* OutputStream.h in Headers */, - 0AC156AAAD91A1996DC43C5B /* Process.h in Headers */, - 66F5B176FD71BDF0C3EFDB56 /* Properties.h in Headers */, - 3DC7B16D455424AC8B25A588 /* PropertiesAdmin.h in Headers */, - 053C6129D0ADA884C7C24629 /* TraceUtil.h in Headers */, - 834FED3CF89A71D45CCBDDC7 /* UnsupportedAdminFacet.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B3C3AC5BC61ACC051E40A9DA /* Headers */ = { + 65D4940FC9BB902571D9532A /* AdminFacetFactory.h in Headers */, + E4CBF5D56D5430BCEA4B2DC7 /* BlobjectFacade.h in Headers */, + 6F9E7F2526BC5685E27886E7 /* Communicator.h in Headers */, + 79AE82DE7DAC903DE3B79A53 /* Config.h in Headers */, + 6E4A3BA74B6C0B8C515FBE71 /* Connection.h in Headers */, + E0151FD5C29B853B09F13A21 /* Convert.h in Headers */, + D344AE565CDA1EFACB3E6D8B /* Endpoint.h in Headers */, + D41482265E25E3510EDA73D9 /* Exception.h in Headers */, + 54A952D6176107F88A3A7926 /* IceImpl.h in Headers */, + A6862F4DD9FC91145AF03E03 /* IceUtil.h in Headers */, + 471CF4BCCA7221350FB4A394 /* ImplicitContext.h in Headers */, + 629135C26A388177FED87458 /* LocalObject.h in Headers */, + 34AE3D7A1AFC7FE7D050AC7E /* Logger.h in Headers */, + 363909CE191EAC8C931EBB56 /* LoggerWrapperI.h in Headers */, + 615412B03C938D55ECFD6A3F /* ObjectAdapter.h in Headers */, + FAD3DE4312F7A038C6DA7C55 /* ObjectPrx.h in Headers */, + 1BD557788BE0E8A43EAAF6A7 /* OutputStream.h in Headers */, + DE6DB9614747B693F25C6D40 /* Process.h in Headers */, + 4752B3E710176FFDC15E4E24 /* Properties.h in Headers */, + 185939E599A86C9FDC28B625 /* PropertiesAdmin.h in Headers */, + 3ECA89212EF43CB58BE25727 /* TraceUtil.h in Headers */, + 5AA856F056E1550F988E598C /* UnsupportedAdminFacet.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + C93A6BB4FCF0490E84147E61 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 101D930E1A7C0CEB2DEA102C /* IceStormSwift.h in Headers */, + 6AA2BC3BBF3D7623E1C0EC49 /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C0163E91CDC9FFCAB5153307 /* Headers */ = { + DE199AD12D7B419440880D24 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 079CA7F1399EE275C0B4CB3D /* AdminFacetFactory.h in Headers */, - A7499F6CB60A34312DD84BE5 /* BlobjectFacade.h in Headers */, - F5232476279CC9F6BDE7F964 /* Communicator.h in Headers */, - 1D60B5F30880DE784144B23D /* Config.h in Headers */, - 505E15C5F6979C4B5D44C7F4 /* Connection.h in Headers */, - 0A6A60165788B0B76966A54A /* Convert.h in Headers */, - A54D65F3B03FAB3E6852494A /* Endpoint.h in Headers */, - F155B5F35EE41DF703F86B78 /* Exception.h in Headers */, - 950CA11ADBA51CA774702F3C /* IceImpl.h in Headers */, - 0D4DAF1B5F5DFD69F1715498 /* IceUtil.h in Headers */, - D2EA037F2876A602F8496B7C /* ImplicitContext.h in Headers */, - BE6CAA94F60A27AA76B7AE3A /* LocalObject.h in Headers */, - 4D82DC24DD531BB15ED1BF7A /* Logger.h in Headers */, - D1A4554A0940174619CB9DD0 /* LoggerWrapperI.h in Headers */, - 2ED3097F6A5616FDD978DFA2 /* ObjectAdapter.h in Headers */, - 39112C932424A2430F1EFC8F /* ObjectPrx.h in Headers */, - 9513773958363A140F6716A6 /* OutputStream.h in Headers */, - 536C7484247572D001C34904 /* Process.h in Headers */, - 47645F159A50C6C41E542DF0 /* Properties.h in Headers */, - C3EEB7A1CB84A823093BB1B4 /* PropertiesAdmin.h in Headers */, - 88C697319E0F54EA8231822A /* TraceUtil.h in Headers */, - B5F10537E79E3E0967102ECB /* UnsupportedAdminFacet.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - C333F8FB29799EEF1651CEC5 /* Headers */ = { + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E0F69D5BB8272A88BCAA8B51 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 2FB9DBDA7BF6CCBC947CBE28 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - D253C1F407233ACF50F5774F /* Headers */ = { + E31CDE4D2F98BABCFCBB0E54 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EC3A953B46501F7CE882BAF8 /* IceStormSwift.h in Headers */, + D725BFF39A8A7D7D356BFB68 /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - F82DA7A1C51117B4CA705540 /* Headers */ = { + F66974C1B19D538A8347A324 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( @@ -8074,2332 +8070,2332 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */ = { + 02BA85F98EB32966A7AA3C21 /* IceRetry iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 37C3F9ED3466456577D5EA1E /* Build configuration list for PBXNativeTarget "TestCommon iOS" */; + buildConfigurationList = DAC003A18A73B54FD01E21B7 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */; buildPhases = ( - C333F8FB29799EEF1651CEC5 /* Headers */, - F643D4D9720F7126ED408D82 /* Sources */, - 60CA31B074CDF4D99A3ED0B5 /* Frameworks */, - 1C7AE443B82A3F9D218FF429 /* Resources */, + 1A4ACB27A85EFF473C257854 /* Sources */, + 2CED16271A7251484C385690 /* Frameworks */, + A27900851590FFDE252185AB /* Resources */, ); buildRules = ( - 1C375202C956F2D48BA3ED28 /* PBXBuildRule */, + A2C96297FD91C3D6AF4C2FBC /* PBXBuildRule */, ); dependencies = ( + DFCC719F50E4B316FF9F2F55 /* PBXTargetDependency */, + 9C3512FCC97B40E3D8F88C03 /* PBXTargetDependency */, ); - name = "TestCommon iOS"; - productName = TestCommon; - productReference = 2EA069A716E434C038F0318F /* TestCommon.framework */; - productType = "com.apple.product-type.framework"; + name = "IceRetry iOS"; + productName = IceRetry; + productReference = 111E017C3F3407C4582DC59A /* IceRetry.bundle */; + productType = "com.apple.product-type.bundle"; }; - 08063B79E151583B4BCA64E2 /* IceSlicingExceptionsAMD iOS */ = { + 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AE6610CCC8687AE5744A53F6 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */; + buildConfigurationList = 9CBEAA1D89D83E1B7344586B /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */; buildPhases = ( - D1B441C4A5BCB25875982891 /* Sources */, - 0B40E563316A44A6683EA42E /* Frameworks */, - D3024D65B43BE097AC35B277 /* Resources */, + 1B2D7D0CD597712FF7B67871 /* Headers */, + CCD5534F46DBEDD9928F2800 /* Sources */, + 97F410FDB59D1A621BEC3DF3 /* Frameworks */, ); buildRules = ( - 3A33010CA67242C2D53EB955 /* PBXBuildRule */, + BFC94219BCB3D687503034E4 /* PBXBuildRule */, ); dependencies = ( ); - name = "IceSlicingExceptionsAMD iOS"; - productName = IceSlicingExceptionsAMD; - productReference = 3CC388484314A4D11DA2CEA8 /* IceSlicingExceptionsAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice C++11 macOS"; + productName = "Ice C++11 macOS"; + productReference = 952160511B9A724C82F64990 /* libIce C++11 macOS.a */; + productType = "com.apple.product-type.library.static"; }; - 086D7EFAFD5B99B06915E82A /* IceStorm iOS */ = { + 08C942FD89E4D9E7FA113627 /* IceServantLocator iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BFB94717F4ED2D23EF213F86 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */; + buildConfigurationList = 6E9AE200122845A170FA96E8 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */; buildPhases = ( - B3C3AC5BC61ACC051E40A9DA /* Headers */, - B0F22D921EF6432E4BB4E571 /* Sources */, - A75D3924BD339CBD5D8F513E /* Frameworks */, - 2B6D42C2F6ECF0E16FFD13A1 /* Resources */, + C9BC85A39F6E524BDBD6DBE5 /* Sources */, + 117D55DE7670DA2B05A6D64D /* Frameworks */, + 2536391E9CEBD069A43C9DCB /* Resources */, ); buildRules = ( - 61C6F8B373F05C401E109411 /* PBXBuildRule */, + E8B58B8D847476D4C18DA988 /* PBXBuildRule */, ); dependencies = ( - 6C9FB4EE32EF3B1523B6F351 /* PBXTargetDependency */, + 9B7DC02499B2C036C616A166 /* PBXTargetDependency */, + C66718354985552446A566E6 /* PBXTargetDependency */, ); - name = "IceStorm iOS"; - productName = IceStorm; - productReference = F7687536A74185F0859012B6 /* IceStorm.framework */; - productType = "com.apple.product-type.framework"; + name = "IceServantLocator iOS"; + productName = IceServantLocator; + productReference = 1E6FDC3649CBA1598EAEBEA0 /* IceServantLocator.bundle */; + productType = "com.apple.product-type.bundle"; }; - 0A512D4AD4749C7C7490FAC3 /* TestDriver macOS */ = { + 0A757D8B307D80F7BD3C5017 /* IceAmi macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C417073A078CD94D7E1005A8 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */; + buildConfigurationList = AA28C8DA746390B23C998CD3 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */; buildPhases = ( - 4F4F1E94D663663849203055 /* Sources */, - 1E292281FE72E31B659889D0 /* Frameworks */, - AF3BB72482297F0E1B6BC422 /* Resources */, - FE2A2E12EADD764C6E1249C9 /* Copy Frameworks */, - 87798ACFBEEF1C10BC811D29 /* Copy Symbols */, + 995AC1FE963E60344D4CC2E8 /* Sources */, + B55FDCB5E4F9CA0785C2645B /* Frameworks */, + 00249416E2CBA5788010C2D1 /* Resources */, ); buildRules = ( - E9F0B8E6967BCBEEBDE3820E /* PBXBuildRule */, + 0551E50A64EA50DF215E7B90 /* PBXBuildRule */, ); dependencies = ( - C83636F3C4909F7E272354CB /* PBXTargetDependency */, - 56199CEFBE52B4351D0025C1 /* PBXTargetDependency */, - 90F0F32CC84D9BFC5D6DB504 /* PBXTargetDependency */, - E4C3D0E9FBDC8EFC10432EBF /* PBXTargetDependency */, - C1DC945D777EA0CF7058098D /* PBXTargetDependency */, - 4B84FECB667E6C9A01DC97A2 /* PBXTargetDependency */, - A7A3456523A16A48D6AF3D21 /* PBXTargetDependency */, - A402B8A075E43FF8F5860C07 /* PBXTargetDependency */, - C28D91EADF3A06C6848AF6DE /* PBXTargetDependency */, - 73A41FE9CBC445B071808659 /* PBXTargetDependency */, - FE97752A0444F248E98AD556 /* PBXTargetDependency */, - A220AC0698C4013092133F67 /* PBXTargetDependency */, - 9D1EEDD844972C62FD524F5D /* PBXTargetDependency */, - 46E054F553ED7C2E677F8915 /* PBXTargetDependency */, - 4D4580CFB540C6548FBF8D70 /* PBXTargetDependency */, - 0C7DFFA9151969EC3F996061 /* PBXTargetDependency */, - 2B2E4604441CEA0D6A3D55EA /* PBXTargetDependency */, - CC176D949F48F1D3567C5158 /* PBXTargetDependency */, - 44E43CA842A3390C6097C7DB /* PBXTargetDependency */, - AE09AE75AA277407194474D5 /* PBXTargetDependency */, - FEA9F6B723324C3362BA8A11 /* PBXTargetDependency */, - A9C7FC09D99B2CC031BFA12D /* PBXTargetDependency */, - E60160BDDD0ED5BB960EDC8D /* PBXTargetDependency */, - 01AC9BEEA4A751C8B7183B44 /* PBXTargetDependency */, - 41E650E8178BB8D6F2C204DA /* PBXTargetDependency */, - B8F36EACB6A70B2192BFABDE /* PBXTargetDependency */, - 7487147066411410147870B2 /* PBXTargetDependency */, - 3AFAEBFEF8FD90C9F5ADA18E /* PBXTargetDependency */, - B2FF292B16D73AF295372E9B /* PBXTargetDependency */, - A8ACB23FDAF863A5B348CA03 /* PBXTargetDependency */, - 6D34E44E69F3CB0D2DEABB80 /* PBXTargetDependency */, - 57ECD7F009A9C588B71426F6 /* PBXTargetDependency */, - A1AFF9D2AAEB1A821EBCD3E0 /* PBXTargetDependency */, - C2E5FF8F766ABF8C49C47C41 /* PBXTargetDependency */, - CE99B6946BF5E794912EC454 /* PBXTargetDependency */, - 306BAD3D6E8F81138F885C87 /* PBXTargetDependency */, - 0DE97AB60A39783B6FF691A5 /* PBXTargetDependency */, - CFCC2A72B0602D76978A5B73 /* PBXTargetDependency */, - 602527CCFB0FED66A58CEDA5 /* PBXTargetDependency */, - 568E55888B2FBB1434F2101E /* PBXTargetDependency */, - BD341B3DBE44221ABA2CE3D6 /* PBXTargetDependency */, - D6295B2ECCB99C7E068F15DB /* PBXTargetDependency */, - 8732D089FD1A403F9535195A /* PBXTargetDependency */, - 214AA24946474D09AA454F7A /* PBXTargetDependency */, + 27AA1C0790CF7A8B2557983B /* PBXTargetDependency */, + B04DB607E476251755885F9E /* PBXTargetDependency */, ); - name = "TestDriver macOS"; - productName = TestDriver; - productReference = A6243D389694D099C0184BCF /* TestDriver.app */; - productType = "com.apple.product-type.application"; + name = "IceAmi macOS"; + productName = IceAmi; + productReference = 2EB8E16DCE315D105EBA63E6 /* IceAmi.bundle */; + productType = "com.apple.product-type.bundle"; }; - 11C4703EE1A20D4D647A2951 /* IceDefaultValue macOS */ = { + 0EDA203583B355501DD47E73 /* IceSSLConfiguration iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3D3AF29DF96C8805B78B7E6E /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */; + buildConfigurationList = FC10685FF608E313BEC22C18 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */; buildPhases = ( - 53B88EA48DF75A01F277AAE1 /* Sources */, - 42B5B51628781D8D580FCCA9 /* Frameworks */, - 11DE8E3AFC096D98FAE6C731 /* Resources */, + 6EF6C9E40D191F808F0F1E64 /* Sources */, + 7F9E1AD9DD8D88862F46796A /* Frameworks */, + 14A18AC2A5DAEEEB9691D1E2 /* Resources */, ); buildRules = ( - C803868AD619AB7FA87719EA /* PBXBuildRule */, + 3DBFD7E2771A196AFF654CED /* PBXBuildRule */, ); dependencies = ( - 9E17DD7FFF15EFAF825726DD /* PBXTargetDependency */, - D37F5AE837E34553E9A91018 /* PBXTargetDependency */, + 4D3889E084E8D41CA4DEDB01 /* PBXTargetDependency */, + 384F9D5525DDD9DA5F2BDCB1 /* PBXTargetDependency */, ); - name = "IceDefaultValue macOS"; - productName = IceDefaultValue; - productReference = B85B17A8DB3D78F163220271 /* IceDefaultValue.bundle */; + name = "IceSSLConfiguration iOS"; + productName = IceSSLConfiguration; + productReference = 8425D2B0B3D5867C0C9F3351 /* IceSSLConfiguration.bundle */; productType = "com.apple.product-type.bundle"; }; - 1461134F8E13923F515F804D /* IceImpl iOS */ = { + 10E56726E39C8E4E56D51BC4 /* IceInfo macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 09AB6F8D633729C8866C99B4 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */; + buildConfigurationList = 7171AF48EFEC75029772E593 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */; buildPhases = ( - C0163E91CDC9FFCAB5153307 /* Headers */, - 1FE3BCBFBD382776A51C1AC0 /* Sources */, - 1054FB4FA1C7CF26A6A0D064 /* Frameworks */, - 8830916F0B9E04B4ECF78DB5 /* Resources */, + 582FCE8AE556DA8DA5C41C72 /* Sources */, + 8CA367470D856CD12514BED1 /* Frameworks */, + 645817E1D539571875E0D08C /* Resources */, ); buildRules = ( + 077C827730D516B87FCE7C69 /* PBXBuildRule */, ); dependencies = ( - 8E7C7D84D79C288BB564C397 /* PBXTargetDependency */, - 850E3B2E3F2688C9FA8F1679 /* PBXTargetDependency */, - 243F7F3833E86D05FF757D65 /* PBXTargetDependency */, + 0F10BA3B5220F9FB61BF7D16 /* PBXTargetDependency */, + 67789B7982F0B48D06EC11B0 /* PBXTargetDependency */, ); - name = "IceImpl iOS"; - productName = IceImpl; - productReference = 297ABB350A7C637780C074E9 /* IceImpl.framework */; - productType = "com.apple.product-type.framework"; + name = "IceInfo macOS"; + productName = IceInfo; + productReference = FF5926EFAECD9C0572AFEE64 /* IceInfo.bundle */; + productType = "com.apple.product-type.bundle"; }; - 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */ = { + 140CB18515FA53ECB140F7CC /* IceServices macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3A444FA93CDBF94FECF32EF7 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */; + buildConfigurationList = 1D4D43FA26654DDFBB6F5AEA /* Build configuration list for PBXNativeTarget "IceServices macOS" */; buildPhases = ( - F82DA7A1C51117B4CA705540 /* Headers */, - 2390D8B4F7C3CBB00255E8C6 /* Sources */, - 62526843A68A93AD8005A93C /* Frameworks */, + 3E9760E37E9F23B4490D30C8 /* Sources */, + 85CF7E25AB6EC680828A8D52 /* Frameworks */, + D4360D6AABCA3914BB60B25E /* Resources */, ); buildRules = ( - DEF7AB418DFE189C238F7B8D /* PBXBuildRule */, + D520D9B6825B931429E444E7 /* PBXBuildRule */, ); dependencies = ( + D3F80F9B28BE6A19F1ACEEA7 /* PBXTargetDependency */, + 542D43169C87228020236E49 /* PBXTargetDependency */, + 0CE7B06C949606A74D76872C /* PBXTargetDependency */, + 1697C65C44B82CBEB265245E /* PBXTargetDependency */, + 6B800448C27AC9995729A2E3 /* PBXTargetDependency */, ); - name = "Ice C++11 iOS"; - productName = "Ice C++11 iOS"; - productReference = 5FA0861C1DB82FD5CE33C4D6 /* libIce C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceServices macOS"; + productName = IceServices; + productReference = 76660D1C75C5895B539F597E /* IceServices.bundle */; + productType = "com.apple.product-type.bundle"; }; - 1D8E308F3BB453AE7F0F43D1 /* IceLocatorDiscovery C++11 iOS */ = { + 14535688C6E2E4A839C04451 /* IceLocatorDiscovery C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3F28405D195B02F119A124AA /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */; + buildConfigurationList = FDD08CA1D9C4CEE1314AB011 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */; buildPhases = ( - 8323A7E88064AE338418B26B /* Headers */, - D64890E98A72ADBFDFA02D73 /* Sources */, - CA98DBD4C387687255A8FBCD /* Frameworks */, + 2B90F8B4C459B49C79A80DB3 /* Headers */, + 19E8C12591841D5245D5DC13 /* Sources */, + 85D54E0F6421C5110E7CF3B7 /* Frameworks */, ); buildRules = ( - 2D97F5D2FA163CCE8AC3B7D6 /* PBXBuildRule */, + B6041BC1A89CDEE8A98E68ED /* PBXBuildRule */, ); dependencies = ( - 3546E3EA54642322837E9CC2 /* PBXTargetDependency */, + D4B36895492985F143ADF9A5 /* PBXTargetDependency */, ); - name = "IceLocatorDiscovery C++11 iOS"; - productName = "IceLocatorDiscovery C++11 iOS"; - productReference = 95C4777E39FA8DD4FBD09FD6 /* libIceLocatorDiscovery C++11 iOS.a */; + name = "IceLocatorDiscovery C++11 macOS"; + productName = "IceLocatorDiscovery C++11 macOS"; + productReference = 6A510B59CE2B6AA8EFA619EC /* libIceLocatorDiscovery C++11 macOS.a */; productType = "com.apple.product-type.library.static"; }; - 224A65D1A8B6FBED3FA62D9D /* TestDriver iOS */ = { + 16C02D2C934DC57FE079663F /* IceStorm iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6620D36133716E2A0E3BC9AD /* Build configuration list for PBXNativeTarget "TestDriver iOS" */; + buildConfigurationList = 8B6BCE61CD3D67F3E3BD8082 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */; buildPhases = ( - 33F8FA552E0D09D5BD6A7974 /* Sources */, - C3DAEA1191A26EC1A664D6D6 /* Frameworks */, - 40269C15DD5D60F285915626 /* Resources */, - CDD63FFC164A91851939E3AA /* Copy Frameworks */, - CFE22D2D567F96EB6E32E3F3 /* Copy Symbols */, + 470C12FF538C8ED135C4B638 /* Headers */, + DCBD1C7C048C69D71EEC4948 /* Sources */, + 806EB0C01E531EFDADC577DA /* Frameworks */, + 9805238AC059C1F2FF2B8E40 /* Resources */, ); buildRules = ( - 79065FBA33ECBF04C1CEA5C3 /* PBXBuildRule */, + E280EEDFCE813E0957872778 /* PBXBuildRule */, ); dependencies = ( - EAEEC544BDF9F708A60CA2FD /* PBXTargetDependency */, - 001DD76E59FF4C830BAFE107 /* PBXTargetDependency */, - 4A97BD98E21B9BDA345B96F0 /* PBXTargetDependency */, - 341DC8457E0F60396E37A49D /* PBXTargetDependency */, - 2F20AF50EF29D165312173D9 /* PBXTargetDependency */, - 3A22535A08D03885044E158B /* PBXTargetDependency */, - BC91FE7A6C7B417DA7CBC3CB /* PBXTargetDependency */, - 60D2A880AF10256A590B7AF8 /* PBXTargetDependency */, - 38E974EECBE77CABAB2DD241 /* PBXTargetDependency */, - 63D8D2788A671D2EAC6D3289 /* PBXTargetDependency */, - F7626EBEE3EC89AC00DEB32A /* PBXTargetDependency */, - FA9EA170C59B2005D2A6CA78 /* PBXTargetDependency */, - 13DD1FA83C1CEE545E98F485 /* PBXTargetDependency */, - BC8E9AEADEC1C9437B93872E /* PBXTargetDependency */, - 1F4B600A0C49C69B3DFBD59E /* PBXTargetDependency */, - 628C8A699FE5EA6A1C636571 /* PBXTargetDependency */, - E72BBD442FC5ECECA21245B3 /* PBXTargetDependency */, - E2C29A37818BE0BCF0F5142F /* PBXTargetDependency */, - AC689ADB31AA0F7433A298CD /* PBXTargetDependency */, - 0D75510DEB51424F228A3C0E /* PBXTargetDependency */, - C27C0FBE35C7A75968419366 /* PBXTargetDependency */, - 52722DF7EBAB5DC86E5F6EE4 /* PBXTargetDependency */, - F2A2E6A867DE3773D9740B04 /* PBXTargetDependency */, - 821E7DB417F0F0382E648337 /* PBXTargetDependency */, - 7233F6C9E2602CFA873D9033 /* PBXTargetDependency */, - 9723F6A89BAA32EFB9E38912 /* PBXTargetDependency */, - 80D5B83EE21DA6DD3550BD8B /* PBXTargetDependency */, - 063C85C5C7BA865B792BAC95 /* PBXTargetDependency */, - F63C4DA9A84C21283824ACFB /* PBXTargetDependency */, - 02CE1A948C8D7A9C07D81026 /* PBXTargetDependency */, - 6C455E558BDEADE3864ED714 /* PBXTargetDependency */, - D56653FACBEEE60C2262648A /* PBXTargetDependency */, - 7AE8E7EB7AC7B98D94B7EE2A /* PBXTargetDependency */, - 133F8FA0ED200ABE709C7C97 /* PBXTargetDependency */, - DCAB49BE398943EF003A1590 /* PBXTargetDependency */, - 518B1F1A9B4F14E69A90ADED /* PBXTargetDependency */, - 534F123E4E7C67F7FCD2C0D9 /* PBXTargetDependency */, - A9D428A05C52A274B1A72E5F /* PBXTargetDependency */, - A8909DBDEB2BC7213342F687 /* PBXTargetDependency */, - 2963DE3A8838570474ABE73F /* PBXTargetDependency */, - E4842906C99A8CE7E536EF37 /* PBXTargetDependency */, - EC9EADB81E3EA1A4EBF28170 /* PBXTargetDependency */, - B964BB9EA7FB3369637C6722 /* PBXTargetDependency */, - CE663B5337DE6CF7660D1D76 /* PBXTargetDependency */, + 4AA57B4CCAFD40B94EB5703C /* PBXTargetDependency */, ); - name = "TestDriver iOS"; - productName = TestDriver; - productReference = CAAE15001A3C252F22A5E566 /* TestDriver.app */; - productType = "com.apple.product-type.application"; + name = "IceStorm iOS"; + productName = IceStorm; + productReference = 1124897FAD46E0C20C2CD5AF /* IceStorm.framework */; + productType = "com.apple.product-type.framework"; }; - 246FEE224D85BEE24C2D1581 /* IceServantLocator iOS */ = { + 1767B82F1961C76D47FF467B /* IceStream iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C11BB948A633390FEA571628 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */; + buildConfigurationList = 030B0C213166A908514BBEE3 /* Build configuration list for PBXNativeTarget "IceStream iOS" */; buildPhases = ( - 91631103ED35069287E4C528 /* Sources */, - 8E638FBEA17B67241BF63E4A /* Frameworks */, - 4EF3FEB29DCD03F143853A03 /* Resources */, + 31CAA11822A27837A20198DD /* Sources */, + 10A9E6818829CF9EAFF1F3CD /* Frameworks */, + 9A06AC974913591F40021183 /* Resources */, ); buildRules = ( - 7A406C9507E9F0183666FACE /* PBXBuildRule */, + 30B5A14F5CA24A6F0DF27B48 /* PBXBuildRule */, ); dependencies = ( - A473622614263821F53C3D47 /* PBXTargetDependency */, - 8ABF02C70DC6AFC5C4BEB93A /* PBXTargetDependency */, + 47FE95D45ABA35FC405F49A5 /* PBXTargetDependency */, + 3549A8EFC012523759D7C1B9 /* PBXTargetDependency */, ); - name = "IceServantLocator iOS"; - productName = IceServantLocator; - productReference = 715E4D917D550570FD3CFF6A /* IceServantLocator.bundle */; + name = "IceStream iOS"; + productName = IceStream; + productReference = CE7D6C632EB030AE96F5F06C /* IceStream.bundle */; productType = "com.apple.product-type.bundle"; }; - 25D99E456ADFE5745483AC23 /* IceExceptions macOS */ = { + 199245355B4B5CD9FF6A6386 /* IceLocation iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 8CE6DA8DD65F344C44C20ECF /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */; + buildConfigurationList = 7FE01F67067D7142B0CD4F65 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */; buildPhases = ( - F42BAD6D9D3F6B9853BC13E8 /* Sources */, - F4F4BCC0ACD0684EC9228104 /* Frameworks */, - 81BD0E9F6E7BDA7AD85D038B /* Resources */, + A0A95DA7DA0837299DE560B5 /* Sources */, + 2923CF8B8E12477B3B3F0865 /* Frameworks */, + 44FAD6E0EDAB8E4A1AEE1BF4 /* Resources */, ); buildRules = ( - E2598B04DB03DCEAC4D8DCD7 /* PBXBuildRule */, + 39E18D979D630330D623018C /* PBXBuildRule */, ); dependencies = ( - A7BC4711D90476B21C97247A /* PBXTargetDependency */, - DFA3E5B85E1F8F2CC25C85A3 /* PBXTargetDependency */, + 4BAC91CC5FEA7F7B16E72836 /* PBXTargetDependency */, + 210D93C5CE1B6BAF8583E68D /* PBXTargetDependency */, ); - name = "IceExceptions macOS"; - productName = IceExceptions; - productReference = 2215FA4DF66DE6FD987EDA9A /* IceExceptions.bundle */; + name = "IceLocation iOS"; + productName = IceLocation; + productReference = B7CC3EAFDBBAED579CB65E02 /* IceLocation.bundle */; productType = "com.apple.product-type.bundle"; }; - 263FF8D1D5EF5BA8F4E3FDFA /* IceOptional iOS */ = { + 1F284CA948D007302C982357 /* IceUdp macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 544620CA4E7FECF228A7C8A6 /* Build configuration list for PBXNativeTarget "IceOptional iOS" */; + buildConfigurationList = 3A17E7095AB1ECA3CBAC256C /* Build configuration list for PBXNativeTarget "IceUdp macOS" */; buildPhases = ( - 11EEF36BD08AA248E8542312 /* Sources */, - 8681D5A664086601EC157CD3 /* Frameworks */, - 681BA32B0A7BB400CB929FAF /* Resources */, + 0FD557A1D14D0A865ED5A5FD /* Sources */, + F8E7C240ABCB208AF20991BA /* Frameworks */, + 8A0DF499987AFF2D115AEDB4 /* Resources */, ); buildRules = ( - 2F376C8322F16F151615FE07 /* PBXBuildRule */, + D0653608084D464F8B138E2E /* PBXBuildRule */, ); dependencies = ( - 8281FF63885EA22DAC514FC6 /* PBXTargetDependency */, - B772D4413BDE6F23CFE5AB9A /* PBXTargetDependency */, + 78CEFB1A72110EE60FDB3F21 /* PBXTargetDependency */, + 79907CBDE1D21DF4674DCEBB /* PBXTargetDependency */, ); - name = "IceOptional iOS"; - productName = IceOptional; - productReference = 27341FF2E126E6E82D9FAE9B /* IceOptional.bundle */; + name = "IceUdp macOS"; + productName = IceUdp; + productReference = 039BF5E6C32CFEAC7B738A87 /* IceUdp.bundle */; productType = "com.apple.product-type.bundle"; }; - 2AD01C6A244838BF6DABEF5C /* IceLocation iOS */ = { + 1F99406342A96A78168E74BB /* IceServantLocator macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 72783896962E4BC50A3C078C /* Build configuration list for PBXNativeTarget "IceLocation iOS" */; + buildConfigurationList = 0252968214EFD83026C28885 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */; buildPhases = ( - 8A88D1A62B1848F7C88FC3C7 /* Sources */, - EEDEA6EC91B4BA3437E07BF0 /* Frameworks */, - 1F945391D69F33A9E57CC7AE /* Resources */, + 55EA03F9FF5B5258E2D95203 /* Sources */, + 31FB515E0D1B88401DF0F91E /* Frameworks */, + C20BB80DF8D3029A668ABDCD /* Resources */, ); buildRules = ( - 0466AC2D98B8B1797376E136 /* PBXBuildRule */, + C3DBAF4F863DD4BB1DA91BEE /* PBXBuildRule */, ); dependencies = ( - A758FEB00F45F43548A58C3E /* PBXTargetDependency */, - 7F60111AC7F5F12B6F78594E /* PBXTargetDependency */, + 47FB782459BC2150AD05A8C0 /* PBXTargetDependency */, + F63875B0AFF87808BB1D2D7C /* PBXTargetDependency */, ); - name = "IceLocation iOS"; - productName = IceLocation; - productReference = BB964A860C92F7275D083A26 /* IceLocation.bundle */; + name = "IceServantLocator macOS"; + productName = IceServantLocator; + productReference = 1290DF39C865119AAFCA300B /* IceServantLocator.bundle */; productType = "com.apple.product-type.bundle"; }; - 2C9432880D461B94B2829F4D /* IceAmi iOS */ = { + 24A0E61D1931744BC729034A /* IceAdmin iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 927086629D95F4C65DC7D986 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */; + buildConfigurationList = 964D3AF528C6D718B99C4B07 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */; buildPhases = ( - 6FD2D17AE02290CDDAF7189F /* Sources */, - D38A7982F950B86FBDBB5556 /* Frameworks */, - 54D05D33A232F0FB772E8DBA /* Resources */, + 94BA113A33B1F7D930559978 /* Sources */, + E6039FA4196A2B58B28A49CE /* Frameworks */, + 99D63790BA8EFD5298169ADE /* Resources */, ); buildRules = ( - 0C5CEDF0AEA0C1E49A457740 /* PBXBuildRule */, + F0E6D62A03E1FC5ED137EA52 /* PBXBuildRule */, ); dependencies = ( - C79F9A84C9780954C4B2A2D7 /* PBXTargetDependency */, - 28E1AC7D63064F6EED56D35E /* PBXTargetDependency */, + C2D552543A04BCB1C90C0836 /* PBXTargetDependency */, + F80D78B26EFAE8B8DE4CF68A /* PBXTargetDependency */, ); - name = "IceAmi iOS"; - productName = IceAmi; - productReference = 5A68B6650365588738DD6CA4 /* IceAmi.bundle */; + name = "IceAdmin iOS"; + productName = IceAdmin; + productReference = FA6925D0243F823802CF0D97 /* IceAdmin.bundle */; productType = "com.apple.product-type.bundle"; }; - 2D69E78989BA05C0A499A44D /* IceHold iOS */ = { + 2646D8A7E773E3BDE5BE8E29 /* IceGrid iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D3EE323899CFE50C8FF01A4C /* Build configuration list for PBXNativeTarget "IceHold iOS" */; + buildConfigurationList = ACACE4173894FFF52EE39DA7 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */; buildPhases = ( - 82D127E91FF466629629CAB0 /* Sources */, - A2E7C82065BE84DCB2D44F40 /* Frameworks */, - 918C367420551112E63DF3BF /* Resources */, + 4276B381C3BD8D8C5F41828A /* Headers */, + 5ABDC168A46FFCC4BC5DBE83 /* Sources */, + 9F5EBBFEADA209B38F96E7DF /* Frameworks */, + A0BE3341720002992247AA22 /* Resources */, ); buildRules = ( - 63D573DC53F83A59A80709FB /* PBXBuildRule */, + F08D29DD1F607F3A2A0811E1 /* PBXBuildRule */, ); dependencies = ( - 3BD980643A11F94F555DE698 /* PBXTargetDependency */, - 624562FE9AF40419990B7DE9 /* PBXTargetDependency */, + 3244052F17A2A6DDF30979C1 /* PBXTargetDependency */, + 7C19001548D502798662B0D1 /* PBXTargetDependency */, ); - name = "IceHold iOS"; - productName = IceHold; - productReference = 5C22AA8771C989C5BBD131D5 /* IceHold.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceGrid iOS"; + productName = IceGrid; + productReference = 38BF5DB9B9490714A81542C1 /* IceGrid.framework */; + productType = "com.apple.product-type.framework"; }; - 32B8209C4A20C3D8A8496A49 /* IceServices macOS */ = { + 26D8717EB0F318653FB9C763 /* SliceEscape iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6B93B8C9D017B7D0B3CDCD23 /* Build configuration list for PBXNativeTarget "IceServices macOS" */; + buildConfigurationList = E4537A8468EF1FEEE8F8F311 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */; buildPhases = ( - BCEB796595D0483CD00AFFFF /* Sources */, - 58D9E510A9859F1DF2FBC7E4 /* Frameworks */, - 06F0772BDA7723CA21DCF0BA /* Resources */, + 173FACE699124A87E04C914B /* Sources */, + 526A78150CEC0DC513C23FA9 /* Frameworks */, + F159F9E36E629E9BDB80C93E /* Resources */, ); buildRules = ( - 7C90749B9EADCC92591D2928 /* PBXBuildRule */, + 6DAC5C185EDE20E713CBDF37 /* PBXBuildRule */, ); dependencies = ( - 6FD74D84EEB6D1522D4BDE79 /* PBXTargetDependency */, - D66CEB67000C3EB8E6EDDBAD /* PBXTargetDependency */, - B02A518685B8288E303542CC /* PBXTargetDependency */, - 20D0E9047A43F154E11D5E6F /* PBXTargetDependency */, - 4124CC268695417E739EC1F7 /* PBXTargetDependency */, + 9E47C0D59B7542553E30A851 /* PBXTargetDependency */, + BAC027B9F32EA0F4AFC54489 /* PBXTargetDependency */, ); - name = "IceServices macOS"; - productName = IceServices; - productReference = 824FC6BA5BCE19588DEC2AD8 /* IceServices.bundle */; + name = "SliceEscape iOS"; + productName = SliceEscape; + productReference = 0753F097A120485770B9AAA7 /* SliceEscape.bundle */; productType = "com.apple.product-type.bundle"; }; - 33115CA925E128B5715AB93A /* IceExceptionsAMD iOS */ = { + 29279E4ADC71CC6522E7C012 /* IceTimeout iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D071476039D59E60FB986A4E /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */; + buildConfigurationList = F2077D8AD4DFC86DB8B0364B /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */; buildPhases = ( - EB3E64B349C3B416A390C7C4 /* Sources */, - 1A7F3764046C3DBAE17928D9 /* Frameworks */, - AA1B909021714E00B440AD52 /* Resources */, + 248CDA2D74739565F3521E8E /* Sources */, + 652F989614A0CD7EA9C93857 /* Frameworks */, + 8FCBA1D78694AF810B4FB355 /* Resources */, ); buildRules = ( - 4190A7D7231109E37C9C3FB6 /* PBXBuildRule */, + 1AACFC0222397DAB936D6C48 /* PBXBuildRule */, ); dependencies = ( + A82EA4403CC23337135C80BF /* PBXTargetDependency */, + D2E7DBF27809B6A06601A7F6 /* PBXTargetDependency */, ); - name = "IceExceptionsAMD iOS"; - productName = IceExceptionsAMD; - productReference = 33C7DBD13018E9D53A2497D4 /* IceExceptionsAMD.bundle */; + name = "IceTimeout iOS"; + productName = IceTimeout; + productReference = B2C05AE8C73A007F79D23190 /* IceTimeout.bundle */; productType = "com.apple.product-type.bundle"; }; - 3C65AA8108580E3668BDBC3F /* IceOptionalAMD macOS */ = { + 2997C7A465709CD09CD4C4BB /* IceDefaultServant macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EC4DBEF8FA6B0A7A7177F50B /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */; + buildConfigurationList = CB0394D655BA7D9B8142D057 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */; buildPhases = ( - F8DF0C296DD163C4546CE134 /* Sources */, - 85E1224885777FE59B8588A0 /* Frameworks */, - BAA4CEF76B1734DBEA8A30BB /* Resources */, + 37E4B6226FAA627420AD950B /* Sources */, + 9844B33CD363109631307713 /* Frameworks */, + 31C2FA05CB826509E9A74215 /* Resources */, ); buildRules = ( - E033A20E7D64CF05863C7D83 /* PBXBuildRule */, + A15C5680CB5FEA04C8581ED9 /* PBXBuildRule */, ); dependencies = ( + 949E14996BB86EA14239E327 /* PBXTargetDependency */, + B49EAB63D6E9C34958A5D033 /* PBXTargetDependency */, ); - name = "IceOptionalAMD macOS"; - productName = IceOptionalAMD; - productReference = A36EC0AEC31627FD61F14E27 /* IceOptionalAMD.bundle */; + name = "IceDefaultServant macOS"; + productName = IceDefaultServant; + productReference = 6773D68D1A68AE755B5B28D3 /* IceDefaultServant.bundle */; productType = "com.apple.product-type.bundle"; }; - 3C66C239BBA518B87D48C1C3 /* IceSSLConfiguration macOS */ = { + 2A0224A2EFBB3E87655C351C /* IceInfo iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BCAEC8A06C1D19270BDAC8E0 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */; + buildConfigurationList = 6B982611FF349CB1EE5F5CDD /* Build configuration list for PBXNativeTarget "IceInfo iOS" */; buildPhases = ( - 98EC66C7A6A09AD7A89D0FB1 /* Sources */, - 5D433EC02B004D382ACC5A6B /* Frameworks */, - D15A327509A465D555D2A85A /* Resources */, + 46E22643788ED3AEF53E2D71 /* Sources */, + 49EB2686A47CA3035B5D5931 /* Frameworks */, + 82ACCDBDF2E388C1E5BB417F /* Resources */, ); buildRules = ( - 9857D4A53D3975A39E217C0C /* PBXBuildRule */, + A83197122320D98FEB65A31E /* PBXBuildRule */, ); dependencies = ( - 33BB3C3D618E4D1F283E6C99 /* PBXTargetDependency */, - D9EC6B5F6D429EFE5A7478CD /* PBXTargetDependency */, + 52B1E6A9E6405D07BA0F27F4 /* PBXTargetDependency */, + 2B1B355F21DDF3BE4F41B18B /* PBXTargetDependency */, ); - name = "IceSSLConfiguration macOS"; - productName = IceSSLConfiguration; - productReference = E2DB3B0D04B959637ABED20A /* IceSSLConfiguration.bundle */; + name = "IceInfo iOS"; + productName = IceInfo; + productReference = 31CED9038EC89062E2687C72 /* IceInfo.bundle */; productType = "com.apple.product-type.bundle"; }; - 3C8F64BC2EB740FC26540C5A /* IceEnums macOS */ = { + 2AA26A44152A667D249E2998 /* IceSlicingObjectsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5E374F0988577EC8EA81AB28 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */; + buildConfigurationList = 6FE087B24FDE257DD79D7A6A /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */; buildPhases = ( - 403C21BBA17FF2D6F20B6928 /* Sources */, - 257358A49EDC4DD950BE92C9 /* Frameworks */, - ABEF760012041C70AC8B5376 /* Resources */, + 218707E1D04EA9FE5757B1BB /* Sources */, + BF7FE0D35C2CFFCA8AE47C9F /* Frameworks */, + CAF6D72C893C7F92B6DAAA18 /* Resources */, ); buildRules = ( - 30D86CB9DA45178F1428181C /* PBXBuildRule */, + 2CFED10F8D5236F9A148CD79 /* PBXBuildRule */, ); dependencies = ( - DB96A96ABB3660110A211A39 /* PBXTargetDependency */, - 82F725F66AF7963DA643F37F /* PBXTargetDependency */, ); - name = "IceEnums macOS"; - productName = IceEnums; - productReference = C4D7B1A0626DB0DDFD4BD4B7 /* IceEnums.bundle */; + name = "IceSlicingObjectsAMD macOS"; + productName = IceSlicingObjectsAMD; + productReference = 37BCBC566A446A9FB1903373 /* IceSlicingObjectsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 3CC923BA7EC9201D602FFE65 /* IceAcm iOS */ = { + 2B82F333BA11DB5D8BECDBF6 /* IceInterceptor iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 48F7A82136382EBE8DC0D1A4 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */; + buildConfigurationList = 495A226D42894D7C7C4FB3B2 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */; buildPhases = ( - D84617619F7C20813FF9C29A /* Sources */, - 0EA9E0BBBDCDB4A805183653 /* Frameworks */, - B10D055A09A82B6E5BC9DEF4 /* Resources */, + 13973FD1142BC0EEA74F5791 /* Sources */, + 1FB77E020C94D6255CBA55FA /* Frameworks */, + B6E4731B1043F209970479EE /* Resources */, ); buildRules = ( - 8E3847FCC2ACB7BD84BF09A9 /* PBXBuildRule */, + 55FEE57C03D6A35EA220FDDD /* PBXBuildRule */, ); dependencies = ( - B69512CDB44121E19AC47267 /* PBXTargetDependency */, - FA345447FEE4B8C36525199C /* PBXTargetDependency */, + D142A33923862678D6C26242 /* PBXTargetDependency */, + 8F7B5636B28615FCF1F89DAB /* PBXTargetDependency */, ); - name = "IceAcm iOS"; - productName = IceAcm; - productReference = 4926C66009891C6BE3389C72 /* IceAcm.bundle */; + name = "IceInterceptor iOS"; + productName = IceInterceptor; + productReference = 417ECCEE604C6E3005DA5A9A /* IceInterceptor.bundle */; productType = "com.apple.product-type.bundle"; }; - 3D1F7E6A7317D6CB8877A0D5 /* IceAdapterDeactivation iOS */ = { + 31D342F49CC37B0DFA959D8A /* IceInvoke iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 147822705D6DB451BE3F544B /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */; + buildConfigurationList = EDCBAD1868C21D4D52A43EC8 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */; buildPhases = ( - 1F90CA3B0F633C9D8D546A84 /* Sources */, - A3FD6EC628483AFEFF0DABDC /* Frameworks */, - 935627C9FAD3A217949C9CD4 /* Resources */, + 3DA0EEE1FC1B570F1658980C /* Sources */, + 283FB009630341DAD17469AC /* Frameworks */, + 2ACCCA73A818191FE00F24F0 /* Resources */, ); buildRules = ( - CE4D5081162D827202AB5888 /* PBXBuildRule */, + 0B74A63CFEF7DC7B73AFDB43 /* PBXBuildRule */, ); dependencies = ( - 11959A96FE4C532C895E63D2 /* PBXTargetDependency */, - 6253E9AD66F800E28D095533 /* PBXTargetDependency */, + 33CC3B2171296B8FEE8D9CB0 /* PBXTargetDependency */, + D233CF0851E7A6B017FFAE3C /* PBXTargetDependency */, ); - name = "IceAdapterDeactivation iOS"; - productName = IceAdapterDeactivation; - productReference = 6A000A916E9BBC2F74F97B21 /* IceAdapterDeactivation.bundle */; + name = "IceInvoke iOS"; + productName = IceInvoke; + productReference = AE24775D969D93908EB8704B /* IceInvoke.bundle */; productType = "com.apple.product-type.bundle"; }; - 4426F98834307DB6D023DE51 /* IceInheritance iOS */ = { + 34AC5913121CF6E0F793DEDD /* IceOptional iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D071E6E67415B1084B7FB2B0 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */; + buildConfigurationList = 3BBD0784B868C9DF93BA087B /* Build configuration list for PBXNativeTarget "IceOptional iOS" */; buildPhases = ( - D504994ED86C0EE6327A898B /* Sources */, - AFC321E8DC9AA82D1F23BA2F /* Frameworks */, - 6FCC36506110E88C9381D32E /* Resources */, + 265C5F11C4DF1AC9FCBCABF9 /* Sources */, + B3A87C11E0F7FE17A76F4C35 /* Frameworks */, + A8D0D05355E911E75BA0CA65 /* Resources */, ); buildRules = ( - 2BA1008CDE69BB9420622248 /* PBXBuildRule */, + 1FFB7E77246CEEA7A9792AA1 /* PBXBuildRule */, ); dependencies = ( - 1B5D072CB3BA0A8077EEC657 /* PBXTargetDependency */, - C2336FE5661BC689D2781566 /* PBXTargetDependency */, + DF3CFD08EEAE5D55AD373E77 /* PBXTargetDependency */, + 5357751A9DD5D2904A7730A7 /* PBXTargetDependency */, ); - name = "IceInheritance iOS"; - productName = IceInheritance; - productReference = 35D9409C55AEE7FF99166B57 /* IceInheritance.bundle */; + name = "IceOptional iOS"; + productName = IceOptional; + productReference = 60CB9F01352AB79EE50AD568 /* IceOptional.bundle */; productType = "com.apple.product-type.bundle"; }; - 44669E73C88B6F4F3038B679 /* SliceEscape macOS */ = { + 3889B46D2FBF6B61B7DA5A5A /* IceDefaultServant iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AFABD3DE224C0B5C6940A5B7 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */; + buildConfigurationList = 349E46BBAA5C23BC49FDDCA7 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */; buildPhases = ( - DF2BAEAF833A6D766E15283A /* Sources */, - 03002C90EFE637815A0A72E5 /* Frameworks */, - 9F2219FF729B5FE64200F58E /* Resources */, + 2892793081A78839DF6EC65E /* Sources */, + FC33E14EC639571B6432A1DE /* Frameworks */, + E1C49984FA480B9BCF65FA6B /* Resources */, ); buildRules = ( - 66AADE9A203B6E92C0F1391B /* PBXBuildRule */, + 5F25180EEEA0D443EA83236C /* PBXBuildRule */, ); dependencies = ( - 877B4C1103BC1DBA5834A2F7 /* PBXTargetDependency */, - BEA47222DCFE0E79497C509D /* PBXTargetDependency */, + 26273A8A01152B7B735D8E52 /* PBXTargetDependency */, + 09CB6BF22B26F03069623513 /* PBXTargetDependency */, ); - name = "SliceEscape macOS"; - productName = SliceEscape; - productReference = CA697889B116706378E57DA6 /* SliceEscape.bundle */; + name = "IceDefaultServant iOS"; + productName = IceDefaultServant; + productReference = F1BA415B45FE40D1AF4C892C /* IceDefaultServant.bundle */; productType = "com.apple.product-type.bundle"; }; - 457BBB51C97A0228B53F703A /* IceExceptions iOS */ = { + 3892B1FD3640020576B40CDA /* TestDriver macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 77D54A7D0B463F31230957CF /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */; + buildConfigurationList = C22E9D48367DAB854CD8AB46 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */; buildPhases = ( - 4F5BE157EA5F5E7CBE15AFFA /* Sources */, - F35D18FC2FF416D7E79FFB7A /* Frameworks */, - 602A87F27A8F4F8C32D06E9D /* Resources */, + D49EE87B9CACBEF092809F3E /* Sources */, + B367B8328583C66CB3B65E11 /* Frameworks */, + 04386FC27D0D00B9F679688A /* Resources */, + E5942E58C8A34C1C4ED4BD5C /* Copy Frameworks */, + 7340F995D6B9555E6836DD71 /* Copy Symbols */, ); buildRules = ( - F713BCB2DE19D0204969C4C3 /* PBXBuildRule */, + F733CA456DE86E601559E187 /* PBXBuildRule */, ); dependencies = ( - F1A84E7CFB79C5A2022D547F /* PBXTargetDependency */, - F20D5C5EA88A15EF6715202D /* PBXTargetDependency */, + F5C06429B5D05FD6F4B92B02 /* PBXTargetDependency */, + BAABD39AF8227DE63E0F15A3 /* PBXTargetDependency */, + 7A1B75A2AFF576862F850EB8 /* PBXTargetDependency */, + 64E2DBD2FB0CF03A0FD858C5 /* PBXTargetDependency */, + CC0059B926218535B5D62531 /* PBXTargetDependency */, + 5FD75BA8D5A7A7C4F0CA3088 /* PBXTargetDependency */, + 1266E8E92D898438FC6EF1B5 /* PBXTargetDependency */, + 5ACD58BB931BA6EFA23D53DA /* PBXTargetDependency */, + 7B2D6496A0B0CA37BC1B1E7A /* PBXTargetDependency */, + F4B3D0B07B15108174A0CC90 /* PBXTargetDependency */, + 26E6A837F9F3EFF049C9A1AA /* PBXTargetDependency */, + 0A91B8A116875CEC970DB85E /* PBXTargetDependency */, + F5787A99C870CB54CFFB2E44 /* PBXTargetDependency */, + 865F09E12BF0AB27BF5FE513 /* PBXTargetDependency */, + 1F96080B43C6108C5BA9A004 /* PBXTargetDependency */, + AEC180946B16CB7D1C4DBF3C /* PBXTargetDependency */, + 5CE3621271F0E4C4F63E9D9D /* PBXTargetDependency */, + 354922DD748FAF19507292F0 /* PBXTargetDependency */, + ED3159A6574CC60DC0FE5C65 /* PBXTargetDependency */, + 0C3850A95834B28C11362CCF /* PBXTargetDependency */, + 167EC68770DCBFC81886B91F /* PBXTargetDependency */, + 67B031B4D8993288C7843E4D /* PBXTargetDependency */, + 2B47301E751C23EFBE4F8294 /* PBXTargetDependency */, + 72746F191DD4652E14575CF6 /* PBXTargetDependency */, + 711D5DEEE06075DDADB72213 /* PBXTargetDependency */, + 83E58029B07ED33EB879DB29 /* PBXTargetDependency */, + 32A9B8CD1DF556B5E5C61FE8 /* PBXTargetDependency */, + 9E82D85D6E5E2CBF7F61188A /* PBXTargetDependency */, + 443E309CCEBA2F5B1649F301 /* PBXTargetDependency */, + D6016936626FCA5F3921E496 /* PBXTargetDependency */, + BBE4C6AFCAA0609900EA9E58 /* PBXTargetDependency */, + E982B85311CB453D092BF136 /* PBXTargetDependency */, + A2967B38CF2279E1730A4928 /* PBXTargetDependency */, + 1D0F5F70057CFE956BCE3C98 /* PBXTargetDependency */, + E0CCA65D2B58CB8992CA6CBA /* PBXTargetDependency */, + 996596739BF001F14B815636 /* PBXTargetDependency */, + 4609D89767C5EC483B2A4EF2 /* PBXTargetDependency */, + BB29484678B4A6BC5EAD1F7C /* PBXTargetDependency */, + BBFC483DC74CA8ED3A565C13 /* PBXTargetDependency */, + 3C571710DABB166F5AB0D497 /* PBXTargetDependency */, + A646BFF2EBABF5DA511E2EA2 /* PBXTargetDependency */, + 7EECA71D1209359102D19880 /* PBXTargetDependency */, + C31F871E6F410119CF66B3AE /* PBXTargetDependency */, + 6473BB2BF839A0C3AA0BBF14 /* PBXTargetDependency */, ); - name = "IceExceptions iOS"; - productName = IceExceptions; - productReference = 36C71BAF8FD41F9650AE8686 /* IceExceptions.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestDriver macOS"; + productName = TestDriver; + productReference = B407E5A8D5B156671264DFC5 /* TestDriver.app */; + productType = "com.apple.product-type.application"; }; - 45B627654A6C6E672B177B58 /* IceSlicingObjectsAMD macOS */ = { + 38C1EA904D5C3BCB045C88A2 /* IceProxyAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F8010370F463A7F2210C530C /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */; + buildConfigurationList = C987906A8741F66B405FD072 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */; buildPhases = ( - C8477A0FED449B4755E04676 /* Sources */, - A8BB4A1FD3E0B51E85DC7E4D /* Frameworks */, - 7F58FD2056AE8441930B01D6 /* Resources */, + A3058C0E432687C445899555 /* Sources */, + BBEEFF0A68121EE4209D00C8 /* Frameworks */, + 8A838501F68B8A18D5BAAD6F /* Resources */, ); buildRules = ( - 74A132106B8ED6BDC6AD0A55 /* PBXBuildRule */, + D29588E5F45CCE70DBFAC56B /* PBXBuildRule */, ); dependencies = ( ); - name = "IceSlicingObjectsAMD macOS"; - productName = IceSlicingObjectsAMD; - productReference = C9B36D91B9D68383E5F105B3 /* IceSlicingObjectsAMD.bundle */; + name = "IceProxyAMD macOS"; + productName = IceProxyAMD; + productReference = 521B530EB810B4F3FDF103AE /* IceProxyAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 47118015D4FFF9159FC93434 /* IceAdmin iOS */ = { + 3AA88FF2CD4BC207F3E38A68 /* IceDiscovery C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0644D9F4813142CF5BD9EDA7 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */; + buildConfigurationList = 3A6B018810B2355184BFADD6 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */; buildPhases = ( - 2ED85B69DBB7BCB74B245580 /* Sources */, - 389135B675237CD8C315291E /* Frameworks */, - BBB6600CFFD8BC939400A241 /* Resources */, + 10C89778826B0C0BB91E9BC6 /* Headers */, + 845DA976F8C240ED749F0993 /* Sources */, + E7CE9EAD6B41D15F33A3BC5F /* Frameworks */, ); buildRules = ( - 20EF03E694DD62EB32DDF0E9 /* PBXBuildRule */, + E05FAD6A4F0429D09796CA8D /* PBXBuildRule */, ); dependencies = ( - 705C9FBEAE168297C58BDA0B /* PBXTargetDependency */, - 29EB864A205D17CBE4C922D8 /* PBXTargetDependency */, + 2C35865548487819E61CD5C5 /* PBXTargetDependency */, ); - name = "IceAdmin iOS"; - productName = IceAdmin; - productReference = DF53E5C9769D0305AAB42633 /* IceAdmin.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceDiscovery C++11 macOS"; + productName = "IceDiscovery C++11 macOS"; + productReference = B01C28336B07FA327829314A /* libIceDiscovery C++11 macOS.a */; + productType = "com.apple.product-type.library.static"; }; - 4CA64E4D7C1BECF901572919 /* IceDiscovery C++11 macOS */ = { + 3CB27B168E65D6B824278AE1 /* IceSlicingExceptionsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A1A08AD4C010082331DCE136 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */; + buildConfigurationList = 8604BB88AF7054188522024C /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */; buildPhases = ( - 270C88AB742B9A18218C3A9D /* Headers */, - 0512149C8627A81D83BF4C04 /* Sources */, - 4225DE0ABFAFD6A5B629A73F /* Frameworks */, + 3584EB0EDCF9EF8FBFAECDD6 /* Sources */, + 97EED2E3C98D3F5AF3A1552A /* Frameworks */, + 69FCFDD29309F0532D39A5B8 /* Resources */, ); buildRules = ( - 1B736E4E7FFE3533A30B274E /* PBXBuildRule */, + 8C41009A1CF692F8BB063584 /* PBXBuildRule */, ); dependencies = ( - 5794BA1B3D723D06E8E02779 /* PBXTargetDependency */, ); - name = "IceDiscovery C++11 macOS"; - productName = "IceDiscovery C++11 macOS"; - productReference = FEB12180C1DB3A1694DE7788 /* libIceDiscovery C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceSlicingExceptionsAMD iOS"; + productName = IceSlicingExceptionsAMD; + productReference = 6407F8C33CF3719F6547CE3E /* IceSlicingExceptionsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - 4CD1512C8E4830F6FAC5E6E4 /* IceSSLConfiguration iOS */ = { + 3E69BE60A2C26A59EEE938DC /* IceScope iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 75D718488E61EC96444BA1F8 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */; + buildConfigurationList = 1436FED26E53A492AD49A198 /* Build configuration list for PBXNativeTarget "IceScope iOS" */; buildPhases = ( - 1A3F8E5A8925E89245153CEF /* Sources */, - 171C4A90BA726A75547AF7FE /* Frameworks */, - 73AA1E9492C685AF941C8182 /* Resources */, + 7DB0956D51347FF877757F6F /* Sources */, + 081D5E6091599199E20BCD0C /* Frameworks */, + 33770904A4C0961541E60453 /* Resources */, ); buildRules = ( - 97E3158E2FE22E029A177CE1 /* PBXBuildRule */, + 0DD9AD4A7BD828C8FD11AB79 /* PBXBuildRule */, ); dependencies = ( - D671E2A6668680F0E63DC50C /* PBXTargetDependency */, - C7DA671101B48AA98B65B28E /* PBXTargetDependency */, + 5268EA67DC169DE818CC8F75 /* PBXTargetDependency */, + 932568BF537D0E9CF04A3F73 /* PBXTargetDependency */, ); - name = "IceSSLConfiguration iOS"; - productName = IceSSLConfiguration; - productReference = BD7F723468E384E171830EC1 /* IceSSLConfiguration.bundle */; + name = "IceScope iOS"; + productName = IceScope; + productReference = E4E970020786C4F7F72C5207 /* IceScope.bundle */; productType = "com.apple.product-type.bundle"; }; - 4F13DB1C06A1425528829C6C /* SliceEscape iOS */ = { + 41AF2CA6936313B5E6F391BD /* IceHold macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1024A86757B4CF06E68A54FF /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */; + buildConfigurationList = 7132AA38811E7617A47E8634 /* Build configuration list for PBXNativeTarget "IceHold macOS" */; buildPhases = ( - 3660E90F1064A9AF0A193D19 /* Sources */, - C8E3F5B2F0F283B0FA96EF8F /* Frameworks */, - 0C4BBA7FB603E0E94999D1AE /* Resources */, + 18C14F16D15E4A694293DE19 /* Sources */, + E407893EB03864C359677FAF /* Frameworks */, + 176FF9306341735D2EE9CC58 /* Resources */, ); buildRules = ( - 77EE3BF67D50E86264F906AD /* PBXBuildRule */, + 24F2F01F8EEF2C4CB373FCC8 /* PBXBuildRule */, ); dependencies = ( - F3DB30A9F87EA17DC5AC72C1 /* PBXTargetDependency */, - F9363A4E198BA521DC35D2AC /* PBXTargetDependency */, + 43B165872B3B751A3C828633 /* PBXTargetDependency */, + 4A6A04D7D9C890A5021B5F52 /* PBXTargetDependency */, ); - name = "SliceEscape iOS"; - productName = SliceEscape; - productReference = F29465792F99C245D88FAB64 /* SliceEscape.bundle */; + name = "IceHold macOS"; + productName = IceHold; + productReference = 9F9C864BECBB215D589B5735 /* IceHold.bundle */; productType = "com.apple.product-type.bundle"; }; - 4FDA69908F50F24A52FA5554 /* IceScope iOS */ = { + 4434399DDA0D789BDAB8EDCF /* IceLocation macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F5FC90624E257893850F4F24 /* Build configuration list for PBXNativeTarget "IceScope iOS" */; + buildConfigurationList = 99C7AB75CFB58B2BC9CB54D3 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */; buildPhases = ( - EB32919E1E6A8B4A3FAC122C /* Sources */, - 99179EC419F7BE9D94FD7680 /* Frameworks */, - 0AFA071613CDCB0CAFB8ACB0 /* Resources */, + 546286E57A4EAA9483C1EB73 /* Sources */, + 4D5DE839DBEF6FE4290079E4 /* Frameworks */, + F976B27FF94759CC796E9973 /* Resources */, ); buildRules = ( - D19E3CA19E1AB471788912B0 /* PBXBuildRule */, + 810C7830E1344D941EEAB39F /* PBXBuildRule */, ); dependencies = ( - 6F281B7C738EF48FDD11BCC3 /* PBXTargetDependency */, - D770DB7F97FBAA7FF9BB8B80 /* PBXTargetDependency */, + 8DE1D2AFA66323BE0D6830F2 /* PBXTargetDependency */, + DFEB9FEAE6481E1DA65CE2CA /* PBXTargetDependency */, ); - name = "IceScope iOS"; - productName = IceScope; - productReference = CDD4B038FAF18C50CBAD7DEA /* IceScope.bundle */; + name = "IceLocation macOS"; + productName = IceLocation; + productReference = 7C3AA0639A1EDE5ADB774E21 /* IceLocation.bundle */; productType = "com.apple.product-type.bundle"; }; - 54C05D7A1468FBA7EB02A914 /* IceInheritance macOS */ = { + 45549440E1718C4D35E63237 /* IceAcm macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BD8D95737AFD80C1CA704BCA /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */; + buildConfigurationList = CA5A320E5664C9BFB05772CE /* Build configuration list for PBXNativeTarget "IceAcm macOS" */; buildPhases = ( - 83A76164440CDE56D3480DBB /* Sources */, - 38A30BF368587D5331801126 /* Frameworks */, - 04D722540C7568F760C18BD6 /* Resources */, + 33B1F7E1237A46BE66481B63 /* Sources */, + B3650CA7FFEC001254FF4F90 /* Frameworks */, + 9949AEEBED679581FE7A8844 /* Resources */, ); buildRules = ( - 89AB5A64D2F7BAEFD84AE805 /* PBXBuildRule */, + E47B28EC2F168D6E639FF7A1 /* PBXBuildRule */, ); dependencies = ( - 3C3EA5ADFF87F85CA7571E11 /* PBXTargetDependency */, - 7CF5BA9F11877E8DE8CC0B1F /* PBXTargetDependency */, + DE3CF6E0EBAC74076AF0320E /* PBXTargetDependency */, + D8350F0624357AEB979D0135 /* PBXTargetDependency */, ); - name = "IceInheritance macOS"; - productName = IceInheritance; - productReference = D62655BDE99F0EFB5029C764 /* IceInheritance.bundle */; + name = "IceAcm macOS"; + productName = IceAcm; + productReference = EF8280C5D17209751E14553C /* IceAcm.bundle */; productType = "com.apple.product-type.bundle"; }; - 563E7C5E9BFDDAD9AEB54CD4 /* IceDiscovery C++11 iOS */ = { + 46452DCDFFD6A246079637CB /* IceAcm iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 4B6F73A21159504E16B57A1B /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */; + buildConfigurationList = 2E5E382C433373FE08562DEC /* Build configuration list for PBXNativeTarget "IceAcm iOS" */; buildPhases = ( - 6C4B8D4B387E1BC59293EAEF /* Headers */, - B268825D883706611F09F50E /* Sources */, - 4A9B2B0185CCAA7FD7FAA466 /* Frameworks */, + AD531935AFAD1531570A2E88 /* Sources */, + 204A198613FC71122473A254 /* Frameworks */, + 15D54B7AE2BF490CE5C78C8D /* Resources */, ); buildRules = ( - 34327A9F640F9F0DDD852DD3 /* PBXBuildRule */, + AB287FBAF4C96D37FAD92AA5 /* PBXBuildRule */, ); dependencies = ( - C3373DFD4195B262BD339BE9 /* PBXTargetDependency */, + 5FF97F04EC1FEDE3204B0343 /* PBXTargetDependency */, + A3FCCE06FBBB03C015426F21 /* PBXTargetDependency */, ); - name = "IceDiscovery C++11 iOS"; - productName = "IceDiscovery C++11 iOS"; - productReference = 81BBD19500FFDB5290F6EA34 /* libIceDiscovery C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceAcm iOS"; + productName = IceAcm; + productReference = 8629DC53723BDBF2B619738A /* IceAcm.bundle */; + productType = "com.apple.product-type.bundle"; }; - 568C96C03F49810104EE6CD1 /* IceSlicingObjects iOS */ = { + 49D15054211B9CC6B08CB18E /* IceDiscovery C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C2CB26111BF3C955550C4B72 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */; + buildConfigurationList = 0157127A05BBD04C218262B0 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */; buildPhases = ( - 8868F5599B3F411802B63FAB /* Sources */, - F798FF6A1825C3FBD0C31CB0 /* Frameworks */, - 99425B07DFD4B5355EAD4456 /* Resources */, + 43F59ECC32ECCFE75BE7A2A5 /* Headers */, + EDA094C1C4131E1A673E1E38 /* Sources */, + 7C6CDCE57D922E0B787A535D /* Frameworks */, ); buildRules = ( - 94E5D10C50E22678B4070CAB /* PBXBuildRule */, + 7307596D8EA316DB28CCD79D /* PBXBuildRule */, ); dependencies = ( - 55C211531B74B920D3BA5856 /* PBXTargetDependency */, - 26877FF8F0BCD2FA80E42C7F /* PBXTargetDependency */, + CC6BBD2AB5F9CC06D02D249D /* PBXTargetDependency */, ); - name = "IceSlicingObjects iOS"; - productName = IceSlicingObjects; - productReference = E06F35E158588B7C1D8BA3F6 /* IceSlicingObjects.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceDiscovery C++11 iOS"; + productName = "IceDiscovery C++11 iOS"; + productReference = EEE2D909D236CA9996023106 /* libIceDiscovery C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */ = { + 4CDAAF1A166952EC0C4E0BF1 /* IceImpl iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D0008B9280EA8DD418237763 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */; + buildConfigurationList = 0EFEF1D7EBC06BC77FD52F2A /* Build configuration list for PBXNativeTarget "IceImpl iOS" */; buildPhases = ( - 862D91464BD6C32DACC110CD /* Headers */, - FC322E7E585B59E4DD6BE436 /* Sources */, - 399D208837EDCF48AC2A4519 /* Frameworks */, + 2719167A458B015D49557716 /* Headers */, + B07361FD04E0EB287FC02C73 /* Sources */, + 2DD679EBE33EA28973E97CE2 /* Frameworks */, + B9EEF1A7005854C201330A1B /* Resources */, ); buildRules = ( - 31D6D32086AF25ED463453D1 /* PBXBuildRule */, ); dependencies = ( + 7051368F9D3D1E5E3808805C /* PBXTargetDependency */, + 4B02A11F530EE883CB2578B8 /* PBXTargetDependency */, + 526B313AFAD59FA551C9CD53 /* PBXTargetDependency */, ); - name = "Ice C++11 macOS"; - productName = "Ice C++11 macOS"; - productReference = 223E7C12AA05A09CB932E9A1 /* libIce C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceImpl iOS"; + productName = IceImpl; + productReference = 550E7CC0FD0E1918D7A9AB38 /* IceImpl.framework */; + productType = "com.apple.product-type.framework"; }; - 60091C7C300D5092A8E52149 /* IceExceptionsAMD macOS */ = { + 529314BF4173169E9CB2F36B /* IceProperties macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 25BB18B00994010278262887 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */; + buildConfigurationList = 71D9586CD06D3A7AA552F80B /* Build configuration list for PBXNativeTarget "IceProperties macOS" */; buildPhases = ( - 740467C4B57784289FE5A4E5 /* Sources */, - D70F361075F24E65D05F4D73 /* Frameworks */, - E059A4C28BA4B01EA131632E /* Resources */, + E078DD2EC4116147822ECE01 /* Sources */, + E572B71F7B0310B0FBB5FA3F /* Frameworks */, + 46F2D21F2C7973E5E24B0A4F /* Resources */, ); buildRules = ( - 107BD6620EE608E35A022969 /* PBXBuildRule */, + 5D73B5413A7BCE0557AE9728 /* PBXBuildRule */, ); dependencies = ( + 6C3562F7E1400576B368712F /* PBXTargetDependency */, + B8F1E89B87825266C11A5519 /* PBXTargetDependency */, ); - name = "IceExceptionsAMD macOS"; - productName = IceExceptionsAMD; - productReference = B06E3E53A88EBCFBC944B38B /* IceExceptionsAMD.bundle */; + name = "IceProperties macOS"; + productName = IceProperties; + productReference = B678281893C42981DD91CE27 /* IceProperties.bundle */; productType = "com.apple.product-type.bundle"; }; - 653844725C6B533AEBD3977F /* IceProxyAMD macOS */ = { + 57285D8128490A28FD5E1EA9 /* IceSlicingExceptions macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AD603A92D4BD1B979C351ECC /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */; + buildConfigurationList = F0F1827DA5AFDAEAA66F8225 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */; buildPhases = ( - 871ABD25B86BB8501C338AF8 /* Sources */, - 9149500CC47C66691660B0BD /* Frameworks */, - 5413918C6E0519ED17CACF4B /* Resources */, + DD87BBC707D274A0611EB50F /* Sources */, + 62093BE74F53D2410F354FB3 /* Frameworks */, + 89EF7AC17461C4496796E470 /* Resources */, ); buildRules = ( - AC68646374FB44918F0B8881 /* PBXBuildRule */, + B5C29E2549BA405D43648364 /* PBXBuildRule */, ); dependencies = ( + B7F7351D814B5FBA1FFC8E3D /* PBXTargetDependency */, + 416FAFE324EDB70B39EEAAC5 /* PBXTargetDependency */, ); - name = "IceProxyAMD macOS"; - productName = IceProxyAMD; - productReference = 336A43E8BEB51DFB4DA5FC77 /* IceProxyAMD.bundle */; + name = "IceSlicingExceptions macOS"; + productName = IceSlicingExceptions; + productReference = 52D616F0A4C2D7002EE8EE6C /* IceSlicingExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 65B4CEBE6BC37BE3E80C822B /* IceInvoke macOS */ = { + 57D39C477D54466601C5A786 /* IceExceptionsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E776FBA795F89D6CCE02CD6A /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */; + buildConfigurationList = 77CF292B6405CD9DC50E55F1 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */; buildPhases = ( - A7EC5A246B84DB7C6747EE40 /* Sources */, - 58ACA75F58B30E2E8A2D79F0 /* Frameworks */, - 725B26BCA7ECAC123E816C71 /* Resources */, + 6881CCF877304AB0D49EFF21 /* Sources */, + 770D467AAF89E88EF37AD409 /* Frameworks */, + E8EDBAF10EC32B268285C51B /* Resources */, ); buildRules = ( - 37E7964C9FFFE14C60B44E2D /* PBXBuildRule */, + 789DE5283B32D8F2E82D7F99 /* PBXBuildRule */, ); dependencies = ( - EB0FA6754AB0B1A91DE9664C /* PBXTargetDependency */, - DDF5CF580877DF6E551B2F36 /* PBXTargetDependency */, ); - name = "IceInvoke macOS"; - productName = IceInvoke; - productReference = 9DAAF34F8A69EEDC87F889E7 /* IceInvoke.bundle */; + name = "IceExceptionsAMD iOS"; + productName = IceExceptionsAMD; + productReference = 0443C0420CF9B9FDB9AE0E48 /* IceExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 66766A219D36565BAA8D85DB /* Glacier2 iOS */ = { + 5A26265E443FF04358AE528C /* IceExceptions macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 94178A4111559DBDC1193429 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */; + buildConfigurationList = 949317B550B1B1AFD92D0533 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */; buildPhases = ( - 068352613F3C040788D83E6C /* Headers */, - C0C732FC4178000245364070 /* Sources */, - 94A5C40D5F58EC042120F57D /* Frameworks */, - 4C3BA84D0F0F493B0D8D0686 /* Resources */, + 830352D57BA099B4E44F02B4 /* Sources */, + 17C34293249186306E0389C9 /* Frameworks */, + CFB4DD62C76CB41C892AE89E /* Resources */, ); buildRules = ( - 3DBD640E2BEB04526B028A5A /* PBXBuildRule */, + E793AF98611243937E18BDDA /* PBXBuildRule */, ); dependencies = ( - D153B0F232624C7685DD931A /* PBXTargetDependency */, + 65F8D90FAF604B13E5D29075 /* PBXTargetDependency */, + 26E5DD3BEB852EE4C8DB3FF6 /* PBXTargetDependency */, ); - name = "Glacier2 iOS"; - productName = Glacier2; - productReference = 534A5F8BE7C459A933D4054F /* Glacier2.framework */; - productType = "com.apple.product-type.framework"; + name = "IceExceptions macOS"; + productName = IceExceptions; + productReference = ED0D8471106CE1DAD728538A /* IceExceptions.bundle */; + productType = "com.apple.product-type.bundle"; }; - 6B689E233D18BEC5377ECFE9 /* IceProxyAMD iOS */ = { + 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A6D0F9F122B7EC98A09C98DE /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */; + buildConfigurationList = 163A2F3CF4F68749AD6BE907 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */; buildPhases = ( - FAF5BCCB34907687AD05FF20 /* Sources */, - B6BF6917EC2D7AE47DE7C6DA /* Frameworks */, - 3FED894319B3D97A9FE8969D /* Resources */, + F66974C1B19D538A8347A324 /* Headers */, + A2CDC7AD3288B99AD16BB1FF /* Sources */, + 62FA6B43A012A2B27F747639 /* Frameworks */, ); buildRules = ( - 9F0AE24E71BB2E0F5FB12231 /* PBXBuildRule */, + 1B80CF27C9EDFA2D30FC4E48 /* PBXBuildRule */, ); dependencies = ( ); - name = "IceProxyAMD iOS"; - productName = IceProxyAMD; - productReference = E3CDD73D8E2EF9035ABD5D8E /* IceProxyAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice C++11 iOS"; + productName = "Ice C++11 iOS"; + productReference = E47A14897F2C93447F45EFCA /* libIce C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - 6C6B3F2AAE2C93C3A2670E5E /* IceHold macOS */ = { + 60F33D27C2F25EAA1C58217D /* IceInterceptor macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9C3C3747AFC874E570EB571F /* Build configuration list for PBXNativeTarget "IceHold macOS" */; + buildConfigurationList = FB60A0B415E9E347AA1E331F /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */; buildPhases = ( - 762F8D943DAB33489D9F1722 /* Sources */, - 67F08892C0AB4291F92513F7 /* Frameworks */, - E22AFD2ABFAB3FD5CD5B8185 /* Resources */, + 52C2BC3F393D4B071AB4DA50 /* Sources */, + CD976712DDCAA3224E58C775 /* Frameworks */, + 5DF156CE3B2ABCC95441BD48 /* Resources */, ); buildRules = ( - C68807B7098C4D7CE2F9B8E8 /* PBXBuildRule */, + 5783A48558F7B1883496DAAB /* PBXBuildRule */, ); dependencies = ( - 7C6F9386F7A18DE4B273E36C /* PBXTargetDependency */, - 17BF9FB5DD888796E8094B00 /* PBXTargetDependency */, + 6C22381685946362D296DF7C /* PBXTargetDependency */, + 4433B6BB516D59984B87129C /* PBXTargetDependency */, ); - name = "IceHold macOS"; - productName = IceHold; - productReference = 93B5CBAE0C70CA58A1C2C165 /* IceHold.bundle */; + name = "IceInterceptor macOS"; + productName = IceInterceptor; + productReference = AE9FF7D3CCA47C89D218FFEE /* IceInterceptor.bundle */; productType = "com.apple.product-type.bundle"; }; - 6FD780B3B0F51D50A0233C81 /* IceInterceptor macOS */ = { + 615480D42FAF508D7F8AA5BC /* IceOperations macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AD19E78B54CB935962D28D3B /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */; + buildConfigurationList = 0DB26316D880D79A043C8220 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */; buildPhases = ( - 97D4C1B5577CD439FF1A875F /* Sources */, - 826CD0B7B0270DF0E8876A7C /* Frameworks */, - A90906DA111BA5A6DBCFECDE /* Resources */, + CEB3403D6F5A44E1997D8B37 /* Sources */, + 170FE239220FCD1C495B6CAF /* Frameworks */, + 29CA8F0C27AFBB27B927F33D /* Resources */, ); buildRules = ( - 4BDEECBB026BEFDBD29E459B /* PBXBuildRule */, + 04DD2A095C30642B8CC50942 /* PBXBuildRule */, ); dependencies = ( - 6B1F0117A09B57FFF2B9CD65 /* PBXTargetDependency */, - 34086D5FD64F54313B547FEF /* PBXTargetDependency */, + A7B3E8467799D00673BAB97C /* PBXTargetDependency */, + 2C75679E47BB1A606F96DE00 /* PBXTargetDependency */, ); - name = "IceInterceptor macOS"; - productName = IceInterceptor; - productReference = E03E5416C65A53BFBA1435CB /* IceInterceptor.bundle */; + name = "IceOperations macOS"; + productName = IceOperations; + productReference = 6629A6F5DD07DBEF2C036E46 /* IceOperations.bundle */; productType = "com.apple.product-type.bundle"; }; - 736E7E0279329997566B6CBD /* IceInterceptor iOS */ = { + 627EF9C25191013A38BA3C83 /* IceDefaultValue macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7EA6F034D3A1A444D2CD8398 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */; + buildConfigurationList = E9A35DA707780FA15F886576 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */; buildPhases = ( - 408664F57072120C427C03B9 /* Sources */, - 3C0007CD6741A74F1A7A48D7 /* Frameworks */, - 1DC48819EA533916598D2E42 /* Resources */, + 22D72A154B099999DA6C2B6B /* Sources */, + DCCA52359AA036281A864758 /* Frameworks */, + 0CCFF48ADFA73FF91C03C2AE /* Resources */, ); buildRules = ( - EAF2BF97C81C44268C1B9295 /* PBXBuildRule */, + 095881B07F194A8C319DABAE /* PBXBuildRule */, ); dependencies = ( - EE4B312D8942912E66A435E6 /* PBXTargetDependency */, - 4E770DBE2E4380524BC74E0B /* PBXTargetDependency */, + 6FC6EC1890665DCEAC5A5727 /* PBXTargetDependency */, + 054A49A3CE39EC48F11E8672 /* PBXTargetDependency */, ); - name = "IceInterceptor iOS"; - productName = IceInterceptor; - productReference = 623289333D18DFA2108F0CE7 /* IceInterceptor.bundle */; + name = "IceDefaultValue macOS"; + productName = IceDefaultValue; + productReference = 3D9AB0F6AC4AB0F35FE74791 /* IceDefaultValue.bundle */; productType = "com.apple.product-type.bundle"; }; - 73B0FB7CB263578EA908E6BF /* IceProperties iOS */ = { + 696D6136245EB191F3A59E1A /* IceLocatorDiscovery C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CF71943CB3679B30EDCADDBB /* Build configuration list for PBXNativeTarget "IceProperties iOS" */; + buildConfigurationList = 4C8BEDE4F71178624F9BDD5D /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */; buildPhases = ( - 459A708FDE23BED83F05CEBB /* Sources */, - 08C55A113D26874EB5C02B30 /* Frameworks */, - AF1018F3DFDD7F0EE6CE1CA3 /* Resources */, + 55DD80E69F422DD4C622B77B /* Headers */, + 96349055B134C09EFCC26C32 /* Sources */, + C446E0776A800C79B6069B3A /* Frameworks */, ); buildRules = ( - EDB0F7ED19C5B183A3246E2F /* PBXBuildRule */, + 0D054AEC1F4A7E0B48A26195 /* PBXBuildRule */, ); dependencies = ( - 6FF69033A22E023626CBC999 /* PBXTargetDependency */, - C275009890F7AEBE56B7BFBC /* PBXTargetDependency */, + E570FFFC1A885690A46C20BF /* PBXTargetDependency */, ); - name = "IceProperties iOS"; - productName = IceProperties; - productReference = E90675902D436ECB7A6A3254 /* IceProperties.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceLocatorDiscovery C++11 iOS"; + productName = "IceLocatorDiscovery C++11 iOS"; + productReference = 8C01588ADEBCFAC81EF7766F /* libIceLocatorDiscovery C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - 7649B8B4D36C63D3D167ED11 /* IceSlicingExceptions macOS */ = { + 737F194EFAAE24FEE20C5FF6 /* IceSlicingExceptions iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1F180A72D47E938736B12E02 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */; + buildConfigurationList = E9970C605E8859BAAB002530 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */; buildPhases = ( - 0FE1781453D118B21A0C2E91 /* Sources */, - 5307656E1CA96839A50B1D38 /* Frameworks */, - 8B6CFF3A4FE820D6D185F306 /* Resources */, + BAED5288881D9007CA76557B /* Sources */, + CDDC0380D0A062DCEB6F87F7 /* Frameworks */, + 7CE86B1B003D237CB5820E37 /* Resources */, ); buildRules = ( - 4D5C7C24A9AF0B7A37EAD28F /* PBXBuildRule */, + 4482E372EED1C565C507D1FC /* PBXBuildRule */, ); dependencies = ( - 06FBECBAE5F3DA0ABCDFC859 /* PBXTargetDependency */, - 18EE0B5F4F06D5E85788B6CF /* PBXTargetDependency */, + 07C6F7B220C492E23B1C0018 /* PBXTargetDependency */, + 1E5528ACD23F1444C341E3B9 /* PBXTargetDependency */, ); - name = "IceSlicingExceptions macOS"; + name = "IceSlicingExceptions iOS"; productName = IceSlicingExceptions; - productReference = 826C0C52CAC6A5F22BF6ACE9 /* IceSlicingExceptions.bundle */; + productReference = 6E87C9E4A4FD2945C3A68008 /* IceSlicingExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 7862E459B18BD8751A67923F /* IceProxy macOS */ = { + 7C5D25F9DE7921A57B72E85F /* IceOptionalAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9D55DF3FBBE3BFA20172573A /* Build configuration list for PBXNativeTarget "IceProxy macOS" */; + buildConfigurationList = 9D893DF6CA15F319D4C37CFE /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */; buildPhases = ( - B8032E351A2CAFE627A0F284 /* Sources */, - C918A614C2340AAFACCEB349 /* Frameworks */, - EDBBAF9A26563417C334E1E0 /* Resources */, + DD7D82133E5ABDF91FA82F91 /* Sources */, + 7E2EB1E4DC8F28640470290A /* Frameworks */, + 25B07D3C764D35EFC9ED3D9C /* Resources */, ); buildRules = ( - E1324200244312457CEC651B /* PBXBuildRule */, + CF57F7A5BBC6CA2B030C30FE /* PBXBuildRule */, ); dependencies = ( - EAC8D8B54AB4CB8156264D1B /* PBXTargetDependency */, - F890F59FBE62FC50282FCC0D /* PBXTargetDependency */, ); - name = "IceProxy macOS"; - productName = IceProxy; - productReference = BF0DC95EBCEEF58EE186A10F /* IceProxy.bundle */; + name = "IceOptionalAMD macOS"; + productName = IceOptionalAMD; + productReference = 4E225F52C80B142297214C92 /* IceOptionalAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 7AC3B103C3B879479057C283 /* IceDefaultServant iOS */ = { + 7EB54A3072775CD2177DC7A7 /* IceExceptions iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C323C8A30EC76BB9F1EDA4CF /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */; + buildConfigurationList = FC9F6692633CE8F5DEDAF0AB /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */; buildPhases = ( - E6BD7AF4534163901A16C006 /* Sources */, - 980E7859C7304340AFF182E5 /* Frameworks */, - 13CC967E3E466CFA2F68D8F7 /* Resources */, + 69743D90DF5C84F3D4D5CC5C /* Sources */, + 0C1567231CCF603369BE0A1A /* Frameworks */, + 2FDF2B1CF306F17449F96305 /* Resources */, ); buildRules = ( - 8A4F2CD3250B81F8C0666116 /* PBXBuildRule */, + F3441C411E476AFB3E7F2708 /* PBXBuildRule */, ); dependencies = ( - B16E8FE24046274907F97681 /* PBXTargetDependency */, - 13176BB7C32C2E481A9B11DB /* PBXTargetDependency */, + 69964E7848A218E1DEDFC2E0 /* PBXTargetDependency */, + 80415BFA23B5F71708C31594 /* PBXTargetDependency */, ); - name = "IceDefaultServant iOS"; - productName = IceDefaultServant; - productReference = BAC520FFA73DABE04C898130 /* IceDefaultServant.bundle */; + name = "IceExceptions iOS"; + productName = IceExceptions; + productReference = D30F73A7A6497E2340EAC041 /* IceExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 7B09AAAF71F5D5AB2F8C1B78 /* IceUdp macOS */ = { + 7F56B76EDE89B9AC6AF088FF /* TestDriver iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B29B72E12FD45954EF853156 /* Build configuration list for PBXNativeTarget "IceUdp macOS" */; + buildConfigurationList = 69B629EDFCB8FBDE7E173C34 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */; buildPhases = ( - E348665D2E7B54767A723942 /* Sources */, - D9891DB1D6563977E1045D2D /* Frameworks */, - 97FCB5631C1A70FF35B56342 /* Resources */, + A567673057B52D283B55DAEB /* Sources */, + A2C34056BCFA8E0038DD79A4 /* Frameworks */, + 0705EAB86A24010E8A8BB2E0 /* Resources */, + A1C4BAC4C5B1AD05F298379D /* Copy Frameworks */, + 78E695ABEF856CFDE7F09489 /* Copy Symbols */, ); buildRules = ( - 218A39931936B7DB8D4146F1 /* PBXBuildRule */, + AA0194279C077D1EEAC56FDD /* PBXBuildRule */, ); dependencies = ( - 355050F8ABB8B02A4A57AC93 /* PBXTargetDependency */, - C57F2E966A56D427BD3B9A86 /* PBXTargetDependency */, + 8013596BF0B6673017AE9925 /* PBXTargetDependency */, + CB8F434183D2935509B39B0B /* PBXTargetDependency */, + 6A2AD27DCD8B5B2CB05083E8 /* PBXTargetDependency */, + 7AB9AFA228B9357774F00016 /* PBXTargetDependency */, + 7448C1D149CBF37D898D6415 /* PBXTargetDependency */, + C5F9CCC0B291D8A268473F19 /* PBXTargetDependency */, + 7C885D4DC1517A39B6AAEC36 /* PBXTargetDependency */, + 56AD4C9FBA4453BBCDDD0875 /* PBXTargetDependency */, + B013408EC0683BA8E33F05B2 /* PBXTargetDependency */, + C3351F650DE37970BEF63E6A /* PBXTargetDependency */, + 769B73A0D383FE05DBB7FFD5 /* PBXTargetDependency */, + 6DF06C963636C427AF40A926 /* PBXTargetDependency */, + 2E2365AC0BDC8918C91F15F3 /* PBXTargetDependency */, + 2F831D8CEE40F51B9F617D79 /* PBXTargetDependency */, + 02AE090786CAF2F25D18C7B7 /* PBXTargetDependency */, + C17DD2C1DFB44F065EB562D7 /* PBXTargetDependency */, + 75FF220CA1125F22FF50CA9C /* PBXTargetDependency */, + 9D410204734AAA73906D3161 /* PBXTargetDependency */, + 25FB548EF674C7A8DC71D534 /* PBXTargetDependency */, + C3E08614742AB34ACA072519 /* PBXTargetDependency */, + 50D2263AAB01A82D88D338AC /* PBXTargetDependency */, + 6339F28A779A84F57105BBD3 /* PBXTargetDependency */, + 3A6302D4E95736627714E1FF /* PBXTargetDependency */, + 2B09BB6A39751A23449D1194 /* PBXTargetDependency */, + A98F664C6659C5CD598BB15B /* PBXTargetDependency */, + F63FD1480C3C24B34EFB7031 /* PBXTargetDependency */, + 73508A1A1B56CD95DCCF893E /* PBXTargetDependency */, + 6550E774623793A73ACDD4EE /* PBXTargetDependency */, + A8ECDEF5B6890C8F5A429DE1 /* PBXTargetDependency */, + F605D9358858CD7019AEB782 /* PBXTargetDependency */, + E8DCDF71A89FC57000D3C535 /* PBXTargetDependency */, + 5065DF2B0375FBEBBB2201BC /* PBXTargetDependency */, + 225C8AA1BDF53746F19E059E /* PBXTargetDependency */, + 07A546A6D38DEE5AB3BCB897 /* PBXTargetDependency */, + 13EC7376399917A6F4985F30 /* PBXTargetDependency */, + 505B7DE87463FDA5DDC46ED5 /* PBXTargetDependency */, + 618D3972916FA254B26E328E /* PBXTargetDependency */, + C3EC146D2A7DB317B4C97D58 /* PBXTargetDependency */, + 0FAE2DBE27D95467C3AFB46D /* PBXTargetDependency */, + D00A8B60DC6109E22F68E856 /* PBXTargetDependency */, + FC4E19EC147DD39FF5EF2979 /* PBXTargetDependency */, + 6A5B13C3D4BF44CF6DE975DE /* PBXTargetDependency */, + BD80C5D9BB72B119C04283F1 /* PBXTargetDependency */, + 0DA5BDF460102F04C8CC3A5E /* PBXTargetDependency */, ); - name = "IceUdp macOS"; - productName = IceUdp; - productReference = 6862C6DF1F03FD3BC6D46040 /* IceUdp.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestDriver iOS"; + productName = TestDriver; + productReference = 84A4B98757E5D39A8CF508CD /* TestDriver.app */; + productType = "com.apple.product-type.application"; }; - 7BD0591E1B5ABBDFE982E6E8 /* IceServantLocatorAMD iOS */ = { + 84AAA301C5D3AF97E6828B9A /* IceBinding macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 075918B1BEC8CE4CF04958F2 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */; + buildConfigurationList = 7D856E3928914BABAE964FDB /* Build configuration list for PBXNativeTarget "IceBinding macOS" */; buildPhases = ( - 117ECB46AFC1115A572AB2F3 /* Sources */, - 2738A3546E0DDA4969F3016D /* Frameworks */, - 4B2195D05EA13E32F7AE7CE9 /* Resources */, + 0507ED7DC9A273C797301292 /* Sources */, + 6756B0801AFD5646083EA47D /* Frameworks */, + DFC737F81493E7E2EC57A008 /* Resources */, ); buildRules = ( - 863F5538D25F019305A64FC8 /* PBXBuildRule */, + 6133AC6D17A3CADA95DE2E9E /* PBXBuildRule */, ); dependencies = ( + 17D6FC07049104A3479EE431 /* PBXTargetDependency */, + 8E5E9DF78C4648D714DEA913 /* PBXTargetDependency */, ); - name = "IceServantLocatorAMD iOS"; - productName = IceServantLocatorAMD; - productReference = 05286265BA8BCB8D08B75476 /* IceServantLocatorAMD.bundle */; + name = "IceBinding macOS"; + productName = IceBinding; + productReference = ACB54D91532B125D146C8F52 /* IceBinding.bundle */; productType = "com.apple.product-type.bundle"; }; - 7C4454250BFF2F744DA15043 /* IceProxy iOS */ = { + 8C1035C93AB58A55E8EB9B9D /* IceFacets iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5B6FA092C0E02733610C7B59 /* Build configuration list for PBXNativeTarget "IceProxy iOS" */; + buildConfigurationList = A49FFB8AF3A3C860FD54F46E /* Build configuration list for PBXNativeTarget "IceFacets iOS" */; buildPhases = ( - 271D6194962FFBBF88D3CE7C /* Sources */, - 5074C8710F531749B559D654 /* Frameworks */, - 713701E51289C5BFF63C9C56 /* Resources */, + 8BFD07AA3DE581D8525A1964 /* Sources */, + DDF270C3F565AB7125102577 /* Frameworks */, + 3E9E75D6C36A2F07BC6E7AE7 /* Resources */, ); buildRules = ( - 2858747B6861DE83819511E8 /* PBXBuildRule */, + 9F18FE1BE5E937D9A29A0AFC /* PBXBuildRule */, ); dependencies = ( - 3416113DF237AFC35587414F /* PBXTargetDependency */, - 50FDAC5AA1B8E6C9513D1991 /* PBXTargetDependency */, + 33A8D8114126AA8536176F9A /* PBXTargetDependency */, + 7F1CBFCEDFF7592299B8E767 /* PBXTargetDependency */, ); - name = "IceProxy iOS"; - productName = IceProxy; - productReference = 7E18CC57E815D2169B082AD3 /* IceProxy.bundle */; + name = "IceFacets iOS"; + productName = IceFacets; + productReference = 40A8549E2D87C0E0C7322954 /* IceFacets.bundle */; productType = "com.apple.product-type.bundle"; }; - 7C4ECB5C2679ED962EFAEA71 /* IceServices iOS */ = { + 8D4D7F1ABB790FA722EC7917 /* IceOperationsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A6ECFF0AE6F72868FD73E772 /* Build configuration list for PBXNativeTarget "IceServices iOS" */; + buildConfigurationList = A058B15145DAA4177378CA84 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */; buildPhases = ( - 039C348E43D424045B8585C3 /* Sources */, - 6274C70D4B655BDB6F78024A /* Frameworks */, - 73312FC0E54C54320A5F7CFB /* Resources */, + 1B076AF33AFF242A2B16A9C1 /* Sources */, + 8BA7996027CFD288252705D0 /* Frameworks */, + CDE3F0985B68C0FC552B3BC2 /* Resources */, ); buildRules = ( - 2818FB10B0AF0B6EBCB24E60 /* PBXBuildRule */, + CAB49F048B30B609375CB071 /* PBXBuildRule */, ); dependencies = ( - 099F632E3F13CC42232ECD1F /* PBXTargetDependency */, - F28D0C090A072B647F2CFF3F /* PBXTargetDependency */, - EFDE4A65F0F1315D26D73B2B /* PBXTargetDependency */, - 4C89F031189B582A00303766 /* PBXTargetDependency */, - 338FDEDE2C7912EC1B86D293 /* PBXTargetDependency */, ); - name = "IceServices iOS"; - productName = IceServices; - productReference = 93221F7A8289C9024F246985 /* IceServices.bundle */; + name = "IceOperationsAMD macOS"; + productName = IceOperationsAMD; + productReference = 3660CBA3E7714EF6A750EB80 /* IceOperationsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 80D1931BE1B80501D33167DD /* IceTimeout macOS */ = { + 8E4EE2567B3C187D2F9C1173 /* IceDefaultValue iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AFC2FC4DD16F87884A40D512 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */; + buildConfigurationList = 2D0CF23009F00A73CEFE08EE /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */; buildPhases = ( - AE95AA04979FB137DCE17259 /* Sources */, - BADFCC2D4AA7F3A177C681E0 /* Frameworks */, - 0C540CD21E9442E1A4A480FF /* Resources */, + 543F29EC36AD500F2D82AE88 /* Sources */, + 15F0EFA54A71375556FA69E5 /* Frameworks */, + 9A31D72BCAFB8223D5072024 /* Resources */, ); buildRules = ( - 7AE86571FE663DFD312D016F /* PBXBuildRule */, + 3BD71B5D8FE7BB861E7735DA /* PBXBuildRule */, ); dependencies = ( - B4A261B73714974D9F3D44AD /* PBXTargetDependency */, - 3644B35FF0613A9194C9AFF1 /* PBXTargetDependency */, + 28FCEC4C8FBAE8C9D638AE3A /* PBXTargetDependency */, + 5DAF9558BD888A9BA538C325 /* PBXTargetDependency */, ); - name = "IceTimeout macOS"; - productName = IceTimeout; - productReference = 2786B7490F83497D5B9DC916 /* IceTimeout.bundle */; + name = "IceDefaultValue iOS"; + productName = IceDefaultValue; + productReference = 8A39FB52971B8BCC7CD607F3 /* IceDefaultValue.bundle */; productType = "com.apple.product-type.bundle"; }; - 82C53B88275C4981212133CC /* IceSlicingExceptionsAMD macOS */ = { + 8F11329102906B0FE306EF9C /* IceFacets macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6E5AC7F89D188D7DCAFE657B /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */; + buildConfigurationList = D0AA8018E3D1C21DC2A00EBC /* Build configuration list for PBXNativeTarget "IceFacets macOS" */; buildPhases = ( - 4A3298D987F5090CCEEA582C /* Sources */, - 9F70203AB3C9FE1000CF9ADC /* Frameworks */, - 9788602434A89360EA198EDF /* Resources */, + C69B92D8253CAABE1A233CD6 /* Sources */, + ABCA9F03D86E6110D1859173 /* Frameworks */, + EDFF44A5412FA135B91D14CA /* Resources */, ); buildRules = ( - BE2E1AE0DE697D063BC3791D /* PBXBuildRule */, + EA835B94D979E1CCBE4F9FE8 /* PBXBuildRule */, ); dependencies = ( + 67AC6E75E00A1CF41A8FACF7 /* PBXTargetDependency */, + D10918C649245B16EDE14174 /* PBXTargetDependency */, ); - name = "IceSlicingExceptionsAMD macOS"; - productName = IceSlicingExceptionsAMD; - productReference = AD895AEC9101644623712329 /* IceSlicingExceptionsAMD.bundle */; + name = "IceFacets macOS"; + productName = IceFacets; + productReference = 75539742281DFE7E4DC5F602 /* IceFacets.bundle */; productType = "com.apple.product-type.bundle"; }; - 836518381BE3202105EFCC03 /* Ice macOS */ = { + 915EFEBB1B2962C505C96286 /* IceProxy macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 94BF99686336765D665E1962 /* Build configuration list for PBXNativeTarget "Ice macOS" */; + buildConfigurationList = 24D42F76DBAE051B1B76F4CE /* Build configuration list for PBXNativeTarget "IceProxy macOS" */; buildPhases = ( - 95A52FF4E720C126DE092E83 /* Headers */, - B3D4B6138BDE984791F96BD9 /* Sources */, - F0C18FC8F60F88F78807B80A /* Frameworks */, - 9B4AD62E33CE21EF74E9A11F /* Resources */, + 99FEE7D269C10FAC6C445165 /* Sources */, + C34E0052B14CF37479E06DB4 /* Frameworks */, + 90133F3A21FECA0B03CCFEEB /* Resources */, ); buildRules = ( - 72F35AAC1EF89B2124E08DCB /* PBXBuildRule */, + A2A2429F3D4DAF10B23E4547 /* PBXBuildRule */, ); dependencies = ( - 25E8B3B464AC1EE5B8AAC54D /* PBXTargetDependency */, + 563C4F9E29E7516CE8B3250D /* PBXTargetDependency */, + 58136F1BADC3144165D815F6 /* PBXTargetDependency */, ); - name = "Ice macOS"; - productName = Ice; - productReference = D8BC5C768D15A8A8C296597B /* Ice.framework */; - productType = "com.apple.product-type.framework"; + name = "IceProxy macOS"; + productName = IceProxy; + productReference = 0E8CA41CAED77683EB6C5E74 /* IceProxy.bundle */; + productType = "com.apple.product-type.bundle"; }; - 87E9A0678200BC32DF77CC22 /* IceRetry iOS */ = { + 983596DE8C0BFB636571955C /* IceSlicingObjectsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5F4A2D7656A289DA657F237B /* Build configuration list for PBXNativeTarget "IceRetry iOS" */; + buildConfigurationList = 2D0A6566A0B9851960104854 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */; buildPhases = ( - 31CB6A9CADF229B63F0F01CA /* Sources */, - C52DF0FB31041A0894EB2CB7 /* Frameworks */, - DF0BFE93146FE33B3FFDCBAF /* Resources */, + E5D35452D06C65272699DA6D /* Sources */, + 0F7A2524B0DFD0F27C624F7D /* Frameworks */, + B816B0D1F00E0B08AA31D24F /* Resources */, ); buildRules = ( - 813C0725B93686899604C1FA /* PBXBuildRule */, + 4C438A06989C337A19D68472 /* PBXBuildRule */, ); dependencies = ( - 381ED48226681FECD2174188 /* PBXTargetDependency */, - CDCB3DA8CE04AF7351B19BD5 /* PBXTargetDependency */, ); - name = "IceRetry iOS"; - productName = IceRetry; - productReference = 6B08215B9CC0C2ED40F9DF81 /* IceRetry.bundle */; + name = "IceSlicingObjectsAMD iOS"; + productName = IceSlicingObjectsAMD; + productReference = 20323F0CD7B9AE4569FF4757 /* IceSlicingObjectsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 8DB5F9E207CEEFAD3CA28266 /* IceDefaultServant macOS */ = { + 993C3F64323081AD7846C3D1 /* IceScope macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5B3BF42F755322A2D685E036 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */; + buildConfigurationList = EDC6890C79963D7F1EC96376 /* Build configuration list for PBXNativeTarget "IceScope macOS" */; buildPhases = ( - 0D39274DE7A2C44AD60A7F14 /* Sources */, - A01C44ECAEFA068E8278FBA4 /* Frameworks */, - D2E824B85F3932C40C468C34 /* Resources */, + D47795DE45B565BDB964B23A /* Sources */, + EB9BC4C9F2A7DE2A7357AC51 /* Frameworks */, + 79CC6A7CE74376C9DA437F49 /* Resources */, ); buildRules = ( - A32CF8285A6B053AF2C4DC9C /* PBXBuildRule */, + 76F11CBA37048B7246B4A60D /* PBXBuildRule */, ); dependencies = ( - CEEE543114F060E7C4726B96 /* PBXTargetDependency */, - 1460A5644FA231F28D5F7C08 /* PBXTargetDependency */, + 6869B13D9CCD41CC7B01357D /* PBXTargetDependency */, + 50A1A7D5CE091CCF362A1E0C /* PBXTargetDependency */, ); - name = "IceDefaultServant macOS"; - productName = IceDefaultServant; - productReference = 5258134D3A215F2466435990 /* IceDefaultServant.bundle */; + name = "IceScope macOS"; + productName = IceScope; + productReference = 888B3167CD8A4968215F0A38 /* IceScope.bundle */; productType = "com.apple.product-type.bundle"; }; - 8E23FF66CFB6287919E99A31 /* IceLocatorDiscovery C++11 macOS */ = { + 99D043CF9A0E172FCFC4C4B0 /* IceSlicingObjects iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 091C5CE007148B44FDF05281 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */; + buildConfigurationList = 1B21314EACDD9B26090F7A0D /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */; buildPhases = ( - 8126C6AFA4C819E3C321558C /* Headers */, - B0AABBBE14BE23E960D12458 /* Sources */, - 52160D59C60F78DCB817F32A /* Frameworks */, + A4DF6A87BDB936461A8E9EE1 /* Sources */, + DD1561F5393DB7AF211BE308 /* Frameworks */, + 601E2EE29059F2F14E59D49F /* Resources */, ); buildRules = ( - 128FAF301C269413416FAA54 /* PBXBuildRule */, + ACD51CF6CDF44362F6898310 /* PBXBuildRule */, ); dependencies = ( - 5F218459B2D081FD4D276F0E /* PBXTargetDependency */, + 04205069B5145186C7C5AA9A /* PBXTargetDependency */, + 6914D31020D1CBDDF97969C7 /* PBXTargetDependency */, ); - name = "IceLocatorDiscovery C++11 macOS"; - productName = "IceLocatorDiscovery C++11 macOS"; - productReference = 253491E3FEF80ACD0B5781B2 /* libIceLocatorDiscovery C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceSlicingObjects iOS"; + productName = IceSlicingObjects; + productReference = 86525836B17F14E966E687FC /* IceSlicingObjects.bundle */; + productType = "com.apple.product-type.bundle"; }; - 92DFD90832239D72108865B4 /* IceUdp iOS */ = { + 9A9DEB6418C9257648D6A235 /* IceAmi iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BACA0E371176684F2AA8A14A /* Build configuration list for PBXNativeTarget "IceUdp iOS" */; + buildConfigurationList = 0D38EB796BDA440B8E66B871 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */; buildPhases = ( - 153CF5944F5CBB5C377261CB /* Sources */, - 89D1C4C755D5BCDF9E70577E /* Frameworks */, - 95F6F7503C7EC6EDE758DC14 /* Resources */, + 467A92002F81EECEA33D76E6 /* Sources */, + 04BAD54A6C582D75141D296D /* Frameworks */, + A5050AFBE120514A0ADC9678 /* Resources */, ); buildRules = ( - 39EFC04AD52EB3D38ACEC29B /* PBXBuildRule */, + EAFC23B13D59F9E878453C48 /* PBXBuildRule */, ); dependencies = ( - AA2FB66424D53E53649A862B /* PBXTargetDependency */, - A478F9404FB7C31EEAC472BB /* PBXTargetDependency */, + 416D7FD01A7671C500F22B8D /* PBXTargetDependency */, + 1807BFE7D066FFE825A19EBC /* PBXTargetDependency */, ); - name = "IceUdp iOS"; - productName = IceUdp; - productReference = 50A2B975515FD9EEB3223999 /* IceUdp.bundle */; + name = "IceAmi iOS"; + productName = IceAmi; + productReference = 71C738B29B990967A0EC29C9 /* IceAmi.bundle */; productType = "com.apple.product-type.bundle"; }; - 938EB0FB3FB9C74695580EBE /* IceServantLocator macOS */ = { + 9B13B57D40995B5A58986BCF /* IceServantLocatorAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 044EEF23E04F8A00E36E0E33 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */; + buildConfigurationList = 71C26DB9FF59095377426D7F /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */; buildPhases = ( - 61E63AF08093C78F1362AA7E /* Sources */, - 3FE56539D5B16E4CF3A7A6CA /* Frameworks */, - 64A256B848383F94800EBA0D /* Resources */, + C289295116515405522CC64B /* Sources */, + B885FB6DA86044C3C3BD4492 /* Frameworks */, + 1F4534D9B186D114D80E1A4D /* Resources */, ); buildRules = ( - B1D07C5FDE5DEACA2FDE19DC /* PBXBuildRule */, + 4AC3702FD99D567A5A0C68EE /* PBXBuildRule */, ); dependencies = ( - 0E15162FE9DC53DD6CD4527E /* PBXTargetDependency */, - A454DF0D8814AA796AC3A34E /* PBXTargetDependency */, ); - name = "IceServantLocator macOS"; - productName = IceServantLocator; - productReference = 11A152F03A7151A37E5BCA0B /* IceServantLocator.bundle */; + name = "IceServantLocatorAMD macOS"; + productName = IceServantLocatorAMD; + productReference = C1EB023D3B85638F4414F46A /* IceServantLocatorAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 953A9306D1F74C3E46325E82 /* IceGrid macOS */ = { + 9F3B1821E0C570BF87946D26 /* IceOperationsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 8B5D0F2B1B3E65AA37E96F66 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */; + buildConfigurationList = 31B85D81BB3BFAAF230662F4 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */; buildPhases = ( - 0D3CDD20FB2E828DFE6459C5 /* Headers */, - F1FC8508CB62D756F44B4DA3 /* Sources */, - 37DE080F347BD90B7BBF3015 /* Frameworks */, - 3222B0FC6C61C494E02E614D /* Resources */, + 2727D9A1FC12DB83161640C9 /* Sources */, + 985F505F3ED81C0489D5822C /* Frameworks */, + 738EE344E32D27DDD8864DCD /* Resources */, ); buildRules = ( - 534EC6EEB3FEA55F9D73125B /* PBXBuildRule */, + 8BE4F5636197AF4825C2478E /* PBXBuildRule */, ); dependencies = ( - 1F89FE69F95A11F92CC290E8 /* PBXTargetDependency */, - 2EE91FF0137EA0C56A9866A8 /* PBXTargetDependency */, ); - name = "IceGrid macOS"; - productName = IceGrid; - productReference = CA3048781DE1F85C3C98A17C /* IceGrid.framework */; - productType = "com.apple.product-type.framework"; + name = "IceOperationsAMD iOS"; + productName = IceOperationsAMD; + productReference = A98619140D09F4A271DA212C /* IceOperationsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - 95D4F0B99BDEE21096E1027E /* IceInfo iOS */ = { + 9F95E6A433F94E974D32566F /* IceTimeout macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C664B931CC45B69DA172BA64 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */; + buildConfigurationList = C2937583439E12DEE92C51F2 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */; buildPhases = ( - 727EB0AD0FFD41F286E09D4D /* Sources */, - 7827187285BD2EBAF9F34A78 /* Frameworks */, - 9DB6664F3B09B28CC1EB1372 /* Resources */, + 7374F772E8AC58CBC834E62C /* Sources */, + 3B55A16059E0DFBD64EAF00E /* Frameworks */, + CCF692C86BEC1C923DE75E53 /* Resources */, ); buildRules = ( - E2BF9E65FA70259DC67BBB19 /* PBXBuildRule */, + 3582947254C6A89F45090F31 /* PBXBuildRule */, ); dependencies = ( - 47D2840760CDAC67169AEB7A /* PBXTargetDependency */, - CC58057DA07A3455AB2A6207 /* PBXTargetDependency */, + DFD93F8D96E58582C0022010 /* PBXTargetDependency */, + C1F394080804B49038462DC5 /* PBXTargetDependency */, ); - name = "IceInfo iOS"; - productName = IceInfo; - productReference = FBDE5E179DE0FFBEFE10819F /* IceInfo.bundle */; + name = "IceTimeout macOS"; + productName = IceTimeout; + productReference = 1362916B0814388BFB67F664 /* IceTimeout.bundle */; productType = "com.apple.product-type.bundle"; }; - 961580353429DCE0D0B109CB /* IceScope macOS */ = { + A02AEC1FCAEDD308F0CBDCC6 /* IceStream macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = DD88214AAC13298E250CAFE5 /* Build configuration list for PBXNativeTarget "IceScope macOS" */; + buildConfigurationList = AD6CB133F0EFD74046390926 /* Build configuration list for PBXNativeTarget "IceStream macOS" */; buildPhases = ( - 550CDCC399E02FF9AD55D03C /* Sources */, - EE16A89C5E0F293D4C340515 /* Frameworks */, - 7DFA74BD5376C0FC3E116EAE /* Resources */, + DCB1F6BD4F9A4018C16A552A /* Sources */, + DFDF87A72488FB1BE6891D48 /* Frameworks */, + 5021DFECF7C5DA399355C0B8 /* Resources */, ); buildRules = ( - A9309FB45F908E127E08BE15 /* PBXBuildRule */, + CB2D08021681EEEBFDD35666 /* PBXBuildRule */, ); dependencies = ( - D5B0DF682589A7C2400DBF3C /* PBXTargetDependency */, - 6BB02CD18FF76573BC460FC4 /* PBXTargetDependency */, + 17E4AA84E0081A0160F7A22F /* PBXTargetDependency */, + 6904747B72BC3EF7E92C60A6 /* PBXTargetDependency */, ); - name = "IceScope macOS"; - productName = IceScope; - productReference = 0C6AA868B958A4B62ED7C5D5 /* IceScope.bundle */; + name = "IceStream macOS"; + productName = IceStream; + productReference = 3C8BAD4C851DA28C1DF9F17D /* IceStream.bundle */; productType = "com.apple.product-type.bundle"; }; - 984F9509A61A9677BDD2B1E7 /* IceBinding iOS */ = { + A1FCF6486037B74ACCD22503 /* IceSlicingObjects macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1D8C3D695D1CC0DF208561CF /* Build configuration list for PBXNativeTarget "IceBinding iOS" */; + buildConfigurationList = D33AE6C245142D0675324FCF /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */; buildPhases = ( - 16E6E2C0A27C806CAFFF8253 /* Sources */, - EFA2B6AB7748628FA398563F /* Frameworks */, - B60097319C90BC1A9ED6ADE3 /* Resources */, + A302466F7767DAB72EF81826 /* Sources */, + E1FCCD7331B1B2DE7B2A2C81 /* Frameworks */, + 1273645862F6D09B04F6218B /* Resources */, ); buildRules = ( - 63DDCC4D5FD71F078F7E4F48 /* PBXBuildRule */, + E57C7F4A3075D292175D22FD /* PBXBuildRule */, ); dependencies = ( - 583F8667E5F7C17D868F5978 /* PBXTargetDependency */, - D23660E156677E97449E839C /* PBXTargetDependency */, + 1C8C8242D9958C85A81FB707 /* PBXTargetDependency */, + 561BA1C3CB952DA14DB79002 /* PBXTargetDependency */, ); - name = "IceBinding iOS"; - productName = IceBinding; - productReference = 877C028D182B31A7DA65893F /* IceBinding.bundle */; + name = "IceSlicingObjects macOS"; + productName = IceSlicingObjects; + productReference = FA5ED0AF00325B25AA3D49E3 /* IceSlicingObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - 9C08369D07430A8AFB9F41A3 /* Ice iOS */ = { + A250D484C77105742100E390 /* IceGrid macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F2C0C2C72D017FA1BC6C221C /* Build configuration list for PBXNativeTarget "Ice iOS" */; + buildConfigurationList = 4B428E0CA2D95FAE74B01562 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */; buildPhases = ( - 2F61CAFC8944727E15EE9E24 /* Headers */, - EF833938FAC76D1C5ABAC549 /* Sources */, - 333B0F42C2DF1CA7DBAA70FA /* Frameworks */, - 51BD47AFB0F5EA300C2832E8 /* Resources */, + E0F69D5BB8272A88BCAA8B51 /* Headers */, + EEDCDE710185F3317D468277 /* Sources */, + 1B9E81991548528CE7E8BFBB /* Frameworks */, + 766457EA5472CC3DF57CBF9A /* Resources */, ); buildRules = ( - BA0F22F6A09A012085A064E5 /* PBXBuildRule */, + 3AE97D276ED0B4BFE3E8DBCC /* PBXBuildRule */, ); dependencies = ( - 5377289F050FDD926FD56639 /* PBXTargetDependency */, + 16E0DC56003F27C197DA65D1 /* PBXTargetDependency */, + 86F52CD5342C5A5094EBBF81 /* PBXTargetDependency */, ); - name = "Ice iOS"; - productName = Ice; - productReference = 1959BEAAF7268C8B0022D948 /* Ice.framework */; + name = "IceGrid macOS"; + productName = IceGrid; + productReference = 4B4F81CBE09B9EC7215B359B /* IceGrid.framework */; productType = "com.apple.product-type.framework"; }; - 9D8A9741B7D4BD64D5B31B88 /* IceLocation macOS */ = { + A3B6CDB0CD7C0059D4D3CBF9 /* IceProperties iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 45F05FDA4B01F011A50096E9 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */; + buildConfigurationList = 26A74315ED193312D199F3B9 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */; buildPhases = ( - 505670AA9E66974D30664769 /* Sources */, - 91D1BE9803153FDBF6BF3114 /* Frameworks */, - 766436C0850D45E049F4BCAA /* Resources */, + 2B694C6F4219A83F6C856555 /* Sources */, + C18F8BCB0605A7BBC62E6F05 /* Frameworks */, + 3DBF72A660011E72DE28D7A2 /* Resources */, ); buildRules = ( - FBB889AD2F071521250001D5 /* PBXBuildRule */, + A1844692DB4E384D1B0AA644 /* PBXBuildRule */, ); dependencies = ( - 6EDAB68D98F4B3CC280C6101 /* PBXTargetDependency */, - 5C767ABE5537E8E771F1FBD9 /* PBXTargetDependency */, + 1164E4382B9F2C4C300A9DAE /* PBXTargetDependency */, + 0356D9257481D2DAC1477D98 /* PBXTargetDependency */, ); - name = "IceLocation macOS"; - productName = IceLocation; - productReference = DDBA009CB8D3B5A0846CFA61 /* IceLocation.bundle */; + name = "IceProperties iOS"; + productName = IceProperties; + productReference = 6B7F99C1A7C43654FACDAA54 /* IceProperties.bundle */; productType = "com.apple.product-type.bundle"; }; - A2837C7BEC47E856E536F9B3 /* IceFacets iOS */ = { + A4F94E6B42A58EEF0623EC8F /* IceInvoke macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7C06159D0366ECE2FC26FCE9 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */; + buildConfigurationList = E038B4B9CC945838CD3D9B02 /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */; buildPhases = ( - C3D6F51913CB22B1F54DF445 /* Sources */, - ECF89FCBC92B39B5D8F1C3B2 /* Frameworks */, - 3585C5CF3DD731FF6E30813D /* Resources */, + 8B95A794840586734615E96F /* Sources */, + 65807EFDB81EB26FA0B0CEFF /* Frameworks */, + C5D9C8B89F7739DCB786002A /* Resources */, ); buildRules = ( - F2E7BBE6049D4FB5B98F07F0 /* PBXBuildRule */, + 19382B6CA1842F4A00577156 /* PBXBuildRule */, ); dependencies = ( - 04A4BA1474AE052F3146911A /* PBXTargetDependency */, - EFF68B9A64C668D93F38020B /* PBXTargetDependency */, + F328C6236A09249A8325AB66 /* PBXTargetDependency */, + EE4B4058636058A3B8BD22F7 /* PBXTargetDependency */, ); - name = "IceFacets iOS"; - productName = IceFacets; - productReference = CBB1409BA01AD2ADEC3BD9D4 /* IceFacets.bundle */; + name = "IceInvoke macOS"; + productName = IceInvoke; + productReference = 87A3043D1B1B7D7DE0B165C3 /* IceInvoke.bundle */; productType = "com.apple.product-type.bundle"; }; - B06DD43CC98E177E5491959D /* Glacier2 macOS */ = { + A83EF428E73401A533092DB4 /* TestCommon macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EE183CAB742B1360694466DD /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */; + buildConfigurationList = 9199459F36DFC89B49984138 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */; buildPhases = ( - 6103BE0C1BA576488160D922 /* Headers */, - 73AEBDA73275A371B93C271E /* Sources */, - B6AD14A6A89BC2F1ACE138BB /* Frameworks */, - B9C4494B192EF983299B6C7F /* Resources */, + 0634D9BC86B197EFCC8CDB0E /* Headers */, + 1BC366E59F8EFBEF11B33FD3 /* Sources */, + 3B3BC4302997971676561F02 /* Frameworks */, + 1A7AA67BDDBF17637BB03F25 /* Resources */, ); buildRules = ( - CA7A3B7BE443511788BBDE35 /* PBXBuildRule */, + E116B57C40984DBBDF7AFE58 /* PBXBuildRule */, ); dependencies = ( - 5F2AE40A7B6B38809C886901 /* PBXTargetDependency */, ); - name = "Glacier2 macOS"; - productName = Glacier2; - productReference = 1B79277683CA9B3529AC906D /* Glacier2.framework */; + name = "TestCommon macOS"; + productName = TestCommon; + productReference = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; productType = "com.apple.product-type.framework"; }; - B1154CF85BB46C6CCA916ABD /* IceRetry macOS */ = { + AA856D3D0EBE73A655B10DCE /* Ice iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AE7B39681266EE4045B4EF75 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */; + buildConfigurationList = B3FA3031CFC7509713D02FB1 /* Build configuration list for PBXNativeTarget "Ice iOS" */; buildPhases = ( - F60F2139A7B992FC349C6BE5 /* Sources */, - C676C4CCE2EAF9138EF0A402 /* Frameworks */, - 66E3CD4A5C361E88EDE9D7BE /* Resources */, + C93A6BB4FCF0490E84147E61 /* Headers */, + 5E5AA18560C5DB3446283A99 /* Sources */, + 92A7548ABB7FCBD369C28797 /* Frameworks */, + CA40D90191CACFAE032E2F17 /* Resources */, ); buildRules = ( - 36DE15588AC64891A9D439C5 /* PBXBuildRule */, + BA9BC30B41821E0E528C2119 /* PBXBuildRule */, ); dependencies = ( - 654CB17F160D7E8E2AD477E8 /* PBXTargetDependency */, - 4791F01C73505D5C5746CA2F /* PBXTargetDependency */, + D421E76E09FD1F357EDF2FE8 /* PBXTargetDependency */, ); - name = "IceRetry macOS"; - productName = IceRetry; - productReference = 5EEB85F7C36B02C635BBFDB7 /* IceRetry.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice iOS"; + productName = Ice; + productReference = 623E717A20F91E615D53E150 /* Ice.framework */; + productType = "com.apple.product-type.framework"; }; - B3FAC186802EC7B160722234 /* IceAdapterDeactivation macOS */ = { + AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 10D2E4823E17F7AA81502243 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */; + buildConfigurationList = FFF95930E70A3FD5E4AA31B1 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */; buildPhases = ( - 80EF5348B1A88B2937E0CE91 /* Sources */, - 98471EBD3C8B374440FCD0BD /* Frameworks */, - 360F50F3916E9E3F27D94B60 /* Resources */, + 7F2B895A025ACE2CC4F5E2AF /* Headers */, + 134BF1E77CFC07C466D60C07 /* Sources */, + A590247DC8420FF253C22E0B /* Frameworks */, + D0DD61441324D88766B58467 /* Resources */, ); buildRules = ( - C57FC8986B378D208F20BAE0 /* PBXBuildRule */, + 5A9F1424ADE0E67F377B0CE5 /* PBXBuildRule */, ); dependencies = ( - 4D24BB84B7B720B1609DE82B /* PBXTargetDependency */, - 8AA33C1034B93523BA5B140B /* PBXTargetDependency */, + 49CBBCF4F2BE23E6AC12D730 /* PBXTargetDependency */, ); - name = "IceAdapterDeactivation macOS"; - productName = IceAdapterDeactivation; - productReference = CB082E75D7E8687246CC10D9 /* IceAdapterDeactivation.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Glacier2 iOS"; + productName = Glacier2; + productReference = CC9E31096285763A44ED387C /* Glacier2.framework */; + productType = "com.apple.product-type.framework"; }; - B49EEDD01A8C36F24785F1E7 /* IceAdmin macOS */ = { + AEE1F674AD81A9327E42EDDB /* IceAdapterDeactivation iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5228F898A71174D634D43378 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */; + buildConfigurationList = 1EAF04FCF683069900CD2CB5 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */; buildPhases = ( - 59557C09F67164DD5842F5C7 /* Sources */, - CD736BC768782D15441D7285 /* Frameworks */, - D5A10FB0AA06C1C3795E0A33 /* Resources */, + E39E496686784AA05C22CC97 /* Sources */, + 3CB9F8DEC2F44EF89307391D /* Frameworks */, + F387CA7EDE8E22EACC68078B /* Resources */, ); buildRules = ( - 38AC950A4251F435221EFAC1 /* PBXBuildRule */, + EC1280117082EEA012A8AAE1 /* PBXBuildRule */, ); dependencies = ( - 5DC2C74A75DCC82D8EB76065 /* PBXTargetDependency */, - 321CA458874D936AADF90B86 /* PBXTargetDependency */, + 862E19C471E8DE68F15CBF4F /* PBXTargetDependency */, + D5550FAD971FCDE391AA7C98 /* PBXTargetDependency */, ); - name = "IceAdmin macOS"; - productName = IceAdmin; - productReference = 0D30BA12F527E21D48DFD791 /* IceAdmin.bundle */; + name = "IceAdapterDeactivation iOS"; + productName = IceAdapterDeactivation; + productReference = 947C60AB5690BEF1175C6AE8 /* IceAdapterDeactivation.bundle */; productType = "com.apple.product-type.bundle"; }; - B4C54B94A72325BA4250EB2E /* IceServantLocatorAMD macOS */ = { + B564F6A99559D774EF563A3F /* IceObjects macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3D26670110605ADB8439EA1A /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */; + buildConfigurationList = 977E8284CE65D07066ADD555 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */; buildPhases = ( - E97E53155473702F3D0C698D /* Sources */, - 2929744F90ED76DA401853BC /* Frameworks */, - 84AA8D01E0CCE7EF92F6B13B /* Resources */, + 62B729DBE9565951E835E6E9 /* Sources */, + C3E1F38BA06E190B7CC98682 /* Frameworks */, + 36BDF807C86FE8D1CACF20C3 /* Resources */, ); buildRules = ( - 0C0617F153A415C074261882 /* PBXBuildRule */, + EEDEE9791746B5ED29E9944B /* PBXBuildRule */, ); dependencies = ( + 0596616D6761FCE4D0555E45 /* PBXTargetDependency */, + B13CE3F8761F18087CE22379 /* PBXTargetDependency */, ); - name = "IceServantLocatorAMD macOS"; - productName = IceServantLocatorAMD; - productReference = EE844510C2D8711298D5FC31 /* IceServantLocatorAMD.bundle */; + name = "IceObjects macOS"; + productName = IceObjects; + productReference = 7E752D08EB62E167C213E390 /* IceObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - B51FD7FF275A85DCE665AB96 /* IceObjects macOS */ = { + B7EFE020C9D77334FB6C5B4B /* IceOperations iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A1FB629F3DB8F5537ACC46F2 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */; + buildConfigurationList = 3128757B52EE1F33A8DBE372 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */; buildPhases = ( - BA68633733EA8DC078472E17 /* Sources */, - 2D981833CC8FBEDFAEA491DA /* Frameworks */, - 6D8261EFF49DCF557D226AEF /* Resources */, + 5C4B39A79197C7F484055077 /* Sources */, + 4A2CB4D8C78C4B319C72D082 /* Frameworks */, + 9EAB34FC0DC358B87C0550B7 /* Resources */, ); buildRules = ( - 3DA7D46CB7FDC1044780F802 /* PBXBuildRule */, + 91C79FB678F9C90F6D94E28B /* PBXBuildRule */, ); dependencies = ( - C03007A48FA27BE30F925426 /* PBXTargetDependency */, - 9865DFFD138C74155281BD35 /* PBXTargetDependency */, + DB3C03ACEE31AEC337853CCE /* PBXTargetDependency */, + C5DB2260BB147B158EB4CCFF /* PBXTargetDependency */, ); - name = "IceObjects macOS"; - productName = IceObjects; - productReference = 3D99E4B9F11AB36F978CF616 /* IceObjects.bundle */; + name = "IceOperations iOS"; + productName = IceOperations; + productReference = 07B98AB5E4D60D7A85886DB5 /* IceOperations.bundle */; productType = "com.apple.product-type.bundle"; }; - BB148EB91DBAAACC5D08F10B /* IceImpl macOS */ = { + B8D5C1F592E31ABE249CC078 /* IceStorm macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = FCB71AFE893E7171705D4364 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */; + buildConfigurationList = E44C1CBBD0B26C3481F76879 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */; buildPhases = ( - A08B15AFFA3944C7821C1B10 /* Headers */, - 0A7D7E38BBE672E18539B0C5 /* Sources */, - F1EC417D238DBCC54E934CA1 /* Frameworks */, - 9B8C89FE8B67D411CFC41AC9 /* Resources */, + 720A96257940D9A201712617 /* Headers */, + 8F27F193739466C647769865 /* Sources */, + D10C1C4751624F6A08A7F209 /* Frameworks */, + B43309445EDD3C07B4C72D41 /* Resources */, ); buildRules = ( + D8E4DB9096E618C06F9C6623 /* PBXBuildRule */, ); dependencies = ( - A1AEA60AA98C9CAF76FD32A0 /* PBXTargetDependency */, - 578FC1E0F3F13E5DE1507FDC /* PBXTargetDependency */, - 923B443A3DFBA414FFB0EE60 /* PBXTargetDependency */, + 4F1EA7D3FA5C865629A2BBCE /* PBXTargetDependency */, ); - name = "IceImpl macOS"; - productName = IceImpl; - productReference = 24DF17C88033201714B50ED2 /* IceImpl.framework */; + name = "IceStorm macOS"; + productName = IceStorm; + productReference = BBB10CD52BD86395BC343A0B /* IceStorm.framework */; productType = "com.apple.product-type.framework"; }; - BBEFD25BD9A130DE61D90238 /* IceOperationsAMD iOS */ = { + BBA5FF013C8B19537743DE0C /* IceHold iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1811E364A2F015F0AFD24FC8 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */; + buildConfigurationList = 577ED2287A5F0BBFA0232583 /* Build configuration list for PBXNativeTarget "IceHold iOS" */; buildPhases = ( - 2D06B4E157A77EA66C4C2023 /* Sources */, - 78BF00B37BB177564D54DB40 /* Frameworks */, - 4575FE0BC6D54D36F19D7C32 /* Resources */, + A50761946EE7786E8FF77E3E /* Sources */, + 551A33C4769D54FE2E0B181D /* Frameworks */, + 8ADDBAF102282F7A12388221 /* Resources */, ); buildRules = ( - 6980DA7D553A970823D703F5 /* PBXBuildRule */, + 372D520C7C298EADCE492969 /* PBXBuildRule */, ); dependencies = ( + 03E984B972C8157DA2D93308 /* PBXTargetDependency */, + B4D560EC692795C1AB1CEE1A /* PBXTargetDependency */, ); - name = "IceOperationsAMD iOS"; - productName = IceOperationsAMD; - productReference = F711FC1FF1A09C9363807725 /* IceOperationsAMD.bundle */; + name = "IceHold iOS"; + productName = IceHold; + productReference = F17CE2C8EAC28CBD9A0667B3 /* IceHold.bundle */; productType = "com.apple.product-type.bundle"; }; - BCEAC60BF9D3DB0E6BB1DD33 /* IceSlicingObjects macOS */ = { + BCD219D62CE917ADBC7AFD22 /* IceProxyAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 98058983671A49B9B9D12694 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */; + buildConfigurationList = FBC432173B82346F63A1CD28 /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */; buildPhases = ( - 3C34A9ACF10543E5C6538191 /* Sources */, - 8928FC2CBFF06DB45BDB514E /* Frameworks */, - 6893EFB4D00C8F27564A174C /* Resources */, + A105E9C54B8CE1280D18B996 /* Sources */, + 2EE446DDB7698D9EFD7BD4D7 /* Frameworks */, + 32D1CA616E3B20B222CE7C95 /* Resources */, ); buildRules = ( - 6D5FC6B24A46269E13F729E4 /* PBXBuildRule */, + 156C7100B7FBB44163EE0002 /* PBXBuildRule */, ); dependencies = ( - C7C2D9F88338B9890CA07314 /* PBXTargetDependency */, - 3C58BDC60502522C978B9A0A /* PBXTargetDependency */, ); - name = "IceSlicingObjects macOS"; - productName = IceSlicingObjects; - productReference = 57A4D45FAFD10790DA8D9A1F /* IceSlicingObjects.bundle */; + name = "IceProxyAMD iOS"; + productName = IceProxyAMD; + productReference = E64154AC1BD079614CFE6D0B /* IceProxyAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - BD615D3AE7C4D142D2D859B8 /* IceBinding macOS */ = { + BEBD5165FA221E0C61A12DD9 /* IceProxy iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2DAF4D2986351CC42ECADCFB /* Build configuration list for PBXNativeTarget "IceBinding macOS" */; + buildConfigurationList = 32C4A6C4DF4E4784C694E4CA /* Build configuration list for PBXNativeTarget "IceProxy iOS" */; buildPhases = ( - C8A227DBD6A7A872CBC5FDBB /* Sources */, - 6A3583740550C02B94108F7D /* Frameworks */, - ED8CAF21F5852AE4FDC002DC /* Resources */, + 93EDD1C49BFCD3186F93E06C /* Sources */, + 9D141EDE4C7711B1D7969C8E /* Frameworks */, + DC95C2971E32D430B52E2A55 /* Resources */, ); buildRules = ( - 9ACD1AEFAB14C0CB524D3F92 /* PBXBuildRule */, + 14B388FC673F3EA219B586B4 /* PBXBuildRule */, ); dependencies = ( - 0EFD452CA523BEB73D0F8635 /* PBXTargetDependency */, - 70183B95CD8F66FB82DB74EE /* PBXTargetDependency */, + 7C45704DFE9C89DE81C18E81 /* PBXTargetDependency */, + 04D3A8A4D370449E0F2961F4 /* PBXTargetDependency */, ); - name = "IceBinding macOS"; - productName = IceBinding; - productReference = 2B30F4B19AFB12FA54B16AED /* IceBinding.bundle */; + name = "IceProxy iOS"; + productName = IceProxy; + productReference = 2D1DA1259D07ADB52B759AD3 /* IceProxy.bundle */; productType = "com.apple.product-type.bundle"; }; - BF6E058050842A50604055C2 /* IceOptionalAMD iOS */ = { + BFD01B6CA65F9516862D1FA1 /* IceEnums macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6583C70856630D705890F9AB /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */; + buildConfigurationList = F0D8FCBCA123963F12AA14B8 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */; buildPhases = ( - 8E451D196306CE7679BA9EDC /* Sources */, - 74810A9ECEC424FFDD7A8EFE /* Frameworks */, - 5C3341388333CD70DE2C03C5 /* Resources */, + 307985BBA47C398695E2B1F3 /* Sources */, + 8E8F345C6D0DCBC478E23DA6 /* Frameworks */, + 0B707B677822B7E66B2CE8F1 /* Resources */, ); buildRules = ( - 742E56F2651A2BE95B6B6B3B /* PBXBuildRule */, + 28D5EA1A1AA306E86C6AD163 /* PBXBuildRule */, ); dependencies = ( + 11D741130322376C7172CC42 /* PBXTargetDependency */, + 8F43B4ABBB390EA0AA2806B1 /* PBXTargetDependency */, ); - name = "IceOptionalAMD iOS"; - productName = IceOptionalAMD; - productReference = 3D29EC47A6324333C0CB11E6 /* IceOptionalAMD.bundle */; + name = "IceEnums macOS"; + productName = IceEnums; + productReference = EEAC0D6D20FA5E489B7D4EAB /* IceEnums.bundle */; productType = "com.apple.product-type.bundle"; }; - CC8E2C60DE859F3875C1A578 /* IceOperationsAMD macOS */ = { + C07B8E267CA90FCDBE4E7E7D /* IceImpl macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = DD3460088DD573F25718BB50 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */; + buildConfigurationList = 0E2D5CC6DCF10732C7895AEA /* Build configuration list for PBXNativeTarget "IceImpl macOS" */; buildPhases = ( - F0ADC1CF2E2EFF316D774616 /* Sources */, - 5AA0C6FD48872CDC5D3C72DC /* Frameworks */, - 85CEFAB6611C94479DBCF5CA /* Resources */, + A9E1D1783813AA8D71AD2477 /* Headers */, + 226D9040A51EC7958E04A69B /* Sources */, + 4457BF715A1812CE4382BDB6 /* Frameworks */, + 964448A460E03F71B1466A29 /* Resources */, ); buildRules = ( - 6BE1B308FBCD4A40D2BC9295 /* PBXBuildRule */, ); dependencies = ( + 5BFDD882BC29CD6E31A0A5E6 /* PBXTargetDependency */, + 2B778FCC7C694EED66868D10 /* PBXTargetDependency */, + E63570D6A030D4724784A119 /* PBXTargetDependency */, ); - name = "IceOperationsAMD macOS"; - productName = IceOperationsAMD; - productReference = 1E68540A1B43B1CBC5942095 /* IceOperationsAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceImpl macOS"; + productName = IceImpl; + productReference = 75F40F1911A6EA4452908C71 /* IceImpl.framework */; + productType = "com.apple.product-type.framework"; }; - CE79EFA5A2D0EEBD42B1DC53 /* IceAcm macOS */ = { + C2F3B80C3A24BFA9444F31E1 /* IceInheritance iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = DF89BAA77340F0D9A91B5B70 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */; + buildConfigurationList = 6D13163FD66559C4FBD1F390 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */; buildPhases = ( - 8786DA1F033412225FCCC882 /* Sources */, - 22E96229AAC022EFCED7CE61 /* Frameworks */, - 93217E56202C0645C308F7D9 /* Resources */, + 0125219F8494BC7CEBCBEAE8 /* Sources */, + 4392D0D4C892065A256DF985 /* Frameworks */, + D4671023F96ACB467D0F62CC /* Resources */, ); buildRules = ( - 7AF73AB9C64F083D9C05305D /* PBXBuildRule */, + 67FE13D3766F926A7579EC1E /* PBXBuildRule */, ); dependencies = ( - 19F93C717AF196D1EED43CDF /* PBXTargetDependency */, - 8BD920016F095A02FFC1A98E /* PBXTargetDependency */, + CF10BC561FC771931781C170 /* PBXTargetDependency */, + 26587AD449CCB3B5D3DD2D6E /* PBXTargetDependency */, ); - name = "IceAcm macOS"; - productName = IceAcm; - productReference = 5856D3133582D30B6424B442 /* IceAcm.bundle */; + name = "IceInheritance iOS"; + productName = IceInheritance; + productReference = EBD23A978B397DAF53B55273 /* IceInheritance.bundle */; productType = "com.apple.product-type.bundle"; }; - CF2C35C710236049C9C60B79 /* IceProperties macOS */ = { + C428EA0E3133ABA37187BE30 /* TestCommon iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A7B12C54A68B5F3BB09BB60C /* Build configuration list for PBXNativeTarget "IceProperties macOS" */; + buildConfigurationList = B8AEBDC5CCFFA9D36FF72CD0 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */; buildPhases = ( - DE9EB00E333E4DD3BCF925D3 /* Sources */, - D36BA87EFCF951121584B562 /* Frameworks */, - 6B28328D014A1158D8B61503 /* Resources */, + DE199AD12D7B419440880D24 /* Headers */, + 426EF7186FC39709CF36993D /* Sources */, + 3E0103E2585D26982A6D31E7 /* Frameworks */, + 58103CB80C8A5C1A82DB6B60 /* Resources */, ); buildRules = ( - EF9EDAEAEEAF00D419FAFC48 /* PBXBuildRule */, + 8AC12DE0F5F2B1A24028F569 /* PBXBuildRule */, ); dependencies = ( - A93B5EB4B3BDD5605367C99B /* PBXTargetDependency */, - 2219D2B745BBE8D752027A8B /* PBXTargetDependency */, ); - name = "IceProperties macOS"; - productName = IceProperties; - productReference = DBE10FD0363BDE5EDFF0F511 /* IceProperties.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestCommon iOS"; + productName = TestCommon; + productReference = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; + productType = "com.apple.product-type.framework"; }; - D166D330DEC6674B8372A98E /* IceStorm macOS */ = { + C4633684AA9C8E2D8E2A3BF1 /* IceSSLConfiguration macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CD1A13B6321D7957542DE130 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */; + buildConfigurationList = D4827EC355C3F9035B72BF00 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */; buildPhases = ( - D253C1F407233ACF50F5774F /* Headers */, - 948D9EBD83F8962FC6B57605 /* Sources */, - A6FF3006FB5665C3C42E218A /* Frameworks */, - F2C71A3BD9FE8A5FABF3FFED /* Resources */, + F84517A4D3BABA53BB2AA94C /* Sources */, + 050FCA0466F0A2C79D1D677A /* Frameworks */, + 1C6E9B0B4E17D018705B9C25 /* Resources */, ); buildRules = ( - 25A1A910EA6C8AFDEF7BFD8B /* PBXBuildRule */, + AA0A2796D4961F69F90B1644 /* PBXBuildRule */, ); dependencies = ( - 0966619ED7FE1158115320AA /* PBXTargetDependency */, + 896C3ABA52835962B333F257 /* PBXTargetDependency */, + EEF2761A50D84951B3FC3D7D /* PBXTargetDependency */, ); - name = "IceStorm macOS"; - productName = IceStorm; - productReference = A7A335019D6FC3FE103657A6 /* IceStorm.framework */; - productType = "com.apple.product-type.framework"; + name = "IceSSLConfiguration macOS"; + productName = IceSSLConfiguration; + productReference = DDBB3E496664C584AD5364E5 /* IceSSLConfiguration.bundle */; + productType = "com.apple.product-type.bundle"; }; - D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */ = { + C5982316F62D05CD651717E7 /* IceAdapterDeactivation macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D77B6EAF252C5E522EF824EB /* Build configuration list for PBXNativeTarget "TestCommon macOS" */; + buildConfigurationList = C3B296EDB3547BDC8388C399 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */; buildPhases = ( - 6A98037C6324B3A1488130FF /* Headers */, - A8407965EDF0FA13A64D9087 /* Sources */, - C27CDD5D5FEA7255B77E1A92 /* Frameworks */, - 4D2E27DB3EA5207711F8614D /* Resources */, + 881EE104DE2C4C5FB6BA5122 /* Sources */, + 4D469B9E372D64EF06F90C6F /* Frameworks */, + AF6BB1F4B05AD6FF6C33B5C5 /* Resources */, ); buildRules = ( - 0967805BCE1E6813D3222CB3 /* PBXBuildRule */, + 72F3BFD2399D7F2FB703D929 /* PBXBuildRule */, ); dependencies = ( + 445588A8E4930A760FD185E7 /* PBXTargetDependency */, + D5B23B291835F00B4DB24A36 /* PBXTargetDependency */, ); - name = "TestCommon macOS"; - productName = TestCommon; - productReference = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; - productType = "com.apple.product-type.framework"; + name = "IceAdapterDeactivation macOS"; + productName = IceAdapterDeactivation; + productReference = C4D40FD4D514C6255DCF1E88 /* IceAdapterDeactivation.bundle */; + productType = "com.apple.product-type.bundle"; }; - D2EB13A2B3406D37FA2754E9 /* IceSlicingObjectsAMD iOS */ = { + CC929AD29689B47CA62D417E /* IceUdp iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 13F2899914E358256D593220 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */; + buildConfigurationList = D87BFF32BBF64821815CA977 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */; buildPhases = ( - B76C94C29C765526C68FF280 /* Sources */, - B6D2D2F943D8B4EEED3B299A /* Frameworks */, - 5D02B29E855CA143354373EA /* Resources */, + A4CF7E95480B760598F95AB6 /* Sources */, + 929112A7DA19D98ED0DA1FA1 /* Frameworks */, + 21037D8232C39B7652991EDF /* Resources */, ); buildRules = ( - 78A8306481EAD2AF63BA0088 /* PBXBuildRule */, + 206099BF9F8FCBCA2E0A413E /* PBXBuildRule */, ); dependencies = ( + E213F74F6508F05644EA6583 /* PBXTargetDependency */, + 0356A3A245B9D197AE470682 /* PBXTargetDependency */, ); - name = "IceSlicingObjectsAMD iOS"; - productName = IceSlicingObjectsAMD; - productReference = 14BBB915E0507F5D160ACEFA /* IceSlicingObjectsAMD.bundle */; + name = "IceUdp iOS"; + productName = IceUdp; + productReference = E2C01CEC70FAB4F5A70D2671 /* IceUdp.bundle */; productType = "com.apple.product-type.bundle"; }; - D4D6FEE0BB4641B83FAB188E /* IceAmi macOS */ = { + D07E492BEFB243158D25D09C /* IceSlicingExceptionsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 46BDA3159CE9E1C75E6623B8 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */; + buildConfigurationList = F4A79ED2732065B4851C86EB /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */; buildPhases = ( - 480CF4808523A5E69EB7D407 /* Sources */, - 65FE965E05FC83E506ED93B4 /* Frameworks */, - DC2303946D501B2E77C3BB57 /* Resources */, + 99D80B4C985E5A51ACEC861C /* Sources */, + 5377C93A323471D70E6CD0CB /* Frameworks */, + 379BC47417A4E9AF9CC58A67 /* Resources */, ); buildRules = ( - 9DA1377CA4018EE85FEDBCFC /* PBXBuildRule */, + 86C0367EB7AE7C4848EE6207 /* PBXBuildRule */, ); dependencies = ( - 6812589996B832C9A0609F36 /* PBXTargetDependency */, - 9BBC14B6DEB9CC469A18760D /* PBXTargetDependency */, ); - name = "IceAmi macOS"; - productName = IceAmi; - productReference = F1D304290414990EF0C45B8F /* IceAmi.bundle */; + name = "IceSlicingExceptionsAMD macOS"; + productName = IceSlicingExceptionsAMD; + productReference = D18F07031EC4C85F5159AFE9 /* IceSlicingExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - D660697C6325570C429F2BC9 /* IceOptional macOS */ = { + D2A90EB733FA2B780783AADF /* IceOptional macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E28ADFC31AAB0E465B4AEA32 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */; + buildConfigurationList = A0C903109661754A7310890E /* Build configuration list for PBXNativeTarget "IceOptional macOS" */; buildPhases = ( - BB65F0DCE4801282D4A53128 /* Sources */, - 47996774354869BDD5E2817F /* Frameworks */, - C85925BD20AFC044CC666C17 /* Resources */, + 71E06AEBA4B516B8D2B1F91E /* Sources */, + 2D4B8047B44D76BD331EB826 /* Frameworks */, + 1B7B83ADFA6C6D32F3080F6C /* Resources */, ); buildRules = ( - AFEAB7B27D528834C61D6D46 /* PBXBuildRule */, + 231EAF2E19204F70B23BF53F /* PBXBuildRule */, ); dependencies = ( - DD9250B27E497A58C6F0D38B /* PBXTargetDependency */, - F0C7D1078E97BA2768BFAC7B /* PBXTargetDependency */, + 22954B34E0A47983E6B3DE9D /* PBXTargetDependency */, + 335A5AB7C7B7A487BA41F78C /* PBXTargetDependency */, ); name = "IceOptional macOS"; productName = IceOptional; - productReference = 7D09811ABF1129D166FBECD8 /* IceOptional.bundle */; + productReference = 69986A0036CFB94E71AFAEB2 /* IceOptional.bundle */; productType = "com.apple.product-type.bundle"; }; - D6C19C2ACCB1CB3FB3B25FA9 /* IceGrid iOS */ = { + D2E3C388100CC50AD3052CDB /* IceServantLocatorAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C7F80BA4C97C8D21B793DE17 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */; + buildConfigurationList = 94387391F728B13F25DE50C7 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */; buildPhases = ( - 1B60567B354A71B70D9F17FA /* Headers */, - A36774ACC8F2668986006B82 /* Sources */, - B855C0B526D3E65C1B97B340 /* Frameworks */, - C84D4C652D2DC0B0666706CF /* Resources */, + 25C3206F9603FF6938CF9B10 /* Sources */, + C834C22CAF0520D2749F4FD8 /* Frameworks */, + AAB490B131E294BD5A649C94 /* Resources */, ); buildRules = ( - 4C421FC35B245A38A2DC32DC /* PBXBuildRule */, + 1A67DD863C56824D6E2006C6 /* PBXBuildRule */, ); dependencies = ( - F821EBE4ED521270E804D413 /* PBXTargetDependency */, - F4FC3B9A79B2DBB879690C17 /* PBXTargetDependency */, ); - name = "IceGrid iOS"; - productName = IceGrid; - productReference = 421D20F7517BB9BEE5FAA9EC /* IceGrid.framework */; - productType = "com.apple.product-type.framework"; + name = "IceServantLocatorAMD iOS"; + productName = IceServantLocatorAMD; + productReference = E65F59B3B48188E5E72C27D6 /* IceServantLocatorAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - D7E804643FF0F11F9B5B0EA8 /* IceOperations macOS */ = { + D6B732964F3D00D84F9428AC /* IceExceptionsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1980BC3BCFEBE70279CF9895 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */; + buildConfigurationList = F999CB9EA63099F760D8B7CC /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */; buildPhases = ( - C76332C341D31121F8357DEF /* Sources */, - 4338F70855D84CB1D837309C /* Frameworks */, - 18BCA3C34842B488FF8C467A /* Resources */, + 7562FB5F2D5496507FB656CB /* Sources */, + 4A59713A78007D44BF693678 /* Frameworks */, + 999DDBCF1BA818840457744A /* Resources */, ); buildRules = ( - B60A4504342022B2D5D5D7ED /* PBXBuildRule */, + 9D78220D8786EA4469EE3E86 /* PBXBuildRule */, ); dependencies = ( - 40B944B83C8139F2BC8078A3 /* PBXTargetDependency */, - E05E02BCC9304E16F3B38E71 /* PBXTargetDependency */, ); - name = "IceOperations macOS"; - productName = IceOperations; - productReference = FF80542C911241FAB9075178 /* IceOperations.bundle */; + name = "IceExceptionsAMD macOS"; + productName = IceExceptionsAMD; + productReference = F0FBBD74A0A5794E1AF7F7CA /* IceExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - D8E57767C0E6E25C9171CD94 /* IceEnums iOS */ = { + D9AE09FB3585B148EE15E9D9 /* IceEnums iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 62E64D3926FBD2D1F48DA25D /* Build configuration list for PBXNativeTarget "IceEnums iOS" */; + buildConfigurationList = AD814D241780CB1F06437AF5 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */; buildPhases = ( - 222DD1AE7415C31D17A3D169 /* Sources */, - 76C166581A47F871D5F800EF /* Frameworks */, - 7DB8A9A8207D90817E5CCABC /* Resources */, + 293303B279AB89FF6AF2D9CF /* Sources */, + 480014FEF9CE3E5FA6D7F184 /* Frameworks */, + BFA33ED339F68ED63E1D77F6 /* Resources */, ); buildRules = ( - C3283B881010BB1CC95A6603 /* PBXBuildRule */, + 463E0A8328D24FF7AB6A70CA /* PBXBuildRule */, ); dependencies = ( - 177DD53FA83D4C906941D23B /* PBXTargetDependency */, - 14C96416FF965CF99EA8DF85 /* PBXTargetDependency */, + 62E1383BBC82CAA4600921BB /* PBXTargetDependency */, + 223FA5C36D5387D3A92718C3 /* PBXTargetDependency */, ); name = "IceEnums iOS"; productName = IceEnums; - productReference = 574A31600701185E9FDEC087 /* IceEnums.bundle */; + productReference = 527D2F42A3A39B2F888A301D /* IceEnums.bundle */; productType = "com.apple.product-type.bundle"; }; - DD3F4218F00B8F03628CFF85 /* IceStream iOS */ = { + DF67C7AEC35876C0CCF4A96A /* IceServices iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 00236410B7878815C9462DB6 /* Build configuration list for PBXNativeTarget "IceStream iOS" */; + buildConfigurationList = BD31B570526360322E7F63BA /* Build configuration list for PBXNativeTarget "IceServices iOS" */; buildPhases = ( - 246253152A8A494FF5540BD5 /* Sources */, - 4344970BC2EDC456530C36A1 /* Frameworks */, - BCD9FC26DEEA75170E10F5D5 /* Resources */, + 8BC7C7488C636DAFE42DF7E3 /* Sources */, + 20BFB48425DC59B7EB1CF535 /* Frameworks */, + D279A9FD358C10D9C65B255D /* Resources */, ); buildRules = ( - E9FBB1B4891957CADFB0648B /* PBXBuildRule */, + 3E20CDB335D45B24AAB78033 /* PBXBuildRule */, ); dependencies = ( - F7A4C5F2CE8E25677A20701C /* PBXTargetDependency */, - D2ABB6907F687A1634C727D3 /* PBXTargetDependency */, + E9417BFC8C112DCAB09A5D68 /* PBXTargetDependency */, + C1956C8C1A66B382C06C35BC /* PBXTargetDependency */, + D24A0353C199C7B7AF4BA774 /* PBXTargetDependency */, + B9D7BB9E7B4B9D112E9DF8EF /* PBXTargetDependency */, + 88CE47F5A6556E984A0C3314 /* PBXTargetDependency */, ); - name = "IceStream iOS"; - productName = IceStream; - productReference = C4D7BABAB3FF83E286B743F7 /* IceStream.bundle */; + name = "IceServices iOS"; + productName = IceServices; + productReference = 1D90F14637894A37678FC3C4 /* IceServices.bundle */; productType = "com.apple.product-type.bundle"; }; - DE7C3CE12D76528ED6571BB0 /* IceTimeout iOS */ = { + E13AF536398A890833FFC655 /* IceRetry macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 235EAE8BF84A08E14162D089 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */; + buildConfigurationList = B8A4900C8A10B4D3B524509C /* Build configuration list for PBXNativeTarget "IceRetry macOS" */; buildPhases = ( - 5157643376FA82B89EEB08D8 /* Sources */, - 3BDA4E445ACB0AD365C74687 /* Frameworks */, - 26AFEAD1874E9C55EFB3D8E1 /* Resources */, + 0D0260BCC220C52C5CA4FC3C /* Sources */, + D92113C9FF7B0AEB581F1C83 /* Frameworks */, + 123F3984EE81810B5DFB8B6B /* Resources */, ); buildRules = ( - E685247FAC72008244FF4F4D /* PBXBuildRule */, + 7529A40C10A7F572FBAF0B05 /* PBXBuildRule */, ); dependencies = ( - 8590BF2D92F5E519CCE6E0B7 /* PBXTargetDependency */, - D5766540D82324E628841392 /* PBXTargetDependency */, + 75C002C3683579061F37770D /* PBXTargetDependency */, + 902D152B990BFBDB128AAAA4 /* PBXTargetDependency */, ); - name = "IceTimeout iOS"; - productName = IceTimeout; - productReference = 84129524C4F70B842B955026 /* IceTimeout.bundle */; + name = "IceRetry macOS"; + productName = IceRetry; + productReference = 52278F0A9D3CC113108CA88D /* IceRetry.bundle */; productType = "com.apple.product-type.bundle"; }; - DE8F7D3EE9F4909908CB3923 /* IceStream macOS */ = { + E1EEB80531F6CCE4CB628B62 /* IceAdmin macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BBE03B18CF52DBF06CD120E4 /* Build configuration list for PBXNativeTarget "IceStream macOS" */; + buildConfigurationList = FBDF261EE2A45A604FD39FB6 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */; buildPhases = ( - 58CEE4BDE08B849270A398E7 /* Sources */, - 7CEEB150555D1A002F03561A /* Frameworks */, - A18DBCDA92B8B689D424C417 /* Resources */, + 6BE9D4FCC694CDB86D5089A3 /* Sources */, + 55224A4B1A2B2FF203837392 /* Frameworks */, + 3D6046CAF77BBD978CCC84FE /* Resources */, ); buildRules = ( - 5BDB3FD3DD1E27619DCF5343 /* PBXBuildRule */, + BB1E4B9A1CE49FF6469A7951 /* PBXBuildRule */, ); dependencies = ( - 1BB5E632D9FB3E508B468DD5 /* PBXTargetDependency */, - 3B4546B1387E723D2C297F52 /* PBXTargetDependency */, + 264BC338C6E40185DAA8E7BC /* PBXTargetDependency */, + 06E52F3B4022C2B95DA5DC76 /* PBXTargetDependency */, ); - name = "IceStream macOS"; - productName = IceStream; - productReference = 3621866FB3468BC2E48FB9B7 /* IceStream.bundle */; + name = "IceAdmin macOS"; + productName = IceAdmin; + productReference = 90AB8161442DBB20C4926B3B /* IceAdmin.bundle */; productType = "com.apple.product-type.bundle"; }; - E1DFDE719731E7D4A7FEF6E0 /* IceDefaultValue iOS */ = { + E47FCF3BB733DC4EC57A0924 /* IceObjects iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3C8F0B13468176E203388188 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */; + buildConfigurationList = 665075D2E65EC4768153CF0C /* Build configuration list for PBXNativeTarget "IceObjects iOS" */; buildPhases = ( - 3728EFBD094185E9090EA0FB /* Sources */, - A3F0D705D910ED5C5DC4390B /* Frameworks */, - 046A1EFBBEA27B2996D4FE18 /* Resources */, + A258BBCE321A6745D6E518FC /* Sources */, + DB78C24C92B766330E59B250 /* Frameworks */, + 2B77A6BE5427B9661BEBA0DB /* Resources */, ); buildRules = ( - 41F9BA501264430B049ACCBF /* PBXBuildRule */, + 5A461C2302DD2A6FD65D6113 /* PBXBuildRule */, ); dependencies = ( - 39F809683F85B4CDF4344C88 /* PBXTargetDependency */, - 09D176AFEE3692AD309D6562 /* PBXTargetDependency */, + 3A15991EDADCB55D910D42DD /* PBXTargetDependency */, + 6786C94697BA770CC188DC4B /* PBXTargetDependency */, ); - name = "IceDefaultValue iOS"; - productName = IceDefaultValue; - productReference = 9A3965D141BF41DF1F0C551B /* IceDefaultValue.bundle */; + name = "IceObjects iOS"; + productName = IceObjects; + productReference = 58E4626AB44A7F584A615366 /* IceObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - E51388D0936150349DB47717 /* IceInfo macOS */ = { + E6806D7DB7060BC3A0C7306D /* IceOptionalAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EC2ED350B4BE06E124AF4315 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */; + buildConfigurationList = D30BE105828013751D1037C9 /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */; buildPhases = ( - 9A4ED064FE6E42598FD6425F /* Sources */, - 4912B80B1313E741407D866F /* Frameworks */, - BCF0CB79501EBE7A8DB9BD7A /* Resources */, + 0E225CB8906616C9B17D9D57 /* Sources */, + D40ED5C22867DF7D772839B8 /* Frameworks */, + 73C018973232EDBE1FFD8B57 /* Resources */, ); buildRules = ( - 39F14EA9557A024F28CE6D27 /* PBXBuildRule */, + 9A95BDC1D13A3FAB26ADE6D5 /* PBXBuildRule */, ); dependencies = ( - 8702C18A0C77263511D9EEDE /* PBXTargetDependency */, - D2B534DF7C495616B61D9DAA /* PBXTargetDependency */, ); - name = "IceInfo macOS"; - productName = IceInfo; - productReference = A9FEE9EA5FF7D393AB623659 /* IceInfo.bundle */; + name = "IceOptionalAMD iOS"; + productName = IceOptionalAMD; + productReference = CB65DF0EB3BC9182E42B33C6 /* IceOptionalAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - EBB34A2FBFB19A98854A90B2 /* IceObjects iOS */ = { + EE743BE7277805136A7EEB71 /* Ice macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2950D67411DBCABCE2C185DA /* Build configuration list for PBXNativeTarget "IceObjects iOS" */; + buildConfigurationList = 8F67E660542E98461C602595 /* Build configuration list for PBXNativeTarget "Ice macOS" */; buildPhases = ( - 824E592A3AB65CEE426FAE6A /* Sources */, - 8C65073F217D444C9804C18C /* Frameworks */, - DF75B44EB38A432C7758EC45 /* Resources */, + E31CDE4D2F98BABCFCBB0E54 /* Headers */, + 9977338E8BAF8946DEF65C37 /* Sources */, + 70B54BD6C23881584479D162 /* Frameworks */, + 672274C85643D82182351BF0 /* Resources */, ); buildRules = ( - EE7E4F4B1C7CE544A204C4B2 /* PBXBuildRule */, + 699FC11E0421B9B10B6143D9 /* PBXBuildRule */, ); dependencies = ( - 40377970465B2425DFCAFC4C /* PBXTargetDependency */, - 1ED1295A515AB5137D83B3FD /* PBXTargetDependency */, + 8777B7EA77BA6F64CBF1F713 /* PBXTargetDependency */, ); - name = "IceObjects iOS"; - productName = IceObjects; - productReference = 26333E41B14F786F1F2AE7BD /* IceObjects.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice macOS"; + productName = Ice; + productReference = 665569D1BB698FBBAD74786F /* Ice.framework */; + productType = "com.apple.product-type.framework"; }; - ED67C4392ADE53C242195C57 /* IceSlicingExceptions iOS */ = { + F1949C2140DCFA5E835C5C17 /* IceBinding iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E99F518660F9AB06ACE667CD /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */; + buildConfigurationList = 464CD32F92DF139FF90EA325 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */; buildPhases = ( - 0A9A250939D7BE45351C33DF /* Sources */, - ECE5C7CB1617D199246BDF6C /* Frameworks */, - CA5490605351AF966B2614CC /* Resources */, + F694C843C50BFC05832FCA72 /* Sources */, + 7E89AA06F95141112E2308DF /* Frameworks */, + 5A89118BBC68C60FA703DA20 /* Resources */, ); buildRules = ( - 66EC3CDC1436D5FC248ABDE2 /* PBXBuildRule */, + C05A427B4D1DAA3BA1510A0B /* PBXBuildRule */, ); dependencies = ( - BD6F61806126F8B4876AAB15 /* PBXTargetDependency */, - F306659467A44A1EF1506B0B /* PBXTargetDependency */, + 7208F57935FA5E9E24A307E3 /* PBXTargetDependency */, + 2E73BB1C13AA4FC7B334F57C /* PBXTargetDependency */, ); - name = "IceSlicingExceptions iOS"; - productName = IceSlicingExceptions; - productReference = A6EA1C8C1024620CA648E9E4 /* IceSlicingExceptions.bundle */; + name = "IceBinding iOS"; + productName = IceBinding; + productReference = 00B1BC62D4009B18B3E6DE80 /* IceBinding.bundle */; productType = "com.apple.product-type.bundle"; }; - EEC6F479C65DCAAB4950D96F /* IceFacets macOS */ = { + F4A16370E4157DCD4CF7F964 /* SliceEscape macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6AD12FA7448CD620F06F4544 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */; + buildConfigurationList = 81D802AA8BD4316DF8274377 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */; buildPhases = ( - 10A73AB36EC16092DAA544D9 /* Sources */, - 30B7EF8233591FD7F4FC7DD6 /* Frameworks */, - 4996ABC3740EA5B4E3ECFCD5 /* Resources */, + 9E9D8101C63F168A2671038A /* Sources */, + 52A82FE47013310F296127FD /* Frameworks */, + DA4AA28AE68729EB5BA89C76 /* Resources */, ); buildRules = ( - 3965EDB8CE72829F3D9DCB62 /* PBXBuildRule */, + 6F305A5284E48EE6CB083308 /* PBXBuildRule */, ); dependencies = ( - D14791AFE1C9C2B74C497278 /* PBXTargetDependency */, - 99977B77422172889E2505B2 /* PBXTargetDependency */, + 6BECC44222CAD7C68E324C3D /* PBXTargetDependency */, + 2A80FC7A1C0D10531E545B83 /* PBXTargetDependency */, ); - name = "IceFacets macOS"; - productName = IceFacets; - productReference = 86FF409A4D607F7C3F700F8B /* IceFacets.bundle */; + name = "SliceEscape macOS"; + productName = SliceEscape; + productReference = 2C1845D9001948A194C9BF3D /* SliceEscape.bundle */; productType = "com.apple.product-type.bundle"; }; - F9DF2DD34D62DDCA59B08490 /* IceInvoke iOS */ = { + FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CE38CF5CBBFBC1E58056332B /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */; + buildConfigurationList = E7B316026DBF1CE6D68F925C /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */; buildPhases = ( - E7F343821E76B5BEA92307B7 /* Sources */, - 8865B8FABFE304C12A58F80E /* Frameworks */, - 29975D1740F039C626922310 /* Resources */, + 3940C02D995F91447AEF86D6 /* Headers */, + 43ACB16B5DFA52DBEEAFBADF /* Sources */, + F1E137735CAC0DC93E63C75D /* Frameworks */, + 91EF5AFB0ADDEAC41F4BB970 /* Resources */, ); buildRules = ( - 9A27AD256C05C172E1AE72B0 /* PBXBuildRule */, + 1E983DE40B938FAE71CA7E93 /* PBXBuildRule */, ); dependencies = ( - D262A9D4C5A1AA7DE691620A /* PBXTargetDependency */, - C25C82B8BD02AE39C9029153 /* PBXTargetDependency */, + C6F0F1CC258CECBC17386D3E /* PBXTargetDependency */, ); - name = "IceInvoke iOS"; - productName = IceInvoke; - productReference = 49A523EF80AE64499CA309E4 /* IceInvoke.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Glacier2 macOS"; + productName = Glacier2; + productReference = EC3920B0A3180CE9468B5D48 /* Glacier2.framework */; + productType = "com.apple.product-type.framework"; }; - FC5FC6ACD26B2D242E65DDEF /* IceOperations iOS */ = { + FC49A3F19B353AC4051631B4 /* IceInheritance macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B79C877815ABF505B942A900 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */; + buildConfigurationList = BE77650B59C4E2B377676E45 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */; buildPhases = ( - 7C9C563222656FA461391883 /* Sources */, - 39695CF1EB348643B8ECC770 /* Frameworks */, - 61FBB2DAD43F55A46E6F63E8 /* Resources */, + FE047DCC21E6B1343E3D70AE /* Sources */, + C3D709A49D80D17285D3FDD8 /* Frameworks */, + 27DDD91423E85D6376113FC2 /* Resources */, ); buildRules = ( - 93291BDDE80CD363ABC4F3A8 /* PBXBuildRule */, + 930A34F60C3CEB7E00D8AE72 /* PBXBuildRule */, ); dependencies = ( - 8033BC3863F4B27A60180BA6 /* PBXTargetDependency */, - B2287847456C443450046F4F /* PBXTargetDependency */, + CE185284674CE65CDCEF95B1 /* PBXTargetDependency */, + 5E5F2CC3DC8DF57F3D866B54 /* PBXTargetDependency */, ); - name = "IceOperations iOS"; - productName = IceOperations; - productReference = 01CB046806C40FF9E09F98EC /* IceOperations.bundle */; + name = "IceInheritance macOS"; + productName = IceInheritance; + productReference = 23205029365EA8B8CFAB923B /* IceInheritance.bundle */; productType = "com.apple.product-type.bundle"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 1EB94907D14CF0330FE8A8B4 /* Project object */ = { + FD69C74E28D7406AE764029E /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 1500; LastUpgradeCheck = 1500; TargetAttributes = { - 000899F4C56AEFCFE1B77B0B = { + 02BA85F98EB32966A7AA3C21 = { ProvisioningStyle = Automatic; }; - 08063B79E151583B4BCA64E2 = { + 04ABE78C2D82D8E0F3B6615C = { ProvisioningStyle = Automatic; }; - 086D7EFAFD5B99B06915E82A = { + 08C942FD89E4D9E7FA113627 = { ProvisioningStyle = Automatic; }; - 0A512D4AD4749C7C7490FAC3 = { + 0A757D8B307D80F7BD3C5017 = { ProvisioningStyle = Automatic; }; - 11C4703EE1A20D4D647A2951 = { + 0EDA203583B355501DD47E73 = { ProvisioningStyle = Automatic; }; - 1461134F8E13923F515F804D = { + 10E56726E39C8E4E56D51BC4 = { ProvisioningStyle = Automatic; }; - 1B9A94B53B78BCA1F3F37DB5 = { + 140CB18515FA53ECB140F7CC = { ProvisioningStyle = Automatic; }; - 1D8E308F3BB453AE7F0F43D1 = { + 14535688C6E2E4A839C04451 = { ProvisioningStyle = Automatic; }; - 224A65D1A8B6FBED3FA62D9D = { + 16C02D2C934DC57FE079663F = { ProvisioningStyle = Automatic; }; - 246FEE224D85BEE24C2D1581 = { + 1767B82F1961C76D47FF467B = { ProvisioningStyle = Automatic; }; - 25D99E456ADFE5745483AC23 = { + 199245355B4B5CD9FF6A6386 = { ProvisioningStyle = Automatic; }; - 263FF8D1D5EF5BA8F4E3FDFA = { + 1F284CA948D007302C982357 = { ProvisioningStyle = Automatic; }; - 2AD01C6A244838BF6DABEF5C = { + 1F99406342A96A78168E74BB = { ProvisioningStyle = Automatic; }; - 2C9432880D461B94B2829F4D = { + 24A0E61D1931744BC729034A = { ProvisioningStyle = Automatic; }; - 2D69E78989BA05C0A499A44D = { + 2646D8A7E773E3BDE5BE8E29 = { ProvisioningStyle = Automatic; }; - 32B8209C4A20C3D8A8496A49 = { + 26D8717EB0F318653FB9C763 = { ProvisioningStyle = Automatic; }; - 33115CA925E128B5715AB93A = { + 29279E4ADC71CC6522E7C012 = { ProvisioningStyle = Automatic; }; - 3C65AA8108580E3668BDBC3F = { + 2997C7A465709CD09CD4C4BB = { ProvisioningStyle = Automatic; }; - 3C66C239BBA518B87D48C1C3 = { + 2A0224A2EFBB3E87655C351C = { ProvisioningStyle = Automatic; }; - 3C8F64BC2EB740FC26540C5A = { + 2AA26A44152A667D249E2998 = { ProvisioningStyle = Automatic; }; - 3CC923BA7EC9201D602FFE65 = { + 2B82F333BA11DB5D8BECDBF6 = { ProvisioningStyle = Automatic; }; - 3D1F7E6A7317D6CB8877A0D5 = { + 31D342F49CC37B0DFA959D8A = { ProvisioningStyle = Automatic; }; - 4426F98834307DB6D023DE51 = { + 34AC5913121CF6E0F793DEDD = { ProvisioningStyle = Automatic; }; - 44669E73C88B6F4F3038B679 = { + 3889B46D2FBF6B61B7DA5A5A = { ProvisioningStyle = Automatic; }; - 457BBB51C97A0228B53F703A = { + 3892B1FD3640020576B40CDA = { ProvisioningStyle = Automatic; }; - 45B627654A6C6E672B177B58 = { + 38C1EA904D5C3BCB045C88A2 = { ProvisioningStyle = Automatic; }; - 47118015D4FFF9159FC93434 = { + 3AA88FF2CD4BC207F3E38A68 = { ProvisioningStyle = Automatic; }; - 4CA64E4D7C1BECF901572919 = { + 3CB27B168E65D6B824278AE1 = { ProvisioningStyle = Automatic; }; - 4CD1512C8E4830F6FAC5E6E4 = { + 3E69BE60A2C26A59EEE938DC = { ProvisioningStyle = Automatic; }; - 4F13DB1C06A1425528829C6C = { + 41AF2CA6936313B5E6F391BD = { ProvisioningStyle = Automatic; }; - 4FDA69908F50F24A52FA5554 = { + 4434399DDA0D789BDAB8EDCF = { ProvisioningStyle = Automatic; }; - 54C05D7A1468FBA7EB02A914 = { + 45549440E1718C4D35E63237 = { ProvisioningStyle = Automatic; }; - 563E7C5E9BFDDAD9AEB54CD4 = { + 46452DCDFFD6A246079637CB = { ProvisioningStyle = Automatic; }; - 568C96C03F49810104EE6CD1 = { + 49D15054211B9CC6B08CB18E = { ProvisioningStyle = Automatic; }; - 59678E1D5AFC460FA5D03A6B = { + 4CDAAF1A166952EC0C4E0BF1 = { ProvisioningStyle = Automatic; }; - 60091C7C300D5092A8E52149 = { + 529314BF4173169E9CB2F36B = { ProvisioningStyle = Automatic; }; - 653844725C6B533AEBD3977F = { + 57285D8128490A28FD5E1EA9 = { ProvisioningStyle = Automatic; }; - 65B4CEBE6BC37BE3E80C822B = { + 57D39C477D54466601C5A786 = { ProvisioningStyle = Automatic; }; - 66766A219D36565BAA8D85DB = { + 5A26265E443FF04358AE528C = { ProvisioningStyle = Automatic; }; - 6B689E233D18BEC5377ECFE9 = { + 5DA5602D00AE3159023AFB5D = { ProvisioningStyle = Automatic; }; - 6C6B3F2AAE2C93C3A2670E5E = { + 60F33D27C2F25EAA1C58217D = { ProvisioningStyle = Automatic; }; - 6FD780B3B0F51D50A0233C81 = { + 615480D42FAF508D7F8AA5BC = { ProvisioningStyle = Automatic; }; - 736E7E0279329997566B6CBD = { + 627EF9C25191013A38BA3C83 = { ProvisioningStyle = Automatic; }; - 73B0FB7CB263578EA908E6BF = { + 696D6136245EB191F3A59E1A = { ProvisioningStyle = Automatic; }; - 7649B8B4D36C63D3D167ED11 = { + 737F194EFAAE24FEE20C5FF6 = { ProvisioningStyle = Automatic; }; - 7862E459B18BD8751A67923F = { + 7C5D25F9DE7921A57B72E85F = { ProvisioningStyle = Automatic; }; - 7AC3B103C3B879479057C283 = { + 7EB54A3072775CD2177DC7A7 = { ProvisioningStyle = Automatic; }; - 7B09AAAF71F5D5AB2F8C1B78 = { + 7F56B76EDE89B9AC6AF088FF = { ProvisioningStyle = Automatic; }; - 7BD0591E1B5ABBDFE982E6E8 = { + 84AAA301C5D3AF97E6828B9A = { ProvisioningStyle = Automatic; }; - 7C4454250BFF2F744DA15043 = { + 8C1035C93AB58A55E8EB9B9D = { ProvisioningStyle = Automatic; }; - 7C4ECB5C2679ED962EFAEA71 = { + 8D4D7F1ABB790FA722EC7917 = { ProvisioningStyle = Automatic; }; - 80D1931BE1B80501D33167DD = { + 8E4EE2567B3C187D2F9C1173 = { ProvisioningStyle = Automatic; }; - 82C53B88275C4981212133CC = { + 8F11329102906B0FE306EF9C = { ProvisioningStyle = Automatic; }; - 836518381BE3202105EFCC03 = { + 915EFEBB1B2962C505C96286 = { ProvisioningStyle = Automatic; }; - 87E9A0678200BC32DF77CC22 = { + 983596DE8C0BFB636571955C = { ProvisioningStyle = Automatic; }; - 8DB5F9E207CEEFAD3CA28266 = { + 993C3F64323081AD7846C3D1 = { ProvisioningStyle = Automatic; }; - 8E23FF66CFB6287919E99A31 = { + 99D043CF9A0E172FCFC4C4B0 = { ProvisioningStyle = Automatic; }; - 92DFD90832239D72108865B4 = { + 9A9DEB6418C9257648D6A235 = { ProvisioningStyle = Automatic; }; - 938EB0FB3FB9C74695580EBE = { + 9B13B57D40995B5A58986BCF = { ProvisioningStyle = Automatic; }; - 953A9306D1F74C3E46325E82 = { + 9F3B1821E0C570BF87946D26 = { ProvisioningStyle = Automatic; }; - 95D4F0B99BDEE21096E1027E = { + 9F95E6A433F94E974D32566F = { ProvisioningStyle = Automatic; }; - 961580353429DCE0D0B109CB = { + A02AEC1FCAEDD308F0CBDCC6 = { ProvisioningStyle = Automatic; }; - 984F9509A61A9677BDD2B1E7 = { + A1FCF6486037B74ACCD22503 = { ProvisioningStyle = Automatic; }; - 9C08369D07430A8AFB9F41A3 = { + A250D484C77105742100E390 = { ProvisioningStyle = Automatic; }; - 9D8A9741B7D4BD64D5B31B88 = { + A3B6CDB0CD7C0059D4D3CBF9 = { ProvisioningStyle = Automatic; }; - A2837C7BEC47E856E536F9B3 = { + A4F94E6B42A58EEF0623EC8F = { ProvisioningStyle = Automatic; }; - B06DD43CC98E177E5491959D = { + A83EF428E73401A533092DB4 = { ProvisioningStyle = Automatic; }; - B1154CF85BB46C6CCA916ABD = { + AA856D3D0EBE73A655B10DCE = { ProvisioningStyle = Automatic; }; - B3FAC186802EC7B160722234 = { + AC5B52B4AAA6CC13CA8A2DDB = { ProvisioningStyle = Automatic; }; - B49EEDD01A8C36F24785F1E7 = { + AEE1F674AD81A9327E42EDDB = { ProvisioningStyle = Automatic; }; - B4C54B94A72325BA4250EB2E = { + B564F6A99559D774EF563A3F = { ProvisioningStyle = Automatic; }; - B51FD7FF275A85DCE665AB96 = { + B7EFE020C9D77334FB6C5B4B = { ProvisioningStyle = Automatic; }; - BB148EB91DBAAACC5D08F10B = { + B8D5C1F592E31ABE249CC078 = { ProvisioningStyle = Automatic; }; - BBEFD25BD9A130DE61D90238 = { + BBA5FF013C8B19537743DE0C = { ProvisioningStyle = Automatic; }; - BCEAC60BF9D3DB0E6BB1DD33 = { + BCD219D62CE917ADBC7AFD22 = { ProvisioningStyle = Automatic; }; - BD615D3AE7C4D142D2D859B8 = { + BEBD5165FA221E0C61A12DD9 = { ProvisioningStyle = Automatic; }; - BF6E058050842A50604055C2 = { + BFD01B6CA65F9516862D1FA1 = { ProvisioningStyle = Automatic; }; - CC8E2C60DE859F3875C1A578 = { + C07B8E267CA90FCDBE4E7E7D = { ProvisioningStyle = Automatic; }; - CE79EFA5A2D0EEBD42B1DC53 = { + C2F3B80C3A24BFA9444F31E1 = { ProvisioningStyle = Automatic; }; - CF2C35C710236049C9C60B79 = { + C428EA0E3133ABA37187BE30 = { ProvisioningStyle = Automatic; }; - D166D330DEC6674B8372A98E = { + C4633684AA9C8E2D8E2A3BF1 = { ProvisioningStyle = Automatic; }; - D24AF243F3E2AFCAA656BA3E = { + C5982316F62D05CD651717E7 = { ProvisioningStyle = Automatic; }; - D2EB13A2B3406D37FA2754E9 = { + CC929AD29689B47CA62D417E = { ProvisioningStyle = Automatic; }; - D4D6FEE0BB4641B83FAB188E = { + D07E492BEFB243158D25D09C = { ProvisioningStyle = Automatic; }; - D660697C6325570C429F2BC9 = { + D2A90EB733FA2B780783AADF = { ProvisioningStyle = Automatic; }; - D6C19C2ACCB1CB3FB3B25FA9 = { + D2E3C388100CC50AD3052CDB = { ProvisioningStyle = Automatic; }; - D7E804643FF0F11F9B5B0EA8 = { + D6B732964F3D00D84F9428AC = { ProvisioningStyle = Automatic; }; - D8E57767C0E6E25C9171CD94 = { + D9AE09FB3585B148EE15E9D9 = { ProvisioningStyle = Automatic; }; - DD3F4218F00B8F03628CFF85 = { + DF67C7AEC35876C0CCF4A96A = { ProvisioningStyle = Automatic; }; - DE7C3CE12D76528ED6571BB0 = { + E13AF536398A890833FFC655 = { ProvisioningStyle = Automatic; }; - DE8F7D3EE9F4909908CB3923 = { + E1EEB80531F6CCE4CB628B62 = { ProvisioningStyle = Automatic; }; - E1DFDE719731E7D4A7FEF6E0 = { + E47FCF3BB733DC4EC57A0924 = { ProvisioningStyle = Automatic; }; - E51388D0936150349DB47717 = { + E6806D7DB7060BC3A0C7306D = { ProvisioningStyle = Automatic; }; - EBB34A2FBFB19A98854A90B2 = { + EE743BE7277805136A7EEB71 = { ProvisioningStyle = Automatic; }; - ED67C4392ADE53C242195C57 = { + F1949C2140DCFA5E835C5C17 = { ProvisioningStyle = Automatic; }; - EEC6F479C65DCAAB4950D96F = { + F4A16370E4157DCD4CF7F964 = { ProvisioningStyle = Automatic; }; - F9DF2DD34D62DDCA59B08490 = { + FBFB66FA3AA0C4BACD7CAEF1 = { ProvisioningStyle = Automatic; }; - FC5FC6ACD26B2D242E65DDEF = { + FC49A3F19B353AC4051631B4 = { ProvisioningStyle = Automatic; }; }; }; - buildConfigurationList = 29718A28607A68FBD21FC3C5 /* Build configuration list for PBXProject "ice" */; + buildConfigurationList = 614B9769E03331E188CB19E8 /* Build configuration list for PBXProject "ice" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = en; hasScannedForEncodings = 0; @@ -10407,755 +10403,755 @@ Base, en, ); - mainGroup = F6445D7F6837A9E5721B6DE1; - productRefGroup = C4B9FBD376A1113679514F16 /* Products */; + mainGroup = B0C3452D122A26EAB9C7E207; + productRefGroup = 760772C12F4740EB4CB773F3 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - 66766A219D36565BAA8D85DB /* Glacier2 iOS */, - B06DD43CC98E177E5491959D /* Glacier2 macOS */, - 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */, - 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */, - 9C08369D07430A8AFB9F41A3 /* Ice iOS */, - 836518381BE3202105EFCC03 /* Ice macOS */, - 3CC923BA7EC9201D602FFE65 /* IceAcm iOS */, - CE79EFA5A2D0EEBD42B1DC53 /* IceAcm macOS */, - 3D1F7E6A7317D6CB8877A0D5 /* IceAdapterDeactivation iOS */, - B3FAC186802EC7B160722234 /* IceAdapterDeactivation macOS */, - 47118015D4FFF9159FC93434 /* IceAdmin iOS */, - B49EEDD01A8C36F24785F1E7 /* IceAdmin macOS */, - 2C9432880D461B94B2829F4D /* IceAmi iOS */, - D4D6FEE0BB4641B83FAB188E /* IceAmi macOS */, - 984F9509A61A9677BDD2B1E7 /* IceBinding iOS */, - BD615D3AE7C4D142D2D859B8 /* IceBinding macOS */, - 7AC3B103C3B879479057C283 /* IceDefaultServant iOS */, - 8DB5F9E207CEEFAD3CA28266 /* IceDefaultServant macOS */, - E1DFDE719731E7D4A7FEF6E0 /* IceDefaultValue iOS */, - 11C4703EE1A20D4D647A2951 /* IceDefaultValue macOS */, - 563E7C5E9BFDDAD9AEB54CD4 /* IceDiscovery C++11 iOS */, - 4CA64E4D7C1BECF901572919 /* IceDiscovery C++11 macOS */, - D8E57767C0E6E25C9171CD94 /* IceEnums iOS */, - 3C8F64BC2EB740FC26540C5A /* IceEnums macOS */, - 457BBB51C97A0228B53F703A /* IceExceptions iOS */, - 25D99E456ADFE5745483AC23 /* IceExceptions macOS */, - 33115CA925E128B5715AB93A /* IceExceptionsAMD iOS */, - 60091C7C300D5092A8E52149 /* IceExceptionsAMD macOS */, - A2837C7BEC47E856E536F9B3 /* IceFacets iOS */, - EEC6F479C65DCAAB4950D96F /* IceFacets macOS */, - D6C19C2ACCB1CB3FB3B25FA9 /* IceGrid iOS */, - 953A9306D1F74C3E46325E82 /* IceGrid macOS */, - 2D69E78989BA05C0A499A44D /* IceHold iOS */, - 6C6B3F2AAE2C93C3A2670E5E /* IceHold macOS */, - 1461134F8E13923F515F804D /* IceImpl iOS */, - BB148EB91DBAAACC5D08F10B /* IceImpl macOS */, - 95D4F0B99BDEE21096E1027E /* IceInfo iOS */, - E51388D0936150349DB47717 /* IceInfo macOS */, - 4426F98834307DB6D023DE51 /* IceInheritance iOS */, - 54C05D7A1468FBA7EB02A914 /* IceInheritance macOS */, - 736E7E0279329997566B6CBD /* IceInterceptor iOS */, - 6FD780B3B0F51D50A0233C81 /* IceInterceptor macOS */, - F9DF2DD34D62DDCA59B08490 /* IceInvoke iOS */, - 65B4CEBE6BC37BE3E80C822B /* IceInvoke macOS */, - 2AD01C6A244838BF6DABEF5C /* IceLocation iOS */, - 9D8A9741B7D4BD64D5B31B88 /* IceLocation macOS */, - 1D8E308F3BB453AE7F0F43D1 /* IceLocatorDiscovery C++11 iOS */, - 8E23FF66CFB6287919E99A31 /* IceLocatorDiscovery C++11 macOS */, - EBB34A2FBFB19A98854A90B2 /* IceObjects iOS */, - B51FD7FF275A85DCE665AB96 /* IceObjects macOS */, - FC5FC6ACD26B2D242E65DDEF /* IceOperations iOS */, - D7E804643FF0F11F9B5B0EA8 /* IceOperations macOS */, - BBEFD25BD9A130DE61D90238 /* IceOperationsAMD iOS */, - CC8E2C60DE859F3875C1A578 /* IceOperationsAMD macOS */, - 263FF8D1D5EF5BA8F4E3FDFA /* IceOptional iOS */, - D660697C6325570C429F2BC9 /* IceOptional macOS */, - BF6E058050842A50604055C2 /* IceOptionalAMD iOS */, - 3C65AA8108580E3668BDBC3F /* IceOptionalAMD macOS */, - 73B0FB7CB263578EA908E6BF /* IceProperties iOS */, - CF2C35C710236049C9C60B79 /* IceProperties macOS */, - 7C4454250BFF2F744DA15043 /* IceProxy iOS */, - 7862E459B18BD8751A67923F /* IceProxy macOS */, - 6B689E233D18BEC5377ECFE9 /* IceProxyAMD iOS */, - 653844725C6B533AEBD3977F /* IceProxyAMD macOS */, - 87E9A0678200BC32DF77CC22 /* IceRetry iOS */, - B1154CF85BB46C6CCA916ABD /* IceRetry macOS */, - 4FDA69908F50F24A52FA5554 /* IceScope iOS */, - 961580353429DCE0D0B109CB /* IceScope macOS */, - 246FEE224D85BEE24C2D1581 /* IceServantLocator iOS */, - 938EB0FB3FB9C74695580EBE /* IceServantLocator macOS */, - 7BD0591E1B5ABBDFE982E6E8 /* IceServantLocatorAMD iOS */, - B4C54B94A72325BA4250EB2E /* IceServantLocatorAMD macOS */, - 7C4ECB5C2679ED962EFAEA71 /* IceServices iOS */, - 32B8209C4A20C3D8A8496A49 /* IceServices macOS */, - ED67C4392ADE53C242195C57 /* IceSlicingExceptions iOS */, - 7649B8B4D36C63D3D167ED11 /* IceSlicingExceptions macOS */, - 08063B79E151583B4BCA64E2 /* IceSlicingExceptionsAMD iOS */, - 82C53B88275C4981212133CC /* IceSlicingExceptionsAMD macOS */, - 568C96C03F49810104EE6CD1 /* IceSlicingObjects iOS */, - BCEAC60BF9D3DB0E6BB1DD33 /* IceSlicingObjects macOS */, - D2EB13A2B3406D37FA2754E9 /* IceSlicingObjectsAMD iOS */, - 45B627654A6C6E672B177B58 /* IceSlicingObjectsAMD macOS */, - 4CD1512C8E4830F6FAC5E6E4 /* IceSSLConfiguration iOS */, - 3C66C239BBA518B87D48C1C3 /* IceSSLConfiguration macOS */, - 086D7EFAFD5B99B06915E82A /* IceStorm iOS */, - D166D330DEC6674B8372A98E /* IceStorm macOS */, - DD3F4218F00B8F03628CFF85 /* IceStream iOS */, - DE8F7D3EE9F4909908CB3923 /* IceStream macOS */, - DE7C3CE12D76528ED6571BB0 /* IceTimeout iOS */, - 80D1931BE1B80501D33167DD /* IceTimeout macOS */, - 92DFD90832239D72108865B4 /* IceUdp iOS */, - 7B09AAAF71F5D5AB2F8C1B78 /* IceUdp macOS */, - 4F13DB1C06A1425528829C6C /* SliceEscape iOS */, - 44669E73C88B6F4F3038B679 /* SliceEscape macOS */, - 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */, - D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */, - 224A65D1A8B6FBED3FA62D9D /* TestDriver iOS */, - 0A512D4AD4749C7C7490FAC3 /* TestDriver macOS */, + AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */, + FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */, + 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */, + 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */, + AA856D3D0EBE73A655B10DCE /* Ice iOS */, + EE743BE7277805136A7EEB71 /* Ice macOS */, + 46452DCDFFD6A246079637CB /* IceAcm iOS */, + 45549440E1718C4D35E63237 /* IceAcm macOS */, + AEE1F674AD81A9327E42EDDB /* IceAdapterDeactivation iOS */, + C5982316F62D05CD651717E7 /* IceAdapterDeactivation macOS */, + 24A0E61D1931744BC729034A /* IceAdmin iOS */, + E1EEB80531F6CCE4CB628B62 /* IceAdmin macOS */, + 9A9DEB6418C9257648D6A235 /* IceAmi iOS */, + 0A757D8B307D80F7BD3C5017 /* IceAmi macOS */, + F1949C2140DCFA5E835C5C17 /* IceBinding iOS */, + 84AAA301C5D3AF97E6828B9A /* IceBinding macOS */, + 3889B46D2FBF6B61B7DA5A5A /* IceDefaultServant iOS */, + 2997C7A465709CD09CD4C4BB /* IceDefaultServant macOS */, + 8E4EE2567B3C187D2F9C1173 /* IceDefaultValue iOS */, + 627EF9C25191013A38BA3C83 /* IceDefaultValue macOS */, + 49D15054211B9CC6B08CB18E /* IceDiscovery C++11 iOS */, + 3AA88FF2CD4BC207F3E38A68 /* IceDiscovery C++11 macOS */, + D9AE09FB3585B148EE15E9D9 /* IceEnums iOS */, + BFD01B6CA65F9516862D1FA1 /* IceEnums macOS */, + 7EB54A3072775CD2177DC7A7 /* IceExceptions iOS */, + 5A26265E443FF04358AE528C /* IceExceptions macOS */, + 57D39C477D54466601C5A786 /* IceExceptionsAMD iOS */, + D6B732964F3D00D84F9428AC /* IceExceptionsAMD macOS */, + 8C1035C93AB58A55E8EB9B9D /* IceFacets iOS */, + 8F11329102906B0FE306EF9C /* IceFacets macOS */, + 2646D8A7E773E3BDE5BE8E29 /* IceGrid iOS */, + A250D484C77105742100E390 /* IceGrid macOS */, + BBA5FF013C8B19537743DE0C /* IceHold iOS */, + 41AF2CA6936313B5E6F391BD /* IceHold macOS */, + 4CDAAF1A166952EC0C4E0BF1 /* IceImpl iOS */, + C07B8E267CA90FCDBE4E7E7D /* IceImpl macOS */, + 2A0224A2EFBB3E87655C351C /* IceInfo iOS */, + 10E56726E39C8E4E56D51BC4 /* IceInfo macOS */, + C2F3B80C3A24BFA9444F31E1 /* IceInheritance iOS */, + FC49A3F19B353AC4051631B4 /* IceInheritance macOS */, + 2B82F333BA11DB5D8BECDBF6 /* IceInterceptor iOS */, + 60F33D27C2F25EAA1C58217D /* IceInterceptor macOS */, + 31D342F49CC37B0DFA959D8A /* IceInvoke iOS */, + A4F94E6B42A58EEF0623EC8F /* IceInvoke macOS */, + 199245355B4B5CD9FF6A6386 /* IceLocation iOS */, + 4434399DDA0D789BDAB8EDCF /* IceLocation macOS */, + 696D6136245EB191F3A59E1A /* IceLocatorDiscovery C++11 iOS */, + 14535688C6E2E4A839C04451 /* IceLocatorDiscovery C++11 macOS */, + E47FCF3BB733DC4EC57A0924 /* IceObjects iOS */, + B564F6A99559D774EF563A3F /* IceObjects macOS */, + B7EFE020C9D77334FB6C5B4B /* IceOperations iOS */, + 615480D42FAF508D7F8AA5BC /* IceOperations macOS */, + 9F3B1821E0C570BF87946D26 /* IceOperationsAMD iOS */, + 8D4D7F1ABB790FA722EC7917 /* IceOperationsAMD macOS */, + 34AC5913121CF6E0F793DEDD /* IceOptional iOS */, + D2A90EB733FA2B780783AADF /* IceOptional macOS */, + E6806D7DB7060BC3A0C7306D /* IceOptionalAMD iOS */, + 7C5D25F9DE7921A57B72E85F /* IceOptionalAMD macOS */, + A3B6CDB0CD7C0059D4D3CBF9 /* IceProperties iOS */, + 529314BF4173169E9CB2F36B /* IceProperties macOS */, + BEBD5165FA221E0C61A12DD9 /* IceProxy iOS */, + 915EFEBB1B2962C505C96286 /* IceProxy macOS */, + BCD219D62CE917ADBC7AFD22 /* IceProxyAMD iOS */, + 38C1EA904D5C3BCB045C88A2 /* IceProxyAMD macOS */, + 02BA85F98EB32966A7AA3C21 /* IceRetry iOS */, + E13AF536398A890833FFC655 /* IceRetry macOS */, + 3E69BE60A2C26A59EEE938DC /* IceScope iOS */, + 993C3F64323081AD7846C3D1 /* IceScope macOS */, + 08C942FD89E4D9E7FA113627 /* IceServantLocator iOS */, + 1F99406342A96A78168E74BB /* IceServantLocator macOS */, + D2E3C388100CC50AD3052CDB /* IceServantLocatorAMD iOS */, + 9B13B57D40995B5A58986BCF /* IceServantLocatorAMD macOS */, + DF67C7AEC35876C0CCF4A96A /* IceServices iOS */, + 140CB18515FA53ECB140F7CC /* IceServices macOS */, + 737F194EFAAE24FEE20C5FF6 /* IceSlicingExceptions iOS */, + 57285D8128490A28FD5E1EA9 /* IceSlicingExceptions macOS */, + 3CB27B168E65D6B824278AE1 /* IceSlicingExceptionsAMD iOS */, + D07E492BEFB243158D25D09C /* IceSlicingExceptionsAMD macOS */, + 99D043CF9A0E172FCFC4C4B0 /* IceSlicingObjects iOS */, + A1FCF6486037B74ACCD22503 /* IceSlicingObjects macOS */, + 983596DE8C0BFB636571955C /* IceSlicingObjectsAMD iOS */, + 2AA26A44152A667D249E2998 /* IceSlicingObjectsAMD macOS */, + 0EDA203583B355501DD47E73 /* IceSSLConfiguration iOS */, + C4633684AA9C8E2D8E2A3BF1 /* IceSSLConfiguration macOS */, + 16C02D2C934DC57FE079663F /* IceStorm iOS */, + B8D5C1F592E31ABE249CC078 /* IceStorm macOS */, + 1767B82F1961C76D47FF467B /* IceStream iOS */, + A02AEC1FCAEDD308F0CBDCC6 /* IceStream macOS */, + 29279E4ADC71CC6522E7C012 /* IceTimeout iOS */, + 9F95E6A433F94E974D32566F /* IceTimeout macOS */, + CC929AD29689B47CA62D417E /* IceUdp iOS */, + 1F284CA948D007302C982357 /* IceUdp macOS */, + 26D8717EB0F318653FB9C763 /* SliceEscape iOS */, + F4A16370E4157DCD4CF7F964 /* SliceEscape macOS */, + C428EA0E3133ABA37187BE30 /* TestCommon iOS */, + A83EF428E73401A533092DB4 /* TestCommon macOS */, + 7F56B76EDE89B9AC6AF088FF /* TestDriver iOS */, + 3892B1FD3640020576B40CDA /* TestDriver macOS */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 046A1EFBBEA27B2996D4FE18 /* Resources */ = { + 00249416E2CBA5788010C2D1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 04D722540C7568F760C18BD6 /* Resources */ = { + 04386FC27D0D00B9F679688A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 06F0772BDA7723CA21DCF0BA /* Resources */ = { + 0705EAB86A24010E8A8BB2E0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 39C47C046EDA14901A1A61AB /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0AFA071613CDCB0CAFB8ACB0 /* Resources */ = { + 0B707B677822B7E66B2CE8F1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0C4BBA7FB603E0E94999D1AE /* Resources */ = { + 0CCFF48ADFA73FF91C03C2AE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0C540CD21E9442E1A4A480FF /* Resources */ = { + 123F3984EE81810B5DFB8B6B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 11DE8E3AFC096D98FAE6C731 /* Resources */ = { + 1273645862F6D09B04F6218B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 13CC967E3E466CFA2F68D8F7 /* Resources */ = { + 14A18AC2A5DAEEEB9691D1E2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 2C997348E994142B458506A3 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 18BCA3C34842B488FF8C467A /* Resources */ = { + 15D54B7AE2BF490CE5C78C8D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1C7AE443B82A3F9D218FF429 /* Resources */ = { + 176FF9306341735D2EE9CC58 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1DC48819EA533916598D2E42 /* Resources */ = { + 1A7AA67BDDBF17637BB03F25 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1F945391D69F33A9E57CC7AE /* Resources */ = { + 1B7B83ADFA6C6D32F3080F6C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 26AFEAD1874E9C55EFB3D8E1 /* Resources */ = { + 1C6E9B0B4E17D018705B9C25 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 1AD393C6742923EE9FC92894 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 29975D1740F039C626922310 /* Resources */ = { + 1F4534D9B186D114D80E1A4D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2B6D42C2F6ECF0E16FFD13A1 /* Resources */ = { + 21037D8232C39B7652991EDF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3222B0FC6C61C494E02E614D /* Resources */ = { + 2536391E9CEBD069A43C9DCB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3585C5CF3DD731FF6E30813D /* Resources */ = { + 25B07D3C764D35EFC9ED3D9C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 360F50F3916E9E3F27D94B60 /* Resources */ = { + 27DDD91423E85D6376113FC2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3FED894319B3D97A9FE8969D /* Resources */ = { + 29CA8F0C27AFBB27B927F33D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 40269C15DD5D60F285915626 /* Resources */ = { + 2ACCCA73A818191FE00F24F0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - A1BAF3C47BF99CC8438D4CD1 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4575FE0BC6D54D36F19D7C32 /* Resources */ = { + 2B77A6BE5427B9661BEBA0DB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4996ABC3740EA5B4E3ECFCD5 /* Resources */ = { + 2FDF2B1CF306F17449F96305 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4B2195D05EA13E32F7AE7CE9 /* Resources */ = { + 31C2FA05CB826509E9A74215 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4C3BA84D0F0F493B0D8D0686 /* Resources */ = { + 32D1CA616E3B20B222CE7C95 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4D2E27DB3EA5207711F8614D /* Resources */ = { + 33770904A4C0961541E60453 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4EF3FEB29DCD03F143853A03 /* Resources */ = { + 36BDF807C86FE8D1CACF20C3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 51BD47AFB0F5EA300C2832E8 /* Resources */ = { + 379BC47417A4E9AF9CC58A67 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5413918C6E0519ED17CACF4B /* Resources */ = { + 3D6046CAF77BBD978CCC84FE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 54D05D33A232F0FB772E8DBA /* Resources */ = { + 3DBF72A660011E72DE28D7A2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5C3341388333CD70DE2C03C5 /* Resources */ = { + 3E9E75D6C36A2F07BC6E7AE7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5D02B29E855CA143354373EA /* Resources */ = { + 44FAD6E0EDAB8E4A1AEE1BF4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 602A87F27A8F4F8C32D06E9D /* Resources */ = { + 46F2D21F2C7973E5E24B0A4F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 61FBB2DAD43F55A46E6F63E8 /* Resources */ = { + 5021DFECF7C5DA399355C0B8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 64A256B848383F94800EBA0D /* Resources */ = { + 58103CB80C8A5C1A82DB6B60 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 66E3CD4A5C361E88EDE9D7BE /* Resources */ = { + 5A89118BBC68C60FA703DA20 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 681BA32B0A7BB400CB929FAF /* Resources */ = { + 5DF156CE3B2ABCC95441BD48 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6893EFB4D00C8F27564A174C /* Resources */ = { + 601E2EE29059F2F14E59D49F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6B28328D014A1158D8B61503 /* Resources */ = { + 645817E1D539571875E0D08C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6D8261EFF49DCF557D226AEF /* Resources */ = { + 672274C85643D82182351BF0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6FCC36506110E88C9381D32E /* Resources */ = { + 69FCFDD29309F0532D39A5B8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 713701E51289C5BFF63C9C56 /* Resources */ = { + 738EE344E32D27DDD8864DCD /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 725B26BCA7ECAC123E816C71 /* Resources */ = { + 73C018973232EDBE1FFD8B57 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 73312FC0E54C54320A5F7CFB /* Resources */ = { + 766457EA5472CC3DF57CBF9A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 73AA1E9492C685AF941C8182 /* Resources */ = { + 79CC6A7CE74376C9DA437F49 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 939D9E30245AC2CDAB1D6803 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 766436C0850D45E049F4BCAA /* Resources */ = { + 7CE86B1B003D237CB5820E37 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7DB8A9A8207D90817E5CCABC /* Resources */ = { + 82ACCDBDF2E388C1E5BB417F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7DFA74BD5376C0FC3E116EAE /* Resources */ = { + 89EF7AC17461C4496796E470 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7F58FD2056AE8441930B01D6 /* Resources */ = { + 8A0DF499987AFF2D115AEDB4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 81BD0E9F6E7BDA7AD85D038B /* Resources */ = { + 8A838501F68B8A18D5BAAD6F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 84AA8D01E0CCE7EF92F6B13B /* Resources */ = { + 8ADDBAF102282F7A12388221 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 85CEFAB6611C94479DBCF5CA /* Resources */ = { + 8FCBA1D78694AF810B4FB355 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8830916F0B9E04B4ECF78DB5 /* Resources */ = { + 90133F3A21FECA0B03CCFEEB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8B6CFF3A4FE820D6D185F306 /* Resources */ = { + 91EF5AFB0ADDEAC41F4BB970 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 918C367420551112E63DF3BF /* Resources */ = { + 964448A460E03F71B1466A29 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 93217E56202C0645C308F7D9 /* Resources */ = { + 9805238AC059C1F2FF2B8E40 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 935627C9FAD3A217949C9CD4 /* Resources */ = { + 9949AEEBED679581FE7A8844 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 95F6F7503C7EC6EDE758DC14 /* Resources */ = { + 999DDBCF1BA818840457744A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9788602434A89360EA198EDF /* Resources */ = { + 99D63790BA8EFD5298169ADE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 97FCB5631C1A70FF35B56342 /* Resources */ = { + 9A06AC974913591F40021183 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 99425B07DFD4B5355EAD4456 /* Resources */ = { + 9A31D72BCAFB8223D5072024 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9B4AD62E33CE21EF74E9A11F /* Resources */ = { + 9EAB34FC0DC358B87C0550B7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9B8C89FE8B67D411CFC41AC9 /* Resources */ = { + A0BE3341720002992247AA22 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9DB6664F3B09B28CC1EB1372 /* Resources */ = { + A27900851590FFDE252185AB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9F2219FF729B5FE64200F58E /* Resources */ = { + A5050AFBE120514A0ADC9678 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A18DBCDA92B8B689D424C417 /* Resources */ = { + A8D0D05355E911E75BA0CA65 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A90906DA111BA5A6DBCFECDE /* Resources */ = { + AAB490B131E294BD5A649C94 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AA1B909021714E00B440AD52 /* Resources */ = { + AF6BB1F4B05AD6FF6C33B5C5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - ABEF760012041C70AC8B5376 /* Resources */ = { + B43309445EDD3C07B4C72D41 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AF1018F3DFDD7F0EE6CE1CA3 /* Resources */ = { + B6E4731B1043F209970479EE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AF3BB72482297F0E1B6BC422 /* Resources */ = { + B816B0D1F00E0B08AA31D24F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B10D055A09A82B6E5BC9DEF4 /* Resources */ = { + B9EEF1A7005854C201330A1B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B60097319C90BC1A9ED6ADE3 /* Resources */ = { + BFA33ED339F68ED63E1D77F6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B9C4494B192EF983299B6C7F /* Resources */ = { + C20BB80DF8D3029A668ABDCD /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BAA4CEF76B1734DBEA8A30BB /* Resources */ = { + C5D9C8B89F7739DCB786002A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BBB6600CFFD8BC939400A241 /* Resources */ = { + CA40D90191CACFAE032E2F17 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BCD9FC26DEEA75170E10F5D5 /* Resources */ = { + CAF6D72C893C7F92B6DAAA18 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BCF0CB79501EBE7A8DB9BD7A /* Resources */ = { + CCF692C86BEC1C923DE75E53 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C84D4C652D2DC0B0666706CF /* Resources */ = { + CDE3F0985B68C0FC552B3BC2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C85925BD20AFC044CC666C17 /* Resources */ = { + CFB4DD62C76CB41C892AE89E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CA5490605351AF966B2614CC /* Resources */ = { + D0DD61441324D88766B58467 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D15A327509A465D555D2A85A /* Resources */ = { + D279A9FD358C10D9C65B255D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5E8C6BFCB387FBB78736292C /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D2E824B85F3932C40C468C34 /* Resources */ = { + D4360D6AABCA3914BB60B25E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D3024D65B43BE097AC35B277 /* Resources */ = { + D4671023F96ACB467D0F62CC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D5A10FB0AA06C1C3795E0A33 /* Resources */ = { + DA4AA28AE68729EB5BA89C76 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DC2303946D501B2E77C3BB57 /* Resources */ = { + DC95C2971E32D430B52E2A55 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DF0BFE93146FE33B3FFDCBAF /* Resources */ = { + DFC737F81493E7E2EC57A008 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DF75B44EB38A432C7758EC45 /* Resources */ = { + E1C49984FA480B9BCF65FA6B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E059A4C28BA4B01EA131632E /* Resources */ = { + E8EDBAF10EC32B268285C51B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E22AFD2ABFAB3FD5CD5B8185 /* Resources */ = { + EDFF44A5412FA135B91D14CA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - ED8CAF21F5852AE4FDC002DC /* Resources */ = { + F159F9E36E629E9BDB80C93E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EDBBAF9A26563417C334E1E0 /* Resources */ = { + F387CA7EDE8E22EACC68078B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F2C71A3BD9FE8A5FABF3FFED /* Resources */ = { + F976B27FF94759CC796E9973 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -11165,3100 +11161,3097 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 039C348E43D424045B8585C3 /* Sources */ = { + 0125219F8494BC7CEBCBEAE8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A527D506656BD2B71FE0732E /* Client.swift in Sources */, + 4151F438971FE969F8F0C433 /* AllTests.swift in Sources */, + C9343BDFEF3CE4648B07A7A2 /* Client.swift in Sources */, + E26864CCB63877CE01685511 /* Collocated.swift in Sources */, + D0A4E10E3BDFE93277F3A0A5 /* Server.swift in Sources */, + 20570CB43385ABED61FBB7B7 /* Test.ice in Sources */, + FFE2C2D210CA1BED6B7A3406 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0512149C8627A81D83BF4C04 /* Sources */ = { + 0507ED7DC9A273C797301292 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 77B008C744A3F4471D354722 /* IceDiscovery.ice in Sources */, - 9A7BE1BDE33DB1B3D3D87A0F /* LocatorI.cpp in Sources */, - 5B6158D963B0531BCF4248B8 /* LookupI.cpp in Sources */, - 9EE6B27F64AA5EF8C112BAEA /* PluginI.cpp in Sources */, + 11407C5FD3C78516E34D4AD6 /* AllTests.swift in Sources */, + CB11222FA168D7398A6C98F4 /* Client.swift in Sources */, + 93509A483875F3475B80D8B4 /* Server.swift in Sources */, + 240E00A1C8996C0F19258DCD /* Test.ice in Sources */, + 1600BD44041FED6A72A7C982 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0A7D7E38BBE672E18539B0C5 /* Sources */ = { + 0D0260BCC220C52C5CA4FC3C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7B19682B6AD1DCF3991F8517 /* BlobjectFacade.mm in Sources */, - B87F3F0E6804197D142CBCB0 /* Communicator.mm in Sources */, - CE1F9B9B68787DA2E410529B /* Connection.mm in Sources */, - 6338CBA516209C121FDA650B /* Convert.mm in Sources */, - 9C4527758666B632E42A9C56 /* Endpoint.mm in Sources */, - C2ECFD8448A468C9658EAA0F /* Exception.mm in Sources */, - 6EF44DFBDD26786A4A9A2555 /* IceUtil.mm in Sources */, - D85F5132F2686ED0916EAD09 /* ImplicitContext.mm in Sources */, - ED4CD06EC58B5F8A7726AB16 /* LocalObject.mm in Sources */, - 93E8AF7113201116A41D42C3 /* Logger.mm in Sources */, - 23265AE6C464AB9C02F1A2A4 /* ObjectAdapter.mm in Sources */, - 62E212EBB89B1C54D1388CA0 /* ObjectPrx.mm in Sources */, - D91612087098F2D08B7D4F8B /* Process.mm in Sources */, - 18603BC1B280744F2896CFBB /* Properties.mm in Sources */, - D0EA2E874974C7B2F188258D /* PropertiesAdmin.mm in Sources */, - 2D80A653CC1D004EEDE776CF /* TraceUtil.mm in Sources */, - 19DE94478C60EBB2E4E78EE8 /* UnsupportedAdminFacet.mm in Sources */, + 25E16A861E6C8F0CB42B3AE1 /* AllTests.swift in Sources */, + CEAB89B465FF09233302CEC7 /* Client.swift in Sources */, + EDE8359ED25362D39ABC2006 /* Collocated.swift in Sources */, + 76750A7B6C60C73F1E8B872A /* Server.swift in Sources */, + 866CE6C7CD700419EAC10073 /* Test.ice in Sources */, + E197FD3BB8AE4C794D633A66 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0A9A250939D7BE45351C33DF /* Sources */ = { + 0E225CB8906616C9B17D9D57 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4BB05660D38E32DE26B7BA65 /* AllTests.swift in Sources */, - 205F07C6E85A211443AEF973 /* Client.swift in Sources */, - 961C1FCDE87115C18CFF487C /* ClientPrivate.ice in Sources */, - 0E68B2327A185B32E5587010 /* Server.swift in Sources */, - 6E689AEBA2AD0D68977FD8F4 /* ServerPrivate.ice in Sources */, - C9BB2C427A631BB249F59CEE /* Test.ice in Sources */, - E878DF536ECCDAB08A6695E7 /* TestI.swift in Sources */, + 48FA4EFF3774FD3F02C75194 /* ServerAMD.swift in Sources */, + 9E1AF2B945E75AB67F27DB2C /* TestAMD.ice in Sources */, + 5E675CD077AFC9339DCE10B6 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0D39274DE7A2C44AD60A7F14 /* Sources */ = { + 0FD557A1D14D0A865ED5A5FD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A8AD9DF44BC94C8C2B9A23BB /* AllTests.swift in Sources */, - 93679A1204183B62EDBCC6B4 /* Client.swift in Sources */, - BC943670354AE7D6338D01A8 /* Test.ice in Sources */, + CF222468EC9ED1E375019BD8 /* AllTests.swift in Sources */, + BB69A7C53192E2A2EA5C024B /* Client.swift in Sources */, + 14617628299F2B63049AB633 /* Server.swift in Sources */, + 04B482E96FA087B4AE135F4A /* Test.ice in Sources */, + D7A2D9874C1DF3556BC94CE0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0FE1781453D118B21A0C2E91 /* Sources */ = { + 134BF1E77CFC07C466D60C07 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0BCE3CC8D99535C4C9582FA7 /* AllTests.swift in Sources */, - 497ADA39CC778E17759C3167 /* Client.swift in Sources */, - 628F48D4E6BFC373A16A108C /* ClientPrivate.ice in Sources */, - 6E9F621C9F1273BE1AAD4DC7 /* Server.swift in Sources */, - 62AD30AA53D68BC91B6B5849 /* ServerPrivate.ice in Sources */, - 996A1510E80EA705ECAF5418 /* Test.ice in Sources */, - 7935C60B0B3EAE2FC93D1D59 /* TestI.swift in Sources */, + 78A521F590AC2F4DC82C659D /* Metrics.ice in Sources */, + 3490F52B01112CFB862F46B5 /* PermissionsVerifier.ice in Sources */, + 642D60341FB680214188CD66 /* Router.ice in Sources */, + 1354B797ACF72C3D2E075BCD /* Session.ice in Sources */, + 5797B69F5F48DD3FEEF496E0 /* SSLInfo.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 10A73AB36EC16092DAA544D9 /* Sources */ = { + 13973FD1142BC0EEA74F5791 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 745BBD3251D6F36F3C73FCB2 /* AllTests.swift in Sources */, - 46E59F2881A6A2D69DDB5890 /* Client.swift in Sources */, - BD18DB18357587C956797FA9 /* Collocated.swift in Sources */, - D1CB05D680B7F86C29D438B3 /* Server.swift in Sources */, - CF5A468179D2BAFC7E3AD8BA /* Test.ice in Sources */, - A76DFEFC41A137F8D721538A /* TestI.swift in Sources */, + DB65655BB695669B985C0DC9 /* Client.swift in Sources */, + 405522C1C326EE3E5C90F939 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 117ECB46AFC1115A572AB2F3 /* Sources */ = { + 173FACE699124A87E04C914B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 733F5D6CCC29733F17CC4C75 /* ServantLocatorI.swift in Sources */, - DE0128FE53D8A1097061B534 /* ServerAMD.swift in Sources */, - 961AB23D782BDDBE36841BF4 /* TestAMD.ice in Sources */, - 9FFCEDCC2B8FB7EE98BAF9F1 /* TestAMDI.swift in Sources */, + F003F36413ECB9AAC2EED254 /* Clash.ice in Sources */, + 0527885881E6046DA3B84E8B /* Client.swift in Sources */, + 8A8DA71DA7A74888C82992BE /* Key.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 11EEF36BD08AA248E8542312 /* Sources */ = { + 18C14F16D15E4A694293DE19 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CFCFE754D33DBDB7B8D98D3E /* AllTests.swift in Sources */, - 39E8DB4FDA736E45DDB999C0 /* Client.swift in Sources */, - BEBAA999B81C489163598205 /* Server.swift in Sources */, - 5D25642BBB7353961CAB1508 /* Test.ice in Sources */, - 791B8558F906D965D910AACD /* TestI.swift in Sources */, + 0D8C7F6407EF1A4AEBDB5017 /* AllTests.swift in Sources */, + 5A236B3180D4EA303E7A8C99 /* Client.swift in Sources */, + E61A9E65292B18FA7BF6C132 /* Server.swift in Sources */, + 9B0C371E96BFCAD9F90E62FD /* Test.ice in Sources */, + 2E616DAACF31464D972DBFB3 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 153CF5944F5CBB5C377261CB /* Sources */ = { + 19E8C12591841D5245D5DC13 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 831804C89C9481C2723E1196 /* AllTests.swift in Sources */, - 8F40670D876C261D0DA5DCB0 /* Client.swift in Sources */, - 81D13B4C44E5FA860A2C9CFD /* Server.swift in Sources */, - 1EA8F39C73599853ADAA281E /* Test.ice in Sources */, - 4C14C9BFC25586C41A4A76A9 /* TestI.swift in Sources */, + A19C0D1E53AE6AFE3D2BCCBA /* IceLocatorDiscovery.ice in Sources */, + 38A4DE3A5617EB42E8C105CE /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 16E6E2C0A27C806CAFFF8253 /* Sources */ = { + 1A4ACB27A85EFF473C257854 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B4DCF8CDE62435400E8FBE2D /* AllTests.swift in Sources */, - B3AE93ABEF60EEC61969A25A /* Client.swift in Sources */, - 0C9A4A5F0ADF258FE6DB7103 /* Server.swift in Sources */, - 7E67FDD847BC7CAAF5F0D384 /* Test.ice in Sources */, - B2E3898355F27A73B5DDFB63 /* TestI.swift in Sources */, + 455BCA83C68354B1B3872661 /* AllTests.swift in Sources */, + 5C69C585CF0BC6839725AF9C /* Client.swift in Sources */, + 6C09D0635EB25EE79FE9FE0A /* Collocated.swift in Sources */, + 99FD9C8435879B20BD0D99BE /* Server.swift in Sources */, + 3B9A81FC1B21C292EA35347B /* Test.ice in Sources */, + 5B99731404AE73A26DFD529A /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1A3F8E5A8925E89245153CEF /* Sources */ = { + 1B076AF33AFF242A2B16A9C1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 38C3F80712BE1F0EE774A8AF /* AllTests.swift in Sources */, - 9B380593D8E18ACBEF5AEE2B /* Client.swift in Sources */, - 7F0ED9DBB17293E639B8FB00 /* Server.swift in Sources */, - A40AFFC90C4B026AA758281E /* Test.ice in Sources */, - 5F4EC81F155C63AE71DA4EBC /* TestI.swift in Sources */, + A6BBA41F0AD88A20589F5CA4 /* ServerAMD.swift in Sources */, + EC5656E3040B84EA47EF916F /* TestAMD.ice in Sources */, + 682422A3B82DB1C4AEF9E1D4 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1F90CA3B0F633C9D8D546A84 /* Sources */ = { + 1BC366E59F8EFBEF11B33FD3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 600BA0D84010746DD0E9EC2D /* AllTests.swift in Sources */, - 54A008C39AAB15462CE329D4 /* Client.swift in Sources */, - DBA9B6EF8EA918FB4F1B27B1 /* Collocated.swift in Sources */, - 1A87FAB1936D27A84E02A5A1 /* Server.swift in Sources */, - 2FA75B93154124D1CC943A2A /* Test.ice in Sources */, - 46C479DB4AD5ADEA74CC2620 /* TestI.swift in Sources */, + DD4688ED369D5398F27F3A93 /* TestCommon.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1FE3BCBFBD382776A51C1AC0 /* Sources */ = { + 218707E1D04EA9FE5757B1BB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CEFDC06ED34D07354537D918 /* BlobjectFacade.mm in Sources */, - 0D90553BA6A9D105463CEAB5 /* Communicator.mm in Sources */, - FF5A915B44E48BB874150A95 /* Connection.mm in Sources */, - 83084EE5A541E1C5C37714F7 /* Convert.mm in Sources */, - EE19AE64D42D2AE3189E6CFB /* Endpoint.mm in Sources */, - 3E4F502EDDEA471D4D29AFC4 /* Exception.mm in Sources */, - C193E5163ACD506CCB92ED55 /* IceUtil.mm in Sources */, - FA8DF6DD6DCE882B44F6847D /* ImplicitContext.mm in Sources */, - E3E0F822AD3DEA569EFAF985 /* LocalObject.mm in Sources */, - 9905262444F730559DF66B2F /* Logger.mm in Sources */, - 679FD085476C3BDD61F8EC33 /* ObjectAdapter.mm in Sources */, - 985F6DA719A9E600C113541F /* ObjectPrx.mm in Sources */, - 2A82FC01E6E4D5B6EE1E5909 /* Process.mm in Sources */, - F497C74BFEE03701E45AADD5 /* Properties.mm in Sources */, - FBCC644A2D213B5EA70779A5 /* PropertiesAdmin.mm in Sources */, - F6A96BE6FCC387A372418711 /* TraceUtil.mm in Sources */, - B3C2F72C4257BEE92B88777E /* UnsupportedAdminFacet.mm in Sources */, + 64C4E0EDDB53BCE4FB23E310 /* ServerAMD.swift in Sources */, + E6F0BE4CB1ABA83CE61C9945 /* ServerPrivateAMD.ice in Sources */, + E4CC75662A01D162EE144698 /* TestAMD.ice in Sources */, + 19FC06374CCF7EE38506B482 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 222DD1AE7415C31D17A3D169 /* Sources */ = { + 226D9040A51EC7958E04A69B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 58DC5CBB2737AFE30034262B /* AllTests.swift in Sources */, - CAB5AA630D46A6730CA7F480 /* Client.swift in Sources */, - 6D9EA906EF8F5A3DA536CDF8 /* Server.swift in Sources */, - 2528CE6CAE863372ECA1770E /* Test.ice in Sources */, - F6EBAC4CEC1F3082A7EC8AAF /* TestI.swift in Sources */, + 4AFE423C34F2A29E86A30044 /* BlobjectFacade.mm in Sources */, + 1E60151903B65FF346AC0871 /* Communicator.mm in Sources */, + 4A83A2F03CDF0C5B50E4AC81 /* Connection.mm in Sources */, + CABFF27F6F2A32F14735E3F0 /* Convert.mm in Sources */, + 46C3C65C8353EB4A7D30E842 /* Endpoint.mm in Sources */, + 13092BA50F9D5590B1231153 /* Exception.mm in Sources */, + 285EB4C6216925532071D299 /* IceUtil.mm in Sources */, + BF349A28750D94AB60AE628B /* ImplicitContext.mm in Sources */, + 4EA1D22E71788FD1588BFFB1 /* LocalObject.mm in Sources */, + AC9663224C75CE679D17B297 /* Logger.mm in Sources */, + 2187C03981B4CBDA59FB1EF4 /* ObjectAdapter.mm in Sources */, + 08A32CC42DD3A81A65EC6618 /* ObjectPrx.mm in Sources */, + CA7BA166EFFBB8A99FC8C1E3 /* Process.mm in Sources */, + AF6C82C2A12FEA3F0A6C6085 /* Properties.mm in Sources */, + FDC26D84EB2C97ABE817BA32 /* PropertiesAdmin.mm in Sources */, + 0FC9F45B490902148077FB5A /* TraceUtil.mm in Sources */, + 135BB0D232D1BA53D0AE06AC /* UnsupportedAdminFacet.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2390D8B4F7C3CBB00255E8C6 /* Sources */ = { + 22D72A154B099999DA6C2B6B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ED6215E0EC3FCF78DD87F908 /* Acceptor.cpp in Sources */, - 9FF538B4B53D6DCD3F98F01D /* AcceptorI.cpp in Sources */, - 98F5ABA80021BD988E6B7D09 /* ACM.cpp in Sources */, - 89B0F53E602380C5B5A5CF12 /* ArgVector.cpp in Sources */, - CBF35B53951DC590502423E4 /* Base64.cpp in Sources */, - 773BAA6EE58A449019A00228 /* BatchRequestQueue.cpp in Sources */, - 1E7404A4A55206C6D805C1F8 /* Buffer.cpp in Sources */, - E90D8AE30AF1898C9B57C594 /* BuiltinSequences.ice in Sources */, - 38642D12B1980A9337EC6ADB /* CertificateI.cpp in Sources */, - A2F760364919EF6F4E348913 /* CollocatedRequestHandler.cpp in Sources */, - 36BDE89CDD0345FC238CA633 /* Communicator.cpp in Sources */, - 9D723CF9BC2631B6EB097A8E /* CommunicatorF.cpp in Sources */, - 8ED4CAFC07A170859F5D9778 /* CommunicatorI.cpp in Sources */, - C4472E083A6F1612CC707204 /* Cond.cpp in Sources */, - 51F52188F9EFDDECF6B3DCDB /* Connection.cpp in Sources */, - C36CDFF0E1D702EF6CF87184 /* ConnectionF.cpp in Sources */, - 5FBF441122219C4FD390FDC2 /* ConnectionFactory.cpp in Sources */, - D7EA693772F3EA33C0FF8365 /* ConnectionI.cpp in Sources */, - 9D848053113889B88C70553A /* ConnectionInfo.cpp in Sources */, - 72AE996A1D27983D643EB5B2 /* ConnectionInfo.cpp in Sources */, - DB406787797C552E2B65B82E /* ConnectionInfoF.cpp in Sources */, - 1AA80E303B50384C19D362B9 /* ConnectionRequestHandler.cpp in Sources */, - 0FAC22D8A2303AA3B7C8CAC7 /* Connector.cpp in Sources */, - 6216950B6FB989931E5A9E3C /* Connector.mm in Sources */, - FBC41EA124D5195CA922F817 /* ConnectorI.cpp in Sources */, - FA282693400701B12F440F5B /* ConnectRequestHandler.cpp in Sources */, - 5B5A2421B5B621AC96402316 /* ConsoleUtil.cpp in Sources */, - 4D804BF060A6B22FD4FBCEA5 /* Context.ice in Sources */, - 345FD814DF36F04D6325EDA8 /* CountDownLatch.cpp in Sources */, - CE723FB6C45113E43A4396D0 /* CtrlCHandler.cpp in Sources */, - D397F74BCFC93ABF1778F5B7 /* Current.cpp in Sources */, - 695D928CF1FAC9C00C744D09 /* DefaultsAndOverrides.cpp in Sources */, - 9490EB181944859AD2A05CFF /* DispatchInterceptor.cpp in Sources */, - E39E4C33DC14235E6F04F9DB /* DynamicLibrary.cpp in Sources */, - A8EFFCB99179BEC32F927CEA /* Endpoint.cpp in Sources */, - C94B51A0B305CF9201D7D627 /* EndpointF.cpp in Sources */, - C86337CAB9F726ACDE94B191 /* EndpointFactory.cpp in Sources */, - 954B21BE2403593B19A532CF /* EndpointFactoryManager.cpp in Sources */, - 466397AACC7A020ABC9BCA16 /* EndpointI.cpp in Sources */, - CD7FAAC7D9ECE2CE2DA8C383 /* EndpointI.cpp in Sources */, - F478062F13C3E608091B5657 /* EndpointI.mm in Sources */, - 7981DF68F72D63D1139A710C /* EndpointInfo.cpp in Sources */, - 71DFE91EA67F80324548EEDE /* EndpointInfo.cpp in Sources */, - 25A816F4DDF27AC2B1EE4D01 /* EndpointTypes.ice in Sources */, - 81A12799AFEAFBA7C1E76DD1 /* EventHandler.cpp in Sources */, - 529DF03E8414D04402E58BC2 /* Exception.cpp in Sources */, - 4B9EC8CDA141BE253929C740 /* FacetMap.cpp in Sources */, - 7D365680A99C915C14C63E50 /* FactoryTable.cpp in Sources */, - C48F59AC2E24C0C9A48240A1 /* FactoryTableInit.cpp in Sources */, - E45C0D8AF45E27EA45E644A9 /* FileUtil.cpp in Sources */, - 8FCA1EBD21615208D8554639 /* HttpParser.cpp in Sources */, - E8FAC5FFA34078A85E517E81 /* IconvStringConverter.cpp in Sources */, - CF6A492243557E571E4A9EA3 /* Identity.ice in Sources */, - 018EB4A1B6BF6D652598E1D6 /* ImplicitContext.cpp in Sources */, - EB7519B96580DCDA3ED1128F /* ImplicitContextF.cpp in Sources */, - AD5C040B37B1962127D419C2 /* ImplicitContextI.cpp in Sources */, - 3A963169A973AF0A4436AB9C /* Incoming.cpp in Sources */, - 58B952769390A71EBDD0C341 /* IncomingAsync.cpp in Sources */, - 277D1F814E8E4865631B9E30 /* Initialize.cpp in Sources */, - 682DE9532CA5DDB619A48621 /* InputStream.cpp in Sources */, - 1FC0C15FA96D74F245BEF24D /* InputUtil.cpp in Sources */, - A670A7FD8910B66230DA1E0A /* Instance.cpp in Sources */, - E128DF89F8C666AAE7AAB7DD /* Instance.cpp in Sources */, - 0F660CE4DF60FB58449AC31B /* Instrumentation.cpp in Sources */, - 14038ED636E57D2748DA4A02 /* InstrumentationF.cpp in Sources */, - 6661B71F344661C555F85944 /* InstrumentationI.cpp in Sources */, - 75B96EBB6F3DDE2B7C0DBCC3 /* IPEndpointI.cpp in Sources */, - 3629347B13EBCCD4A13CF575 /* LocalException.cpp in Sources */, - B768D67A94A2CB09D10E784B /* LocalObject.cpp in Sources */, - 64143455BDE06346EAD7BCEB /* Locator.ice in Sources */, - 5637DBCB8E014C731F9EF74B /* LocatorF.ice in Sources */, - 3B48831B4EC9882F4576496A /* LocatorInfo.cpp in Sources */, - F27490E45AD8866AD86A58BC /* Logger.cpp in Sources */, - 4702CB2B311E419A1EFC20D9 /* LoggerAdminI.cpp in Sources */, - 41765839EA0B16A64D39C7C8 /* LoggerF.cpp in Sources */, - 19100EBCCE58F6899A17B35F /* LoggerI.cpp in Sources */, - FE30BA65979A81596022A305 /* LoggerUtil.cpp in Sources */, - CAAEDA2C24A16B43E15B7191 /* Metrics.ice in Sources */, - AC737CC3A09ABBFF39ACE432 /* MetricsAdminI.cpp in Sources */, - C3FAB3D9162FD66A78705FBE /* MetricsObserverI.cpp in Sources */, - 6A722D0F8437802A9FF5F1A0 /* MutexProtocol.cpp in Sources */, - 8444B6C4594C0AB372C9DDF9 /* Network.cpp in Sources */, - 475EEDB145A012759EE3CBE4 /* NetworkProxy.cpp in Sources */, - DE35E7B14713463089E898E3 /* Notifications.mm in Sources */, - A4A5227CFA6260C743EB789A /* Object.cpp in Sources */, - FFA50E6FE4E725B70A1E6C4A /* ObjectAdapter.cpp in Sources */, - B8E85F00C4E82AAB4D2708D8 /* ObjectAdapterF.cpp in Sources */, - 54B16F863472BFF96BE498F2 /* ObjectAdapterFactory.cpp in Sources */, - 45CC75F6F1065093293B9B6D /* ObjectAdapterI.cpp in Sources */, - 1ABAA41735F514CDF2E9CB23 /* ObserverHelper.cpp in Sources */, - 6C999EA122D1E21F123720C0 /* OpaqueEndpointI.cpp in Sources */, - B8AE9DE0804D4116F935391F /* OperationMode.ice in Sources */, - 35D051C1D7E38EF301891EA4 /* Options.cpp in Sources */, - EE4A7AEB49375C176B5BC8ED /* OSLogLoggerI.cpp in Sources */, - BC5E2E01798607C917907EA6 /* OutgoingAsync.cpp in Sources */, - 2EF06FC9808A237E520EEA73 /* OutputStream.cpp in Sources */, - 401C13E0A0F96C4B357D1CE2 /* OutputUtil.cpp in Sources */, - C67610A065799574475FB801 /* Plugin.cpp in Sources */, - 84C48EE0E81ACDF73715C222 /* PluginF.cpp in Sources */, - 902238FD54DB50F05B7849A6 /* PluginI.cpp in Sources */, - 07F3C37351C3D28E85EE8965 /* PluginManagerI.cpp in Sources */, - B826A690BA30120F9CC1AD9D /* Process.ice in Sources */, - 43DE2F1720E41094A482AA8B /* Properties.cpp in Sources */, - 0E66EC4B6247B9AF075574B4 /* PropertiesAdmin.ice in Sources */, - 50014351D7194C3667906706 /* PropertiesAdminI.cpp in Sources */, - 52EEEABFF9C12A91AAAEA23F /* PropertiesF.cpp in Sources */, - 902EF59BB283679E24C2031D /* PropertiesI.cpp in Sources */, - E9E112C862960A4FDF21F884 /* PropertyDict.ice in Sources */, - 5EA0F37DD629EC567B15129F /* PropertyNames.cpp in Sources */, - 56819BB290D5E4675961563B /* Protocol.cpp in Sources */, - 0142C9E126984A7A22BD2AE0 /* ProtocolInstance.cpp in Sources */, - 9A9ADC3E0E60EC1D3EE85F49 /* ProtocolPluginFacade.cpp in Sources */, - D071F9CBEFD97BBF0D30F4FF /* Proxy.cpp in Sources */, - 4FACC8197FC73AB2D4EB311A /* ProxyFactory.cpp in Sources */, - E919289D25035993E1BFB072 /* Random.cpp in Sources */, - 63D16072AED3AE147381CE71 /* RecMutex.cpp in Sources */, - 13AAD891602437048C981D10 /* Reference.cpp in Sources */, - 91045A0691CA371FD7ECC9CD /* ReferenceFactory.cpp in Sources */, - 0B7454320884131C24486C4F /* RegisterPluginsInit.cpp in Sources */, - E00001502C2B6407B2382144 /* RemoteLogger.ice in Sources */, - D31ECCBE357E0E4942051DB5 /* RequestHandler.cpp in Sources */, - 1DF60CE425384D3C03BFFF51 /* RequestHandlerFactory.cpp in Sources */, - BB2B4762F3CFE8A596B49D86 /* RetryQueue.cpp in Sources */, - C02F06752A1E86F26086D1B5 /* RFC2253.cpp in Sources */, - 6A996C997A788A2BECFAE4A7 /* Router.ice in Sources */, - 237ABAB8E60C04D624787ACF /* RouterF.ice in Sources */, - 1FB66300F70D4B3DD3F93C38 /* RouterInfo.cpp in Sources */, - 333834C76B8207BBC8F4D666 /* SecureTransportCertificateI.cpp in Sources */, - E347EEA00F23FBFC2BD8CBD2 /* SecureTransportEngine.cpp in Sources */, - 5BECA3996112695D2A5867F1 /* SecureTransportPluginI.cpp in Sources */, - BE6F6F17038C0A5673231E53 /* SecureTransportTransceiverI.cpp in Sources */, - 6ADB87452B2DC5910DBA1FB2 /* SecureTransportUtil.cpp in Sources */, - 185D4E64C816A1B3D6AD7C89 /* Selector.cpp in Sources */, - 0579CBB951767F42EA6B8C24 /* ServantLocator.cpp in Sources */, - 9456FD1AAD9BE2C4C8A8DF26 /* ServantLocatorF.cpp in Sources */, - 7A27232A716835C8F009BA84 /* ServantManager.cpp in Sources */, - CF34A784D725AE5D7CE920A1 /* Service.cpp in Sources */, - 314A3E18CF44469D18D2DEAE /* SHA1.cpp in Sources */, - 8E99FA7758FB19DA7365CB36 /* Shared.cpp in Sources */, - 5867966004E887A46E989D4E /* SlicedData.cpp in Sources */, - BEC37351B5B8BBA7E96B2D81 /* SSLEngine.cpp in Sources */, - 1AD86FD37B6AFC88F55E2195 /* StreamAcceptor.cpp in Sources */, - 1189776CE27ACE77AD06DF28 /* StreamConnector.cpp in Sources */, - BA35A643AD0ACCA603F76F43 /* StreamEndpointI.cpp in Sources */, - F2B5823CA6B4E769156BC62D /* StreamSocket.cpp in Sources */, - 827191E1C238486EF5E065A2 /* StreamTransceiver.cpp in Sources */, - 3602A548FDCFB5BD623FB695 /* StringConverter.cpp in Sources */, - 12A00615E883CBB2B5F2A90F /* StringConverterPlugin.cpp in Sources */, - EAC3411D24AA086871087DAF /* StringUtil.cpp in Sources */, - F6EBA1A0F7FDA36780F205D1 /* SysLoggerI.cpp in Sources */, - 390C54FB3BF05221A229BCC7 /* SystemdJournalI.cpp in Sources */, - 85E533D61579351369A05963 /* Thread.cpp in Sources */, - 623F39E393886AF831EA98AD /* ThreadException.cpp in Sources */, - A584615D4D4DAA509EECD495 /* ThreadPool.cpp in Sources */, - 2B5CBA50DD7F01F16C9D8DF2 /* Time.cpp in Sources */, - 6F91756B29F75E6FC1EF182B /* Timer.cpp in Sources */, - 1FF93FC36F5C01A2D3E97F8B /* TraceLevels.cpp in Sources */, - 31173881AA562E0C5D65C01D /* TraceUtil.cpp in Sources */, - BD78DCCF396BCE188F4B0B1A /* Transceiver.cpp in Sources */, - C5607791FD8EF1721EA141E5 /* Transceiver.mm in Sources */, - E27B5972288D787C0F8B0A9F /* TrustManager.cpp in Sources */, - 0B5B3AA0E782131AECB2A210 /* UdpConnector.cpp in Sources */, - 4C7646CE5741C0A76CBA15A1 /* UdpEndpointI.cpp in Sources */, - 9EE78E0C45344D67421A498E /* UdpTransceiver.cpp in Sources */, - 2BD891D443F38C44ECCE3FF0 /* Util.cpp in Sources */, - B92A6DA461E16B7CE231FB84 /* UtilException.cpp in Sources */, - 9D9FE9BC4A8B0F105A7BAD69 /* UUID.cpp in Sources */, - 036357ABB15FC1DD5705AC09 /* Value.cpp in Sources */, - 2C542E12B465CBB524E6127D /* ValueFactory.cpp in Sources */, - 0BFAC8B66105A68FF63D47E1 /* ValueFactoryManagerI.cpp in Sources */, - 724592DC350ABD84D931CBC7 /* Version.ice in Sources */, - 98871133F5900071DD8EE28A /* WSAcceptor.cpp in Sources */, - A274CC18CCB43E5D7BFD5D99 /* WSConnector.cpp in Sources */, - 628CFB1D21465A850B0D7B6B /* WSEndpoint.cpp in Sources */, - 3498A44ABBC2092B3D0174C8 /* WSTransceiver.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 246253152A8A494FF5540BD5 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1D960252846568A7D041FDEA /* Client.swift in Sources */, - 0F70BBE2A359C61B78141677 /* Test.ice in Sources */, + 0A32FD95A093165DD69FFD39 /* AllTests.swift in Sources */, + A60CCEDFB2EFBF7E4A1C52EE /* Client.swift in Sources */, + 454052662F451F169F1D5B0C /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 271D6194962FFBBF88D3CE7C /* Sources */ = { + 248CDA2D74739565F3521E8E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 41F46CA262BF51F19C8D9DA5 /* AllTests.swift in Sources */, - 99AF794B9A8920D623E97F2A /* Client.swift in Sources */, - AA91A2B6567AEB077961E5F6 /* Collocated.swift in Sources */, - 97B27C46B287F42F7908B9E3 /* Server.swift in Sources */, - 9E6D43949E7E1BF6AC09C8CE /* Test.ice in Sources */, - EBA7648440E6CD111D82A6CE /* TestI.swift in Sources */, + 8AEACECAAD401D57D61B33BC /* AllTests.swift in Sources */, + 647887EBD046C418D44A226C /* Client.swift in Sources */, + 0F8CD87AA9BB462CC8E71E21 /* Server.swift in Sources */, + 51A23A2998E43692D9BECD3E /* Test.ice in Sources */, + 695C62773DE2009958415DD8 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2D06B4E157A77EA66C4C2023 /* Sources */ = { + 25C3206F9603FF6938CF9B10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 08491AD9CE908E6E7462BBF4 /* ServerAMD.swift in Sources */, - 3F8D3E407A99D539E294D3C6 /* TestAMD.ice in Sources */, - 15B0DA4BFAAFF95427EA2576 /* TestAMDI.swift in Sources */, + 5FF0AE9CE30DE10AFC8B08FA /* ServantLocatorI.swift in Sources */, + 65A50A609BF9CA3FF65A8944 /* ServerAMD.swift in Sources */, + 5BEF353CAF8CE7F610173098 /* TestAMD.ice in Sources */, + 406B01FD1E5515B2CE41BC6B /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2ED85B69DBB7BCB74B245580 /* Sources */ = { + 265C5F11C4DF1AC9FCBCABF9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 375227EF6EB960224C4E29F6 /* AllTests.swift in Sources */, - 05BF2CE0D8AB77832FC5D491 /* Client.swift in Sources */, - 85B1901D48C275EC86F201F2 /* Server.swift in Sources */, - 1A9B24A0C0EBBD00BAD4D2C2 /* Test.ice in Sources */, - 6616E34A8BDAF5171D724ECA /* TestI.swift in Sources */, + DC328F456BDD65ED1668E893 /* AllTests.swift in Sources */, + 6847F056ACE03DA2B294CEC5 /* Client.swift in Sources */, + 6EE7F68D6C1D721931C9F867 /* Server.swift in Sources */, + 61F7603B4E8F1E0EC00C155E /* Test.ice in Sources */, + 9433E960BBFB8FC536E92EBB /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 31CB6A9CADF229B63F0F01CA /* Sources */ = { + 2727D9A1FC12DB83161640C9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8430C762B8FE5C9EE6441F35 /* AllTests.swift in Sources */, - 14D9F68C9015C9439FD6460C /* Client.swift in Sources */, - D4BBA566C6E2E548C48E42FF /* Collocated.swift in Sources */, - F0CC96D7A8CA7F06AC275C18 /* Server.swift in Sources */, - 3D40E882A25EDBB4F0D62DD3 /* Test.ice in Sources */, - 6C8CC9A40540D2AF01FDAB97 /* TestI.swift in Sources */, + E223F919074FF937A6DD4674 /* ServerAMD.swift in Sources */, + 5F65D2FEC048254C9E1083DC /* TestAMD.ice in Sources */, + 8223F1F8F0E1E13FC39DCDB2 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 33F8FA552E0D09D5BD6A7974 /* Sources */ = { + 2892793081A78839DF6EC65E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7BF5473C48A73DC69BBB89BC /* AppDelegate.swift in Sources */, - 7114B554E07379417D79F37F /* Assets.xcassets in Sources */, - F567CD12764E8B30C40BDBDD /* Controller.ice in Sources */, - 22D129CE4EA63AF27D585EA0 /* ControllerI.swift in Sources */, - 9C5B35B2E08E127107F88A98 /* LaunchScreen.storyboard in Sources */, - B09848C7AE8340D78EC672D5 /* Main.storyboard in Sources */, - 0B5F52C0721C4E7965F95FF8 /* ViewController.swift in Sources */, + 49E523F72B458AE0AC97A4E9 /* AllTests.swift in Sources */, + F7415767004FA2E0065FA725 /* Client.swift in Sources */, + 64F69A05C89C108F67E0872E /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3660E90F1064A9AF0A193D19 /* Sources */ = { + 293303B279AB89FF6AF2D9CF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F051C38E3059D93E39B0797D /* Clash.ice in Sources */, - 2CEF367BE0B97F2DDC273B9B /* Client.swift in Sources */, - 9B12B3ADD1C0205D1D8D5E71 /* Key.ice in Sources */, + 9ED77D67BEF83F9D5736BF96 /* AllTests.swift in Sources */, + 5AA3EB4296CC07F372237B9A /* Client.swift in Sources */, + F85E2EAA0FE75971389BF9BC /* Server.swift in Sources */, + FD97C877D0A6E8EBC72947DB /* Test.ice in Sources */, + CCD00E309469958F09EB011E /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3728EFBD094185E9090EA0FB /* Sources */ = { + 2B694C6F4219A83F6C856555 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 673123448558FCA3858EF864 /* AllTests.swift in Sources */, - 476EB781EF1558A848C00080 /* Client.swift in Sources */, - 8BCE0BFA7B4FC3E00677D32E /* Test.ice in Sources */, + 872DA73CEB9AB130280CACEF /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3C34A9ACF10543E5C6538191 /* Sources */ = { + 307985BBA47C398695E2B1F3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3E18170E5E7FF74499B7D24A /* AllTests.swift in Sources */, - 097880C06EF0679408D1F5CE /* Client.swift in Sources */, - D0B5756C2FCCD4E18739D694 /* ClientPrivate.ice in Sources */, - CF1F1FFB6EB4493CE7A124AB /* Server.swift in Sources */, - 439A0C371F9B6AA3448F6480 /* ServerPrivate.ice in Sources */, - 437999FF0C4A7689D50BFB99 /* Test.ice in Sources */, - CDC738D1D942B9E23A4E7B34 /* TestI.swift in Sources */, + 82BA66B3E37A3B6A4FD94B48 /* AllTests.swift in Sources */, + 1F5C6C29D85A7C49CBFAF67B /* Client.swift in Sources */, + 6473A34A1C579B5732469C7F /* Server.swift in Sources */, + 2CFB39C329DF7D1B2F7E20CC /* Test.ice in Sources */, + 3EB09BE3B03E7E96AC74DFC0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 403C21BBA17FF2D6F20B6928 /* Sources */ = { + 31CAA11822A27837A20198DD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CD5F1DFC8A4B46B28307340D /* AllTests.swift in Sources */, - 3A1AD7E4C8EFDB23A68486A1 /* Client.swift in Sources */, - FDE7BC60A5D9A34A9F70C1B9 /* Server.swift in Sources */, - 2C75BDAE1BBF350BDCB338AA /* Test.ice in Sources */, - 74EEA06536EA1A195190E34D /* TestI.swift in Sources */, + 7CB67121D23B858EFFBE4474 /* Client.swift in Sources */, + 964223501738DC1B2CCE8B09 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 408664F57072120C427C03B9 /* Sources */ = { + 33B1F7E1237A46BE66481B63 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6D6F4BD5950E3ACEDFF34418 /* Client.swift in Sources */, - D0355A4DBB5866600C927AC2 /* Test.ice in Sources */, + 643F33AC5304D8181111C387 /* AllTests.swift in Sources */, + AB23F850880B2C6CE4371A73 /* Client.swift in Sources */, + 92FA2577704DB12BD83DD89A /* Server.swift in Sources */, + 92C6D53D6E4289437FFBEA8F /* Test.ice in Sources */, + 023C0D71CD3653DA0AEE6DD7 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 459A708FDE23BED83F05CEBB /* Sources */ = { + 3584EB0EDCF9EF8FBFAECDD6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2A46FEABBA43C8111834A15D /* Client.swift in Sources */, + D6A2FEC9AD952DC08FFF98D1 /* ServerAMD.swift in Sources */, + 3DE44A3DC394B0BB7165E125 /* ServerPrivateAMD.ice in Sources */, + BF5CAD0817D8DF9363E17E06 /* TestAMD.ice in Sources */, + C52BC0D38C4E663FF0C06E70 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 480CF4808523A5E69EB7D407 /* Sources */ = { + 37E4B6226FAA627420AD950B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 00E385832E60C70445DA7B95 /* AllTests.swift in Sources */, - 0F1C5712F8EBF10DD09911DE /* Client.swift in Sources */, - B0965A59BDE65C9728FD02B0 /* Collocated.swift in Sources */, - 16856A6665650F9061877885 /* Server.swift in Sources */, - F5EA307A8498BEF0BAB504A6 /* Test.ice in Sources */, - 0F8B10234BDA25C30D1EF237 /* TestI.swift in Sources */, + A3373CE979CB43C206CBEDBF /* AllTests.swift in Sources */, + EC564EE3C735217D1425A1F6 /* Client.swift in Sources */, + 485ED50D8DC1FBDECADBE865 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A3298D987F5090CCEEA582C /* Sources */ = { + 3DA0EEE1FC1B570F1658980C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D11D3A5D7D988F009427AFB3 /* ServerAMD.swift in Sources */, - 6DDB6BE5A83D565F5FF95989 /* ServerPrivateAMD.ice in Sources */, - 5F8DC9BC982EE523DA9D8766 /* TestAMD.ice in Sources */, - BA5CE77E34644AFCBFBEDCC3 /* TestAMDI.swift in Sources */, + 8EBF7831EABD52706373B87A /* AllTests.swift in Sources */, + 292A0335BFE7F4A8D0A4D9A3 /* Client.swift in Sources */, + 9C7A28BDE9870CC30C3AB62A /* Server.swift in Sources */, + 5339A2B6B5873EE03D977DDE /* Test.ice in Sources */, + 1640EAEFC48343EAAFDDEFE9 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4F4F1E94D663663849203055 /* Sources */ = { + 3E9760E37E9F23B4490D30C8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3E72AD0D61EE2300DA565E6F /* main.swift in Sources */, + 6785CFDE9028CBB9DF666771 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4F5BE157EA5F5E7CBE15AFFA /* Sources */ = { + 426EF7186FC39709CF36993D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C8A7D3CD82E5C8514CCA53FB /* AllTests.swift in Sources */, - E827C3B4672F15199DB4022E /* Client.swift in Sources */, - 92741634E1622A7B86CA835F /* Collocated.swift in Sources */, - 5D717520A5B0695BF7FAD58A /* Server.swift in Sources */, - CFEE6DED2B07A573C128AC96 /* Test.ice in Sources */, - 5C255E9BAA7F209F6275162F /* TestI.swift in Sources */, + B388A2E9C12888AE3036941F /* TestCommon.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 505670AA9E66974D30664769 /* Sources */ = { + 43ACB16B5DFA52DBEEAFBADF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 053DDB3A49B3C3155D4BCBCB /* AllTests.swift in Sources */, - 082EBB0A0A55DEDA4769B27D /* Client.swift in Sources */, - D40D1AAB0D13E3933F6F77F8 /* Server.swift in Sources */, - 30FA33489B6079F6DB52D274 /* Test.ice in Sources */, - C1545BBF3A2657484A03518E /* TestI.swift in Sources */, + 7B9504A0DD1136F72064DBFE /* Metrics.ice in Sources */, + 4964F3229C92168B3BB3DC87 /* PermissionsVerifier.ice in Sources */, + BA3E225D22D6C87A8A88AAED /* Router.ice in Sources */, + C6695CE4D8CDDF282DB52EAE /* Session.ice in Sources */, + C0E08E323FA1218F61CFC193 /* SSLInfo.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5157643376FA82B89EEB08D8 /* Sources */ = { + 467A92002F81EECEA33D76E6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A88E2F3800752D1A3CE311CF /* AllTests.swift in Sources */, - 3326DC5C43C1C35B41B30BA0 /* Client.swift in Sources */, - 08A8B9ED64050555E614A2B5 /* Server.swift in Sources */, - A3F8FE48F5B7B04B7F6690E5 /* Test.ice in Sources */, - E79D4EA5651E8C2D711F6A4C /* TestI.swift in Sources */, + 8918A4B646924EECD601C4B7 /* AllTests.swift in Sources */, + 1A7F6A0C01F1D9F1D1C823BB /* Client.swift in Sources */, + D14B93BD4ECF1E16210A2D13 /* Collocated.swift in Sources */, + 5474470575C6913EB34DE331 /* Server.swift in Sources */, + 78FD8CE4714B857F8E146D57 /* Test.ice in Sources */, + 527733893A0EDF27311D3C19 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 53B88EA48DF75A01F277AAE1 /* Sources */ = { + 46E22643788ED3AEF53E2D71 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A20D130322181E5C41D6CC13 /* AllTests.swift in Sources */, - 1F5946925F3D5E04151BEE83 /* Client.swift in Sources */, - 365D62FA38A1DAF0C40ACC23 /* Test.ice in Sources */, + A53B7D56532CB91BBA77E472 /* AllTests.swift in Sources */, + C1C1EDBAC6B2D725F2760A08 /* Client.swift in Sources */, + C14502A4E0EC17DA8C16C2FC /* Server.swift in Sources */, + D032321DCBCDE32548CA1618 /* Test.ice in Sources */, + 87B9EF80F8A9C89298608753 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 550CDCC399E02FF9AD55D03C /* Sources */ = { + 52C2BC3F393D4B071AB4DA50 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E00E860C8191C845EC0E8D29 /* AllTests.swift in Sources */, - 2A72EA0D95B5716DD053D623 /* Client.swift in Sources */, - AE8670D45B8B1C618E1A4B67 /* Server.swift in Sources */, - BF3729AFEC4F1EE51CC284BC /* Test.ice in Sources */, - 67630E929629A32EC18439DC /* TestI.swift in Sources */, + C454C5EED2C69E238ED50DA5 /* Client.swift in Sources */, + 41ACA14990011BF34FD3F2AA /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58CEE4BDE08B849270A398E7 /* Sources */ = { + 543F29EC36AD500F2D82AE88 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A0D923B9AE28943985BA59B7 /* Client.swift in Sources */, - FC10275B5BF8C4A9064B853E /* Test.ice in Sources */, + B962FED105E70E6758FE6C94 /* AllTests.swift in Sources */, + 4C4F3BAED894DF9F5A7A368B /* Client.swift in Sources */, + C3FBE778CA9AECD610236D69 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 59557C09F67164DD5842F5C7 /* Sources */ = { + 546286E57A4EAA9483C1EB73 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5214EBFFB4433A815A04EBF8 /* AllTests.swift in Sources */, - F8E799E4E81E5B9B5BE01EE6 /* Client.swift in Sources */, - 3D61FA6F9EABE4443E5AD56C /* Server.swift in Sources */, - 3A91DCDC7840C89316BBD151 /* Test.ice in Sources */, - 7DD3BD2691D94949D7D01576 /* TestI.swift in Sources */, + 3A8DBB52A92F7C01B0122743 /* AllTests.swift in Sources */, + 93E482009F62A05B774F0529 /* Client.swift in Sources */, + C2316BD1AA20DAD4632832F5 /* Server.swift in Sources */, + 2A15CC6FB4D3A2E3E38A9CF1 /* Test.ice in Sources */, + C7B0B5324B1868D1DBEA7750 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 61E63AF08093C78F1362AA7E /* Sources */ = { + 55EA03F9FF5B5258E2D95203 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4FE808C6F932D3CDCAF785FF /* AllTests.swift in Sources */, - FDB06309ED2CD150593BAB56 /* Client.swift in Sources */, - D73659AB3A5511C3B86289DF /* Collocated.swift in Sources */, - 43FCB579023B4ADC811A7772 /* ServantLocatorI.swift in Sources */, - D4047AE7CF0C9800829F0186 /* Server.swift in Sources */, - C846EAA23A73D4CBBEDA0295 /* Test.ice in Sources */, - ED72D99C86D17A76F736FD1F /* TestI.swift in Sources */, + 6E43FFAF21D2223BC6FF9C88 /* AllTests.swift in Sources */, + 81D4B9B94408E1CE6ECEE72D /* Client.swift in Sources */, + F853FF29834F3A98B356B819 /* Collocated.swift in Sources */, + E3972E1B16DA8EFF78CA1E2B /* ServantLocatorI.swift in Sources */, + 719F6AE81796FF1A87BC1B98 /* Server.swift in Sources */, + 60505C7D3B5211FD69BB9620 /* Test.ice in Sources */, + BD47C6329890AA8D0A1D5D92 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6FD2D17AE02290CDDAF7189F /* Sources */ = { + 582FCE8AE556DA8DA5C41C72 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3524F877FF92CE25618BC82D /* AllTests.swift in Sources */, - 5E82CA6188D96C081EF45408 /* Client.swift in Sources */, - 8AB3DC10869B5BC5BC9D3058 /* Collocated.swift in Sources */, - 4C99F8480CD7A36ECC2F141E /* Server.swift in Sources */, - ECF053E9F3E596F247CCF58D /* Test.ice in Sources */, - F41045BA554A7DB82E15B469 /* TestI.swift in Sources */, + B3719EF102C1D651ACFBFA1A /* AllTests.swift in Sources */, + 9B3594B847C63885825B1AB7 /* Client.swift in Sources */, + 69878C54C57027CDAE00A5CB /* Server.swift in Sources */, + AB36D3F8130C7D08E9391B3F /* Test.ice in Sources */, + F4BBCDFCE0020D59F4948512 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 727EB0AD0FFD41F286E09D4D /* Sources */ = { + 5ABDC168A46FFCC4BC5DBE83 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A80310A30820EC1EF7487225 /* AllTests.swift in Sources */, - 76549B7578F472275E4FC7C5 /* Client.swift in Sources */, - CEDC4388FB28B2F0B37E94E4 /* Server.swift in Sources */, - EC9161278A1C1BDA32A42671 /* Test.ice in Sources */, - 60DD96FD244FD0741DD95F24 /* TestI.swift in Sources */, + 4E2D7F783F8AF9E2BC582946 /* Admin.ice in Sources */, + 1B1D5A149FECF50C0F4F9D33 /* Descriptor.ice in Sources */, + E97CA34DFCE7B221D995416A /* Exception.ice in Sources */, + 3726E5677BF9F8410C8E017F /* FileParser.ice in Sources */, + F3C4B8D113757FCF301EBE40 /* Registry.ice in Sources */, + 3CD86F3D8BE75F05CC4533F7 /* Session.ice in Sources */, + 460A5E82FCBD262C32A43C02 /* UserAccountMapper.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 73AEBDA73275A371B93C271E /* Sources */ = { + 5C4B39A79197C7F484055077 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 130BA7647D1EBE869EC4E66B /* Metrics.ice in Sources */, - B22E8C70DBE266B4631811B3 /* PermissionsVerifier.ice in Sources */, - C0D62D661F5E0AD1B09E9BA4 /* Router.ice in Sources */, - 85F5AB8D2A22F639CF428B04 /* Session.ice in Sources */, - 8418AB88E0B8DE29B22D0695 /* SSLInfo.ice in Sources */, + 1C79814AAA7B2A2408B471CA /* AllTests.swift in Sources */, + A565FF96F13E68B696AB0546 /* BatchOneways.swift in Sources */, + C24C6BDC05734F4417A5A3BB /* BatchOnewaysAMI.swift in Sources */, + 1A2428E84DB660C063834DB0 /* Client.swift in Sources */, + E2AF96A686DFC6CEF9F5673F /* Collocated.swift in Sources */, + 3ABDF8EE85FF58A1E6BD18B9 /* Oneways.swift in Sources */, + F841E91AB24CFF119C4ECADB /* OnewaysAMI.swift in Sources */, + 5F7D0A09EA57E2631AFB1028 /* Server.swift in Sources */, + 56C8CA7FF7FD2436CBCC6A31 /* Test.ice in Sources */, + 3C40474932B6C46BDB415AD8 /* TestI.swift in Sources */, + 647C2EA48623C44CF9D3F451 /* Twoways.swift in Sources */, + 25A93B2AF574974D299AA614 /* TwowaysAMI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 740467C4B57784289FE5A4E5 /* Sources */ = { + 5E5AA18560C5DB3446283A99 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6E95618E4E327AADC73DAA4B /* ServerAMD.swift in Sources */, - 3FA2678C6066014D24260B71 /* TestAMD.ice in Sources */, - BE54607B55BE1C617CCA7107 /* TestAMDI.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 762F8D943DAB33489D9F1722 /* Sources */ = { + 0CF992769F5194F8DBD16E6B /* AdminFacetFactory.swift in Sources */, + 669BACA79A295E915336EF16 /* Blobject.swift in Sources */, + 6CFF55E6984BFCB1D7D5B603 /* BlobjectAsync.swift in Sources */, + 2CF02CF1D15CFD591C03C886 /* BuiltinSequences.ice in Sources */, + 3928B22A00BC1EC983EA3468 /* ClassResolver.swift in Sources */, + CED7A97236DE1FC84F1177A4 /* Communicator.swift in Sources */, + 04893B0727E10680373C3A18 /* CommunicatorI.swift in Sources */, + 418665670BA6F4220D855C1A /* Connection.swift in Sources */, + E89488B5B743CD7A045BF459 /* ConnectionI.swift in Sources */, + 079D8B9814B0CF7EBB198370 /* ConnectionInfoFactory.swift in Sources */, + FA894F44B092863141ACD7F2 /* Context.ice in Sources */, + B4B9F42833EE44C8F17C2B2B /* Current.swift in Sources */, + 5AF5753A141F3A5436B85D4D /* Endpoint.swift in Sources */, + EC2F3A3A271839B3754275AF /* EndpointI.swift in Sources */, + 9E311C28AADD696C5F848B21 /* EndpointInfoFactory.swift in Sources */, + 7C390614148AAE850C798BAD /* EndpointSelectionType.swift in Sources */, + B6CD709CF20ECF56DE303D4D /* EndpointTypes.ice in Sources */, + 0FB1214B920792F051DDCF10 /* Exception.swift in Sources */, + A29F5225E5F504B3B4712BA7 /* FacetMap.swift in Sources */, + 0D81C85B3AD3955719192B11 /* FormatType.swift in Sources */, + 213EF35BEE63F4996C1AE44D /* IAPConnectionInfo.swift in Sources */, + 0BF706C97A87EE54A3E87284 /* IAPEndpointInfo.swift in Sources */, + 6BD9DB6F461DBB83792E17D5 /* Identity.ice in Sources */, + AAD9FD63A6AB1FE411C1663E /* ImplicitContext.swift in Sources */, + B411990ECF232D5EEC41CF4C /* ImplicitContextI.swift in Sources */, + 712121BCD4A1A181AE85D0D3 /* Incoming.swift in Sources */, + 6204DBD8699BD5B5C10FA642 /* InitializationData.swift in Sources */, + 94FB7996F752EE4C220F184D /* Initialize.swift in Sources */, + C84E5F9FB6C72298CFF0D98B /* InputStream.swift in Sources */, + 721D27204F34CF6282FE4514 /* Instrumentation.swift in Sources */, + 37698CB6BF4664E10A0276AD /* LocalException.swift in Sources */, + C45218CEF77BEEDEF7355C56 /* LocalExceptionDescription.swift in Sources */, + C94F0E787B8BF56168BCFCBE /* LocalExceptionFactory.swift in Sources */, + 24982294CFC8799F13411B78 /* LocalObject.swift in Sources */, + 3B57EB174C11634DDA140618 /* Locator.ice in Sources */, + 273D0927CB662D8E24B07655 /* LocatorF.ice in Sources */, + 66A7E1A3A913AF58C1196FE2 /* Logger.swift in Sources */, + 90753138F79D42A4B771D1D5 /* LoggerWrapper.swift in Sources */, + 15CD52A4E4F472AFEC9F9AE6 /* Metrics.ice in Sources */, + 7BD0697BEB4B03C7DF9A204A /* Mutex.swift in Sources */, + D7B4AE4B2DBB9275E10F8507 /* NativePropertiesAdmin.swift in Sources */, + 122E9EEB255A20ACB71CA23D /* Object.swift in Sources */, + 7C37A082DDC2AA1ABC543DCF /* ObjectAdapter.swift in Sources */, + C8E013C85F6858FFF3412418 /* ObjectAdapterI.swift in Sources */, + 2983E0E1B3733EA378453AD4 /* OperationMode.ice in Sources */, + 296D634AAD232906C99E8795 /* OptionalFormat.swift in Sources */, + 854F5817FBBDC851F66DA096 /* OutputStream.swift in Sources */, + 3A1EA5F3CEF6C62DE70ADB43 /* Plugin.swift in Sources */, + 1B9BA48F0517178DB792BAA1 /* Process.ice in Sources */, + EC60696E4D73094969C50224 /* ProcessI.swift in Sources */, + EC7C6DB79B4B347EE47BFFAE /* Properties.swift in Sources */, + BFD6A16C9ED98E4A23AAA127 /* PropertiesAdmin.ice in Sources */, + 36A86D927273E7B53188B3E1 /* PropertiesAdminI.swift in Sources */, + 558B6671A45F66B448678D61 /* PropertiesI.swift in Sources */, + AD2B2DA6DF61587D5ABBB3D0 /* PropertyDict.ice in Sources */, + 66F0E6897B79658616514D1E /* Proxy.swift in Sources */, + 6D428C16447934DF23D6B9C3 /* RemoteLogger.ice in Sources */, + 93F07B7B845E4AFBCF6ED751 /* Router.ice in Sources */, + 94CE962E1C8C57E766A55485 /* RouterF.ice in Sources */, + 7A7DB83F48579D1390343546 /* ServantLocator.swift in Sources */, + 11E51D858AA9A4CE8D2E9323 /* ServantManager.swift in Sources */, + A18CF427995658B2A03DA4DC /* SlicedData.swift in Sources */, + F436214884717A226C19BABA /* SliceFlags.swift in Sources */, + 01C6E23BCDB40C1092D3644B /* SliceInfo.swift in Sources */, + 2EFDCA785EC157D079C5019B /* SSLConnectionInfo.swift in Sources */, + FFD6CAA05C764C508C44A856 /* SSLEndpointInfo.swift in Sources */, + 58CE66D8960C0C48B4EB2FBA /* UnknownSlicedValue.swift in Sources */, + 68D46CFEA353638513BB1A3B /* Util.swift in Sources */, + BDDA7FC6A6EE11BC28747E01 /* Value.swift in Sources */, + EE41BB9626CE81B8FDEE3A96 /* ValueFactory.swift in Sources */, + 3AB046D5D71BA6C7538B3088 /* ValueFactoryManagerI.swift in Sources */, + AA7D730E054668168A05161E /* Version.ice in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 62B729DBE9565951E835E6E9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FB372255B71007EBD4EBAF97 /* AllTests.swift in Sources */, - 472AC324874B7C04CA00B96C /* Client.swift in Sources */, - C2816BCA9F3D060A0D93D5C9 /* Server.swift in Sources */, - 2A99230AFB63FD720764C277 /* Test.ice in Sources */, - 12F8A02EB2B2B4E4A1385373 /* TestI.swift in Sources */, + 92378E6FDD460AC4056FC1FD /* AllTests.swift in Sources */, + 565375DC0AD3DB101739E804 /* Client.swift in Sources */, + 948A326D07253CB1C6EEE30A /* Collocated.swift in Sources */, + B5F6F532A8B2349E0FE40865 /* Forward.ice in Sources */, + C18C1A2556FADA6C0E405256 /* Server.swift in Sources */, + 142D327EBF2F0016CB0E6C75 /* Test.ice in Sources */, + 6C06DB811A733D348A4F2399 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7C9C563222656FA461391883 /* Sources */ = { + 6881CCF877304AB0D49EFF21 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 793D2653743411E9D3F7BCE7 /* AllTests.swift in Sources */, - 6E659272E8DFABA0531B9AD8 /* BatchOneways.swift in Sources */, - 512F6AD6BBE83DA284EAA10C /* BatchOnewaysAMI.swift in Sources */, - B4E6691CE1A3A474B8C91537 /* Client.swift in Sources */, - 6A9829DEA46623BD16726791 /* Collocated.swift in Sources */, - 65D7EA02A4B921F598B562A9 /* Oneways.swift in Sources */, - 0DC94AB12B244604E37F2437 /* OnewaysAMI.swift in Sources */, - 4C92BF3D6CA60AFC31866140 /* Server.swift in Sources */, - 0DDC47C80B71C612BD2DC15F /* Test.ice in Sources */, - C8830FEE234385CDB4858949 /* TestI.swift in Sources */, - BE2BED71069ACFB75C29A452 /* Twoways.swift in Sources */, - 8B541DC2DD11DF5448D959AD /* TwowaysAMI.swift in Sources */, + A21F3C5B9215C266E3165ADE /* ServerAMD.swift in Sources */, + 1C724A372C4EC19D6B43AA31 /* TestAMD.ice in Sources */, + 10450A8F5D1657A9FBDB3724 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 80EF5348B1A88B2937E0CE91 /* Sources */ = { + 69743D90DF5C84F3D4D5CC5C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 520C111945BFDA06E950D334 /* AllTests.swift in Sources */, - 8A6E7BB41526289D5F6B4300 /* Client.swift in Sources */, - 0D18B263085543EFCA40678B /* Collocated.swift in Sources */, - 10B9C06BB86CD2E1C587A300 /* Server.swift in Sources */, - 9860E4E0EEC3C946A0C0E4AC /* Test.ice in Sources */, - 16BEDB058896B9FCC877301B /* TestI.swift in Sources */, + 8EE927FA0D23AB485FDAB75D /* AllTests.swift in Sources */, + E0A07110CCA4F4832A4D9A8D /* Client.swift in Sources */, + 276387EADF27E1D2EA2B5C61 /* Collocated.swift in Sources */, + 6DE01EEE84CFBAE9E530A1B5 /* Server.swift in Sources */, + C8541790D99E74903D0F780E /* Test.ice in Sources */, + D7EF61DAF00E36DA514A3C61 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 824E592A3AB65CEE426FAE6A /* Sources */ = { + 6BE9D4FCC694CDB86D5089A3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E70281E141A2E10DC7E867E3 /* AllTests.swift in Sources */, - A370A7450A94173E573658F4 /* Client.swift in Sources */, - 2B17685CF253116CD32BCFDE /* Collocated.swift in Sources */, - B8F695938B0F375FE135BD0B /* Forward.ice in Sources */, - 0D15702D5D4A4BEEA877FCE3 /* Server.swift in Sources */, - 7D592CF191CB0BC1ADC529D8 /* Test.ice in Sources */, - EFEBFDA67C46537FBF8CCE7F /* TestI.swift in Sources */, + AAADF7A11CDA059908707F5C /* AllTests.swift in Sources */, + 1BD4198BA7E5485B96C95251 /* Client.swift in Sources */, + 7C3ABF554403A3B01ECD3756 /* Server.swift in Sources */, + 4057CD42B192B4EE67F698AC /* Test.ice in Sources */, + 3C5D088CB54A320856260981 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 82D127E91FF466629629CAB0 /* Sources */ = { + 6EF6C9E40D191F808F0F1E64 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FFD15B4561FC249388EC7855 /* AllTests.swift in Sources */, - 4B2C2623EEC8E5C2BFFAB9F7 /* Client.swift in Sources */, - 0C338C6B5B3FFFB86154E4CA /* Server.swift in Sources */, - A74704E1DB83BB20AF9338B2 /* Test.ice in Sources */, - F4E1E0A115AE924F6F94F900 /* TestI.swift in Sources */, + 8512A33D16421A12F77CF99B /* AllTests.swift in Sources */, + 3AC57C55DC1E09BAB796BC20 /* Client.swift in Sources */, + E307006E2183F31E65D4485C /* Server.swift in Sources */, + 2D2EE8FD6A072B48ED0757CD /* Test.ice in Sources */, + 4D3C7C00E50422831C4B0D16 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 83A76164440CDE56D3480DBB /* Sources */ = { + 71E06AEBA4B516B8D2B1F91E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DB532EBFAFD6663E9A4CF605 /* AllTests.swift in Sources */, - 2930BC86E955F67F68C706E0 /* Client.swift in Sources */, - 7236B5FC12DCF970791C68FB /* Collocated.swift in Sources */, - D22E021B3ADEDD6A76A4BEE5 /* Server.swift in Sources */, - 1A87901C853A64DA004A19F6 /* Test.ice in Sources */, - 981C4620EC22881BF225CCA7 /* TestI.swift in Sources */, + 705E8806E733E1299FBB6519 /* AllTests.swift in Sources */, + 1814B0AA0B447688293BA3DA /* Client.swift in Sources */, + C99681DCD743D1398EDD3909 /* Server.swift in Sources */, + 2CB63A080F4AA144BCC45FCB /* Test.ice in Sources */, + A00E49418E163FCA8FF09DD7 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 871ABD25B86BB8501C338AF8 /* Sources */ = { + 7374F772E8AC58CBC834E62C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CCBE583DD738AF012CBDE5A5 /* ServerAMD.swift in Sources */, - 53A573D74AE623E8CCC967D0 /* TestAMD.ice in Sources */, - FBE1C0AAD964A4492EA42559 /* TestAMDI.swift in Sources */, + 60B89CFC21235AE88A7DA397 /* AllTests.swift in Sources */, + C920ED4CE6B727C84E47F6E3 /* Client.swift in Sources */, + 70083F6AE57B8C2055B6F4AB /* Server.swift in Sources */, + 6D9806925FE9B1D91B7574DF /* Test.ice in Sources */, + 8F9FDE71F1E8E1A16C78A22D /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8786DA1F033412225FCCC882 /* Sources */ = { + 7562FB5F2D5496507FB656CB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AD5B0226FC549A8B3913B06A /* AllTests.swift in Sources */, - CB1CFE85F8ACCF42BDF8017D /* Client.swift in Sources */, - 45BAA3EC0EEDC4A06C495809 /* Server.swift in Sources */, - 8C946B95110FECB30E186FF8 /* Test.ice in Sources */, - 4DBDEF7B37A9CB7729A7C2C4 /* TestI.swift in Sources */, + 1F1B2A120600717E9CA151F7 /* ServerAMD.swift in Sources */, + 86B9C06840F8EA8534A76485 /* TestAMD.ice in Sources */, + 4183C8DC691BDAF574D88EE1 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8868F5599B3F411802B63FAB /* Sources */ = { + 7DB0956D51347FF877757F6F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 757930B1E1C0A8CA12581F04 /* AllTests.swift in Sources */, - 4E2D4E7CE0A879AA898246F4 /* Client.swift in Sources */, - CD336A100DC34A7A1FC69CE6 /* ClientPrivate.ice in Sources */, - 89D41341A9EFCCE03B3F7A8E /* Server.swift in Sources */, - 629B6F5581825451F7F5A870 /* ServerPrivate.ice in Sources */, - CA96B89239F6D6E748D6EE83 /* Test.ice in Sources */, - 3D0AACFB74CE7ACBD1F5A206 /* TestI.swift in Sources */, + CD865BB5039A6DE5AC815FFD /* AllTests.swift in Sources */, + AF3EA462D891151A0EFEB0DE /* Client.swift in Sources */, + 24877A2876453CC64490AF0C /* Server.swift in Sources */, + 46D5D78F4B547B43CF0FC4D0 /* Test.ice in Sources */, + CEC4684BC2D30A4AB0A27E2D /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8A88D1A62B1848F7C88FC3C7 /* Sources */ = { + 830352D57BA099B4E44F02B4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9F004E41D6BDE32BA292933E /* AllTests.swift in Sources */, - AC3FD6E42EC63CAC2C50F51D /* Client.swift in Sources */, - AACE1ED21DE14950EA113371 /* Server.swift in Sources */, - CE11E91F7170904F47127228 /* Test.ice in Sources */, - 359F76C8AFF38001CE766F79 /* TestI.swift in Sources */, + 468CDDF2327C91A52C2FBA9E /* AllTests.swift in Sources */, + 5A99153201F255452FEB162C /* Client.swift in Sources */, + B7CFA50A810D3D930A2D97FC /* Collocated.swift in Sources */, + 5931AF049DA4EBAD9BE65058 /* Server.swift in Sources */, + 5B77F7E5D43EE10265259D86 /* Test.ice in Sources */, + A553964A87A4A52E2126C21D /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8E451D196306CE7679BA9EDC /* Sources */ = { + 845DA976F8C240ED749F0993 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 41A26D7FE975DF3ADB28BF28 /* ServerAMD.swift in Sources */, - 3439C7231AEDF344324F4B27 /* TestAMD.ice in Sources */, - E27463AC1E8702DA25FA0BE6 /* TestAMDI.swift in Sources */, + 590D216B86ADC37F38004429 /* IceDiscovery.ice in Sources */, + 9209F3EE245FD15FAF70ED96 /* LocatorI.cpp in Sources */, + A01F5ACB2F78E16B04143B71 /* LookupI.cpp in Sources */, + 44802909EDEBEFB47C87F48F /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 91631103ED35069287E4C528 /* Sources */ = { + 881EE104DE2C4C5FB6BA5122 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 170AE4CBBF1490D211F04985 /* AllTests.swift in Sources */, - 443D0C63EF6891ADECCE8907 /* Client.swift in Sources */, - 788025D5E22507C8A3F5F8A2 /* Collocated.swift in Sources */, - 72290912BE223BBDA60669D5 /* ServantLocatorI.swift in Sources */, - D8945106DA9897A19A00130F /* Server.swift in Sources */, - ED3FD0FF1DDB4C671B4202BF /* Test.ice in Sources */, - 87C0ECC3EA60FCB87FE0ED4D /* TestI.swift in Sources */, + 9FF3719B2786AFD4751727AB /* AllTests.swift in Sources */, + 90ACF276E13B746450078253 /* Client.swift in Sources */, + 6368CF69E144362A08B33F49 /* Collocated.swift in Sources */, + 968613B5B342D59351D209F1 /* Server.swift in Sources */, + C4DBA58A0036DE6056365B97 /* Test.ice in Sources */, + 5592F091CB8D281F7C291E7F /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 948D9EBD83F8962FC6B57605 /* Sources */ = { + 8B95A794840586734615E96F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 32BACCCD1BB1CFBF4E8939A3 /* IceStorm.ice in Sources */, - 3A9B08A45864E5B5DA10EF84 /* Metrics.ice in Sources */, + 7BDF692BF7C88C256C94AA13 /* AllTests.swift in Sources */, + 2D14CA690A2E699E7871F540 /* Client.swift in Sources */, + 0327B5FBA995F7C7602A2697 /* Server.swift in Sources */, + A3EFCFE9E5193169F477884D /* Test.ice in Sources */, + 579AC8862E268F04BF95A503 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 97D4C1B5577CD439FF1A875F /* Sources */ = { + 8BC7C7488C636DAFE42DF7E3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2809864F63C4627B01839595 /* Client.swift in Sources */, - 0C0EAFB8E3FF7C0648EF3B12 /* Test.ice in Sources */, + 212052526996E61998DB65D3 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 98EC66C7A6A09AD7A89D0FB1 /* Sources */ = { + 8BFD07AA3DE581D8525A1964 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 92B91BF428BD098E60290FF1 /* AllTests.swift in Sources */, - 5F937EA835BCC77B20C626E3 /* Client.swift in Sources */, - DF72318D1382B4FEAA6E78E5 /* Server.swift in Sources */, - 5BB7BCAB674BEFF6F96DBDF9 /* Test.ice in Sources */, - F0A4995954CEECE143553681 /* TestI.swift in Sources */, + 157D683A8D052D485572A4ED /* AllTests.swift in Sources */, + E91EB9D7B8B7795C0B78675B /* Client.swift in Sources */, + 5B4E55DFB03E922BD0506143 /* Collocated.swift in Sources */, + 98CAB5AC4AFC0F9A66E03465 /* Server.swift in Sources */, + 43505EC618AC2E37610D1DD8 /* Test.ice in Sources */, + 7B2E212CA6328893EF888F03 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9A4ED064FE6E42598FD6425F /* Sources */ = { + 8F27F193739466C647769865 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 01BA2BE8624B0112F8C536D1 /* AllTests.swift in Sources */, - 477DF596E48DD099FB4BCF23 /* Client.swift in Sources */, - 54AB94ABC3A65DBAC8C07E44 /* Server.swift in Sources */, - 179BFDF5CA36E22B7D3DC44E /* Test.ice in Sources */, - 6F6989A22CC77E752AEF95C2 /* TestI.swift in Sources */, + 55E7A43504BC2169071C952F /* IceStorm.ice in Sources */, + D1086683670BCE57082B1CD4 /* Metrics.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A36774ACC8F2668986006B82 /* Sources */ = { + 93EDD1C49BFCD3186F93E06C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 64CBD3511C268A802D59D189 /* Admin.ice in Sources */, - 3761DC99BFB76B296A950F77 /* Descriptor.ice in Sources */, - 4CA2E6BB1C9B771680800EB5 /* Exception.ice in Sources */, - E2BD7AD7A7B878B3B98A6B11 /* FileParser.ice in Sources */, - 3C1276D1BECA3024D1B39F02 /* Registry.ice in Sources */, - CFD4F84B3C8A532C0023E9B3 /* Session.ice in Sources */, - C75DA494B35D01D89F060183 /* UserAccountMapper.ice in Sources */, + C99E8BCB8C0760680CCEBD67 /* AllTests.swift in Sources */, + 1566BC2BE52BFF272AA2CB59 /* Client.swift in Sources */, + 646E4949DB160FF73465B90B /* Collocated.swift in Sources */, + 1A53CAE7A6EDA1ECDE2C1F6D /* Server.swift in Sources */, + AA4DC4DF4058ABDC0211F008 /* Test.ice in Sources */, + 8C0A74E1F87867F71DB13F75 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A7EC5A246B84DB7C6747EE40 /* Sources */ = { + 94BA113A33B1F7D930559978 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F9BB93907CB3E5D1708DA115 /* AllTests.swift in Sources */, - DA6435FBAE9A3C532B7FF01D /* Client.swift in Sources */, - 34C463E2E936F69653437362 /* Server.swift in Sources */, - F19FA54E15DE55BB5950BFA1 /* Test.ice in Sources */, - 7529DF5EC3A573C1F5A57CCD /* TestI.swift in Sources */, + 7B5E718F6C045A9AD6C26E59 /* AllTests.swift in Sources */, + D268A8AB3B87A3F89F29BF12 /* Client.swift in Sources */, + 7EE4C9C6E4842F23ACCB9B8E /* Server.swift in Sources */, + F752CC7EFA8086CDD6C5E082 /* Test.ice in Sources */, + 5F57E2CD43FAD623CF6788B0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A8407965EDF0FA13A64D9087 /* Sources */ = { + 96349055B134C09EFCC26C32 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1C2744955743DD4E62E80AD6 /* TestCommon.swift in Sources */, + F619711485EDDECCB70B13D6 /* IceLocatorDiscovery.ice in Sources */, + B1F9D23863E61F678A8A3764 /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AE95AA04979FB137DCE17259 /* Sources */ = { + 995AC1FE963E60344D4CC2E8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7A2D160A875B9F5987A9EAF5 /* AllTests.swift in Sources */, - A84B19BF293B8A41E9EECC80 /* Client.swift in Sources */, - 686D04AF82FFC94C66549276 /* Server.swift in Sources */, - 544C070A5DCB88A320FA6E18 /* Test.ice in Sources */, - E5988642F179BE0D2A96BBF1 /* TestI.swift in Sources */, + 1378B59764FF3E243A936BEC /* AllTests.swift in Sources */, + 4907D42B86E580F90CAA46E3 /* Client.swift in Sources */, + D02DC67B4C2549D73E315F6A /* Collocated.swift in Sources */, + 301CEE1162FDCE54CEF1DE68 /* Server.swift in Sources */, + DBC636FA81F0EB0411DC86B0 /* Test.ice in Sources */, + 1C20696E0246F5B9D7048BBD /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B0AABBBE14BE23E960D12458 /* Sources */ = { + 9977338E8BAF8946DEF65C37 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E1F7E0B85826E4C2D7425980 /* IceLocatorDiscovery.ice in Sources */, - 5840FAA7AE11007663733FA9 /* PluginI.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B0F22D921EF6432E4BB4E571 /* Sources */ = { + 9D09D6988129F553A9F6CBE2 /* AdminFacetFactory.swift in Sources */, + FCD872B7C1D9BE4CE81FD976 /* Blobject.swift in Sources */, + 0A50E66510B6634E6D01A09B /* BlobjectAsync.swift in Sources */, + 146F9C22985ED2698B4D95E8 /* BuiltinSequences.ice in Sources */, + 8BDC7D54F2F5E990CF7E7637 /* ClassResolver.swift in Sources */, + B03E802CFDE2A218DE2981C4 /* Communicator.swift in Sources */, + C78E3846FE62A72C93344FA6 /* CommunicatorI.swift in Sources */, + 8990F2867670512FFEC54BF9 /* Connection.swift in Sources */, + 761E23C17BA25FCBA4AF7D1F /* ConnectionI.swift in Sources */, + 796C0B626B031FB823C90B51 /* ConnectionInfoFactory.swift in Sources */, + 61CF66BE0ACB8B03A08B7032 /* Context.ice in Sources */, + 5A37BC8A80EF00D8AC8A571D /* Current.swift in Sources */, + 3F32ED98F9F8A5E265291EB7 /* Endpoint.swift in Sources */, + 3696E2ABF4D8E3AA49395B92 /* EndpointI.swift in Sources */, + DB2F97CE9AE225B4A886DA05 /* EndpointInfoFactory.swift in Sources */, + 44F0F8378863839430B162BA /* EndpointSelectionType.swift in Sources */, + FFBDF22B7DF2677CB22EF437 /* EndpointTypes.ice in Sources */, + 3B135644BB8D78F665499415 /* Exception.swift in Sources */, + 351CC6BAFEAF90CC712F477C /* FacetMap.swift in Sources */, + A00538A81AF3885A25578626 /* FormatType.swift in Sources */, + FFFCF7DD3F4A9E9BCD8C56DA /* IAPConnectionInfo.swift in Sources */, + 5E157060F06DFDE4915CC6A9 /* IAPEndpointInfo.swift in Sources */, + B9DC6350073FEEEBD96585C0 /* Identity.ice in Sources */, + AB6A2D0169AA8DB3C0F79348 /* ImplicitContext.swift in Sources */, + 75BF8E7000D7EEEF852396C4 /* ImplicitContextI.swift in Sources */, + 18152ADD040571E373032B12 /* Incoming.swift in Sources */, + 00720CC1CE9EFA9F72EEFB11 /* InitializationData.swift in Sources */, + B352E065DAD59352260A126B /* Initialize.swift in Sources */, + B8CAAACCE0841129645CA33E /* InputStream.swift in Sources */, + B451C1FC311070C873B1D26A /* Instrumentation.swift in Sources */, + FE35E2AABC406998CC02C40E /* LocalException.swift in Sources */, + A845703EE49A9602B854A312 /* LocalExceptionDescription.swift in Sources */, + 851F2626B959E7FB970A95EC /* LocalExceptionFactory.swift in Sources */, + D67186A61676EA7BB4903D63 /* LocalObject.swift in Sources */, + 2925B70C87EFC1B45BCBF7EF /* Locator.ice in Sources */, + 547B6F45A10CC245FE7CC262 /* LocatorF.ice in Sources */, + 8CEC9D3F94796FF5F863B176 /* Logger.swift in Sources */, + CFC18099F19E175F8039038D /* LoggerWrapper.swift in Sources */, + D41EF67EB7FDAD10101461CA /* Metrics.ice in Sources */, + 6B8D86981CC978E00873851F /* Mutex.swift in Sources */, + DB47A318EF29D485F2DBC9B6 /* NativePropertiesAdmin.swift in Sources */, + E5FE605239046B97A6C988CE /* Object.swift in Sources */, + 3B79FE11E55E6B25CBE8902A /* ObjectAdapter.swift in Sources */, + CA7ABCDBECEDFBFB82D0DF7C /* ObjectAdapterI.swift in Sources */, + 8EE324E33F6C2050ACE09483 /* OperationMode.ice in Sources */, + 66B65BC6DCC5EF73C5E71EDE /* OptionalFormat.swift in Sources */, + 5E1358E78595CB847E5CBFD9 /* OutputStream.swift in Sources */, + 87D2448A0232D77E66EEC960 /* Plugin.swift in Sources */, + 21681F549430F739C23F3E7D /* Process.ice in Sources */, + 4ED956A744A405B137F70FC3 /* ProcessI.swift in Sources */, + BD6E854FF3690A66718478AA /* Properties.swift in Sources */, + 81B1515A8E35E8B56E63B1C9 /* PropertiesAdmin.ice in Sources */, + 44319B4FBC44B3FDC86E2A08 /* PropertiesAdminI.swift in Sources */, + 9A8F9A1FEDCD9289440A83F8 /* PropertiesI.swift in Sources */, + BF7825223E822077FF21FE2B /* PropertyDict.ice in Sources */, + 4109680E508B78E8AFDE4BA6 /* Proxy.swift in Sources */, + C3E8AAF1B09E5AF0629ECE4E /* RemoteLogger.ice in Sources */, + EFC42E1F469F67928B7880AF /* Router.ice in Sources */, + 056204E6356566F6EAE592E6 /* RouterF.ice in Sources */, + FF28669111DB6900FD7EA5F2 /* ServantLocator.swift in Sources */, + 10FDB820CA3036500263166B /* ServantManager.swift in Sources */, + 27B3C23E9AA046222424F245 /* SlicedData.swift in Sources */, + 1F7971A75A98BA85F1011808 /* SliceFlags.swift in Sources */, + CB8612D9A6C9DA3EB7116701 /* SliceInfo.swift in Sources */, + 9F33ECA2E562F1FB9A6AAACA /* SSLConnectionInfo.swift in Sources */, + A0DE119B147295ECC81F4C56 /* SSLEndpointInfo.swift in Sources */, + 5A6165BF367999E8BFBAD5EC /* UnknownSlicedValue.swift in Sources */, + E501FE1E712129E20E07D4AE /* Util.swift in Sources */, + A2B9078CBFEE60238FEB63B2 /* Value.swift in Sources */, + 525E7118AC72F5454BF1FF4A /* ValueFactory.swift in Sources */, + 947254C85FA67D45FC615F89 /* ValueFactoryManagerI.swift in Sources */, + 49DE0757E79F0CCDDF902075 /* Version.ice in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 99D80B4C985E5A51ACEC861C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8DC0569BE9ADDB7CE6EB6738 /* IceStorm.ice in Sources */, - 3916A6C7913A2D1DE42BD5E9 /* Metrics.ice in Sources */, + 8E3CC5471AB83041D96F3BDD /* ServerAMD.swift in Sources */, + 025600DF80F8F1BE29956542 /* ServerPrivateAMD.ice in Sources */, + FE91C36B606C07C238266AFD /* TestAMD.ice in Sources */, + 0E2E60FB76F0D0A6172CCE7A /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B268825D883706611F09F50E /* Sources */ = { + 99FEE7D269C10FAC6C445165 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B29A04540175D15722EF1B78 /* IceDiscovery.ice in Sources */, - DA49C2F1E873FD24FC2F9109 /* LocatorI.cpp in Sources */, - 493BAD347F65CC07C49D8933 /* LookupI.cpp in Sources */, - 31E4EB70CF4BC88E28D8D044 /* PluginI.cpp in Sources */, + 0F0797F1CDDB72748CF607CF /* AllTests.swift in Sources */, + 93ED080464B046AE52A840F9 /* Client.swift in Sources */, + 93F33DBD32EABC01F2FFCF18 /* Collocated.swift in Sources */, + 418BA1B0341043FF36C54DB1 /* Server.swift in Sources */, + B2FC6096B00EDAE5AD85A564 /* Test.ice in Sources */, + 20B1A5D11BA20A56002CFDA1 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B3D4B6138BDE984791F96BD9 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 04CAC40EED8EDAD9439E8DD8 /* AdminFacetFactory.swift in Sources */, - 99E0F23E92A9DF68271CEBA3 /* Blobject.swift in Sources */, - BA3679BF55ED14BED93BDD24 /* BlobjectAsync.swift in Sources */, - 882353E902DCAD597C0483E7 /* BuiltinSequences.ice in Sources */, - 42243ACEBD2732D956BCAE1A /* ClassResolver.swift in Sources */, - 5CDDEA39DEF6FD9296219CE9 /* Communicator.swift in Sources */, - 7C512513AB84FD9E60F7B65F /* CommunicatorI.swift in Sources */, - 2E8CF32F51479C34D8CD3055 /* Connection.swift in Sources */, - EC8B391DA95E37D60C92A545 /* ConnectionI.swift in Sources */, - 0E5856D65B05603B45F4F6CB /* ConnectionInfoFactory.swift in Sources */, - 4DD9B69BDDBF8BB5A46CF6A3 /* Context.ice in Sources */, - 804E1AD6D9889C5714DC2C91 /* Current.swift in Sources */, - 443481975C2D4C2D0C487A00 /* Endpoint.swift in Sources */, - 6A516CC46100B663E06C1165 /* EndpointI.swift in Sources */, - 5C018E7FFE19E85FA3B2D645 /* EndpointInfoFactory.swift in Sources */, - CE5739B43B4A98CEAAAC9BDA /* EndpointSelectionType.swift in Sources */, - 35D2B39E93065AFCE039426E /* EndpointTypes.ice in Sources */, - F39DFCF91A1DD04DB323BDCB /* Exception.swift in Sources */, - 9A3B82CA2D453D12053C8704 /* FacetMap.swift in Sources */, - 0D5440854E21629CEF7C8CAE /* FormatType.swift in Sources */, - 774062F51601DD6E453EED97 /* IAPConnectionInfo.swift in Sources */, - D293589566F6DC1DA7E2D9FC /* IAPEndpointInfo.swift in Sources */, - 55F157BD4BAD3E6539D00070 /* Identity.ice in Sources */, - 5900693A6AB1C523A4C0B775 /* ImplicitContext.swift in Sources */, - 3F09B74DCCFD4F0B87A5BB74 /* ImplicitContextI.swift in Sources */, - D6E870244D71267F0C5F4CB7 /* Incoming.swift in Sources */, - 7510971A916C26392E8F9242 /* InitializationData.swift in Sources */, - 72724AAED07393017DA2E4B4 /* Initialize.swift in Sources */, - 368C0DAE1EA4121899442CFE /* InputStream.swift in Sources */, - B504B615CB1841B247288771 /* Instrumentation.swift in Sources */, - 3BCAEBCBB973843FD2AD8526 /* LocalException.swift in Sources */, - 2A4BE985E5124200F0563358 /* LocalExceptionDescription.swift in Sources */, - EF6973ABBA6F018113CCA40D /* LocalExceptionFactory.swift in Sources */, - 8B9FD642C27C480264127259 /* LocalObject.swift in Sources */, - D7C0797E9DAD699A850A51BE /* Locator.ice in Sources */, - 56AD5CF8D50C51DE09F7D939 /* LocatorF.ice in Sources */, - 0CC96D37DB7AFB63D5A71472 /* Logger.swift in Sources */, - E46996DDB179F86E361C3B24 /* LoggerWrapper.swift in Sources */, - 8A08D4DDB9DA04A11C04F515 /* Metrics.ice in Sources */, - 8D94198614D8FF4501AF71F2 /* Mutex.swift in Sources */, - 72538008B2024D5389B810ED /* NativePropertiesAdmin.swift in Sources */, - 28FD84B9977369E4897ECDF2 /* Object.swift in Sources */, - 44B8A3BFB7E96ED2EEB11BE2 /* ObjectAdapter.swift in Sources */, - 8DE5D8C01A986D8594384249 /* ObjectAdapterI.swift in Sources */, - 54B2EAF2DFD1D8FC06C4B507 /* OperationMode.ice in Sources */, - 82568B1E0768996DF95D174A /* OptionalFormat.swift in Sources */, - 8DF13BC213E2B67C75F9D86F /* OutputStream.swift in Sources */, - F824F26FE5F79FF4364215A8 /* Plugin.swift in Sources */, - C725254B05FA996BD1DB0F40 /* Process.ice in Sources */, - 219098E2CF3A40598E9B7DEE /* ProcessI.swift in Sources */, - 252428E411CFE84C8EABA9FC /* Properties.swift in Sources */, - CCF0AD1D543E82090B0E0033 /* PropertiesAdmin.ice in Sources */, - F8DF23068DD58F1E7A87DB01 /* PropertiesAdminI.swift in Sources */, - 755E30741A5375F97E6DEA55 /* PropertiesI.swift in Sources */, - 758B01256B0D206D57B11E69 /* PropertyDict.ice in Sources */, - 38AD9AAB1914822FA461B3A7 /* Proxy.swift in Sources */, - 70E48A57A4CE155B13F2D2C0 /* RemoteLogger.ice in Sources */, - 5AE2F848C530FB6551F1852E /* Router.ice in Sources */, - CA399459F3F7EB569A7630E4 /* RouterF.ice in Sources */, - 139D195E2BB3B8C1B842399E /* ServantLocator.swift in Sources */, - 4C7C4F3CCAC6805EB36A3654 /* ServantManager.swift in Sources */, - 27C202B18AAD0ACE036618B6 /* SlicedData.swift in Sources */, - 403618479F56854EC65F5FA6 /* SliceFlags.swift in Sources */, - D7437639BB0E590B7E1BF6A3 /* SliceInfo.swift in Sources */, - 5589AE26A63644F30937EA87 /* SSLConnectionInfo.swift in Sources */, - 153900BC0DE507C4CB3377BB /* SSLEndpointInfo.swift in Sources */, - 28429A6E616618E6B08D86AF /* UnknownSlicedValue.swift in Sources */, - 57108E257AC9261FB5069FB2 /* Util.swift in Sources */, - 6FC71A301B27CC7FA0027BCB /* Value.swift in Sources */, - 34EE9DD24DD083F634E12863 /* ValueFactory.swift in Sources */, - F9FB5847BA17D71BDEB8CD3E /* ValueFactoryManagerI.swift in Sources */, - 9E8E53FE156010BFF5DC1269 /* Version.ice in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B76C94C29C765526C68FF280 /* Sources */ = { + 9E9D8101C63F168A2671038A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D2182EDB5F424F3BAF7F9031 /* ServerAMD.swift in Sources */, - ECA14EF3168ADD1CADAA2412 /* ServerPrivateAMD.ice in Sources */, - 5E6ACA2706577F86C6BD63A5 /* TestAMD.ice in Sources */, - 58486D02688602A294423B0A /* TestAMDI.swift in Sources */, + 48F65F1EC6084A5403D04581 /* Clash.ice in Sources */, + BC6D32D684B5D1AD42E0F152 /* Client.swift in Sources */, + 162EB825BB854127C89AFD5A /* Key.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B8032E351A2CAFE627A0F284 /* Sources */ = { + A0A95DA7DA0837299DE560B5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 75F30C004B2F25D519C47F38 /* AllTests.swift in Sources */, - 68B2BA23F0F35E129978B5F4 /* Client.swift in Sources */, - 5583AB154D7DDDDBFA04D425 /* Collocated.swift in Sources */, - 93FA6A382030BA3024CCAA11 /* Server.swift in Sources */, - 4D5D64A75C3980434AB2B62C /* Test.ice in Sources */, - 1FBD2C3969755E3369FD446C /* TestI.swift in Sources */, + F2B4C954CE265C6CA7C0379F /* AllTests.swift in Sources */, + 9F02E57705301888BB25FD35 /* Client.swift in Sources */, + EACB71E0E6B79A43AEF2452C /* Server.swift in Sources */, + C1D8C9E056AE47058B5916B9 /* Test.ice in Sources */, + 25F006CA0FD62D4C9BF10554 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BA68633733EA8DC078472E17 /* Sources */ = { + A105E9C54B8CE1280D18B996 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0B56B3285A3024625C6D8EBE /* AllTests.swift in Sources */, - E4FBD54DA9C31F5C270E28F2 /* Client.swift in Sources */, - 6D7B67131EC5E96486DDED74 /* Collocated.swift in Sources */, - 5F4B13AFD4F4C3A48241FC6E /* Forward.ice in Sources */, - 440CCC244191FBEE5A4AADA9 /* Server.swift in Sources */, - 77A5CF43AD41BCA4A888A8B7 /* Test.ice in Sources */, - BF5EDC7A264BA5419CBF2B90 /* TestI.swift in Sources */, + 91EE5AFE5F51B13A2CE3DF2B /* ServerAMD.swift in Sources */, + 80F1D9C228F0BF9DBBAE4303 /* TestAMD.ice in Sources */, + FC4406B16133D5DB2D35C383 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BB65F0DCE4801282D4A53128 /* Sources */ = { + A258BBCE321A6745D6E518FC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 301BE10193F66C6D2893019A /* AllTests.swift in Sources */, - A5E1BE1AF679632A95DEC255 /* Client.swift in Sources */, - 341327A6974A4A08B40FB8B5 /* Server.swift in Sources */, - EB73996E2DD669BEA3D29BB7 /* Test.ice in Sources */, - 1A518DE705FC5677037EC535 /* TestI.swift in Sources */, + 7159B0E9B5F600926609553D /* AllTests.swift in Sources */, + 98C63A6AC7E7D302D5AB19C4 /* Client.swift in Sources */, + 0599EB19C53CE42679713230 /* Collocated.swift in Sources */, + B680D486ECC83205B33E33BB /* Forward.ice in Sources */, + 97AE63872BAD7172B1181466 /* Server.swift in Sources */, + 5903AEE70DCBEDA77A0E608A /* Test.ice in Sources */, + 82FA9FDF8A79865391D2ECE9 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BCEB796595D0483CD00AFFFF /* Sources */ = { + A2CDC7AD3288B99AD16BB1FF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 93A55E1B9AD305331FDA0BEF /* Client.swift in Sources */, + 594566C343C21A76FAA6AC62 /* Acceptor.cpp in Sources */, + A94E182EB3CC9B77214F82FF /* AcceptorI.cpp in Sources */, + 4D568F236E2D7CED11EDBD4B /* ACM.cpp in Sources */, + 5B1B8A3663B396E286748837 /* ArgVector.cpp in Sources */, + EAFD3C037AB308364D7C3257 /* Base64.cpp in Sources */, + 9B8F978405764AA08F53E651 /* BatchRequestQueue.cpp in Sources */, + 213DD2695258E7D764A67CBF /* Buffer.cpp in Sources */, + C3D4E0973C91434F5D74C990 /* BuiltinSequences.ice in Sources */, + 21946641DC7DAE3869380451 /* CertificateI.cpp in Sources */, + AD677EC668DEBC813361B3DA /* CollocatedRequestHandler.cpp in Sources */, + 126E4F5D33FB622D5FA86CEC /* Communicator.cpp in Sources */, + 823C5974E18DDD9AD02B4305 /* CommunicatorF.cpp in Sources */, + 2B9B7237061ABFE8D6FE67C2 /* CommunicatorI.cpp in Sources */, + FBDA2A323E16719E6B1D4FCF /* Cond.cpp in Sources */, + A3B322BCDB19F5455D136285 /* Connection.cpp in Sources */, + 077926E720AD3AF95DCA673D /* ConnectionF.cpp in Sources */, + 5F2EC79C63A8085DE548184B /* ConnectionFactory.cpp in Sources */, + EBDF86BF40CA2C7A8491A3CB /* ConnectionI.cpp in Sources */, + C3DF05379E8D5676B42811C5 /* ConnectionInfo.cpp in Sources */, + 60014B90BC57A700A35D230F /* ConnectionInfo.cpp in Sources */, + AC3EE8A69C69ADB755F265A5 /* ConnectionInfoF.cpp in Sources */, + 82EB528E879F99ECDC7E0920 /* ConnectionRequestHandler.cpp in Sources */, + 9645FE28EE9C68CB503EBC68 /* Connector.cpp in Sources */, + 1FFC9D29523F725EC9D26C12 /* Connector.mm in Sources */, + 6BBE89367267A9634CFDA9DD /* ConnectorI.cpp in Sources */, + 3176C1ACCF72E6B00AE4FA9F /* ConnectRequestHandler.cpp in Sources */, + 834C50E4101DC0534FD8BD75 /* ConsoleUtil.cpp in Sources */, + B9B24E396FDE347A421F9CD5 /* Context.ice in Sources */, + F2596BE326CE45BC7742E857 /* CountDownLatch.cpp in Sources */, + AF07549D2B06CF7F9786B699 /* CtrlCHandler.cpp in Sources */, + BA36AAF6A0759F3AF120A5EA /* Current.cpp in Sources */, + 6A25F4A45665FB37317F0ABC /* DefaultsAndOverrides.cpp in Sources */, + 7C966E8687EEC9441CD91EE8 /* DispatchInterceptor.cpp in Sources */, + AF6ED8A265DCBAAAE53BE464 /* DynamicLibrary.cpp in Sources */, + 36D5956FE1CB2AABA1D11242 /* Endpoint.cpp in Sources */, + 319139978F867560AA586FAB /* EndpointF.cpp in Sources */, + C95230B6CF60D4621CC8A0AD /* EndpointFactory.cpp in Sources */, + 696FCB63E3F62F57CF3C51B9 /* EndpointFactoryManager.cpp in Sources */, + 14AA20DE19EC61D215210EAE /* EndpointI.cpp in Sources */, + A5EA530DE3FF889027C595FA /* EndpointI.cpp in Sources */, + A522E2458E53D4F502599497 /* EndpointI.mm in Sources */, + F7C8A67B885A817C96022E8E /* EndpointInfo.cpp in Sources */, + 4DB1B5C5817E372996B98F97 /* EndpointInfo.cpp in Sources */, + 29281F511CB2A433A216C41E /* EndpointTypes.ice in Sources */, + BFFC556723B1885754F25EE7 /* EventHandler.cpp in Sources */, + 168134F128FE2145309BB1E4 /* Exception.cpp in Sources */, + 595268DD165C26007CB80FEC /* FactoryTable.cpp in Sources */, + C8E5F5A0CB9E7A88D599124D /* FactoryTableInit.cpp in Sources */, + 85C76D2C7D87932FF4C38397 /* FileUtil.cpp in Sources */, + A858BCBEC0D95F005094AB59 /* HttpParser.cpp in Sources */, + 3F7FFAD18E73947AD4912F72 /* IconvStringConverter.cpp in Sources */, + 9CF1829BE2AF5FACD04C9DBE /* Identity.ice in Sources */, + DF3CEEDE9EC370E61DC8F21A /* ImplicitContext.cpp in Sources */, + 050D10DF351B1C867806A92E /* ImplicitContextF.cpp in Sources */, + 8B591102B6FF277BC4A39937 /* ImplicitContextI.cpp in Sources */, + DD683627B085DAED6347C947 /* Incoming.cpp in Sources */, + 0CC2384A54EE205EDD3F9F49 /* IncomingAsync.cpp in Sources */, + 60106CAE83EB6F55217038F7 /* Initialize.cpp in Sources */, + ECC6D6BFAE455D0D6467A97A /* InputStream.cpp in Sources */, + 09DDDD95E33E8F5D105C3A05 /* InputUtil.cpp in Sources */, + 1F5830519586264CA16FA228 /* Instance.cpp in Sources */, + 6C64384B79949A75BA4F4F0B /* Instance.cpp in Sources */, + 3BDB0FCB06A9BCE7410E2D08 /* Instrumentation.cpp in Sources */, + BB0316A2829DB1C48EBC4310 /* InstrumentationF.cpp in Sources */, + C081086F5629F3DB313DA8F1 /* InstrumentationI.cpp in Sources */, + 910F4AFF392E24D57930ED93 /* IPEndpointI.cpp in Sources */, + 6CEDF708F1169CC054822456 /* LocalException.cpp in Sources */, + F1D0B9CA4E53F0F5D4F4CD7C /* LocalObject.cpp in Sources */, + 1B319ED8181610ABAB51CD83 /* Locator.ice in Sources */, + 32CD457E3C5431C0F933BBF0 /* LocatorF.ice in Sources */, + 5A8F2D3CFD11ECC83D52ADCD /* LocatorInfo.cpp in Sources */, + F4B2C0B78846F44DD5783E24 /* Logger.cpp in Sources */, + 0DB58E85F0DB6E63F47C6B81 /* LoggerAdminI.cpp in Sources */, + B50B7BD76CAB3AF2CE75EA3C /* LoggerF.cpp in Sources */, + BE51A0791F89A85D2C6183C4 /* LoggerI.cpp in Sources */, + 891EDFD22D979D7B2F8B7EAB /* LoggerUtil.cpp in Sources */, + 601387DC6D14FCF71AE0D19A /* Metrics.ice in Sources */, + DFF0A49D4C787A8A1EF31837 /* MetricsAdminI.cpp in Sources */, + 7257EC947D01F51EB3EBF24D /* MetricsObserverI.cpp in Sources */, + 5B260BAABF5BEDF1B2671AEC /* MutexProtocol.cpp in Sources */, + 36E9E80DDAD8AAF1E48D5DE2 /* Network.cpp in Sources */, + 39ABCE49B0129B2D0C40BBF4 /* NetworkProxy.cpp in Sources */, + B247222F3766E51A219EBD4B /* Notifications.mm in Sources */, + 0501045FD20F0DB912FD22D4 /* Object.cpp in Sources */, + C2C3EFD402723454A3CE8FE0 /* ObjectAdapter.cpp in Sources */, + 8CC3657F13D314A0F34FE8B3 /* ObjectAdapterF.cpp in Sources */, + 52CF8061A33F555659B8458E /* ObjectAdapterFactory.cpp in Sources */, + 3735A35C22EB73B09F24F128 /* ObjectAdapterI.cpp in Sources */, + F2364111174F01731C82C021 /* ObserverHelper.cpp in Sources */, + E47CD5936E8B95B198BFA1C2 /* OpaqueEndpointI.cpp in Sources */, + 21728AC16E7DD6C3CCAFAD21 /* OperationMode.ice in Sources */, + 0F5B96484AADBBB4073931A4 /* Options.cpp in Sources */, + FEC198B949003EBC0419B2FE /* OSLogLoggerI.cpp in Sources */, + B84A3412BF7B48EBBA623F6F /* OutgoingAsync.cpp in Sources */, + 72F1699CF5C9D0AC7F104D94 /* OutputStream.cpp in Sources */, + 4E839FFF2154FB34E6315565 /* OutputUtil.cpp in Sources */, + 7B93B52150FB69C91335F6DF /* Plugin.cpp in Sources */, + D944DDDFF3D0B9567A1BE5E2 /* PluginF.cpp in Sources */, + 925F643FD55E8BC1034ED68C /* PluginI.cpp in Sources */, + 871D07B0849F6260110751F4 /* PluginManagerI.cpp in Sources */, + DB4F11B521C6D3A69C4FA7CE /* Process.ice in Sources */, + D9B2618F56528BF1B2DED2BF /* Properties.cpp in Sources */, + 2B4577C6B0D0EC4CEE11FFCA /* PropertiesAdmin.ice in Sources */, + 65C81D615F1F29ED0E38B879 /* PropertiesAdminI.cpp in Sources */, + 9DF3FC6AACD41BD370C0FC11 /* PropertiesF.cpp in Sources */, + B7AE6DA720BB24FB7D458DB6 /* PropertiesI.cpp in Sources */, + DCEDCE9F1CD9514D03FBC3C3 /* PropertyDict.ice in Sources */, + 00C451DD3B6787E3F1EA946F /* PropertyNames.cpp in Sources */, + 63F00F80A1DA82B9D3A758BD /* Protocol.cpp in Sources */, + 7C2EC9F7EC44971E8E033030 /* ProtocolInstance.cpp in Sources */, + 570334BBB6964AEC5613EFA6 /* ProtocolPluginFacade.cpp in Sources */, + 4999BA2BD3C8631DF66D2C39 /* Proxy.cpp in Sources */, + 4CE67D0CB90C3387427101B4 /* ProxyFactory.cpp in Sources */, + 4F2BAC7791054249F17E1D6F /* Random.cpp in Sources */, + 008A2426B32864DB03A20B7C /* RecMutex.cpp in Sources */, + 09C21C8473C6976E52291B99 /* Reference.cpp in Sources */, + 34EB9BB331D1E14CACA8625F /* ReferenceFactory.cpp in Sources */, + 2F87231EC5F543E6A74DB815 /* RegisterPluginsInit.cpp in Sources */, + 2F9F878F4E3E7E2DA2B1A888 /* RemoteLogger.ice in Sources */, + 3227E645394F23A38CD1757F /* RequestHandler.cpp in Sources */, + 03B53422FD2E61D3956DF08B /* RequestHandlerFactory.cpp in Sources */, + 8B44E5682EF1126AD82D28DD /* RetryQueue.cpp in Sources */, + 6EB02E133B4E86AD6232B240 /* RFC2253.cpp in Sources */, + A0297A42C5C8FFF1130AE25A /* Router.ice in Sources */, + 2E90A89093E42E33FF954C66 /* RouterF.ice in Sources */, + 522BF48392FC916675C87C5C /* RouterInfo.cpp in Sources */, + 718C83E440AF75265AC2FAA2 /* SecureTransportCertificateI.cpp in Sources */, + 427867D63DFC77C63EB18875 /* SecureTransportEngine.cpp in Sources */, + B05CE058BC244B6E3057D225 /* SecureTransportPluginI.cpp in Sources */, + A66A06BE14EECACF53996ECA /* SecureTransportTransceiverI.cpp in Sources */, + C5A8952214CFC78A3233C2BC /* SecureTransportUtil.cpp in Sources */, + 9317A82FB7BD4F383FD583F7 /* Selector.cpp in Sources */, + 8596A7EDD1E6ACEAA760FA23 /* ServantLocator.cpp in Sources */, + 0510AF3C93C359FBC7A8A61F /* ServantLocatorF.cpp in Sources */, + DCB9207DBBD27DB0A13C371F /* ServantManager.cpp in Sources */, + 2CE77BD0998F6674A0D061C8 /* Service.cpp in Sources */, + 4F49BFE850F3B527253D8E14 /* SHA1.cpp in Sources */, + 35AE42FE55F555A9C11CF3A6 /* Shared.cpp in Sources */, + 9C1C4D68F95FC5A4A29F2FC6 /* SlicedData.cpp in Sources */, + FEBC2B49BBC84BD0A8F105BA /* SSLEngine.cpp in Sources */, + 381E4DF0E691F60D3DC751BC /* StreamAcceptor.cpp in Sources */, + F8AF05D3D02758C4D61B5AAA /* StreamConnector.cpp in Sources */, + 94136B93D52B1FDDA9979D3E /* StreamEndpointI.cpp in Sources */, + 0BAC289E822F69E4C7FD6A5E /* StreamSocket.cpp in Sources */, + E02E83CB5991647FE818D277 /* StreamTransceiver.cpp in Sources */, + 3019471D113F0F9D4946A705 /* StringConverter.cpp in Sources */, + 3785D9A8FDFAD55894CBE6B7 /* StringConverterPlugin.cpp in Sources */, + 99184557407C308C42EE5974 /* StringUtil.cpp in Sources */, + 649246D3EDF9617AF096AAC3 /* SysLoggerI.cpp in Sources */, + 8FD912C4ECE34E96169C6F0E /* SystemdJournalI.cpp in Sources */, + BF4903DC977C17334DF4B81E /* Thread.cpp in Sources */, + 00D76D517CA760B0D26AC140 /* ThreadException.cpp in Sources */, + 6A436DD00E6EF12A8FACADD7 /* ThreadPool.cpp in Sources */, + 5BD35BDF4A24F0DEAFCCF83C /* Time.cpp in Sources */, + 21CDF6EBB244BECBC93B8854 /* Timer.cpp in Sources */, + 2E4C55A1C837BF2D2F851C8C /* TraceLevels.cpp in Sources */, + EDBAF134DD0098517F50EF31 /* TraceUtil.cpp in Sources */, + 558DAB2B21D2CE6918A7D71A /* Transceiver.cpp in Sources */, + 4DEB274AFE53A779B0AD5208 /* Transceiver.mm in Sources */, + 1BB667FA07A5B54C30F6FD59 /* TrustManager.cpp in Sources */, + 002D46AEBB48571A3346772D /* UdpConnector.cpp in Sources */, + DC43BC0784EB4DB40CE3D228 /* UdpEndpointI.cpp in Sources */, + 27DAF0B89D5463516F434156 /* UdpTransceiver.cpp in Sources */, + 47F857EBA23FAC143D24B094 /* Util.cpp in Sources */, + 273AD12D40E9196FA5F7B328 /* UtilException.cpp in Sources */, + F06DABC8F789B26B76E47733 /* UUID.cpp in Sources */, + 19C57D21F0CF05349371045B /* Value.cpp in Sources */, + 6824AA2D5903E4A815142CED /* ValueFactory.cpp in Sources */, + 5E896129EAA8AE0A8786F92C /* ValueFactoryManagerI.cpp in Sources */, + A63E27295147CE246831BCEF /* Version.ice in Sources */, + F24E976B9B14EFDD3A43D9F0 /* WSAcceptor.cpp in Sources */, + 6237103EC7087CC1F8B1180D /* WSConnector.cpp in Sources */, + 725015781BF9E1A29DF6C6BC /* WSEndpoint.cpp in Sources */, + 33D41619BA0FABFAD2FA28D7 /* WSTransceiver.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + A302466F7767DAB72EF81826 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + B8F88BD1EB9433D3D5245ED1 /* AllTests.swift in Sources */, + F68B4DF0253D222B31B35C26 /* Client.swift in Sources */, + 34C5CC632B8A41186DFE4E2A /* ClientPrivate.ice in Sources */, + 52FB3E557DCB1D6776B836A6 /* Server.swift in Sources */, + 6F2C784D7AB29466E3DB65E1 /* ServerPrivate.ice in Sources */, + 06DFC340DF75BF1F2A034592 /* Test.ice in Sources */, + C598919CF0C8501D3DC90D5B /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C0C732FC4178000245364070 /* Sources */ = { + A3058C0E432687C445899555 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CE2779944FA767DA126FEEA2 /* Metrics.ice in Sources */, - BC0B0B742862293CE8A7FC27 /* PermissionsVerifier.ice in Sources */, - 13A1507C47E19EBDB356393F /* Router.ice in Sources */, - A672343C82932AB55640994F /* Session.ice in Sources */, - 47DDD95FA4E11556E2A2FFFE /* SSLInfo.ice in Sources */, + BB3B26C8715649A1082E7F4B /* ServerAMD.swift in Sources */, + 474E338B4AC8335316D7614B /* TestAMD.ice in Sources */, + EED1C79E8ACA0DEC111B78B5 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C3D6F51913CB22B1F54DF445 /* Sources */ = { + A4CF7E95480B760598F95AB6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 835728A3D06C44C39FD08606 /* AllTests.swift in Sources */, - FC0B458F1E3B6ACC60EFFC5A /* Client.swift in Sources */, - 441C17F2A71BAB8BD7632AF8 /* Collocated.swift in Sources */, - 264FC7039144448AB76A1BA6 /* Server.swift in Sources */, - 3F3FD483C748878BAE9A763D /* Test.ice in Sources */, - 7C2A370357696F6B596F372C /* TestI.swift in Sources */, + 7AF9796D17FFCD4906A6451B /* AllTests.swift in Sources */, + A43A9DE2D4D6F8D205F796B1 /* Client.swift in Sources */, + F3BFDF6276C92219D831CF37 /* Server.swift in Sources */, + 1820E94E892ED711749FC010 /* Test.ice in Sources */, + E35148CD7DAB1777BA4CAFB1 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C76332C341D31121F8357DEF /* Sources */ = { + A4DF6A87BDB936461A8E9EE1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9EB301C314B9198FE32FD807 /* AllTests.swift in Sources */, - B25FD68CE19CD758606D888B /* BatchOneways.swift in Sources */, - 81546A6B27867D58D0599956 /* BatchOnewaysAMI.swift in Sources */, - 0DFBC4E293DE0A8CA5A72998 /* Client.swift in Sources */, - 52E43C511C82D7CBFA359151 /* Collocated.swift in Sources */, - 9A12413C10010CB6707C825A /* Oneways.swift in Sources */, - 5FF391C20C54394DB3D86808 /* OnewaysAMI.swift in Sources */, - D56236C58D806BDCDFAFB55D /* Server.swift in Sources */, - 1FF71CF3C32AB23207DDFD5E /* Test.ice in Sources */, - 60898D1865AE07145800D081 /* TestI.swift in Sources */, - 0A5EF2FE9F4611AD6AE8FEFC /* Twoways.swift in Sources */, - 68FF4B2BC3A945BB42E22CA2 /* TwowaysAMI.swift in Sources */, + A5C7B5F4BE7054185E9ED7B4 /* AllTests.swift in Sources */, + BA1CC1B8CA069209399840AB /* Client.swift in Sources */, + A889F31C6222CF6B413FEAA4 /* ClientPrivate.ice in Sources */, + 533D2D01CB77BB514B59F34B /* Server.swift in Sources */, + 3174FEE3ACD5C905498C724B /* ServerPrivate.ice in Sources */, + EC3539F63056F5A2F978BCFD /* Test.ice in Sources */, + F51CE551648B1FC70B05D074 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C8477A0FED449B4755E04676 /* Sources */ = { + A50761946EE7786E8FF77E3E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2183FFCBE0D8F125D4CCDC66 /* ServerAMD.swift in Sources */, - 5F5DD0241DF82B371615C585 /* ServerPrivateAMD.ice in Sources */, - 5A9741F8CD8B13337EB9E62E /* TestAMD.ice in Sources */, - 658E953F2F7AA565D624AD4F /* TestAMDI.swift in Sources */, + 23B09A92B78FBE8EA2CE495D /* AllTests.swift in Sources */, + 30AA16E058EB3692DC6E2379 /* Client.swift in Sources */, + 1BEBAB28570D1EE8C6675339 /* Server.swift in Sources */, + 32E981B5BBB4EC769C17C945 /* Test.ice in Sources */, + 36DD95350FA8FDFDA645E3E2 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C8A227DBD6A7A872CBC5FDBB /* Sources */ = { + A567673057B52D283B55DAEB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AF627E5E2C3D04E8C03BCAB5 /* AllTests.swift in Sources */, - 9F96FB1AC8D2B8DFCF10F98A /* Client.swift in Sources */, - FD33B6E9669D9F36FC39B61B /* Server.swift in Sources */, - 08E348203EE92C07B16F3479 /* Test.ice in Sources */, - DE2F31CB0FCCC3BE50C8FAB1 /* TestI.swift in Sources */, + D5F2E483F2CAB70FF08377D3 /* AppDelegate.swift in Sources */, + 9361CD9DE69BE96914733C00 /* Assets.xcassets in Sources */, + FB55128612C2742926060871 /* Controller.ice in Sources */, + 62A9BD88B66BE231F302E36D /* ControllerI.swift in Sources */, + 7C5CFF83614D9F86032B07B6 /* LaunchScreen.storyboard in Sources */, + 4A8DE40065856BD29FBFAA69 /* Main.storyboard in Sources */, + 83D4406DF952DF489E1107AD /* ViewController.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D1B441C4A5BCB25875982891 /* Sources */ = { + AD531935AFAD1531570A2E88 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4818DA06708C65C6A876007D /* ServerAMD.swift in Sources */, - 147D31F3ACEB7CBFA7E40B91 /* ServerPrivateAMD.ice in Sources */, - 4030AF74943D9FB611B8AC4E /* TestAMD.ice in Sources */, - 41B2664CFD924B85145D5D2D /* TestAMDI.swift in Sources */, + 21E191C1A872E6B9639C12AE /* AllTests.swift in Sources */, + 951BF89EA1BA46A1D088D322 /* Client.swift in Sources */, + CCD563DCABA4AE62E785390B /* Server.swift in Sources */, + F8B84A99BE37924E8E4DA550 /* Test.ice in Sources */, + 6560EEE1F2DDA7C75C23DC84 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D504994ED86C0EE6327A898B /* Sources */ = { + B07361FD04E0EB287FC02C73 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5BBDD261CAB46A3060BFD55F /* AllTests.swift in Sources */, - 54F64FD6F39267CD57517251 /* Client.swift in Sources */, - C4EE39B3A8457563577B0CC7 /* Collocated.swift in Sources */, - D7C84EF7FDA58A85651F60C3 /* Server.swift in Sources */, - B66B5115A094C24893FB4C04 /* Test.ice in Sources */, - 77A2D62712DE37F0627A138A /* TestI.swift in Sources */, + 51718C680023987FABCD1AC0 /* BlobjectFacade.mm in Sources */, + 3092E3797E27EB23086A6186 /* Communicator.mm in Sources */, + 45C8356339CDAABE8A6A654F /* Connection.mm in Sources */, + 7567ABA971B703E0E97D7074 /* Convert.mm in Sources */, + D8537385D90C11E0C55840C6 /* Endpoint.mm in Sources */, + EEA8CF883428B01324439676 /* Exception.mm in Sources */, + C51CBF0C456B9754875C8C21 /* IceUtil.mm in Sources */, + BF3C71DE6E1B77891A8EE4C8 /* ImplicitContext.mm in Sources */, + 3B70CC7AAB5D7662B0C62A0B /* LocalObject.mm in Sources */, + 48E28B43D4D3A00FD1BD4837 /* Logger.mm in Sources */, + EBB0CD6C3F76CA09601BFCD6 /* ObjectAdapter.mm in Sources */, + 0ABE43B89DB8BBA0C05AF133 /* ObjectPrx.mm in Sources */, + BC13CEA38D6BFD3DCB8DE8CF /* Process.mm in Sources */, + 3DCA331E0DAA68788AC08507 /* Properties.mm in Sources */, + EA3ED4751E869E5A27D4B1F3 /* PropertiesAdmin.mm in Sources */, + 9F4E88E1BE476B691EB5AA77 /* TraceUtil.mm in Sources */, + F8A26A46B9D469F028B274D6 /* UnsupportedAdminFacet.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D64890E98A72ADBFDFA02D73 /* Sources */ = { + BAED5288881D9007CA76557B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 45F431096243A6CCD447ADD0 /* IceLocatorDiscovery.ice in Sources */, - 2F50A90E920A49695AB20462 /* PluginI.cpp in Sources */, + 3D27768EEEE5E9E3E432960F /* AllTests.swift in Sources */, + 4790E7C482F60F51C89C2D5D /* Client.swift in Sources */, + 6B29EE17CEB0883F0D063271 /* ClientPrivate.ice in Sources */, + 249AED08BF39BE47CAAA6C1A /* Server.swift in Sources */, + ACAEA3DEF571AB0493629190 /* ServerPrivate.ice in Sources */, + 8D2F94CAC28D59049C60DC1E /* Test.ice in Sources */, + 57696667BFF60D8AB4745BA0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D84617619F7C20813FF9C29A /* Sources */ = { + C289295116515405522CC64B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 858DC15F9B2FF9CB6E0A89B6 /* AllTests.swift in Sources */, - 0EE3E91697B2879846F8F49C /* Client.swift in Sources */, - 71E38652DAAAE468B4F5D1DE /* Server.swift in Sources */, - A8D685465E5BBF2AF42BB211 /* Test.ice in Sources */, - 9027FE9E364D4D7674E94300 /* TestI.swift in Sources */, + 8673BE61C2E4DD507B2C82D9 /* ServantLocatorI.swift in Sources */, + 3928839CC07F3A7BC120D07B /* ServerAMD.swift in Sources */, + A9A0209FD1FBE2BCD1C84F3D /* TestAMD.ice in Sources */, + 79EB3FB42AB2CF59B72AC2D1 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DE9EB00E333E4DD3BCF925D3 /* Sources */ = { + C69B92D8253CAABE1A233CD6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6BF8EFBD8F8BBFD6F0DA48DA /* Client.swift in Sources */, + BB664E60668EDDA5C2277A5E /* AllTests.swift in Sources */, + EAE540AF9A510E806A0A6DE0 /* Client.swift in Sources */, + 93A61FFCB9A6801419DC2543 /* Collocated.swift in Sources */, + A8E72CB2A00CF277AEE78765 /* Server.swift in Sources */, + 445148345353A71A0D5F606C /* Test.ice in Sources */, + D90CE957121A84EACAD5D2E3 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DF2BAEAF833A6D766E15283A /* Sources */ = { + C9BC85A39F6E524BDBD6DBE5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 248FEA012067A2F54A434DE9 /* Clash.ice in Sources */, - 716B296D602451B28CE1A50A /* Client.swift in Sources */, - 96541ED42B4D94224653EA55 /* Key.ice in Sources */, + 70C027AC16D30B5A2B70C8EE /* AllTests.swift in Sources */, + 4DA2E17F5FCB1BBDE6775697 /* Client.swift in Sources */, + 55D2A9DB1D4196C735453FDE /* Collocated.swift in Sources */, + AB4F72E3E6814533352A5C03 /* ServantLocatorI.swift in Sources */, + 386053403216670C3F4FDAD6 /* Server.swift in Sources */, + AA0BEC836C4EE11F76FCDCEF /* Test.ice in Sources */, + 53CE9FAC21216074C1F61F54 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E348665D2E7B54767A723942 /* Sources */ = { + CCD5534F46DBEDD9928F2800 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6F6F80AA28996FBA4EF0E0B0 /* Acceptor.cpp in Sources */, + CD25BD05523C2443FC2D8784 /* AcceptorI.cpp in Sources */, + AAA099ECB68A20E883D8E4C4 /* ACM.cpp in Sources */, + AF4CF497AC2E6E5810C24ACC /* ArgVector.cpp in Sources */, + 7C068A83F6A5E65E7E91EE90 /* Base64.cpp in Sources */, + E962F80C77FF5299C4C4D217 /* BatchRequestQueue.cpp in Sources */, + 45350E1F3DD40EAB236AD089 /* Buffer.cpp in Sources */, + B6D2CACE37569D360E81CF71 /* BuiltinSequences.ice in Sources */, + AABC7FD5416351DA827EE6CD /* CertificateI.cpp in Sources */, + F97303BDE976828772DB337F /* CollocatedRequestHandler.cpp in Sources */, + EA7894F677C2CB4B39104F52 /* Communicator.cpp in Sources */, + 2492A830D4759726D136DE5B /* CommunicatorF.cpp in Sources */, + 2AB85ED1CB4AB3643D8EAA03 /* CommunicatorI.cpp in Sources */, + 81DD28CC5DAEF8400F43CF2B /* Cond.cpp in Sources */, + 39E735E4180A345C712046BE /* Connection.cpp in Sources */, + FF9DB9AC2D507DF4E55AC4E7 /* ConnectionF.cpp in Sources */, + CC1BC24CBADEC97580FD197E /* ConnectionFactory.cpp in Sources */, + AFFA1EC2F552AA0DA6BF3FEA /* ConnectionI.cpp in Sources */, + BFC2B93623F814848E325C16 /* ConnectionInfo.cpp in Sources */, + BA6187767D253C1BA6CAC523 /* ConnectionInfoF.cpp in Sources */, + 84C5040B492054A7AB337941 /* ConnectionRequestHandler.cpp in Sources */, + 2108F8BEC05828373DC7B0E8 /* Connector.cpp in Sources */, + 05F1F0ECB0C2066F3F91E035 /* ConnectorI.cpp in Sources */, + 68079088850A91F489DB7D5E /* ConnectRequestHandler.cpp in Sources */, + C770E74F553F7576F55A68FF /* ConsoleUtil.cpp in Sources */, + D601DC97D4D4A251BD47C21B /* Context.ice in Sources */, + 03931C98AA255A9D2A9D9DFA /* CountDownLatch.cpp in Sources */, + C524553A01141672CDA8FB0A /* CtrlCHandler.cpp in Sources */, + 770AE78EF4DC9A9438C2BD9D /* Current.cpp in Sources */, + 218B9BB9B2A11AD51A3BB97A /* DefaultsAndOverrides.cpp in Sources */, + 5C105CA7B8B3E539C1A9952A /* DispatchInterceptor.cpp in Sources */, + 6CFC517CD2E862FD6770151E /* DynamicLibrary.cpp in Sources */, + A5ADD7F645F1566D778AA846 /* Endpoint.cpp in Sources */, + A46050EA919D71F382C537F3 /* EndpointF.cpp in Sources */, + 66D8553486B3E9ABB6CAE190 /* EndpointFactory.cpp in Sources */, + 0D288EEE4B875B489EF5870E /* EndpointFactoryManager.cpp in Sources */, + 6F3FAED34005B514F1024BA9 /* EndpointI.cpp in Sources */, + F119C7D34FDA00A16FC2901F /* EndpointI.cpp in Sources */, + B0D8D816BB46B93AD0B4CEC6 /* EndpointInfo.cpp in Sources */, + E3AC6A9A5C67AA8655036221 /* EndpointTypes.ice in Sources */, + 184460D94E2B82986F9D73F8 /* EventHandler.cpp in Sources */, + 7F59A0031365D9A1C5D30791 /* Exception.cpp in Sources */, + 74D9F57DFA21D7CCB6F7A270 /* FactoryTable.cpp in Sources */, + 65DE0677FD77F5B6C51F7824 /* FactoryTableInit.cpp in Sources */, + 53C41AD073B84093289AC54C /* FileUtil.cpp in Sources */, + 340B368D09AF08D09FF8B4E6 /* HttpParser.cpp in Sources */, + BDA08263A4011CDEEADA6EF2 /* IconvStringConverter.cpp in Sources */, + B0FF521816BF6FD5480F2F63 /* Identity.ice in Sources */, + 776246D78582E8F27CFB6885 /* ImplicitContext.cpp in Sources */, + F29EABBF0CB48EAEC44846C0 /* ImplicitContextF.cpp in Sources */, + B253F6E36F7116E7BE04ABC5 /* ImplicitContextI.cpp in Sources */, + 00DC7DC4340E8B978B32F33D /* Incoming.cpp in Sources */, + DBD096113939BA24E05072E2 /* IncomingAsync.cpp in Sources */, + E23E1EE2CED7A8E397A83390 /* Initialize.cpp in Sources */, + EA21B0DE086FB62B4FEF07D9 /* InputStream.cpp in Sources */, + 45ABE296BF26B7BC9B1CB021 /* InputUtil.cpp in Sources */, + 2A900017F9B07F306445BA23 /* Instance.cpp in Sources */, + 9B573BA9FF061F213A342DD2 /* Instance.cpp in Sources */, + 78965389BB6864B001653048 /* Instrumentation.cpp in Sources */, + 14917DEEE348358AA776CBC0 /* InstrumentationF.cpp in Sources */, + 5FA1F4752493BED64045E146 /* InstrumentationI.cpp in Sources */, + 01B4C8A8A096BCA8943E5D57 /* IPEndpointI.cpp in Sources */, + 661DAE22FD073F065DBC6AC3 /* LocalException.cpp in Sources */, + CE1B98B411AF06D2C3E6EFF8 /* LocalObject.cpp in Sources */, + 98DD7702A6CF7D47A0D588C5 /* Locator.ice in Sources */, + E19EEACF9EFBB411CE1EF29A /* LocatorF.ice in Sources */, + E5473376AED73F1438E138F2 /* LocatorInfo.cpp in Sources */, + 1B24BB8CAD6D0C6638C6B5F2 /* Logger.cpp in Sources */, + 938F025C2E68D7EF7FEECE82 /* LoggerAdminI.cpp in Sources */, + 397E2C753823E7C35B4CDE80 /* LoggerF.cpp in Sources */, + 36D95D5F6DDD658EC10A2269 /* LoggerI.cpp in Sources */, + 6FA3C22D831AEC7DE8B58128 /* LoggerUtil.cpp in Sources */, + 3DB825C1BB45879E493D0938 /* Metrics.ice in Sources */, + 6F3E4A6456078206853F36FA /* MetricsAdminI.cpp in Sources */, + 04DC15CF3AEA83FBED5B3923 /* MetricsObserverI.cpp in Sources */, + 4A8CF7471AA6DD6F4ED083F2 /* MutexProtocol.cpp in Sources */, + D3FA2823ABE107257D253E69 /* Network.cpp in Sources */, + D1DC12249C8AD1DE0B56F4A4 /* NetworkProxy.cpp in Sources */, + 4CC437849E14B364258974EB /* Object.cpp in Sources */, + 9EB39BFC3FFC4BAD40FACB29 /* ObjectAdapter.cpp in Sources */, + 89BC0EF8DDE8DD5899D94346 /* ObjectAdapterF.cpp in Sources */, + 97CDA46DC153E82F7AA00490 /* ObjectAdapterFactory.cpp in Sources */, + 8F6C7B677E7896DED0D466B6 /* ObjectAdapterI.cpp in Sources */, + 218B870E287FE7AFBDAB0E04 /* ObserverHelper.cpp in Sources */, + 35EA22D546539E865A175F8C /* OpaqueEndpointI.cpp in Sources */, + ABD3F68FFDF9EDA83E46A07D /* OperationMode.ice in Sources */, + 2DE268DAFAEAB00F5B587CB0 /* Options.cpp in Sources */, + 84D3DDB4C5A759FE668A341C /* OSLogLoggerI.cpp in Sources */, + 6A606B03EC935D5C4CC52274 /* OutgoingAsync.cpp in Sources */, + FDC57E65D1E2B61C6A9B72E4 /* OutputStream.cpp in Sources */, + 5AA3D766148A1CDCA716F2C1 /* OutputUtil.cpp in Sources */, + 55023367DFC441CB2094EBCE /* Plugin.cpp in Sources */, + 2B16E7346C0BEA3FA7DAF26B /* PluginF.cpp in Sources */, + FF3E4B8CF7B4533E10AF4001 /* PluginI.cpp in Sources */, + C37256EC29744BA7B9DE5286 /* PluginManagerI.cpp in Sources */, + 0D6D04112A34BDB1A5ADD8CF /* Process.ice in Sources */, + 1D61DE15530B90E1B7D25F3F /* Properties.cpp in Sources */, + D16B4716FEE396397A5DD51F /* PropertiesAdmin.ice in Sources */, + 3EBEA23EBB27232BDC5CCD9F /* PropertiesAdminI.cpp in Sources */, + 5313707749D818EF6702618F /* PropertiesF.cpp in Sources */, + 3B91A64379EA5CEE5B89F531 /* PropertiesI.cpp in Sources */, + D5C7A0B1BC49DC9001E9B256 /* PropertyDict.ice in Sources */, + 691AFDC8364C658E389E2213 /* PropertyNames.cpp in Sources */, + 2D7145AFAE0F26D9FFC8511D /* Protocol.cpp in Sources */, + 8691F48171F3FBA1569525C9 /* ProtocolInstance.cpp in Sources */, + 83160EAC50936B3146A6AC3C /* ProtocolPluginFacade.cpp in Sources */, + B69CA3403843BF3BC58AF46C /* Proxy.cpp in Sources */, + 56B17C9424CC94ABFD7119E5 /* ProxyFactory.cpp in Sources */, + 363DBCAA89220755AB470976 /* Random.cpp in Sources */, + 8A75D7A6D804EC0E8E884723 /* RecMutex.cpp in Sources */, + 871E5D291FA35F324B3E81A1 /* Reference.cpp in Sources */, + 93F8FB515F0210D60A52BF53 /* ReferenceFactory.cpp in Sources */, + 3668784874131EB100BDE095 /* RegisterPluginsInit.cpp in Sources */, + 07CBB84253EAE4D078067823 /* RemoteLogger.ice in Sources */, + AF3EE1D56748FE60B9D07826 /* RequestHandler.cpp in Sources */, + A44BBEB44F0061D52100F64A /* RequestHandlerFactory.cpp in Sources */, + 6D166B9C980E56A9E8EF62B2 /* RetryQueue.cpp in Sources */, + 3C083A1752C208F02A0E5BBE /* RFC2253.cpp in Sources */, + FA5C13F1752E964A498372BD /* Router.ice in Sources */, + C05D173424BD71E284A052B5 /* RouterF.ice in Sources */, + BD0BF46B65299F2E14DCB36F /* RouterInfo.cpp in Sources */, + 4A833E08CAE8DAF01AF34F0B /* SecureTransportCertificateI.cpp in Sources */, + 565CD83A7100582F10D0C51C /* SecureTransportEngine.cpp in Sources */, + C32369A16919A445F66F56C3 /* SecureTransportPluginI.cpp in Sources */, + 62F946138FDD30FE479D1FB8 /* SecureTransportTransceiverI.cpp in Sources */, + C5ADF2BFA92E78D349605C1F /* SecureTransportUtil.cpp in Sources */, + 37A05CDF0D1B76900EDB952C /* Selector.cpp in Sources */, + 4FB22EBA51E813560E3A92AD /* ServantLocator.cpp in Sources */, + D7C189E87156A9E30F00FF99 /* ServantLocatorF.cpp in Sources */, + B8FAD4AA198CF8C5259C6347 /* ServantManager.cpp in Sources */, + B668BF08B8C7168F91F12138 /* Service.cpp in Sources */, + EAA90F488F7A73863F034EB7 /* SHA1.cpp in Sources */, + 6E70E567FD5978DC9491EE6A /* Shared.cpp in Sources */, + AF3D0F3725F6ED9BB6A10163 /* SlicedData.cpp in Sources */, + F64A2A95D6F8A7C4F2952565 /* SSLEngine.cpp in Sources */, + 6CC23C2EFAF6B57D376E6BDA /* StreamSocket.cpp in Sources */, + D98AF6B485F2F611F7973894 /* StringConverter.cpp in Sources */, + 4B09029DBB4B214AEB80FB51 /* StringConverterPlugin.cpp in Sources */, + 45DC000704220A7B2C366463 /* StringUtil.cpp in Sources */, + A3AFD784B848DC0DA95132EF /* SysLoggerI.cpp in Sources */, + 07D7222D1DC55602F48017EF /* SystemdJournalI.cpp in Sources */, + 3B0CB41A2B7815B188F503A4 /* TcpAcceptor.cpp in Sources */, + 0994228FA78B3EE978437935 /* TcpConnector.cpp in Sources */, + 5C74592F59C896CB28F75E21 /* TcpEndpointI.cpp in Sources */, + 8B2DA6CCC6EDE09862BFF39A /* TcpTransceiver.cpp in Sources */, + 61D9DB5BD99D93D5F05A6905 /* Thread.cpp in Sources */, + EEC09ED2D0320C190B31AB1A /* ThreadException.cpp in Sources */, + 4E73C37B19BCA1FF950871C1 /* ThreadPool.cpp in Sources */, + B6633EDBE39668511F4FEA6C /* Time.cpp in Sources */, + 54E714BF0E244AB528DC7A76 /* Timer.cpp in Sources */, + CFA2FB72A8A2B0C3CD06F39F /* TraceLevels.cpp in Sources */, + 746772CCBA15207C42E0B52F /* TraceUtil.cpp in Sources */, + 130CB2286E54B4269616D7AB /* Transceiver.cpp in Sources */, + 388034EDA28AA24666FDDD77 /* TrustManager.cpp in Sources */, + 2FF58CD215110FB1A63946B4 /* UdpConnector.cpp in Sources */, + 5970CD2978B5A9EF00DAF5FF /* UdpEndpointI.cpp in Sources */, + 3E32B756E0EFA881F75F8646 /* UdpTransceiver.cpp in Sources */, + 22538C768CFB905DBEC2208E /* Util.cpp in Sources */, + 33C7FC60BC248C8588169BC1 /* UtilException.cpp in Sources */, + B1A75AAD0B9493B074B173F1 /* UUID.cpp in Sources */, + 576A0A4D63C4F2119BEFECC2 /* Value.cpp in Sources */, + 0BC909307ABA174C17DB5344 /* ValueFactory.cpp in Sources */, + DAB7DEB33FC1FA8912F2EBA2 /* ValueFactoryManagerI.cpp in Sources */, + 5D702352AF4AAFFA56A91560 /* Version.ice in Sources */, + A1F7F2E304F5642CFB7684A1 /* WSAcceptor.cpp in Sources */, + F495F23D82D40A47A9D1E607 /* WSConnector.cpp in Sources */, + 342C7119D135D4323BAD59F3 /* WSEndpoint.cpp in Sources */, + FBB2C953993DE748B2A6C6EB /* WSTransceiver.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CEB3403D6F5A44E1997D8B37 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6AC5237EB937FCFA6EED8B20 /* AllTests.swift in Sources */, - 11EA7A5A63E49B6E2068DA6F /* Client.swift in Sources */, - 229663A2BF8B77BDA8BDC1B4 /* Server.swift in Sources */, - D4A2BECB95664D2B3EF8208B /* Test.ice in Sources */, - 0D7C68892F6FB9AC55CB3DF7 /* TestI.swift in Sources */, + D60A3003C2A82F2742C7F04F /* AllTests.swift in Sources */, + C0F611668FFB784E0586D4F1 /* BatchOneways.swift in Sources */, + 33A9620CCC7170A38C183999 /* BatchOnewaysAMI.swift in Sources */, + 0B2F15344CAF65BC8262C9EC /* Client.swift in Sources */, + 4A60EC0FF950F8B338FE09C8 /* Collocated.swift in Sources */, + 331D3B59C70354E569BCEA5D /* Oneways.swift in Sources */, + D2515E535E9A0C8F55C4E938 /* OnewaysAMI.swift in Sources */, + 2DA75A9CC18C722CDDE384D0 /* Server.swift in Sources */, + FE4662B08E26ED2C373D6F18 /* Test.ice in Sources */, + 835B36D6CFAB0C6E23F1E1C2 /* TestI.swift in Sources */, + 6272D700C9BBD62FFDA84E5E /* Twoways.swift in Sources */, + 0072171CABFBB0251ABDA1B9 /* TwowaysAMI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E6BD7AF4534163901A16C006 /* Sources */ = { + D47795DE45B565BDB964B23A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A69001503A900CAC227CC4BF /* AllTests.swift in Sources */, - F5015433E6AFEA5007AB3A52 /* Client.swift in Sources */, - 901CAB6FEE7B29869F1169C7 /* Test.ice in Sources */, + 610FCFF738E3585A68D89D97 /* AllTests.swift in Sources */, + A5801C6541EB32F85A876882 /* Client.swift in Sources */, + 4D5D54BD1EA454E923B628F6 /* Server.swift in Sources */, + 2ED5BFAE362F90AFB43868EE /* Test.ice in Sources */, + 886BEFBD831159A546C6F6B0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E7F343821E76B5BEA92307B7 /* Sources */ = { + D49EE87B9CACBEF092809F3E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9D67421DEE41F68F2C19E948 /* AllTests.swift in Sources */, - 861C54C7D63637D4F67B1E85 /* Client.swift in Sources */, - 7717F7793C0F21796F41F956 /* Server.swift in Sources */, - F102ED578711A82936DBBA04 /* Test.ice in Sources */, - 71D20DBE6F86053842DFA945 /* TestI.swift in Sources */, + 02F2EFBEA4590FD7AFB2CFC0 /* main.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E97E53155473702F3D0C698D /* Sources */ = { + DCB1F6BD4F9A4018C16A552A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9B22F056CA2515C1F7CDFA3B /* ServantLocatorI.swift in Sources */, - 03EDB84ECEA4F0814D58ED1D /* ServerAMD.swift in Sources */, - 43E6E8B222589247F8E8C32C /* TestAMD.ice in Sources */, - 650FF9B1F05C613F5E891E04 /* TestAMDI.swift in Sources */, + EBBBBA347D35251165034E98 /* Client.swift in Sources */, + 5CF5C759CD5C9A490EA16A3F /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EB32919E1E6A8B4A3FAC122C /* Sources */ = { + DCBD1C7C048C69D71EEC4948 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2AE1FFEF13F0387860DDB551 /* AllTests.swift in Sources */, - 16E0064A24D1CC6BB3AB8FDF /* Client.swift in Sources */, - 9441D9A7C32304086B2FD1AA /* Server.swift in Sources */, - 65E49338ECFDEA0C116D189A /* Test.ice in Sources */, - 259EE277283241834F2918D1 /* TestI.swift in Sources */, + 5E90DAC6C21862E543F964B8 /* IceStorm.ice in Sources */, + 8293FA06292D0916E7E406E8 /* Metrics.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EB3E64B349C3B416A390C7C4 /* Sources */ = { + DD7D82133E5ABDF91FA82F91 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9BF9371AA952161F68806569 /* ServerAMD.swift in Sources */, - 052B1A84D3F1A5B398BE25BC /* TestAMD.ice in Sources */, - 9DDF7C7D0390862A81462257 /* TestAMDI.swift in Sources */, + 659150220A61BE0629AA408C /* ServerAMD.swift in Sources */, + 6CC0A293FAF7D9EBE4CE3999 /* TestAMD.ice in Sources */, + DBA772351D1FF736995A2143 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EF833938FAC76D1C5ABAC549 /* Sources */ = { + DD87BBC707D274A0611EB50F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3FBC5AAFC9214518C52B02C8 /* AdminFacetFactory.swift in Sources */, - 345DD6124919171A836086CA /* Blobject.swift in Sources */, - 5E5D0CEF32C64D8E95C81414 /* BlobjectAsync.swift in Sources */, - 874E780F88CCA8B1260EB299 /* BuiltinSequences.ice in Sources */, - 23C3369F48BBAB5708E43F36 /* ClassResolver.swift in Sources */, - 0846692DBC562522A6DDF718 /* Communicator.swift in Sources */, - CF260D7E63D0F4D4611F6D19 /* CommunicatorI.swift in Sources */, - BA305816C390A3A64960461E /* Connection.swift in Sources */, - 6D14D7C99FC199D24FA51EC1 /* ConnectionI.swift in Sources */, - 65B0F15FE3B9E2CB9F68E30A /* ConnectionInfoFactory.swift in Sources */, - 36F0FD75A6991CA77D2155B5 /* Context.ice in Sources */, - 8575CD8F32C46126D1E39812 /* Current.swift in Sources */, - C8C2673E9360DD0D6E03CE00 /* Endpoint.swift in Sources */, - 11F1E60032D46880907F9D7E /* EndpointI.swift in Sources */, - 521998EAA5E5765E18BD08EB /* EndpointInfoFactory.swift in Sources */, - 30AACEE53539E78B39065709 /* EndpointSelectionType.swift in Sources */, - 8F22E92EE14D8DC60925152D /* EndpointTypes.ice in Sources */, - BDA1714B4FED58EFEE24BA37 /* Exception.swift in Sources */, - BD33731DBE7741426C693477 /* FacetMap.swift in Sources */, - E7005526751DEE613D9612FF /* FormatType.swift in Sources */, - 31BD5813F362DBC5CDAE4778 /* IAPConnectionInfo.swift in Sources */, - A864FEE23DCAEB7E12AC7020 /* IAPEndpointInfo.swift in Sources */, - 1E01CDE551C72E8DAFD413C1 /* Identity.ice in Sources */, - 4C17C4DED97FEB26063F7FB0 /* ImplicitContext.swift in Sources */, - 6EB3E2E8935C9B3815032799 /* ImplicitContextI.swift in Sources */, - 964914477260480508A5E8EA /* Incoming.swift in Sources */, - 880F379822BB5C13E69F42B4 /* InitializationData.swift in Sources */, - 3577750E4D78EAAE4EA081F9 /* Initialize.swift in Sources */, - 35EAB4FF927234D59DB1B5A7 /* InputStream.swift in Sources */, - AAB6C59A833BB6AD153CC222 /* Instrumentation.swift in Sources */, - 6142CBE33598143F7E6660B0 /* LocalException.swift in Sources */, - 47E326B812CFE43B72E1791B /* LocalExceptionDescription.swift in Sources */, - BBFC294E675D3202F0F92269 /* LocalExceptionFactory.swift in Sources */, - D9FBEA7F7886AA874EABF1BB /* LocalObject.swift in Sources */, - 40AD5716CA0FBA3A7E791C24 /* Locator.ice in Sources */, - AA05BF94BB96F7E8581ABE1F /* LocatorF.ice in Sources */, - 8CB31627772612FE7BD3FFD0 /* Logger.swift in Sources */, - 5140549133D7AAE81879AA43 /* LoggerWrapper.swift in Sources */, - C0E3867ECF86D7FCF77590F0 /* Metrics.ice in Sources */, - D043B23BA2FC13AE4E368662 /* Mutex.swift in Sources */, - E58116929F20D2F3D0E0D7B1 /* NativePropertiesAdmin.swift in Sources */, - 5CA70177D0663EC590625BF2 /* Object.swift in Sources */, - EFD81A174108F9AEAE794459 /* ObjectAdapter.swift in Sources */, - 5F35E99184FA870E5AC4AB97 /* ObjectAdapterI.swift in Sources */, - 20BC125A42B8BC8F3332DEDF /* OperationMode.ice in Sources */, - 4ED2D0E5E1961A564A3F1734 /* OptionalFormat.swift in Sources */, - 3EB4D9A616EB29E8AFBACA88 /* OutputStream.swift in Sources */, - 850711A8C9C2ED89CD5B0B5C /* Plugin.swift in Sources */, - AA0D81E5A41D40DA7A27A340 /* Process.ice in Sources */, - 367C131110CF5DF84D3F8DF5 /* ProcessI.swift in Sources */, - 94465BBAE06E9881283D5804 /* Properties.swift in Sources */, - A060F0A9FC0512B17CAD612B /* PropertiesAdmin.ice in Sources */, - 11EC7CC17FE5415303996F60 /* PropertiesAdminI.swift in Sources */, - F79FE57E6DC449DBFDD06493 /* PropertiesI.swift in Sources */, - 5371B22F6CCE9185FCF8CE13 /* PropertyDict.ice in Sources */, - CA197C2D3E813E31CEF00A99 /* Proxy.swift in Sources */, - F2481AD1C258CE7A9E638616 /* RemoteLogger.ice in Sources */, - 640BBA69538EC923DEBF9176 /* Router.ice in Sources */, - 13A2C80C225E399FD4B20D44 /* RouterF.ice in Sources */, - 9051B6F459AD22A378D1B8CF /* ServantLocator.swift in Sources */, - 32E50FE681B7FCB0BBD938E4 /* ServantManager.swift in Sources */, - B68F1060552CA2AE0F6E85DE /* SlicedData.swift in Sources */, - 3DEC34F8522906059560F721 /* SliceFlags.swift in Sources */, - 903CE9504EF3F5BD90B8A68C /* SliceInfo.swift in Sources */, - 019376FB12AD63570FBEB199 /* SSLConnectionInfo.swift in Sources */, - 4F063F53DB1C3302BF1925EA /* SSLEndpointInfo.swift in Sources */, - 3748717F6848E03E351A5397 /* UnknownSlicedValue.swift in Sources */, - 670626BBCFDFE03F667E3C9A /* Util.swift in Sources */, - 119A7AE442E83B9FF22EC524 /* Value.swift in Sources */, - 6495EC0EDE4571DDFF313273 /* ValueFactory.swift in Sources */, - 8AE8A3EA45288995BBEAC728 /* ValueFactoryManagerI.swift in Sources */, - 29646306A7CD4DC15BC1CB51 /* Version.ice in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F0ADC1CF2E2EFF316D774616 /* Sources */ = { + A04279D86E579CE700B36A9F /* AllTests.swift in Sources */, + CFFE0C91E174DFB6AFC62D11 /* Client.swift in Sources */, + DB5F541975063E593546079B /* ClientPrivate.ice in Sources */, + C54BBC52A953AFB63D2B7ABD /* Server.swift in Sources */, + 408512F9A2A5C253183A58D0 /* ServerPrivate.ice in Sources */, + B79E763904325D5935C9EFB4 /* Test.ice in Sources */, + 2F5E1B622DE4AB7B49C41E7F /* TestI.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E078DD2EC4116147822ECE01 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5C43941F99E2DB7A35407251 /* ServerAMD.swift in Sources */, - FE6373583004A13A11CB9EF5 /* TestAMD.ice in Sources */, - 72A67D3D4C8E462425976C8D /* TestAMDI.swift in Sources */, + E181720D16E284E00EF5594A /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F1FC8508CB62D756F44B4DA3 /* Sources */ = { + E39E496686784AA05C22CC97 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0990AC7EE82B69FE3C105EB7 /* Admin.ice in Sources */, - EA661C4DA6FDBCBF200A0C4E /* Descriptor.ice in Sources */, - 058003066B1A2C157FE6A85D /* Exception.ice in Sources */, - B435EC2927C5DCD496121654 /* FileParser.ice in Sources */, - FF7D9730549EDA90FDE76FD3 /* Registry.ice in Sources */, - 062146CBA765C2B8E417E4C0 /* Session.ice in Sources */, - 8D4DF33DF85202DD3E19BDA8 /* UserAccountMapper.ice in Sources */, + 8922BFB194D5094EB85C1A50 /* AllTests.swift in Sources */, + C0A724E6D16AE6E0E9E9076B /* Client.swift in Sources */, + C51551DD0E0A0E94BEBC12F8 /* Collocated.swift in Sources */, + 797ED14F2414395C3FF12777 /* Server.swift in Sources */, + 41CAC79C07BCCAC022A37945 /* Test.ice in Sources */, + D78ED6C3C9B75089154E32E2 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F42BAD6D9D3F6B9853BC13E8 /* Sources */ = { + E5D35452D06C65272699DA6D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0E2B72879385FA64D1C8F3E8 /* AllTests.swift in Sources */, - 33120854054C79CAB6E7DBB3 /* Client.swift in Sources */, - E3A45D93C8A18320E33D74C3 /* Collocated.swift in Sources */, - E09D6F11993AB4927E6D192D /* Server.swift in Sources */, - 8404A03B78E12AD7E72A8E26 /* Test.ice in Sources */, - BD11B9A6A01F2FC7721179EA /* TestI.swift in Sources */, + AC900EB0C56BF9816220A412 /* ServerAMD.swift in Sources */, + 7E711E1D48D948FC830839EB /* ServerPrivateAMD.ice in Sources */, + A4E1E744053E405915B3838D /* TestAMD.ice in Sources */, + 7548D99462E5F043C29BF259 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F60F2139A7B992FC349C6BE5 /* Sources */ = { + EDA094C1C4131E1A673E1E38 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 98B15B84E98C19DFE3515DD3 /* AllTests.swift in Sources */, - 23FF36F0C786D2952282230F /* Client.swift in Sources */, - C192191C81A3A966EB376B47 /* Collocated.swift in Sources */, - 6C0ADEB674F965917278BED1 /* Server.swift in Sources */, - 34ED189A441BF0F478E156C7 /* Test.ice in Sources */, - ACC8CE04F6BB1515A3DB10FD /* TestI.swift in Sources */, + 66861428929B44C881B19992 /* IceDiscovery.ice in Sources */, + 62342547D0A276825BB0B640 /* LocatorI.cpp in Sources */, + 305AE1B91CE98B360902D641 /* LookupI.cpp in Sources */, + FE91EA7EF11C6BA28BBDC339 /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F643D4D9720F7126ED408D82 /* Sources */ = { + EEDCDE710185F3317D468277 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 68B180EC4F4C0BA3B62C1540 /* TestCommon.swift in Sources */, + 4E0518D45C8E5F5D92F81663 /* Admin.ice in Sources */, + DF4AE94D779813C602F900E3 /* Descriptor.ice in Sources */, + C59E9287370C64C7FE64C74C /* Exception.ice in Sources */, + 3817D70C9C3C90EFB6162DE2 /* FileParser.ice in Sources */, + 2B5388E5597C1A7F8324B39A /* Registry.ice in Sources */, + F723B17ACC9D31321799699B /* Session.ice in Sources */, + EA7798C535376FCDDD288B23 /* UserAccountMapper.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F8DF0C296DD163C4546CE134 /* Sources */ = { + F694C843C50BFC05832FCA72 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 99720FCD65864098F14B73D6 /* ServerAMD.swift in Sources */, - 979D038CBAFD3AFC1E6463D4 /* TestAMD.ice in Sources */, - 6FEF7D9A8BE01B48EFBEC0D9 /* TestAMDI.swift in Sources */, + D68D845996671C82C624D511 /* AllTests.swift in Sources */, + C48819E4F957A54E015352FF /* Client.swift in Sources */, + B6E959AF7E46799EA2F7196B /* Server.swift in Sources */, + 546DFAF58D038DE7ECECC037 /* Test.ice in Sources */, + 5F153ABD875561CC917CDD9D /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FAF5BCCB34907687AD05FF20 /* Sources */ = { + F84517A4D3BABA53BB2AA94C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F5B98825EF6005872E07B207 /* ServerAMD.swift in Sources */, - 40440F5B203290FE0ED58BFC /* TestAMD.ice in Sources */, - 7ADC79C350F2E2510B26CB6B /* TestAMDI.swift in Sources */, + 865F7E23C8C696EDA656289C /* AllTests.swift in Sources */, + 3EC80460A352A4644C37890B /* Client.swift in Sources */, + DB3A9B50184179620C44C96C /* Server.swift in Sources */, + 62BE8A6ECB45FDA954D3CCF5 /* Test.ice in Sources */, + A5CA7DE0F8A95FCBDD5C461D /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FC322E7E585B59E4DD6BE436 /* Sources */ = { + FE047DCC21E6B1343E3D70AE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4448B72263ADD5DC2B779444 /* Acceptor.cpp in Sources */, - 886419C47956CA047CD9499E /* AcceptorI.cpp in Sources */, - 04EB6872FA0AF6E121D217F9 /* ACM.cpp in Sources */, - 73252725553E41DE974A8DEF /* ArgVector.cpp in Sources */, - AD3C3BC1CEFAFF12AEB68131 /* Base64.cpp in Sources */, - 7ECD6EF02F6E4CC676FDAF93 /* BatchRequestQueue.cpp in Sources */, - B0EE8700A9F967B3C7C24C70 /* Buffer.cpp in Sources */, - 10C9F93D946B8F718F806D2E /* BuiltinSequences.ice in Sources */, - E8BD5A96F043FAFD0FF131CC /* CertificateI.cpp in Sources */, - 3583885665E53457D2CF99A2 /* CollocatedRequestHandler.cpp in Sources */, - 56C91E61A2BD3061CDD2C0D9 /* Communicator.cpp in Sources */, - 934D35669F0EF4D1B24435D1 /* CommunicatorF.cpp in Sources */, - 640E79FE3FBF38DEDEF1F282 /* CommunicatorI.cpp in Sources */, - 7DD56D2E94BA1FE4303FB7AC /* Cond.cpp in Sources */, - 11134DE261927EF7BD2114F9 /* Connection.cpp in Sources */, - C13B3DAA486AA7C5BAA5DCF0 /* ConnectionF.cpp in Sources */, - 8B8544CFBF47CF7E70BBE795 /* ConnectionFactory.cpp in Sources */, - 865A1B726D4ECAB10E15E44A /* ConnectionI.cpp in Sources */, - 249A5FDE2A7DC707E9922258 /* ConnectionInfo.cpp in Sources */, - 203289D41D0B833790271983 /* ConnectionInfoF.cpp in Sources */, - 1D71DA62BA6DDA45CD53F3C9 /* ConnectionRequestHandler.cpp in Sources */, - 8ECC5043ADFCBB42B8B127AD /* Connector.cpp in Sources */, - B844CE5EE59AF4504EF3634E /* ConnectorI.cpp in Sources */, - 2C7B0EE5422DE93DA87B3FF5 /* ConnectRequestHandler.cpp in Sources */, - 6375E0034ABCC71DCBECC9CD /* ConsoleUtil.cpp in Sources */, - BC22AC23910A679961D993DE /* Context.ice in Sources */, - 4C2B1ED6A1D8A8500EDCA660 /* CountDownLatch.cpp in Sources */, - 0C1CEB84E2E2990A5FFDF973 /* CtrlCHandler.cpp in Sources */, - 7E1FDB20BA664CDE8A934529 /* Current.cpp in Sources */, - 76F2B1F114F64B64BE97E952 /* DefaultsAndOverrides.cpp in Sources */, - 78BD5D69F6C3714C5B11F84D /* DispatchInterceptor.cpp in Sources */, - 0486E66EBEC5434DA91CFE6D /* DynamicLibrary.cpp in Sources */, - B65E1190C1C5A9BE72A66A54 /* Endpoint.cpp in Sources */, - C9AC814E4A7B08C6421D35D8 /* EndpointF.cpp in Sources */, - 7502DFC6567D80087BBB791D /* EndpointFactory.cpp in Sources */, - 8B3DD63D8C51F99DFAF767B9 /* EndpointFactoryManager.cpp in Sources */, - 0D42428F7BDA712479E5F4A9 /* EndpointI.cpp in Sources */, - B9CDDF1B7034EFACC66A9108 /* EndpointI.cpp in Sources */, - D47AD7BBF93ED8CBB32A861D /* EndpointInfo.cpp in Sources */, - 9D18690D8FE6E650B37AD616 /* EndpointTypes.ice in Sources */, - EE47C558ED98FDA042BAC0CA /* EventHandler.cpp in Sources */, - E53A0FF2F7D7C2EDEE5D7B93 /* Exception.cpp in Sources */, - 3A4701D6B999F173F5287886 /* FacetMap.cpp in Sources */, - 1E6CD4C25E04D3250D60BBC1 /* FactoryTable.cpp in Sources */, - 24788DDE8B5C23A8B3F476DC /* FactoryTableInit.cpp in Sources */, - 41AF3D0F2B278B6BA9A929F4 /* FileUtil.cpp in Sources */, - 3412AEB65129254ACB08D62A /* HttpParser.cpp in Sources */, - 0271E5B7D80FE66D93B71787 /* IconvStringConverter.cpp in Sources */, - 04E4B256106BFF946584A92B /* Identity.ice in Sources */, - B592FE7885F0CEFCAC0C72AF /* ImplicitContext.cpp in Sources */, - 6FFB2048A3B5F037803EA0A1 /* ImplicitContextF.cpp in Sources */, - AEF6BBC11BAD4B8723801030 /* ImplicitContextI.cpp in Sources */, - 96473BF281BACB2C744117B2 /* Incoming.cpp in Sources */, - 0F63C3BE0B8F356348CCCEBA /* IncomingAsync.cpp in Sources */, - B48BE73831CE373A9DF9D965 /* Initialize.cpp in Sources */, - 1A1B29A1BB1D2130F153C25A /* InputStream.cpp in Sources */, - 3432249506987E4D746732C7 /* InputUtil.cpp in Sources */, - 23E444672E938CB90CC92241 /* Instance.cpp in Sources */, - B81A1B07314842540288C9B7 /* Instance.cpp in Sources */, - 84F3976F01C452C7D9479E60 /* Instrumentation.cpp in Sources */, - F9D94CA3601F2711001661A2 /* InstrumentationF.cpp in Sources */, - B83825E31B129CAFD79A5D68 /* InstrumentationI.cpp in Sources */, - 62A9B66C77B451017FBAC5BE /* IPEndpointI.cpp in Sources */, - 6F4F0DD71F8774F49B168CAA /* LocalException.cpp in Sources */, - AD271662474FF1AF926FA5A5 /* LocalObject.cpp in Sources */, - 4179C322A524F03AA15E0342 /* Locator.ice in Sources */, - 5E25C3B565A8AC9FFEF70046 /* LocatorF.ice in Sources */, - F74DFB5BA7B3F73347CC5C5C /* LocatorInfo.cpp in Sources */, - 1457686D5762CD26E16859C0 /* Logger.cpp in Sources */, - 181B2F1CE4FF702D5410233E /* LoggerAdminI.cpp in Sources */, - 63DFEACB857637B9D01E68A9 /* LoggerF.cpp in Sources */, - CAD257FEF15978E8B057E1AF /* LoggerI.cpp in Sources */, - 49A13507D1D9F43234080D95 /* LoggerUtil.cpp in Sources */, - E154828E96E02851061691A8 /* Metrics.ice in Sources */, - F1C89086C7B99BDD2A33B02C /* MetricsAdminI.cpp in Sources */, - 4755AD0D73B9EB6F03D4CE7B /* MetricsObserverI.cpp in Sources */, - 5A43F8500EC2BA74655B90A5 /* MutexProtocol.cpp in Sources */, - 4F362CDACA6A4F005FA0EBFF /* Network.cpp in Sources */, - 5CC32B7355A7A8F030B5528E /* NetworkProxy.cpp in Sources */, - 1CA922E73153E90B50A2B40C /* Object.cpp in Sources */, - D22F8701F71682C99F40BF7D /* ObjectAdapter.cpp in Sources */, - C2378419F25DA874C89059AF /* ObjectAdapterF.cpp in Sources */, - 71DD58A398CCD9F26FE1C593 /* ObjectAdapterFactory.cpp in Sources */, - EEB6BD8AF0D2A941756053D5 /* ObjectAdapterI.cpp in Sources */, - 818A10AD2015C7A542C018D6 /* ObserverHelper.cpp in Sources */, - 8E4031E07B970D31EE5B3331 /* OpaqueEndpointI.cpp in Sources */, - 56D62F3BAA91F2A92CE421DE /* OperationMode.ice in Sources */, - A7C12C970B7ACD3599EA6AEC /* Options.cpp in Sources */, - 0E569FCA1B54A628CF2ED5AA /* OSLogLoggerI.cpp in Sources */, - 768E6FAEC07373059F5BCC19 /* OutgoingAsync.cpp in Sources */, - F885B57FAA2C5EF8B2D37AAC /* OutputStream.cpp in Sources */, - 66B425BB90DDB3D844C0C2EF /* OutputUtil.cpp in Sources */, - 273E4DC73084B7A644676EC6 /* Plugin.cpp in Sources */, - 8D0452F5624C68CC86FED2DF /* PluginF.cpp in Sources */, - AA17BC6FF6BFB11F9B0B13DA /* PluginI.cpp in Sources */, - 3D515E921E86936AF4465865 /* PluginManagerI.cpp in Sources */, - 91C1D67F6DDDAB12E88FC47F /* Process.ice in Sources */, - 7D05EEF60923170104AA54CC /* Properties.cpp in Sources */, - F9B2BDFF6C52FBA962336686 /* PropertiesAdmin.ice in Sources */, - 3209DB3E8A8879CCB197F0A1 /* PropertiesAdminI.cpp in Sources */, - 66DCFCEEA2A6AB4F308E36BF /* PropertiesF.cpp in Sources */, - E084704255B7013E1C4E3015 /* PropertiesI.cpp in Sources */, - E9CB21EE876F0C89B70843A7 /* PropertyDict.ice in Sources */, - DD0A5C9CB080489079411949 /* PropertyNames.cpp in Sources */, - 04D55F06813D06CC698FDDFF /* Protocol.cpp in Sources */, - 17302875EECCDD39DC311540 /* ProtocolInstance.cpp in Sources */, - 8F5E597F698D6EBD828D9307 /* ProtocolPluginFacade.cpp in Sources */, - 0DEF9C783B9FBFB0971F6509 /* Proxy.cpp in Sources */, - F4854977B7EAB9889842F617 /* ProxyFactory.cpp in Sources */, - 4648B71A7FFC0CC68A406E0F /* Random.cpp in Sources */, - 6BEEE4882666D947BFB6096B /* RecMutex.cpp in Sources */, - AD03F8467655D60D27488B03 /* Reference.cpp in Sources */, - CFE9CD976A02AFF717ABD140 /* ReferenceFactory.cpp in Sources */, - 41940359D19BA6ED2E82D7A7 /* RegisterPluginsInit.cpp in Sources */, - 23AD889CBD3E442F12D654D9 /* RemoteLogger.ice in Sources */, - 832F01A6561FBB32980CC6BF /* RequestHandler.cpp in Sources */, - AE433E70A892618F06AA6C81 /* RequestHandlerFactory.cpp in Sources */, - 64889AEA2CB146664C0026B9 /* RetryQueue.cpp in Sources */, - E607FE74919B13928B36440A /* RFC2253.cpp in Sources */, - 91FD9BD5F8C6D18658648BFC /* Router.ice in Sources */, - 762EA6A98E277953565F6546 /* RouterF.ice in Sources */, - 0F86693B76B6AA1EB961A457 /* RouterInfo.cpp in Sources */, - 203160B752F51F68BAA7D330 /* SecureTransportCertificateI.cpp in Sources */, - AC02FE95EFC5686EFAA7B40D /* SecureTransportEngine.cpp in Sources */, - 49B57CB7A313EB490590E76B /* SecureTransportPluginI.cpp in Sources */, - 936EF2C82850CB080D34C1D6 /* SecureTransportTransceiverI.cpp in Sources */, - 236B19AE05A38DCC8892544B /* SecureTransportUtil.cpp in Sources */, - 2DD942A5AD9BDFFCEC2A0E20 /* Selector.cpp in Sources */, - EEFFBB382A88204602E29A04 /* ServantLocator.cpp in Sources */, - B74EFEB96D8A5C481860A4E4 /* ServantLocatorF.cpp in Sources */, - 2FB92BE26AB1CBF52C6E5CE6 /* ServantManager.cpp in Sources */, - 5F7405090E42F479AF17700E /* Service.cpp in Sources */, - 2E1B86815360FEED4772B2E0 /* SHA1.cpp in Sources */, - 08BBB409A1DC05D4E72F6A57 /* Shared.cpp in Sources */, - 5008ACD8242F55D333EB5E2F /* SlicedData.cpp in Sources */, - ECF7AE791BDAACF1675FBE0E /* SSLEngine.cpp in Sources */, - CDE8D3337091AD557E0BD71C /* StreamSocket.cpp in Sources */, - 30DEE483AA0552F2F1EA3906 /* StringConverter.cpp in Sources */, - 1A2B1969496510EAE166E659 /* StringConverterPlugin.cpp in Sources */, - D0396ECA4780124C6733EC59 /* StringUtil.cpp in Sources */, - 7C0C240377298BDC8BCBEF60 /* SysLoggerI.cpp in Sources */, - F53609825F8BE1A35903E0D2 /* SystemdJournalI.cpp in Sources */, - 6C6592040394BDC44BB67919 /* TcpAcceptor.cpp in Sources */, - CDBF98D9568C5997E795EB3D /* TcpConnector.cpp in Sources */, - 35DF71EFFAAFDFAFD53AB6FE /* TcpEndpointI.cpp in Sources */, - 729B83B75BCBAAA42853B61F /* TcpTransceiver.cpp in Sources */, - A2F5FA573C1C9002B4BEC41A /* Thread.cpp in Sources */, - D930900DC9647ED394498F08 /* ThreadException.cpp in Sources */, - 51E2320742DA9BB92DB1FF7D /* ThreadPool.cpp in Sources */, - FBAD6648B2BF1E2EEF239FDC /* Time.cpp in Sources */, - DB9A439AE889CFB824E0AAE2 /* Timer.cpp in Sources */, - EF25E57A5544134BDC4D4820 /* TraceLevels.cpp in Sources */, - 1F2A0CA8E91CB0ED37ED6A75 /* TraceUtil.cpp in Sources */, - 7226788512FE1A3CA3381CB7 /* Transceiver.cpp in Sources */, - F85C17CC1E82174AB4E3AD7D /* TrustManager.cpp in Sources */, - D0FC5AF30A531A8BDDC6A038 /* UdpConnector.cpp in Sources */, - 053209AE8A31D2B3BF7E44DD /* UdpEndpointI.cpp in Sources */, - 5770297878F818824FB0F3A3 /* UdpTransceiver.cpp in Sources */, - 915CE019781B5752BACBB90E /* Util.cpp in Sources */, - 3B789B6F76BD2827A235D035 /* UtilException.cpp in Sources */, - 16FACBDA8E0C1A19711882B2 /* UUID.cpp in Sources */, - 9236D6EA55B1AD6A1A64BA7F /* Value.cpp in Sources */, - 6BAD6436031478B99C4429DC /* ValueFactory.cpp in Sources */, - 838F269A3ADAB1F7F3E7D8BA /* ValueFactoryManagerI.cpp in Sources */, - E31383156D144FB504B236B0 /* Version.ice in Sources */, - 68F968637BFD8C3016FFB69C /* WSAcceptor.cpp in Sources */, - 25FBF8B5DC564F43D05B488F /* WSConnector.cpp in Sources */, - E2F28161CE140EF614F91BE7 /* WSEndpoint.cpp in Sources */, - 5C2B3276EE2B6F1626D32A7F /* WSTransceiver.cpp in Sources */, + 934CD4860BE215CBEE757C37 /* AllTests.swift in Sources */, + 12728421B89F958E4C5442AD /* Client.swift in Sources */, + BA9EC1DA75BBFFA7D1A1A8D7 /* Collocated.swift in Sources */, + F5C41130540FE9B6122E67F0 /* Server.swift in Sources */, + B73AAC1826FF86338EE5CDB6 /* Test.ice in Sources */, + EF1026DCF581C70032FA0378 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 001DD76E59FF4C830BAFE107 /* PBXTargetDependency */ = { + 02AE090786CAF2F25D18C7B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = B27F0A0C8164D50379B47811 /* PBXContainerItemProxy */; + name = "IceHold iOS"; + target = BBA5FF013C8B19537743DE0C /* IceHold iOS */; + targetProxy = 991264BBD05F5B0C3EB15175 /* PBXContainerItemProxy */; }; - 01AC9BEEA4A751C8B7183B44 /* PBXTargetDependency */ = { + 0356A3A245B9D197AE470682 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperationsAMD macOS"; - target = CC8E2C60DE859F3875C1A578 /* IceOperationsAMD macOS */; - targetProxy = 57ACB85FDE7F2314CCE6A7F8 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 6D8BD82FC4D2E7D88CD1E206 /* PBXContainerItemProxy */; }; - 02CE1A948C8D7A9C07D81026 /* PBXTargetDependency */ = { + 0356D9257481D2DAC1477D98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceRetry iOS"; - target = 87E9A0678200BC32DF77CC22 /* IceRetry iOS */; - targetProxy = 61BC7B11FD7679D2366C9C3F /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 7ED02EC4A652BACF79A7FBD3 /* PBXContainerItemProxy */; }; - 04A4BA1474AE052F3146911A /* PBXTargetDependency */ = { + 03E984B972C8157DA2D93308 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 0C260F3F898DDD2ED50A2604 /* PBXContainerItemProxy */; - }; - 063C85C5C7BA865B792BAC95 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceProxy iOS"; - target = 7C4454250BFF2F744DA15043 /* IceProxy iOS */; - targetProxy = D5F74D0D75EAC0F8566B0B23 /* PBXContainerItemProxy */; - }; - 06FBECBAE5F3DA0ABCDFC859 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 4BD9B6A40A3A2BAE3F792DF2 /* PBXContainerItemProxy */; - }; - 0966619ED7FE1158115320AA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = C38E4E0F120F34468BCB4F61 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 65275F3033D631BFFDB68F37 /* PBXContainerItemProxy */; }; - 099F632E3F13CC42232ECD1F /* PBXTargetDependency */ = { + 04205069B5145186C7C5AA9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = 66766A219D36565BAA8D85DB /* Glacier2 iOS */; - targetProxy = 554ED7B7307F91FB05534DB9 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = ACE53CA2816C4E55258DDBF3 /* PBXContainerItemProxy */; }; - 09D176AFEE3692AD309D6562 /* PBXTargetDependency */ = { + 04D3A8A4D370449E0F2961F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 9FC3D5756BE155623977F09D /* PBXContainerItemProxy */; - }; - 0C7DFFA9151969EC3F996061 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceImpl macOS"; - target = BB148EB91DBAAACC5D08F10B /* IceImpl macOS */; - targetProxy = 1C86476610F2E1CFF118CB0C /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 547B75DA5DF24164A91EB88F /* PBXContainerItemProxy */; }; - 0D75510DEB51424F228A3C0E /* PBXTargetDependency */ = { + 054A49A3CE39EC48F11E8672 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInvoke iOS"; - target = F9DF2DD34D62DDCA59B08490 /* IceInvoke iOS */; - targetProxy = CDFC04EB2D7F9C1BDD4EE235 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 00DE841C8687D0E197EE85CE /* PBXContainerItemProxy */; }; - 0DE97AB60A39783B6FF691A5 /* PBXTargetDependency */ = { + 0596616D6761FCE4D0555E45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptionsAMD macOS"; - target = 82C53B88275C4981212133CC /* IceSlicingExceptionsAMD macOS */; - targetProxy = 61D1B0A84E51FD06361FA27C /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 04A622B5D5B12F62B158F08A /* PBXContainerItemProxy */; }; - 0E15162FE9DC53DD6CD4527E /* PBXTargetDependency */ = { + 06E52F3B4022C2B95DA5DC76 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 6C14F96F54B2F09A87EF82E4 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 1B73AE5BB2E857F560D937D3 /* PBXContainerItemProxy */; }; - 0EFD452CA523BEB73D0F8635 /* PBXTargetDependency */ = { + 07A546A6D38DEE5AB3BCB897 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = BBE986EDE9CEA2409CEA11DC /* PBXContainerItemProxy */; + name = "IceServantLocatorAMD iOS"; + target = D2E3C388100CC50AD3052CDB /* IceServantLocatorAMD iOS */; + targetProxy = 0B0BE533B1668784A4F6EE1D /* PBXContainerItemProxy */; }; - 11959A96FE4C532C895E63D2 /* PBXTargetDependency */ = { + 07C6F7B220C492E23B1C0018 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 36E9BF62C12569F45DA81AF3 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = B44F1E29F31C520BAD808D20 /* PBXContainerItemProxy */; }; - 13176BB7C32C2E481A9B11DB /* PBXTargetDependency */ = { + 09CB6BF22B26F03069623513 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = F7A1DB397366FD2B523DE3D2 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = CAFBDF8687533CCA806C1502 /* PBXContainerItemProxy */; }; - 133F8FA0ED200ABE709C7C97 /* PBXTargetDependency */ = { + 0A91B8A116875CEC970DB85E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocatorAMD iOS"; - target = 7BD0591E1B5ABBDFE982E6E8 /* IceServantLocatorAMD iOS */; - targetProxy = EB5B0656FDEA65501DF4D528 /* PBXContainerItemProxy */; + name = "IceExceptionsAMD macOS"; + target = D6B732964F3D00D84F9428AC /* IceExceptionsAMD macOS */; + targetProxy = 51F244B025EF269D92B3F262 /* PBXContainerItemProxy */; }; - 13DD1FA83C1CEE545E98F485 /* PBXTargetDependency */ = { + 0C3850A95834B28C11362CCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceFacets iOS"; - target = A2837C7BEC47E856E536F9B3 /* IceFacets iOS */; - targetProxy = 863213C4D9F821BDBBB2F0AC /* PBXContainerItemProxy */; + name = "IceInvoke macOS"; + target = A4F94E6B42A58EEF0623EC8F /* IceInvoke macOS */; + targetProxy = 413D3258EDF4221463EBEB9C /* PBXContainerItemProxy */; }; - 1460A5644FA231F28D5F7C08 /* PBXTargetDependency */ = { + 0CE7B06C949606A74D76872C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = CC3474720734885708BBBD6A /* PBXContainerItemProxy */; + name = "IceGrid macOS"; + target = A250D484C77105742100E390 /* IceGrid macOS */; + targetProxy = BCEA82B1F942CA1B16338658 /* PBXContainerItemProxy */; }; - 14C96416FF965CF99EA8DF85 /* PBXTargetDependency */ = { + 0DA5BDF460102F04C8CC3A5E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = AB9364286ACF8E12CD09F08F /* PBXContainerItemProxy */; + name = "SliceEscape iOS"; + target = 26D8717EB0F318653FB9C763 /* SliceEscape iOS */; + targetProxy = 0DDD4EE66F91D09188619B17 /* PBXContainerItemProxy */; }; - 177DD53FA83D4C906941D23B /* PBXTargetDependency */ = { + 0F10BA3B5220F9FB61BF7D16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = B50E757FD1BF6AF7A6F37EDE /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 5D87AD3193C4D90FD9C8179B /* PBXContainerItemProxy */; }; - 17BF9FB5DD888796E8094B00 /* PBXTargetDependency */ = { + 0FAE2DBE27D95467C3AFB46D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 95FF20C7B96C39DAEA9783B7 /* PBXContainerItemProxy */; + name = "IceSlicingObjectsAMD iOS"; + target = 983596DE8C0BFB636571955C /* IceSlicingObjectsAMD iOS */; + targetProxy = 93BEBC05532306FA1AEDF168 /* PBXContainerItemProxy */; }; - 18EE0B5F4F06D5E85788B6CF /* PBXTargetDependency */ = { + 1164E4382B9F2C4C300A9DAE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 50E06DF792893808145A8EAB /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 37ED755B12FCC0583ECA1212 /* PBXContainerItemProxy */; }; - 19F93C717AF196D1EED43CDF /* PBXTargetDependency */ = { + 11D741130322376C7172CC42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = F478DDCD9811E6F09C91EAF1 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = FDF9A5645B0240D99DE2FF8B /* PBXContainerItemProxy */; }; - 1B5D072CB3BA0A8077EEC657 /* PBXTargetDependency */ = { + 1266E8E92D898438FC6EF1B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 179172FA190EA2F6FB1B6134 /* PBXContainerItemProxy */; + name = "IceBinding macOS"; + target = 84AAA301C5D3AF97E6828B9A /* IceBinding macOS */; + targetProxy = 720F330D49EF2814155C4761 /* PBXContainerItemProxy */; }; - 1BB5E632D9FB3E508B468DD5 /* PBXTargetDependency */ = { + 13EC7376399917A6F4985F30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = F8D350B56D7FF192A55E7627 /* PBXContainerItemProxy */; + name = "IceServices iOS"; + target = DF67C7AEC35876C0CCF4A96A /* IceServices iOS */; + targetProxy = F3F9BFAF309FD4836BD0FDF4 /* PBXContainerItemProxy */; }; - 1ED1295A515AB5137D83B3FD /* PBXTargetDependency */ = { + 167EC68770DCBFC81886B91F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = EE61473FD27F5A8827B87E34 /* PBXContainerItemProxy */; + name = "IceLocation macOS"; + target = 4434399DDA0D789BDAB8EDCF /* IceLocation macOS */; + targetProxy = 221A2C420C1A9087B55E7CDF /* PBXContainerItemProxy */; }; - 1F4B600A0C49C69B3DFBD59E /* PBXTargetDependency */ = { + 1697C65C44B82CBEB265245E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceHold iOS"; - target = 2D69E78989BA05C0A499A44D /* IceHold iOS */; - targetProxy = D8081E43C2CA5A8101CA8073 /* PBXContainerItemProxy */; + name = "IceStorm macOS"; + target = B8D5C1F592E31ABE249CC078 /* IceStorm macOS */; + targetProxy = E650749F9DE5664CE7EFD2FE /* PBXContainerItemProxy */; }; - 1F89FE69F95A11F92CC290E8 /* PBXTargetDependency */ = { + 16E0DC56003F27C197DA65D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Glacier2 macOS"; - target = B06DD43CC98E177E5491959D /* Glacier2 macOS */; - targetProxy = 7EE72D0E259A4D5150B01076 /* PBXContainerItemProxy */; + target = FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */; + targetProxy = 21F2AE70E3D37455D567BBB9 /* PBXContainerItemProxy */; }; - 20D0E9047A43F154E11D5E6F /* PBXTargetDependency */ = { + 17D6FC07049104A3479EE431 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm macOS"; - target = D166D330DEC6674B8372A98E /* IceStorm macOS */; - targetProxy = 0239F500BAC2E87283B0DB3B /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 7CA3910FB0789320EE20268F /* PBXContainerItemProxy */; }; - 214AA24946474D09AA454F7A /* PBXTargetDependency */ = { + 17E4AA84E0081A0160F7A22F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SliceEscape macOS"; - target = 44669E73C88B6F4F3038B679 /* SliceEscape macOS */; - targetProxy = 76E71BF16EFF9D2AC7E83382 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 5710FC39CDFFBBD1632956E4 /* PBXContainerItemProxy */; }; - 2219D2B745BBE8D752027A8B /* PBXTargetDependency */ = { + 1807BFE7D066FFE825A19EBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = BC400B6D1967FEED0EDD3926 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 4B24C60DD2735F19F92AB8D3 /* PBXContainerItemProxy */; }; - 243F7F3833E86D05FF757D65 /* PBXTargetDependency */ = { + 1C8C8242D9958C85A81FB707 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocatorDiscovery C++11 iOS"; - target = 1D8E308F3BB453AE7F0F43D1 /* IceLocatorDiscovery C++11 iOS */; - targetProxy = FE41A5548AB62154B45A8694 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = F2C07CC5EC3AE2EF3E48430B /* PBXContainerItemProxy */; }; - 25E8B3B464AC1EE5B8AAC54D /* PBXTargetDependency */ = { + 1D0F5F70057CFE956BCE3C98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl macOS"; - target = BB148EB91DBAAACC5D08F10B /* IceImpl macOS */; - targetProxy = 1BFB741D987C73ABE77B0C32 /* PBXContainerItemProxy */; + name = "IceServantLocatorAMD macOS"; + target = 9B13B57D40995B5A58986BCF /* IceServantLocatorAMD macOS */; + targetProxy = 9211D311DD89DD888C03D35D /* PBXContainerItemProxy */; }; - 26877FF8F0BCD2FA80E42C7F /* PBXTargetDependency */ = { + 1E5528ACD23F1444C341E3B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = E1AC4FB4D3B4CF7873039E01 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = F347A0D0390120C571DF18FE /* PBXContainerItemProxy */; }; - 28E1AC7D63064F6EED56D35E /* PBXTargetDependency */ = { + 1F96080B43C6108C5BA9A004 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = A6D0AA617D51148B4A729D8B /* PBXContainerItemProxy */; + name = "IceHold macOS"; + target = 41AF2CA6936313B5E6F391BD /* IceHold macOS */; + targetProxy = BC72A5BAF0F8B596CDDDDF97 /* PBXContainerItemProxy */; }; - 2963DE3A8838570474ABE73F /* PBXTargetDependency */ = { + 210D93C5CE1B6BAF8583E68D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm iOS"; - target = 086D7EFAFD5B99B06915E82A /* IceStorm iOS */; - targetProxy = 2C3295921EABE6A2B4B344B3 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 2F145549E2ECE2604831DFC1 /* PBXContainerItemProxy */; }; - 29EB864A205D17CBE4C922D8 /* PBXTargetDependency */ = { + 223FA5C36D5387D3A92718C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 332C20F6F8CECC445FA43DBE /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = C6FAC2B7A282B158A959FF06 /* PBXContainerItemProxy */; }; - 2B2E4604441CEA0D6A3D55EA /* PBXTargetDependency */ = { + 225C8AA1BDF53746F19E059E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInfo macOS"; - target = E51388D0936150349DB47717 /* IceInfo macOS */; - targetProxy = CF8051D30E715DB8FEBA9FD7 /* PBXContainerItemProxy */; + name = "IceServantLocator iOS"; + target = 08C942FD89E4D9E7FA113627 /* IceServantLocator iOS */; + targetProxy = F999F6D9AA5364C5641B87EB /* PBXContainerItemProxy */; }; - 2EE91FF0137EA0C56A9866A8 /* PBXTargetDependency */ = { + 22954B34E0A47983E6B3DE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 52A7DB154C18252C0118A925 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 1F2B3F76BEAF1A445EAD42B1 /* PBXContainerItemProxy */; }; - 2F20AF50EF29D165312173D9 /* PBXTargetDependency */ = { + 25FB548EF674C7A8DC71D534 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdmin iOS"; - target = 47118015D4FFF9159FC93434 /* IceAdmin iOS */; - targetProxy = 827AAA0DBD12FF9B085F6843 /* PBXContainerItemProxy */; + name = "IceInterceptor iOS"; + target = 2B82F333BA11DB5D8BECDBF6 /* IceInterceptor iOS */; + targetProxy = 09D86D6C5084A5D227EE225F /* PBXContainerItemProxy */; }; - 306BAD3D6E8F81138F885C87 /* PBXTargetDependency */ = { + 26273A8A01152B7B735D8E52 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptions macOS"; - target = 7649B8B4D36C63D3D167ED11 /* IceSlicingExceptions macOS */; - targetProxy = 043F5A3C19D22388B6604E8C /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 4D812AF9E49B9BA1AF671E67 /* PBXContainerItemProxy */; }; - 321CA458874D936AADF90B86 /* PBXTargetDependency */ = { + 264BC338C6E40185DAA8E7BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 93CD96FF4EB061E085F2A386 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = ED22EDC542CA4128A4272E26 /* PBXContainerItemProxy */; }; - 338FDEDE2C7912EC1B86D293 /* PBXTargetDependency */ = { + 26587AD449CCB3B5D3DD2D6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 2A753D85D7D7B4468801DD01 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = BE1E84FF3A8338A1BA3DFE4A /* PBXContainerItemProxy */; }; - 33BB3C3D618E4D1F283E6C99 /* PBXTargetDependency */ = { + 26E5DD3BEB852EE4C8DB3FF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 84E7D19B1BC7D48A5CCFCFC9 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 0D0E77FB031E59897244F92D /* PBXContainerItemProxy */; }; - 34086D5FD64F54313B547FEF /* PBXTargetDependency */ = { + 26E6A837F9F3EFF049C9A1AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = A1177BDA42ECB93DD19E9EEC /* PBXContainerItemProxy */; + name = "IceExceptions macOS"; + target = 5A26265E443FF04358AE528C /* IceExceptions macOS */; + targetProxy = F292D38B412A25F57B561E8C /* PBXContainerItemProxy */; + }; + 27AA1C0790CF7A8B2557983B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = A2C96F9A6982B7F377ED37D4 /* PBXContainerItemProxy */; }; - 3416113DF237AFC35587414F /* PBXTargetDependency */ = { + 28FCEC4C8FBAE8C9D638AE3A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 31334DDE7BEFE6B15239CD3E /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 97A804BC39125A92D546055F /* PBXContainerItemProxy */; }; - 341DC8457E0F60396E37A49D /* PBXTargetDependency */ = { + 2A80FC7A1C0D10531E545B83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdapterDeactivation iOS"; - target = 3D1F7E6A7317D6CB8877A0D5 /* IceAdapterDeactivation iOS */; - targetProxy = 64E24FB3A09A1FAF8FA07FF9 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 396D95E81049556B6818C49D /* PBXContainerItemProxy */; }; - 3546E3EA54642322837E9CC2 /* PBXTargetDependency */ = { + 2B09BB6A39751A23449D1194 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */; - targetProxy = 5DDEA32F1C31BC51C5C6D66E /* PBXContainerItemProxy */; + name = "IceOperationsAMD iOS"; + target = 9F3B1821E0C570BF87946D26 /* IceOperationsAMD iOS */; + targetProxy = 144F03DDB219C92CC0AD982B /* PBXContainerItemProxy */; }; - 355050F8ABB8B02A4A57AC93 /* PBXTargetDependency */ = { + 2B1B355F21DDF3BE4F41B18B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = EA3D11C332176AD29691910F /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = FA38DD4A2599FD79A1FCA902 /* PBXContainerItemProxy */; }; - 3644B35FF0613A9194C9AFF1 /* PBXTargetDependency */ = { + 2B47301E751C23EFBE4F8294 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 78F1308C887D1667DE857AF8 /* PBXContainerItemProxy */; + name = "IceOperations macOS"; + target = 615480D42FAF508D7F8AA5BC /* IceOperations macOS */; + targetProxy = EBDBA820E18BCDE686908DF9 /* PBXContainerItemProxy */; }; - 381ED48226681FECD2174188 /* PBXTargetDependency */ = { + 2B778FCC7C694EED66868D10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 6B7FE12812349143703F9B3B /* PBXContainerItemProxy */; + name = "IceDiscovery C++11 macOS"; + target = 3AA88FF2CD4BC207F3E38A68 /* IceDiscovery C++11 macOS */; + targetProxy = 076A7FBA191D0BF483C0A3DE /* PBXContainerItemProxy */; }; - 38E974EECBE77CABAB2DD241 /* PBXTargetDependency */ = { + 2C35865548487819E61CD5C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultValue iOS"; - target = E1DFDE719731E7D4A7FEF6E0 /* IceDefaultValue iOS */; - targetProxy = 709A3F364483E15887C64210 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */; + targetProxy = 89130D871CF9DB3F3FFB3C38 /* PBXContainerItemProxy */; }; - 39F809683F85B4CDF4344C88 /* PBXTargetDependency */ = { + 2C75679E47BB1A606F96DE00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = E5906B2ADE3E196F77A1B16C /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = D673464449D815C693CED06F /* PBXContainerItemProxy */; }; - 3A22535A08D03885044E158B /* PBXTargetDependency */ = { + 2E2365AC0BDC8918C91F15F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAmi iOS"; - target = 2C9432880D461B94B2829F4D /* IceAmi iOS */; - targetProxy = 69E7A8EC87F6BD69985BE302 /* PBXContainerItemProxy */; + name = "IceFacets iOS"; + target = 8C1035C93AB58A55E8EB9B9D /* IceFacets iOS */; + targetProxy = 484B59305DCF5D0F7D737D6E /* PBXContainerItemProxy */; }; - 3AFAEBFEF8FD90C9F5ADA18E /* PBXTargetDependency */ = { + 2E73BB1C13AA4FC7B334F57C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxy macOS"; - target = 7862E459B18BD8751A67923F /* IceProxy macOS */; - targetProxy = 386AB84004D9B78C0EDD536D /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = F56C6CA8F14343C786663240 /* PBXContainerItemProxy */; }; - 3B4546B1387E723D2C297F52 /* PBXTargetDependency */ = { + 2F831D8CEE40F51B9F617D79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 6EF8510E1A2A180A27F9ED34 /* PBXContainerItemProxy */; + name = "IceGrid iOS"; + target = 2646D8A7E773E3BDE5BE8E29 /* IceGrid iOS */; + targetProxy = 6833646617F50B5F99224F96 /* PBXContainerItemProxy */; }; - 3BD980643A11F94F555DE698 /* PBXTargetDependency */ = { + 3244052F17A2A6DDF30979C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = BE7A26630FA857A0F9DE2244 /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */; + targetProxy = CA56ABC7E7B37A199F53B865 /* PBXContainerItemProxy */; }; - 3C3EA5ADFF87F85CA7571E11 /* PBXTargetDependency */ = { + 32A9B8CD1DF556B5E5C61FE8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 14E3FB2F892E6ADEC5EEEE46 /* PBXContainerItemProxy */; + name = "IceProperties macOS"; + target = 529314BF4173169E9CB2F36B /* IceProperties macOS */; + targetProxy = 78F98741015DAF726FBA93FA /* PBXContainerItemProxy */; }; - 3C58BDC60502522C978B9A0A /* PBXTargetDependency */ = { + 335A5AB7C7B7A487BA41F78C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = D566C077519B17B006F4C457 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 9597FB16871D9D4BDF6A58A9 /* PBXContainerItemProxy */; }; - 40377970465B2425DFCAFC4C /* PBXTargetDependency */ = { + 33A8D8114126AA8536176F9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 64243A42833EB19FFF1EDAC1 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 98DB500817B95AC1BE905C7A /* PBXContainerItemProxy */; }; - 40B944B83C8139F2BC8078A3 /* PBXTargetDependency */ = { + 33CC3B2171296B8FEE8D9CB0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = BD5BDE3817FEC6E0B6EF6DBE /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 2090F85D0C4A629C299DAC0A /* PBXContainerItemProxy */; }; - 4124CC268695417E739EC1F7 /* PBXTargetDependency */ = { + 354922DD748FAF19507292F0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = D6167EF5F451D5FA93AD9BB8 /* PBXContainerItemProxy */; + name = "IceInheritance macOS"; + target = FC49A3F19B353AC4051631B4 /* IceInheritance macOS */; + targetProxy = 571722DCA58D3280510DBAE2 /* PBXContainerItemProxy */; }; - 41E650E8178BB8D6F2C204DA /* PBXTargetDependency */ = { + 3549A8EFC012523759D7C1B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptional macOS"; - target = D660697C6325570C429F2BC9 /* IceOptional macOS */; - targetProxy = C82C192791BA7B79C32D9024 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 1405B64CF0AB7E8116B7FFF9 /* PBXContainerItemProxy */; }; - 44E43CA842A3390C6097C7DB /* PBXTargetDependency */ = { + 384F9D5525DDD9DA5F2BDCB1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInterceptor macOS"; - target = 6FD780B3B0F51D50A0233C81 /* IceInterceptor macOS */; - targetProxy = 8B8368E9D04D9365D7FEF1DB /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 7E42163A5BD5EB9625515535 /* PBXContainerItemProxy */; }; - 46E054F553ED7C2E677F8915 /* PBXTargetDependency */ = { + 3A15991EDADCB55D910D42DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid macOS"; - target = 953A9306D1F74C3E46325E82 /* IceGrid macOS */; - targetProxy = 1D75B9D8D2478679CC49270A /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = A5B8085302BFA40AF3522E4B /* PBXContainerItemProxy */; }; - 4791F01C73505D5C5746CA2F /* PBXTargetDependency */ = { + 3A6302D4E95736627714E1FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 92CB9BA81DAA028497F4ABB5 /* PBXContainerItemProxy */; + name = "IceOperations iOS"; + target = B7EFE020C9D77334FB6C5B4B /* IceOperations iOS */; + targetProxy = C20D2C69AEEDD95371E42ACB /* PBXContainerItemProxy */; }; - 47D2840760CDAC67169AEB7A /* PBXTargetDependency */ = { + 3C571710DABB166F5AB0D497 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceStorm macOS"; + target = B8D5C1F592E31ABE249CC078 /* IceStorm macOS */; + targetProxy = B69CE10E62DE8F029C6CBA37 /* PBXContainerItemProxy */; + }; + 416D7FD01A7671C500F22B8D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 9636074FB23CB93DD4FDD351 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 0EB89F1B2A18E897F751F54B /* PBXContainerItemProxy */; }; - 4A97BD98E21B9BDA345B96F0 /* PBXTargetDependency */ = { + 416FAFE324EDB70B39EEAAC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAcm iOS"; - target = 3CC923BA7EC9201D602FFE65 /* IceAcm iOS */; - targetProxy = A07196A81A2D3095AFD04529 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 8DFC07199E95E21CB8D2ABF3 /* PBXContainerItemProxy */; }; - 4B84FECB667E6C9A01DC97A2 /* PBXTargetDependency */ = { + 43B165872B3B751A3C828633 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAmi macOS"; - target = D4D6FEE0BB4641B83FAB188E /* IceAmi macOS */; - targetProxy = F1DF8648413A52CDB11A66C8 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 4CA0D05C006208E49B678FCC /* PBXContainerItemProxy */; }; - 4C89F031189B582A00303766 /* PBXTargetDependency */ = { + 4433B6BB516D59984B87129C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm iOS"; - target = 086D7EFAFD5B99B06915E82A /* IceStorm iOS */; - targetProxy = ABEABF70DC2F4D6B6E50A4BC /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = C35EB83D7756B70D9A40DD3E /* PBXContainerItemProxy */; + }; + 443E309CCEBA2F5B1649F301 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceProxyAMD macOS"; + target = 38C1EA904D5C3BCB045C88A2 /* IceProxyAMD macOS */; + targetProxy = 76390DCCAEA59C6D31FE48C2 /* PBXContainerItemProxy */; }; - 4D24BB84B7B720B1609DE82B /* PBXTargetDependency */ = { + 445588A8E4930A760FD185E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = CE6D8582F9E5F43FD4CA3741 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 6F71D9490BEF8E58D04C1868 /* PBXContainerItemProxy */; }; - 4D4580CFB540C6548FBF8D70 /* PBXTargetDependency */ = { + 4609D89767C5EC483B2A4EF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceHold macOS"; - target = 6C6B3F2AAE2C93C3A2670E5E /* IceHold macOS */; - targetProxy = D89D5EEC26C160330B7B8AEF /* PBXContainerItemProxy */; + name = "IceSlicingExceptionsAMD macOS"; + target = D07E492BEFB243158D25D09C /* IceSlicingExceptionsAMD macOS */; + targetProxy = 0B6551F9AB9BAA4EB2DFA780 /* PBXContainerItemProxy */; }; - 4E770DBE2E4380524BC74E0B /* PBXTargetDependency */ = { + 47FB782459BC2150AD05A8C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 0A9D7521506E54EF49F62920 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 68FA5CD5D3BE1AE97589F1C8 /* PBXContainerItemProxy */; }; - 50FDAC5AA1B8E6C9513D1991 /* PBXTargetDependency */ = { + 47FE95D45ABA35FC405F49A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = B2CB3A501165B7E78E956557 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = E99774074A8FF35E057B2617 /* PBXContainerItemProxy */; }; - 518B1F1A9B4F14E69A90ADED /* PBXTargetDependency */ = { + 49CBBCF4F2BE23E6AC12D730 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptions iOS"; - target = ED67C4392ADE53C242195C57 /* IceSlicingExceptions iOS */; - targetProxy = F2B67D875A18BB46121D6096 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 1819A3F4E2BF3546C183A010 /* PBXContainerItemProxy */; }; - 52722DF7EBAB5DC86E5F6EE4 /* PBXTargetDependency */ = { + 4A6A04D7D9C890A5021B5F52 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceObjects iOS"; - target = EBB34A2FBFB19A98854A90B2 /* IceObjects iOS */; - targetProxy = 65E35AB963957665F82C78A4 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = CE57E0618D88D8B0EDCFAE66 /* PBXContainerItemProxy */; }; - 534F123E4E7C67F7FCD2C0D9 /* PBXTargetDependency */ = { + 4AA57B4CCAFD40B94EB5703C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptionsAMD iOS"; - target = 08063B79E151583B4BCA64E2 /* IceSlicingExceptionsAMD iOS */; - targetProxy = C77629519BBBB5C64DB1BEE7 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 2D02A219CBEBD9573C6A045D /* PBXContainerItemProxy */; }; - 5377289F050FDD926FD56639 /* PBXTargetDependency */ = { + 4B02A11F530EE883CB2578B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl iOS"; - target = 1461134F8E13923F515F804D /* IceImpl iOS */; - targetProxy = 056F818105111FA828DFA996 /* PBXContainerItemProxy */; + name = "IceDiscovery C++11 iOS"; + target = 49D15054211B9CC6B08CB18E /* IceDiscovery C++11 iOS */; + targetProxy = F8E3F3CD0C91D48B98C016D3 /* PBXContainerItemProxy */; + }; + 4BAC91CC5FEA7F7B16E72836 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = C640207D4C684B47C8580F7D /* PBXContainerItemProxy */; }; - 55C211531B74B920D3BA5856 /* PBXTargetDependency */ = { + 4D3889E084E8D41CA4DEDB01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = D72F2F8587751A3BF793B388 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 3D208A518B330B7F9465B12D /* PBXContainerItemProxy */; }; - 56199CEFBE52B4351D0025C1 /* PBXTargetDependency */ = { + 4F1EA7D3FA5C865629A2BBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = E91160C56A9113D9DF5D3D49 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = ABDC8BDE7C177CC5735A455B /* PBXContainerItemProxy */; }; - 568E55888B2FBB1434F2101E /* PBXTargetDependency */ = { + 505B7DE87463FDA5DDC46ED5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm macOS"; - target = D166D330DEC6674B8372A98E /* IceStorm macOS */; - targetProxy = 3F0579C966297CC06DB23E31 /* PBXContainerItemProxy */; + name = "IceSlicingExceptions iOS"; + target = 737F194EFAAE24FEE20C5FF6 /* IceSlicingExceptions iOS */; + targetProxy = 11F96F305582FC17417991AD /* PBXContainerItemProxy */; }; - 578FC1E0F3F13E5DE1507FDC /* PBXTargetDependency */ = { + 5065DF2B0375FBEBBB2201BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDiscovery C++11 macOS"; - target = 4CA64E4D7C1BECF901572919 /* IceDiscovery C++11 macOS */; - targetProxy = B0511C999599692CEF63C386 /* PBXContainerItemProxy */; + name = "IceScope iOS"; + target = 3E69BE60A2C26A59EEE938DC /* IceScope iOS */; + targetProxy = EE9FB5C41B9FBA5CC9ADF816 /* PBXContainerItemProxy */; }; - 5794BA1B3D723D06E8E02779 /* PBXTargetDependency */ = { + 50A1A7D5CE091CCF362A1E0C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */; - targetProxy = 7C6BF10F61186DD69616F0C2 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = BC08447AFDB3B5F220C7F52A /* PBXContainerItemProxy */; }; - 57ECD7F009A9C588B71426F6 /* PBXTargetDependency */ = { + 50D2263AAB01A82D88D338AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceScope macOS"; - target = 961580353429DCE0D0B109CB /* IceScope macOS */; - targetProxy = 4FD344865433C487A7C74F3E /* PBXContainerItemProxy */; + name = "IceLocation iOS"; + target = 199245355B4B5CD9FF6A6386 /* IceLocation iOS */; + targetProxy = 19A7FC7514BFDF27540E6C14 /* PBXContainerItemProxy */; }; - 583F8667E5F7C17D868F5978 /* PBXTargetDependency */ = { + 5268EA67DC169DE818CC8F75 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 361B9424E3E8CEFDCD4E18F1 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 20B470636241F129E7F93EC8 /* PBXContainerItemProxy */; }; - 5C767ABE5537E8E771F1FBD9 /* PBXTargetDependency */ = { + 526B313AFAD59FA551C9CD53 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = E95A5D586C90B9F7D0D0EBB3 /* PBXContainerItemProxy */; + name = "IceLocatorDiscovery C++11 iOS"; + target = 696D6136245EB191F3A59E1A /* IceLocatorDiscovery C++11 iOS */; + targetProxy = 60C30DE929B72855A8DD1372 /* PBXContainerItemProxy */; }; - 5DC2C74A75DCC82D8EB76065 /* PBXTargetDependency */ = { + 52B1E6A9E6405D07BA0F27F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 870182EC13F330A5C99A8AD8 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 5E926C954F3A8858CB799B09 /* PBXContainerItemProxy */; }; - 5F218459B2D081FD4D276F0E /* PBXTargetDependency */ = { + 5357751A9DD5D2904A7730A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */; - targetProxy = 8F2F3FC6FC38618B325EFB96 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = F61FA6822996E3BB551D7DDB /* PBXContainerItemProxy */; }; - 5F2AE40A7B6B38809C886901 /* PBXTargetDependency */ = { + 542D43169C87228020236E49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 172CBAB495365D889B14D951 /* PBXContainerItemProxy */; - }; - 602527CCFB0FED66A58CEDA5 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceSlicingObjectsAMD macOS"; - target = 45B627654A6C6E672B177B58 /* IceSlicingObjectsAMD macOS */; - targetProxy = 5FC49C5318AA80BB4616722C /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 59E2AF8828513099F1A302F3 /* PBXContainerItemProxy */; }; - 60D2A880AF10256A590B7AF8 /* PBXTargetDependency */ = { + 561BA1C3CB952DA14DB79002 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultServant iOS"; - target = 7AC3B103C3B879479057C283 /* IceDefaultServant iOS */; - targetProxy = 65DDD513A3AD330E4DED4FBD /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 929A515A6EDD66B671E40125 /* PBXContainerItemProxy */; }; - 624562FE9AF40419990B7DE9 /* PBXTargetDependency */ = { + 563C4F9E29E7516CE8B3250D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 2A9B31FD5450BEAC59472BD7 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 9C64BBEB1865EAF981E3B50B /* PBXContainerItemProxy */; }; - 6253E9AD66F800E28D095533 /* PBXTargetDependency */ = { + 56AD4C9FBA4453BBCDDD0875 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 488DB15BEBD72B41BFC2F7C0 /* PBXContainerItemProxy */; + name = "IceDefaultServant iOS"; + target = 3889B46D2FBF6B61B7DA5A5A /* IceDefaultServant iOS */; + targetProxy = 1AA5486C2B2780994FABE39E /* PBXContainerItemProxy */; }; - 628C8A699FE5EA6A1C636571 /* PBXTargetDependency */ = { + 58136F1BADC3144165D815F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl iOS"; - target = 1461134F8E13923F515F804D /* IceImpl iOS */; - targetProxy = 25BEADB06BE24072293366FF /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 5D8A49A1E8DBBD731D1D4D8C /* PBXContainerItemProxy */; }; - 63D8D2788A671D2EAC6D3289 /* PBXTargetDependency */ = { + 5ACD58BB931BA6EFA23D53DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceEnums iOS"; - target = D8E57767C0E6E25C9171CD94 /* IceEnums iOS */; - targetProxy = 0F5655381197825B7102E2FB /* PBXContainerItemProxy */; + name = "IceDefaultServant macOS"; + target = 2997C7A465709CD09CD4C4BB /* IceDefaultServant macOS */; + targetProxy = B2DBBBA58DCF59CA9E9CA36B /* PBXContainerItemProxy */; }; - 654CB17F160D7E8E2AD477E8 /* PBXTargetDependency */ = { + 5BFDD882BC29CD6E31A0A5E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 9FD62E260BCCE118132284B9 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */; + targetProxy = 831F35CFD61D8BB19FDD3A3E /* PBXContainerItemProxy */; }; - 6812589996B832C9A0609F36 /* PBXTargetDependency */ = { + 5CE3621271F0E4C4F63E9D9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 89FC34EF19D5D0ABC4D1EA35 /* PBXContainerItemProxy */; + name = "IceInfo macOS"; + target = 10E56726E39C8E4E56D51BC4 /* IceInfo macOS */; + targetProxy = 59A627B94164E5E4A39D7900 /* PBXContainerItemProxy */; }; - 6B1F0117A09B57FFF2B9CD65 /* PBXTargetDependency */ = { + 5DAF9558BD888A9BA538C325 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = C9567EC56D783D1440891852 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 2C5DE750C359BC2A30F63723 /* PBXContainerItemProxy */; }; - 6BB02CD18FF76573BC460FC4 /* PBXTargetDependency */ = { + 5E5F2CC3DC8DF57F3D866B54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 70C90AE95855653A9AC0CE50 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 399FF3FB6347A6503490CFDE /* PBXContainerItemProxy */; }; - 6C455E558BDEADE3864ED714 /* PBXTargetDependency */ = { + 5FD75BA8D5A7A7C4F0CA3088 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSSLConfiguration iOS"; - target = 4CD1512C8E4830F6FAC5E6E4 /* IceSSLConfiguration iOS */; - targetProxy = C94FC3CACFFDF403942A0713 /* PBXContainerItemProxy */; + name = "IceAmi macOS"; + target = 0A757D8B307D80F7BD3C5017 /* IceAmi macOS */; + targetProxy = 30FB8DC6A686B05DEB1C3628 /* PBXContainerItemProxy */; }; - 6C9FB4EE32EF3B1523B6F351 /* PBXTargetDependency */ = { + 5FF97F04EC1FEDE3204B0343 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 4952EEE2AED387DB9EEA4BD4 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 09A3E52F59DDF46922C5FB89 /* PBXContainerItemProxy */; }; - 6D34E44E69F3CB0D2DEABB80 /* PBXTargetDependency */ = { + 618D3972916FA254B26E328E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSSLConfiguration macOS"; - target = 3C66C239BBA518B87D48C1C3 /* IceSSLConfiguration macOS */; - targetProxy = BB2E208EBD5BE41E44F8EB27 /* PBXContainerItemProxy */; + name = "IceSlicingExceptionsAMD iOS"; + target = 3CB27B168E65D6B824278AE1 /* IceSlicingExceptionsAMD iOS */; + targetProxy = E7695BD8EE27DDCDDC9CD1C9 /* PBXContainerItemProxy */; }; - 6EDAB68D98F4B3CC280C6101 /* PBXTargetDependency */ = { + 62E1383BBC82CAA4600921BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 246668AAF6B00CDDA6E9C701 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = C177500A281F8265CCD482BE /* PBXContainerItemProxy */; }; - 6F281B7C738EF48FDD11BCC3 /* PBXTargetDependency */ = { + 6339F28A779A84F57105BBD3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = FA3AD6B4016627232A0C7027 /* PBXContainerItemProxy */; + name = "IceObjects iOS"; + target = E47FCF3BB733DC4EC57A0924 /* IceObjects iOS */; + targetProxy = D738E969E2DDF9D604BAAD45 /* PBXContainerItemProxy */; }; - 6FD74D84EEB6D1522D4BDE79 /* PBXTargetDependency */ = { + 6473BB2BF839A0C3AA0BBF14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = B06DD43CC98E177E5491959D /* Glacier2 macOS */; - targetProxy = DA4FD535D6ECC7CE2309F91A /* PBXContainerItemProxy */; + name = "SliceEscape macOS"; + target = F4A16370E4157DCD4CF7F964 /* SliceEscape macOS */; + targetProxy = E9D5A68388B16A6E41C42542 /* PBXContainerItemProxy */; }; - 6FF69033A22E023626CBC999 /* PBXTargetDependency */ = { + 64E2DBD2FB0CF03A0FD858C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 9204F421FDD1F7C1A321EFF5 /* PBXContainerItemProxy */; + name = "IceAdapterDeactivation macOS"; + target = C5982316F62D05CD651717E7 /* IceAdapterDeactivation macOS */; + targetProxy = 9338026585418A72A05DEE35 /* PBXContainerItemProxy */; }; - 70183B95CD8F66FB82DB74EE /* PBXTargetDependency */ = { + 6550E774623793A73ACDD4EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 1B5149A81431CE3EF21C3351 /* PBXContainerItemProxy */; + name = "IceProxy iOS"; + target = BEBD5165FA221E0C61A12DD9 /* IceProxy iOS */; + targetProxy = 56D67D1D13551ECC494292BC /* PBXContainerItemProxy */; }; - 705C9FBEAE168297C58BDA0B /* PBXTargetDependency */ = { + 65F8D90FAF604B13E5D29075 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 75D90FD867A1C5A9F54E6920 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 8FF049F5EBED88BB74760CA6 /* PBXContainerItemProxy */; }; - 7233F6C9E2602CFA873D9033 /* PBXTargetDependency */ = { + 67789B7982F0B48D06EC11B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptional iOS"; - target = 263FF8D1D5EF5BA8F4E3FDFA /* IceOptional iOS */; - targetProxy = 396D434D2A6FBB7DFE7FB14F /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 2F16B705DBEE879F8AEE845F /* PBXContainerItemProxy */; }; - 73A41FE9CBC445B071808659 /* PBXTargetDependency */ = { + 6786C94697BA770CC188DC4B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceEnums macOS"; - target = 3C8F64BC2EB740FC26540C5A /* IceEnums macOS */; - targetProxy = 0445FD490A608CA2BBC5A706 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 208712A54D7C80A5E1D013C2 /* PBXContainerItemProxy */; }; - 7487147066411410147870B2 /* PBXTargetDependency */ = { + 67AC6E75E00A1CF41A8FACF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProperties macOS"; - target = CF2C35C710236049C9C60B79 /* IceProperties macOS */; - targetProxy = 41CC0169F1111C04E415AC8D /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 9D1505E60C38D15B1D840713 /* PBXContainerItemProxy */; }; - 7AE8E7EB7AC7B98D94B7EE2A /* PBXTargetDependency */ = { + 67B031B4D8993288C7843E4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocator iOS"; - target = 246FEE224D85BEE24C2D1581 /* IceServantLocator iOS */; - targetProxy = 3CB4CA72520721540AEF5655 /* PBXContainerItemProxy */; + name = "IceObjects macOS"; + target = B564F6A99559D774EF563A3F /* IceObjects macOS */; + targetProxy = FC804A9AB6BDB06C3653BEDF /* PBXContainerItemProxy */; }; - 7C6F9386F7A18DE4B273E36C /* PBXTargetDependency */ = { + 6869B13D9CCD41CC7B01357D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 2BEAE6758EFA118B2027CCE6 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = A14C3825AE339D2C4D4C65DF /* PBXContainerItemProxy */; }; - 7CF5BA9F11877E8DE8CC0B1F /* PBXTargetDependency */ = { + 6904747B72BC3EF7E92C60A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 6B0AB5FCB178D5C6B7BD91DB /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = EF4E1423CA3DE48796FBF7D3 /* PBXContainerItemProxy */; }; - 7F60111AC7F5F12B6F78594E /* PBXTargetDependency */ = { + 6914D31020D1CBDDF97969C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 63119168261AABF6098B7D8C /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 61EBF15B7A1C2349628E4AF4 /* PBXContainerItemProxy */; }; - 8033BC3863F4B27A60180BA6 /* PBXTargetDependency */ = { + 69964E7848A218E1DEDFC2E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 4FA7360902327FE1AEDD3760 /* PBXContainerItemProxy */; - }; - 80D5B83EE21DA6DD3550BD8B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceProperties iOS"; - target = 73B0FB7CB263578EA908E6BF /* IceProperties iOS */; - targetProxy = 3C96FBBA1D866525481B6407 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 7A68B6DCA42F642338D76D6C /* PBXContainerItemProxy */; }; - 821E7DB417F0F0382E648337 /* PBXTargetDependency */ = { + 6A2AD27DCD8B5B2CB05083E8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperationsAMD iOS"; - target = BBEFD25BD9A130DE61D90238 /* IceOperationsAMD iOS */; - targetProxy = AA1D3D274DE1D1DACAF76475 /* PBXContainerItemProxy */; + name = "IceAcm iOS"; + target = 46452DCDFFD6A246079637CB /* IceAcm iOS */; + targetProxy = D60BD7E9DC5676E77F63EDDF /* PBXContainerItemProxy */; }; - 8281FF63885EA22DAC514FC6 /* PBXTargetDependency */ = { + 6A5B13C3D4BF44CF6DE975DE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 424D32CEB0DE33F9E1D2EDAD /* PBXContainerItemProxy */; + name = "IceTimeout iOS"; + target = 29279E4ADC71CC6522E7C012 /* IceTimeout iOS */; + targetProxy = 9742AE7FC358856C1F997A37 /* PBXContainerItemProxy */; }; - 82F725F66AF7963DA643F37F /* PBXTargetDependency */ = { + 6B800448C27AC9995729A2E3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 73353E58AC47EC3C0E7E4660 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 144D57699F421A453D879D0E /* PBXContainerItemProxy */; }; - 850E3B2E3F2688C9FA8F1679 /* PBXTargetDependency */ = { + 6BECC44222CAD7C68E324C3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDiscovery C++11 iOS"; - target = 563E7C5E9BFDDAD9AEB54CD4 /* IceDiscovery C++11 iOS */; - targetProxy = C48482DE10A162F47CEE22B0 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = A9D86FD03FA249C0E1B1FF42 /* PBXContainerItemProxy */; }; - 8590BF2D92F5E519CCE6E0B7 /* PBXTargetDependency */ = { + 6C22381685946362D296DF7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = B033F882805EFC28F4711FC0 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 232EE525AB7443632644DF3D /* PBXContainerItemProxy */; }; - 8702C18A0C77263511D9EEDE /* PBXTargetDependency */ = { + 6C3562F7E1400576B368712F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 565C3379B039CBE177EDEFEB /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 6D0310C13A5DCC1002BCEDFF /* PBXContainerItemProxy */; }; - 8732D089FD1A403F9535195A /* PBXTargetDependency */ = { + 6DF06C963636C427AF40A926 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceUdp macOS"; - target = 7B09AAAF71F5D5AB2F8C1B78 /* IceUdp macOS */; - targetProxy = 3B9A50B36B7EC52474EC74CE /* PBXContainerItemProxy */; + name = "IceExceptionsAMD iOS"; + target = 57D39C477D54466601C5A786 /* IceExceptionsAMD iOS */; + targetProxy = E455388208A742768A7D24EB /* PBXContainerItemProxy */; }; - 877B4C1103BC1DBA5834A2F7 /* PBXTargetDependency */ = { + 6FC6EC1890665DCEAC5A5727 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 24519292C63CDD33513EFF95 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = DC9533A8C2C8F985E804CD9C /* PBXContainerItemProxy */; }; - 8AA33C1034B93523BA5B140B /* PBXTargetDependency */ = { + 7051368F9D3D1E5E3808805C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = F8B1BB7CC7D12EA9B482F87D /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */; + targetProxy = 5861FE679598D667D6219FC8 /* PBXContainerItemProxy */; }; - 8ABF02C70DC6AFC5C4BEB93A /* PBXTargetDependency */ = { + 711D5DEEE06075DDADB72213 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 758C83C5E9AC0CBAE5F586A1 /* PBXContainerItemProxy */; + name = "IceOptional macOS"; + target = D2A90EB733FA2B780783AADF /* IceOptional macOS */; + targetProxy = CD34B6091220C74DD1668C00 /* PBXContainerItemProxy */; }; - 8BD920016F095A02FFC1A98E /* PBXTargetDependency */ = { + 7208F57935FA5E9E24A307E3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = AE21B8411D203C7FC4055270 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 7330088081A46278F32264FF /* PBXContainerItemProxy */; }; - 8E7C7D84D79C288BB564C397 /* PBXTargetDependency */ = { + 72746F191DD4652E14575CF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */; - targetProxy = 06958B65D9E61CD65C030E7E /* PBXContainerItemProxy */; + name = "IceOperationsAMD macOS"; + target = 8D4D7F1ABB790FA722EC7917 /* IceOperationsAMD macOS */; + targetProxy = 7C4197A3AFACC893BF9F54EC /* PBXContainerItemProxy */; }; - 90F0F32CC84D9BFC5D6DB504 /* PBXTargetDependency */ = { + 73508A1A1B56CD95DCCF893E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAcm macOS"; - target = CE79EFA5A2D0EEBD42B1DC53 /* IceAcm macOS */; - targetProxy = D961E429680328C9376ACD00 /* PBXContainerItemProxy */; + name = "IceProperties iOS"; + target = A3B6CDB0CD7C0059D4D3CBF9 /* IceProperties iOS */; + targetProxy = 718762720FB2D9A1D6045FCD /* PBXContainerItemProxy */; }; - 923B443A3DFBA414FFB0EE60 /* PBXTargetDependency */ = { + 7448C1D149CBF37D898D6415 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocatorDiscovery C++11 macOS"; - target = 8E23FF66CFB6287919E99A31 /* IceLocatorDiscovery C++11 macOS */; - targetProxy = B7B7629BBC65294BCFA76061 /* PBXContainerItemProxy */; + name = "IceAdmin iOS"; + target = 24A0E61D1931744BC729034A /* IceAdmin iOS */; + targetProxy = 736425D866A7923A2719540C /* PBXContainerItemProxy */; }; - 9723F6A89BAA32EFB9E38912 /* PBXTargetDependency */ = { + 75C002C3683579061F37770D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptionalAMD iOS"; - target = BF6E058050842A50604055C2 /* IceOptionalAMD iOS */; - targetProxy = 3D8884CD565D4A35EB22C64D /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = DB666A0A9E696FCCA300C8D7 /* PBXContainerItemProxy */; }; - 9865DFFD138C74155281BD35 /* PBXTargetDependency */ = { + 75FF220CA1125F22FF50CA9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = F1075D8455C9CE7882F11E53 /* PBXContainerItemProxy */; + name = "IceInfo iOS"; + target = 2A0224A2EFBB3E87655C351C /* IceInfo iOS */; + targetProxy = 2152DAED3FAD6AB0B5DF41B0 /* PBXContainerItemProxy */; }; - 99977B77422172889E2505B2 /* PBXTargetDependency */ = { + 769B73A0D383FE05DBB7FFD5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = D960472284DF0ABCD771B249 /* PBXContainerItemProxy */; + name = "IceExceptions iOS"; + target = 7EB54A3072775CD2177DC7A7 /* IceExceptions iOS */; + targetProxy = C266014555D8E6DBEF4A28F2 /* PBXContainerItemProxy */; }; - 9BBC14B6DEB9CC469A18760D /* PBXTargetDependency */ = { + 78CEFB1A72110EE60FDB3F21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 520C9E1BA5F83158E30E26F9 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 1E5D3D36B7A333EDDDD3C5CF /* PBXContainerItemProxy */; }; - 9D1EEDD844972C62FD524F5D /* PBXTargetDependency */ = { + 79907CBDE1D21DF4674DCEBB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceFacets macOS"; - target = EEC6F479C65DCAAB4950D96F /* IceFacets macOS */; - targetProxy = 4CEC6C7D95E0CA1C63DEB2A9 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = BD3E6E18E657D24DC3A40C9D /* PBXContainerItemProxy */; }; - 9E17DD7FFF15EFAF825726DD /* PBXTargetDependency */ = { + 7A1B75A2AFF576862F850EB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 8F39CEB5897DD5417B1A0BEA /* PBXContainerItemProxy */; + name = "IceAcm macOS"; + target = 45549440E1718C4D35E63237 /* IceAcm macOS */; + targetProxy = AE9D345A351B33C079E3FC91 /* PBXContainerItemProxy */; }; - A1AEA60AA98C9CAF76FD32A0 /* PBXTargetDependency */ = { + 7AB9AFA228B9357774F00016 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */; - targetProxy = 0E5B072C3073550289AC022D /* PBXContainerItemProxy */; + name = "IceAdapterDeactivation iOS"; + target = AEE1F674AD81A9327E42EDDB /* IceAdapterDeactivation iOS */; + targetProxy = B7F1953731CF30A6D0C42344 /* PBXContainerItemProxy */; }; - A1AFF9D2AAEB1A821EBCD3E0 /* PBXTargetDependency */ = { + 7B2D6496A0B0CA37BC1B1E7A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocator macOS"; - target = 938EB0FB3FB9C74695580EBE /* IceServantLocator macOS */; - targetProxy = C4648503F7E00B7B097DD352 /* PBXContainerItemProxy */; + name = "IceDefaultValue macOS"; + target = 627EF9C25191013A38BA3C83 /* IceDefaultValue macOS */; + targetProxy = E7C2FF626DBEF09B758F3F47 /* PBXContainerItemProxy */; }; - A220AC0698C4013092133F67 /* PBXTargetDependency */ = { + 7C19001548D502798662B0D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptionsAMD macOS"; - target = 60091C7C300D5092A8E52149 /* IceExceptionsAMD macOS */; - targetProxy = C3147B2B67B7EBE5156B5365 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = E28C5869BB6C1CC613CD30BB /* PBXContainerItemProxy */; }; - A402B8A075E43FF8F5860C07 /* PBXTargetDependency */ = { + 7C45704DFE9C89DE81C18E81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultServant macOS"; - target = 8DB5F9E207CEEFAD3CA28266 /* IceDefaultServant macOS */; - targetProxy = B4D6DC6746AF83195798E010 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 195FCFDEE7EFAAB16AF81A5F /* PBXContainerItemProxy */; }; - A454DF0D8814AA796AC3A34E /* PBXTargetDependency */ = { + 7C885D4DC1517A39B6AAEC36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 6315F1589B46F7B4E65EFECB /* PBXContainerItemProxy */; + name = "IceBinding iOS"; + target = F1949C2140DCFA5E835C5C17 /* IceBinding iOS */; + targetProxy = 7197824CC6154D953B46BE8A /* PBXContainerItemProxy */; }; - A473622614263821F53C3D47 /* PBXTargetDependency */ = { + 7EECA71D1209359102D19880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 5A1A8F8FAFE4A01BD86E291F /* PBXContainerItemProxy */; + name = "IceTimeout macOS"; + target = 9F95E6A433F94E974D32566F /* IceTimeout macOS */; + targetProxy = F3A66F44F7A8713864CD6250 /* PBXContainerItemProxy */; }; - A478F9404FB7C31EEAC472BB /* PBXTargetDependency */ = { + 7F1CBFCEDFF7592299B8E767 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = A3981340330BF1B2BBE5C5ED /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 894F108120051CBF396B7383 /* PBXContainerItemProxy */; }; - A758FEB00F45F43548A58C3E /* PBXTargetDependency */ = { + 8013596BF0B6673017AE9925 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 6CDE8504E9B7417FC60202FC /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */; + targetProxy = B98AF5B51203F4D0188792E2 /* PBXContainerItemProxy */; }; - A7A3456523A16A48D6AF3D21 /* PBXTargetDependency */ = { + 80415BFA23B5F71708C31594 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceBinding macOS"; - target = BD615D3AE7C4D142D2D859B8 /* IceBinding macOS */; - targetProxy = 055279623C7C6ED5BE872EB1 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 302E9DDA13EDEBAA0C1C6461 /* PBXContainerItemProxy */; }; - A7BC4711D90476B21C97247A /* PBXTargetDependency */ = { + 83E58029B07ED33EB879DB29 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 4D4C5D798AFFB8EA4F4BB9AB /* PBXContainerItemProxy */; + name = "IceOptionalAMD macOS"; + target = 7C5D25F9DE7921A57B72E85F /* IceOptionalAMD macOS */; + targetProxy = 6CB8FFC27C1C7F3D2A0E974C /* PBXContainerItemProxy */; }; - A8909DBDEB2BC7213342F687 /* PBXTargetDependency */ = { + 862E19C471E8DE68F15CBF4F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjectsAMD iOS"; - target = D2EB13A2B3406D37FA2754E9 /* IceSlicingObjectsAMD iOS */; - targetProxy = 33916F796E33205889F8A514 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = B89F2D0235F69678736B2597 /* PBXContainerItemProxy */; }; - A8ACB23FDAF863A5B348CA03 /* PBXTargetDependency */ = { + 865F09E12BF0AB27BF5FE513 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceRetry macOS"; - target = B1154CF85BB46C6CCA916ABD /* IceRetry macOS */; - targetProxy = AD02F61E11394A39B48185B1 /* PBXContainerItemProxy */; + name = "IceGrid macOS"; + target = A250D484C77105742100E390 /* IceGrid macOS */; + targetProxy = 1E59CC1DE82AF2C223F12E78 /* PBXContainerItemProxy */; }; - A93B5EB4B3BDD5605367C99B /* PBXTargetDependency */ = { + 86F52CD5342C5A5094EBBF81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 289518D8279A017F4EA87E20 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 1D8BD3CF996B922E28683DB1 /* PBXContainerItemProxy */; }; - A9C7FC09D99B2CC031BFA12D /* PBXTargetDependency */ = { + 8777B7EA77BA6F64CBF1F713 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceObjects macOS"; - target = B51FD7FF275A85DCE665AB96 /* IceObjects macOS */; - targetProxy = 64AAB3780F7152FEDDDF1C63 /* PBXContainerItemProxy */; + name = "IceImpl macOS"; + target = C07B8E267CA90FCDBE4E7E7D /* IceImpl macOS */; + targetProxy = BCC16596ECA2804FEDB53B69 /* PBXContainerItemProxy */; }; - A9D428A05C52A274B1A72E5F /* PBXTargetDependency */ = { + 88CE47F5A6556E984A0C3314 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjects iOS"; - target = 568C96C03F49810104EE6CD1 /* IceSlicingObjects iOS */; - targetProxy = D33424573227C409DB3052BE /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 45D7F71E010A419A4F9BDD80 /* PBXContainerItemProxy */; }; - AA2FB66424D53E53649A862B /* PBXTargetDependency */ = { + 896C3ABA52835962B333F257 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 16D6FE9D2BDB54DDB4735C1A /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 50A1FA2B88000EDD83006EF1 /* PBXContainerItemProxy */; }; - AC689ADB31AA0F7433A298CD /* PBXTargetDependency */ = { + 8DE1D2AFA66323BE0D6830F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInterceptor iOS"; - target = 736E7E0279329997566B6CBD /* IceInterceptor iOS */; - targetProxy = AAF7F7CC5EB52708BEAAC88A /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = F2074BD9EB83504F96A73C4C /* PBXContainerItemProxy */; }; - AE09AE75AA277407194474D5 /* PBXTargetDependency */ = { + 8E5E9DF78C4648D714DEA913 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInvoke macOS"; - target = 65B4CEBE6BC37BE3E80C822B /* IceInvoke macOS */; - targetProxy = FD2425EA92C135B5B7BBC01C /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 4F280D704E7E30DBFF24D934 /* PBXContainerItemProxy */; }; - B02A518685B8288E303542CC /* PBXTargetDependency */ = { + 8F43B4ABBB390EA0AA2806B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid macOS"; - target = 953A9306D1F74C3E46325E82 /* IceGrid macOS */; - targetProxy = BB9C3870FD19928B2D211011 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 4A4F8C5EAEFD06F4B880420C /* PBXContainerItemProxy */; }; - B16E8FE24046274907F97681 /* PBXTargetDependency */ = { + 8F7B5636B28615FCF1F89DAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 2EF62F8C4BCBD2D0C38BCA8B /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 09B639B4B4CE81CDDCBEC692 /* PBXContainerItemProxy */; }; - B2287847456C443450046F4F /* PBXTargetDependency */ = { + 902D152B990BFBDB128AAAA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 5020DC827D0CDBDE619C1999 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 5B2F93B6F54E4110EE384EB4 /* PBXContainerItemProxy */; }; - B2FF292B16D73AF295372E9B /* PBXTargetDependency */ = { + 932568BF537D0E9CF04A3F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxyAMD macOS"; - target = 653844725C6B533AEBD3977F /* IceProxyAMD macOS */; - targetProxy = B83CA1F1B88DCBA5E07177D0 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 7B189B537112F1A3D8466612 /* PBXContainerItemProxy */; }; - B4A261B73714974D9F3D44AD /* PBXTargetDependency */ = { + 949E14996BB86EA14239E327 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = B27B1B823F57615994AA87FE /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 4C60141AA1A8FD05F8685B95 /* PBXContainerItemProxy */; }; - B69512CDB44121E19AC47267 /* PBXTargetDependency */ = { + 996596739BF001F14B815636 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 4CAAF120E053F3911CDCBB12 /* PBXContainerItemProxy */; + name = "IceSlicingExceptions macOS"; + target = 57285D8128490A28FD5E1EA9 /* IceSlicingExceptions macOS */; + targetProxy = DC9398A2524EFC9ABDCDD65D /* PBXContainerItemProxy */; }; - B772D4413BDE6F23CFE5AB9A /* PBXTargetDependency */ = { + 9B7DC02499B2C036C616A166 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 4C7D8D5F56D51212B4EB3EDE /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = B38B23126632727546B9AF43 /* PBXContainerItemProxy */; }; - B8F36EACB6A70B2192BFABDE /* PBXTargetDependency */ = { + 9C3512FCC97B40E3D8F88C03 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptionalAMD macOS"; - target = 3C65AA8108580E3668BDBC3F /* IceOptionalAMD macOS */; - targetProxy = BD799E40E1B1231346583165 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 8F77F087CA76298635C6EB3B /* PBXContainerItemProxy */; }; - B964BB9EA7FB3369637C6722 /* PBXTargetDependency */ = { + 9D410204734AAA73906D3161 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceUdp iOS"; - target = 92DFD90832239D72108865B4 /* IceUdp iOS */; - targetProxy = D0EF17D320E8AB74A974F526 /* PBXContainerItemProxy */; + name = "IceInheritance iOS"; + target = C2F3B80C3A24BFA9444F31E1 /* IceInheritance iOS */; + targetProxy = D515AAF200C59B874CB199F9 /* PBXContainerItemProxy */; }; - BC8E9AEADEC1C9437B93872E /* PBXTargetDependency */ = { + 9E47C0D59B7542553E30A851 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid iOS"; - target = D6C19C2ACCB1CB3FB3B25FA9 /* IceGrid iOS */; - targetProxy = 9097BF0D9D5029FE82933379 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = FAF02CF1DDD58658039E04DB /* PBXContainerItemProxy */; }; - BC91FE7A6C7B417DA7CBC3CB /* PBXTargetDependency */ = { + 9E82D85D6E5E2CBF7F61188A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceBinding iOS"; - target = 984F9509A61A9677BDD2B1E7 /* IceBinding iOS */; - targetProxy = 2403B7E46EFF8B1823936276 /* PBXContainerItemProxy */; + name = "IceProxy macOS"; + target = 915EFEBB1B2962C505C96286 /* IceProxy macOS */; + targetProxy = 0FC18BDE7D824822616376E6 /* PBXContainerItemProxy */; }; - BD341B3DBE44221ABA2CE3D6 /* PBXTargetDependency */ = { + A2967B38CF2279E1730A4928 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStream macOS"; - target = DE8F7D3EE9F4909908CB3923 /* IceStream macOS */; - targetProxy = 366E74274441B9A0FCDA56D5 /* PBXContainerItemProxy */; + name = "IceServantLocator macOS"; + target = 1F99406342A96A78168E74BB /* IceServantLocator macOS */; + targetProxy = CF727DA49691973064686C6A /* PBXContainerItemProxy */; }; - BD6F61806126F8B4876AAB15 /* PBXTargetDependency */ = { + A3FCCE06FBBB03C015426F21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = ABC6C317ECF9D9B7E1EA45F4 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 458731DB8A8E8EFE42D7E6C3 /* PBXContainerItemProxy */; }; - BEA47222DCFE0E79497C509D /* PBXTargetDependency */ = { + A646BFF2EBABF5DA511E2EA2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 402763FE8881D4A8E87ADE5B /* PBXContainerItemProxy */; + name = "IceStream macOS"; + target = A02AEC1FCAEDD308F0CBDCC6 /* IceStream macOS */; + targetProxy = 2F78747818E14907E05B6CE6 /* PBXContainerItemProxy */; }; - C03007A48FA27BE30F925426 /* PBXTargetDependency */ = { + A7B3E8467799D00673BAB97C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 19A436987D04FD3FE857CE4D /* PBXContainerItemProxy */; - }; - C1DC945D777EA0CF7058098D /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceAdmin macOS"; - target = B49EEDD01A8C36F24785F1E7 /* IceAdmin macOS */; - targetProxy = AC1FECBB876831076416E474 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 192BAF3A73C465B85A7C1F06 /* PBXContainerItemProxy */; }; - C2336FE5661BC689D2781566 /* PBXTargetDependency */ = { + A82EA4403CC23337135C80BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 3266390A5794F2FAA5AB106B /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 5A8BB27B6F9BA4688ED7F443 /* PBXContainerItemProxy */; }; - C25C82B8BD02AE39C9029153 /* PBXTargetDependency */ = { + A8ECDEF5B6890C8F5A429DE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 718C3CF8AFB80575F45C8CDA /* PBXContainerItemProxy */; + name = "IceProxyAMD iOS"; + target = BCD219D62CE917ADBC7AFD22 /* IceProxyAMD iOS */; + targetProxy = E6950B775308746D5C44E728 /* PBXContainerItemProxy */; }; - C275009890F7AEBE56B7BFBC /* PBXTargetDependency */ = { + A98F664C6659C5CD598BB15B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 8F9C0007F42379910D9FF4A9 /* PBXContainerItemProxy */; + name = "IceOptional iOS"; + target = 34AC5913121CF6E0F793DEDD /* IceOptional iOS */; + targetProxy = B58780123737EA9831766563 /* PBXContainerItemProxy */; }; - C27C0FBE35C7A75968419366 /* PBXTargetDependency */ = { + AEC180946B16CB7D1C4DBF3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocation iOS"; - target = 2AD01C6A244838BF6DABEF5C /* IceLocation iOS */; - targetProxy = DB77A67E19C085ADDB8375E5 /* PBXContainerItemProxy */; + name = "IceImpl macOS"; + target = C07B8E267CA90FCDBE4E7E7D /* IceImpl macOS */; + targetProxy = B285BE39E77D3B8ED9754FD9 /* PBXContainerItemProxy */; }; - C28D91EADF3A06C6848AF6DE /* PBXTargetDependency */ = { + B013408EC0683BA8E33F05B2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultValue macOS"; - target = 11C4703EE1A20D4D647A2951 /* IceDefaultValue macOS */; - targetProxy = 720832E175EB439A57A39484 /* PBXContainerItemProxy */; + name = "IceDefaultValue iOS"; + target = 8E4EE2567B3C187D2F9C1173 /* IceDefaultValue iOS */; + targetProxy = A51CFA7AB7E9E40ED0DF1944 /* PBXContainerItemProxy */; }; - C2E5FF8F766ABF8C49C47C41 /* PBXTargetDependency */ = { + B04DB607E476251755885F9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocatorAMD macOS"; - target = B4C54B94A72325BA4250EB2E /* IceServantLocatorAMD macOS */; - targetProxy = EEA312042511A8F9B80EA1CE /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 9A9011F308379E6B0B07DF7C /* PBXContainerItemProxy */; }; - C3373DFD4195B262BD339BE9 /* PBXTargetDependency */ = { + B13CE3F8761F18087CE22379 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */; - targetProxy = 9121DFC979593B1E11C648A8 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 231E3EB4B30195829B9C7C43 /* PBXContainerItemProxy */; }; - C57F2E966A56D427BD3B9A86 /* PBXTargetDependency */ = { + B49EAB63D6E9C34958A5D033 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 939FC52BA742DFCF56314DD7 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 96EFEFE1AAD1D22BEBEADECE /* PBXContainerItemProxy */; }; - C79F9A84C9780954C4B2A2D7 /* PBXTargetDependency */ = { + B4D560EC692795C1AB1CEE1A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 61A26954F988625C541F1F01 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = BC52C300EB2A04A651C8A75E /* PBXContainerItemProxy */; }; - C7C2D9F88338B9890CA07314 /* PBXTargetDependency */ = { + B7F7351D814B5FBA1FFC8E3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 62F870226A3B49EF769A6F69 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 0D834A00427086014DA514E3 /* PBXContainerItemProxy */; }; - C7DA671101B48AA98B65B28E /* PBXTargetDependency */ = { + B8F1E89B87825266C11A5519 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 73A2F189E512673017E1BFE6 /* PBXContainerItemProxy */; - }; - C83636F3C4909F7E272354CB /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = B06DD43CC98E177E5491959D /* Glacier2 macOS */; - targetProxy = 15F4529F1879A67F50F754A9 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = B0030EF96F2C9179821DEEDD /* PBXContainerItemProxy */; }; - CC176D949F48F1D3567C5158 /* PBXTargetDependency */ = { + B9D7BB9E7B4B9D112E9DF8EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInheritance macOS"; - target = 54C05D7A1468FBA7EB02A914 /* IceInheritance macOS */; - targetProxy = 4D0ECF7B4A4E30694C530DC7 /* PBXContainerItemProxy */; + name = "IceStorm iOS"; + target = 16C02D2C934DC57FE079663F /* IceStorm iOS */; + targetProxy = 7CA52B64C6B2B6B870FF00A8 /* PBXContainerItemProxy */; }; - CC58057DA07A3455AB2A6207 /* PBXTargetDependency */ = { + BAABD39AF8227DE63E0F15A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 758EC9DFA3BCF0FA971D1F71 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 555E024B24C17A7DE5F0ADE3 /* PBXContainerItemProxy */; }; - CDCB3DA8CE04AF7351B19BD5 /* PBXTargetDependency */ = { + BAC027B9F32EA0F4AFC54489 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 014501AC275F60A5050D23D1 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 740DC98CDBA9B6B07DFF5C7F /* PBXContainerItemProxy */; }; - CE663B5337DE6CF7660D1D76 /* PBXTargetDependency */ = { + BB29484678B4A6BC5EAD1F7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SliceEscape iOS"; - target = 4F13DB1C06A1425528829C6C /* SliceEscape iOS */; - targetProxy = FB32F61FBDCCA0F3A6DA953C /* PBXContainerItemProxy */; + name = "IceSlicingObjects macOS"; + target = A1FCF6486037B74ACCD22503 /* IceSlicingObjects macOS */; + targetProxy = E32F18D290F55AE591D00478 /* PBXContainerItemProxy */; }; - CE99B6946BF5E794912EC454 /* PBXTargetDependency */ = { + BBE4C6AFCAA0609900EA9E58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServices macOS"; - target = 32B8209C4A20C3D8A8496A49 /* IceServices macOS */; - targetProxy = 25469C37FEC81A040110CF43 /* PBXContainerItemProxy */; + name = "IceSSLConfiguration macOS"; + target = C4633684AA9C8E2D8E2A3BF1 /* IceSSLConfiguration macOS */; + targetProxy = FB51C03C494EF521DC56095E /* PBXContainerItemProxy */; }; - CEEE543114F060E7C4726B96 /* PBXTargetDependency */ = { + BBFC483DC74CA8ED3A565C13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = DFBECEB61102BF7765DB140A /* PBXContainerItemProxy */; + name = "IceSlicingObjectsAMD macOS"; + target = 2AA26A44152A667D249E2998 /* IceSlicingObjectsAMD macOS */; + targetProxy = 5043D766A126E61F250463D1 /* PBXContainerItemProxy */; }; - CFCC2A72B0602D76978A5B73 /* PBXTargetDependency */ = { + BD80C5D9BB72B119C04283F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjects macOS"; - target = BCEAC60BF9D3DB0E6BB1DD33 /* IceSlicingObjects macOS */; - targetProxy = 98B15343A8E74143ED5B4B0A /* PBXContainerItemProxy */; + name = "IceUdp iOS"; + target = CC929AD29689B47CA62D417E /* IceUdp iOS */; + targetProxy = A6DC1B99D20022B136E62F81 /* PBXContainerItemProxy */; }; - D14791AFE1C9C2B74C497278 /* PBXTargetDependency */ = { + C17DD2C1DFB44F065EB562D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = A52B386CD17D3AC93A7BBB23 /* PBXContainerItemProxy */; + name = "IceImpl iOS"; + target = 4CDAAF1A166952EC0C4E0BF1 /* IceImpl iOS */; + targetProxy = DC5AE239C7B721B9673DD654 /* PBXContainerItemProxy */; }; - D153B0F232624C7685DD931A /* PBXTargetDependency */ = { + C1956C8C1A66B382C06C35BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = FEB999A0E55F6F5ABEB4DAF1 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = B19925B9ED338D734914D922 /* PBXContainerItemProxy */; }; - D23660E156677E97449E839C /* PBXTargetDependency */ = { + C1F394080804B49038462DC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = A8C02DAD0D072836518FAF59 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 4EEA7C7E13C8CB9FA6592163 /* PBXContainerItemProxy */; }; - D262A9D4C5A1AA7DE691620A /* PBXTargetDependency */ = { + C2D552543A04BCB1C90C0836 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 7EFFF6DF96D917257417FC18 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 9EAC2BB7D69A92CC378D399F /* PBXContainerItemProxy */; }; - D2ABB6907F687A1634C727D3 /* PBXTargetDependency */ = { + C31F871E6F410119CF66B3AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 5D854259AC58BF71060A4FE2 /* PBXContainerItemProxy */; + name = "IceUdp macOS"; + target = 1F284CA948D007302C982357 /* IceUdp macOS */; + targetProxy = 6622A1F58AE077A765492903 /* PBXContainerItemProxy */; }; - D2B534DF7C495616B61D9DAA /* PBXTargetDependency */ = { + C3351F650DE37970BEF63E6A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = C32F4810A9B60D686D43153B /* PBXContainerItemProxy */; + name = "IceEnums iOS"; + target = D9AE09FB3585B148EE15E9D9 /* IceEnums iOS */; + targetProxy = 8685E9A8FFDD5344998A5E70 /* PBXContainerItemProxy */; }; - D37F5AE837E34553E9A91018 /* PBXTargetDependency */ = { + C3E08614742AB34ACA072519 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 1B5BEFE3ACBFD71141DFB8AC /* PBXContainerItemProxy */; + name = "IceInvoke iOS"; + target = 31D342F49CC37B0DFA959D8A /* IceInvoke iOS */; + targetProxy = EC4B7698A70E3DEE1849D547 /* PBXContainerItemProxy */; }; - D56653FACBEEE60C2262648A /* PBXTargetDependency */ = { + C3EC146D2A7DB317B4C97D58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceScope iOS"; - target = 4FDA69908F50F24A52FA5554 /* IceScope iOS */; - targetProxy = 4A977A65758B16E7E31D8996 /* PBXContainerItemProxy */; + name = "IceSlicingObjects iOS"; + target = 99D043CF9A0E172FCFC4C4B0 /* IceSlicingObjects iOS */; + targetProxy = 321D14768D089FF940693129 /* PBXContainerItemProxy */; }; - D5766540D82324E628841392 /* PBXTargetDependency */ = { + C5DB2260BB147B158EB4CCFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = B394E49E013E4A6297833ACF /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 0D9BD4F49481916A916FF362 /* PBXContainerItemProxy */; }; - D5B0DF682589A7C2400DBF3C /* PBXTargetDependency */ = { + C5F9CCC0B291D8A268473F19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = DA2C65875456DE264A8FBF2A /* PBXContainerItemProxy */; + name = "IceAmi iOS"; + target = 9A9DEB6418C9257648D6A235 /* IceAmi iOS */; + targetProxy = E00FE735E612D8AD79F39317 /* PBXContainerItemProxy */; }; - D6295B2ECCB99C7E068F15DB /* PBXTargetDependency */ = { + C66718354985552446A566E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceTimeout macOS"; - target = 80D1931BE1B80501D33167DD /* IceTimeout macOS */; - targetProxy = 47675D8C1F957EE4364D7889 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = B92E478B0BBBA773E2AC843C /* PBXContainerItemProxy */; }; - D66CEB67000C3EB8E6EDDBAD /* PBXTargetDependency */ = { + C6F0F1CC258CECBC17386D3E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 084E22A8552E2814CEC545B7 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 854A090F6A66CEBF0AEDED26 /* PBXContainerItemProxy */; }; - D671E2A6668680F0E63DC50C /* PBXTargetDependency */ = { + CB8F434183D2935509B39B0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 6FBFA1D5551FA04E8D5D1888 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = ABE4C8E7C88C74E206D2105E /* PBXContainerItemProxy */; }; - D770DB7F97FBAA7FF9BB8B80 /* PBXTargetDependency */ = { + CC0059B926218535B5D62531 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = B951D0A96AF960ED8F08DDFC /* PBXContainerItemProxy */; + name = "IceAdmin macOS"; + target = E1EEB80531F6CCE4CB628B62 /* IceAdmin macOS */; + targetProxy = EA5010438DC08BDCE3A224EC /* PBXContainerItemProxy */; }; - D9EC6B5F6D429EFE5A7478CD /* PBXTargetDependency */ = { + CC6BBD2AB5F9CC06D02D249D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = CD3F5FB4DE55DDA83EAF3052 /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */; + targetProxy = 68A0CA494016011E788CEF14 /* PBXContainerItemProxy */; }; - DB96A96ABB3660110A211A39 /* PBXTargetDependency */ = { + CE185284674CE65CDCEF95B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 00D89C717F365A9B330E3D7C /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 256A70A32FCC1DB9CFA8A408 /* PBXContainerItemProxy */; }; - DCAB49BE398943EF003A1590 /* PBXTargetDependency */ = { + CF10BC561FC771931781C170 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServices iOS"; - target = 7C4ECB5C2679ED962EFAEA71 /* IceServices iOS */; - targetProxy = 03FE801C71B56486EB5861EE /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 6CFFA5183F70AC0997AAD28F /* PBXContainerItemProxy */; }; - DD9250B27E497A58C6F0D38B /* PBXTargetDependency */ = { + D00A8B60DC6109E22F68E856 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 874262A59C8B1F6AEE8C42F1 /* PBXContainerItemProxy */; + name = "IceStorm iOS"; + target = 16C02D2C934DC57FE079663F /* IceStorm iOS */; + targetProxy = 9D5A32D676174C1C468BC8C9 /* PBXContainerItemProxy */; }; - DDF5CF580877DF6E551B2F36 /* PBXTargetDependency */ = { + D10918C649245B16EDE14174 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = FB24B8B91A047033703F023F /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = FBF4CD6EAD3CA367161D3B9C /* PBXContainerItemProxy */; }; - DFA3E5B85E1F8F2CC25C85A3 /* PBXTargetDependency */ = { + D142A33923862678D6C26242 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 61E2B5DB1640EA077C36236E /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 18BD8B97402ED565EFA00DEC /* PBXContainerItemProxy */; }; - E05E02BCC9304E16F3B38E71 /* PBXTargetDependency */ = { + D233CF0851E7A6B017FFAE3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = F4F2783B8E2574AA2335D126 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = D0EC1560DF36D4E14A0B954C /* PBXContainerItemProxy */; }; - E2C29A37818BE0BCF0F5142F /* PBXTargetDependency */ = { + D24A0353C199C7B7AF4BA774 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInheritance iOS"; - target = 4426F98834307DB6D023DE51 /* IceInheritance iOS */; - targetProxy = 96C749A2EF071F5E2130E695 /* PBXContainerItemProxy */; + name = "IceGrid iOS"; + target = 2646D8A7E773E3BDE5BE8E29 /* IceGrid iOS */; + targetProxy = 7672624AD54550F8521412D8 /* PBXContainerItemProxy */; }; - E4842906C99A8CE7E536EF37 /* PBXTargetDependency */ = { + D2E7DBF27809B6A06601A7F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStream iOS"; - target = DD3F4218F00B8F03628CFF85 /* IceStream iOS */; - targetProxy = 695A31E5C75603C7FBD2276A /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 45EA93F06DC1579D94330C63 /* PBXContainerItemProxy */; }; - E4C3D0E9FBDC8EFC10432EBF /* PBXTargetDependency */ = { + D3F80F9B28BE6A19F1ACEEA7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdapterDeactivation macOS"; - target = B3FAC186802EC7B160722234 /* IceAdapterDeactivation macOS */; - targetProxy = 133E6ECC4287650410BA9EE1 /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */; + targetProxy = 7E4D632BC6E4DE248653A07D /* PBXContainerItemProxy */; }; - E60160BDDD0ED5BB960EDC8D /* PBXTargetDependency */ = { + D421E76E09FD1F357EDF2FE8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperations macOS"; - target = D7E804643FF0F11F9B5B0EA8 /* IceOperations macOS */; - targetProxy = 4BF30E2AC14F122F253331FA /* PBXContainerItemProxy */; + name = "IceImpl iOS"; + target = 4CDAAF1A166952EC0C4E0BF1 /* IceImpl iOS */; + targetProxy = B6C22FC8D0F087C940837712 /* PBXContainerItemProxy */; }; - E72BBD442FC5ECECA21245B3 /* PBXTargetDependency */ = { + D4B36895492985F143ADF9A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInfo iOS"; - target = 95D4F0B99BDEE21096E1027E /* IceInfo iOS */; - targetProxy = 9E97558F58846088EB744D06 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */; + targetProxy = C4D21D47AAB3654BCCDC3144 /* PBXContainerItemProxy */; }; - EAC8D8B54AB4CB8156264D1B /* PBXTargetDependency */ = { + D5550FAD971FCDE391AA7C98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 4B703F834745FE58850D62D4 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = BB2F38D82D49B3702C78F330 /* PBXContainerItemProxy */; }; - EAEEC544BDF9F708A60CA2FD /* PBXTargetDependency */ = { + D5B23B291835F00B4DB24A36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = 66766A219D36565BAA8D85DB /* Glacier2 iOS */; - targetProxy = 0206073BE2096B182AEEB99F /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 094C2E5066A5323901EC3AD3 /* PBXContainerItemProxy */; }; - EB0FA6754AB0B1A91DE9664C /* PBXTargetDependency */ = { + D6016936626FCA5F3921E496 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = ECC059FC573C0C136A8DAD26 /* PBXContainerItemProxy */; + name = "IceRetry macOS"; + target = E13AF536398A890833FFC655 /* IceRetry macOS */; + targetProxy = 0909673234428DAD5D8D8243 /* PBXContainerItemProxy */; }; - EC9EADB81E3EA1A4EBF28170 /* PBXTargetDependency */ = { + D8350F0624357AEB979D0135 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceTimeout iOS"; - target = DE7C3CE12D76528ED6571BB0 /* IceTimeout iOS */; - targetProxy = 4790FABF6E6F6384DC30DEF1 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 919DC87F97E7B2AACBBD5B5D /* PBXContainerItemProxy */; }; - EE4B312D8942912E66A435E6 /* PBXTargetDependency */ = { + DB3C03ACEE31AEC337853CCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = CEF13A536AF71E7BF67099FA /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = D97E20121570AE74FCF873DA /* PBXContainerItemProxy */; }; - EFDE4A65F0F1315D26D73B2B /* PBXTargetDependency */ = { + DE3CF6E0EBAC74076AF0320E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid iOS"; - target = D6C19C2ACCB1CB3FB3B25FA9 /* IceGrid iOS */; - targetProxy = EC69D880228AE4E6A91615A1 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 81E73D014721118BE76D87E0 /* PBXContainerItemProxy */; }; - EFF68B9A64C668D93F38020B /* PBXTargetDependency */ = { + DF3CFD08EEAE5D55AD373E77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 534637D15E3B13C82368E2DF /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 5736D1BB77BBE6E9612973CB /* PBXContainerItemProxy */; + }; + DFCC719F50E4B316FF9F2F55 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 17FD1919F9AFA945C049CE71 /* PBXContainerItemProxy */; + }; + DFD93F8D96E58582C0022010 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 8460DD3ED78B8DA7BC8E0465 /* PBXContainerItemProxy */; }; - F0C7D1078E97BA2768BFAC7B /* PBXTargetDependency */ = { + DFEB9FEAE6481E1DA65CE2CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 735348BAA927AF23DB6A9224 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 0994D1F501AAD22D7284006B /* PBXContainerItemProxy */; + }; + E0CCA65D2B58CB8992CA6CBA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceServices macOS"; + target = 140CB18515FA53ECB140F7CC /* IceServices macOS */; + targetProxy = 7C0C367A5555B3F62AC3AFF8 /* PBXContainerItemProxy */; }; - F1A84E7CFB79C5A2022D547F /* PBXTargetDependency */ = { + E213F74F6508F05644EA6583 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 6ACCFCFB18833D2E4B29A59B /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = EB4069F072DB9B568B95EE5A /* PBXContainerItemProxy */; }; - F20D5C5EA88A15EF6715202D /* PBXTargetDependency */ = { + E570FFFC1A885690A46C20BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 13C138092DDD001C4BE931E7 /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */; + targetProxy = 7A4B14E50A9EF8889C043508 /* PBXContainerItemProxy */; }; - F28D0C090A072B647F2CFF3F /* PBXTargetDependency */ = { + E63570D6A030D4724784A119 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 88DF7E54543F3B33D43E28E6 /* PBXContainerItemProxy */; + name = "IceLocatorDiscovery C++11 macOS"; + target = 14535688C6E2E4A839C04451 /* IceLocatorDiscovery C++11 macOS */; + targetProxy = E956E0C6D4280C3D1EC78328 /* PBXContainerItemProxy */; }; - F2A2E6A867DE3773D9740B04 /* PBXTargetDependency */ = { + E8DCDF71A89FC57000D3C535 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperations iOS"; - target = FC5FC6ACD26B2D242E65DDEF /* IceOperations iOS */; - targetProxy = 825C0A36A7AC7136A8289E00 /* PBXContainerItemProxy */; + name = "IceSSLConfiguration iOS"; + target = 0EDA203583B355501DD47E73 /* IceSSLConfiguration iOS */; + targetProxy = AB0351D1ED35B9AC93D57E65 /* PBXContainerItemProxy */; }; - F306659467A44A1EF1506B0B /* PBXTargetDependency */ = { + E9417BFC8C112DCAB09A5D68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = AA999748EC22F00D7E5E42EB /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */; + targetProxy = 6392976D3234498D8EDEBFFA /* PBXContainerItemProxy */; }; - F3DB30A9F87EA17DC5AC72C1 /* PBXTargetDependency */ = { + E982B85311CB453D092BF136 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = CF6B626BD259CB7B40F13866 /* PBXContainerItemProxy */; + name = "IceScope macOS"; + target = 993C3F64323081AD7846C3D1 /* IceScope macOS */; + targetProxy = 838948C62C02702EC068F299 /* PBXContainerItemProxy */; }; - F4FC3B9A79B2DBB879690C17 /* PBXTargetDependency */ = { + ED3159A6574CC60DC0FE5C65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 183D02F1CDC7663537F0F150 /* PBXContainerItemProxy */; + name = "IceInterceptor macOS"; + target = 60F33D27C2F25EAA1C58217D /* IceInterceptor macOS */; + targetProxy = 534235D975DA598C3003B922 /* PBXContainerItemProxy */; }; - F63C4DA9A84C21283824ACFB /* PBXTargetDependency */ = { + EE4B4058636058A3B8BD22F7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxyAMD iOS"; - target = 6B689E233D18BEC5377ECFE9 /* IceProxyAMD iOS */; - targetProxy = B18B4B776B2C5C1E43BB8117 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = DD86754DFB50565D3B9C1645 /* PBXContainerItemProxy */; }; - F7626EBEE3EC89AC00DEB32A /* PBXTargetDependency */ = { + EEF2761A50D84951B3FC3D7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptions iOS"; - target = 457BBB51C97A0228B53F703A /* IceExceptions iOS */; - targetProxy = A70E7564B3A082D6BCBE1D17 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = D4D39EE0C45DB478740DD88A /* PBXContainerItemProxy */; }; - F7A4C5F2CE8E25677A20701C /* PBXTargetDependency */ = { + F328C6236A09249A8325AB66 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 8838EE71DB9C73D4BDB9E15D /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 2F4AB5C5978C4CB4D968B985 /* PBXContainerItemProxy */; }; - F821EBE4ED521270E804D413 /* PBXTargetDependency */ = { + F4B3D0B07B15108174A0CC90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = 66766A219D36565BAA8D85DB /* Glacier2 iOS */; - targetProxy = 21BE39872F46F3825FB2C0BC /* PBXContainerItemProxy */; + name = "IceEnums macOS"; + target = BFD01B6CA65F9516862D1FA1 /* IceEnums macOS */; + targetProxy = 6034F24196B01C89E967E0A4 /* PBXContainerItemProxy */; }; - F890F59FBE62FC50282FCC0D /* PBXTargetDependency */ = { + F5787A99C870CB54CFFB2E44 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 439600681D10A6E220DE0AD7 /* PBXContainerItemProxy */; + name = "IceFacets macOS"; + target = 8F11329102906B0FE306EF9C /* IceFacets macOS */; + targetProxy = 1CA354496945D633B349F340 /* PBXContainerItemProxy */; }; - F9363A4E198BA521DC35D2AC /* PBXTargetDependency */ = { + F5C06429B5D05FD6F4B92B02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = B7F648BD936198D44B002228 /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */; + targetProxy = 197361DC1A8766585D3FFC5C /* PBXContainerItemProxy */; }; - FA345447FEE4B8C36525199C /* PBXTargetDependency */ = { + F605D9358858CD7019AEB782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = F357B9DDB1618D1957526349 /* PBXContainerItemProxy */; + name = "IceRetry iOS"; + target = 02BA85F98EB32966A7AA3C21 /* IceRetry iOS */; + targetProxy = 79334374FD217F097648201E /* PBXContainerItemProxy */; }; - FA9EA170C59B2005D2A6CA78 /* PBXTargetDependency */ = { + F63875B0AFF87808BB1D2D7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptionsAMD iOS"; - target = 33115CA925E128B5715AB93A /* IceExceptionsAMD iOS */; - targetProxy = 12367DE4298BD4FAC0C724E8 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 758F86A89C7437E034F49AFC /* PBXContainerItemProxy */; }; - FE97752A0444F248E98AD556 /* PBXTargetDependency */ = { + F63FD1480C3C24B34EFB7031 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptions macOS"; - target = 25D99E456ADFE5745483AC23 /* IceExceptions macOS */; - targetProxy = EAF9C98295A4D9DE76503537 /* PBXContainerItemProxy */; + name = "IceOptionalAMD iOS"; + target = E6806D7DB7060BC3A0C7306D /* IceOptionalAMD iOS */; + targetProxy = 8BD2308214CF9938B6042169 /* PBXContainerItemProxy */; }; - FEA9F6B723324C3362BA8A11 /* PBXTargetDependency */ = { + F80D78B26EFAE8B8DE4CF68A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocation macOS"; - target = 9D8A9741B7D4BD64D5B31B88 /* IceLocation macOS */; - targetProxy = BA77B9323A7565435BBBB21C /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 947D552787CC836F5CD53736 /* PBXContainerItemProxy */; + }; + FC4E19EC147DD39FF5EF2979 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceStream iOS"; + target = 1767B82F1961C76D47FF467B /* IceStream iOS */; + targetProxy = 15E3D293BAB68AC851D74B14 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 00D1138C0A8CDAF9F6958438 /* Debug */ = { + 00212E653D64CB6E18BB9028 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -14269,24 +14262,24 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; - PRODUCT_NAME = IceLocation; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; + PRODUCT_NAME = IceAmi; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 018D3ACDB8B0A19DBB8B396F /* Debug */ = { + 009B1D5AA0CAACBA370FCB9D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -14297,19 +14290,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; - PRODUCT_NAME = IceProxy; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 045D9853BF86338733311256 /* Release */ = { + 016AEECBFC9EFFF1E6090B11 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14327,8 +14321,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; - PRODUCT_NAME = IceProperties; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14336,9 +14330,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 046684EB813DC83C5D93BBBD /* Debug */ = { + 0354499B2DD0DC62AB168977 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14354,8 +14348,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; - PRODUCT_NAME = IceSlicingObjects; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14365,44 +14359,48 @@ }; name = Debug; }; - 04F32B54214BCD3FD94DC85A /* Debug */ = { + 05657ECF61EFEC81DC7208F3 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + EXECUTABLE_PREFIX = lib; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_BUILDING_SRC, + ICE_STATIC_LIBS, + ICE_SWIFT, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; - PRODUCT_NAME = IceAmi; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; + PRODUCT_NAME = "IceDiscovery++11macOS"; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 06910DE5F734355572618C8C /* Release */ = { + 060AFB2F371CCA06ED926100 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_TESTABILITY = NO; + EXECUTABLE_PREFIX = lib; GCC_PREPROCESSOR_DEFINITIONS = ( ICE_CPP11_MAPPING, ICE_BUILDING_SRC, @@ -14417,171 +14415,161 @@ "$(SYMROOT)/$(PLATFORM_NAME)/include/", "$(SRCROOT)/../cpp/src/", ); - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS"; - PRODUCT_NAME = "Ice++11iOS"; - SDKROOT = iphoneos; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; + PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + SUPPORTED_PLATFORMS = macosx; }; name = Release; }; - 073F4236CA3F626A8FCD41CB /* Release */ = { + 07E5F000623435C259AA3148 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Glacier2/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; - PRODUCT_NAME = Glacier2; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; + PRODUCT_NAME = SliceEscape; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Release; }; - 07CB1CCF0924723E8F08E7C5 /* Debug */ = { + 0999A071A417465129F1CB6A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; + INFOPLIST_FILE = src/Ice/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; - PRODUCT_NAME = IceExceptions; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; + PRODUCT_NAME = Ice; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 08C9943BB984EF5F0B10A8FE /* Debug */ = { + 09EF95091B2C941C8FF1E748 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; - PRODUCT_NAME = TestCommon; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 08DB62EDE017834E70BC55B0 /* Release */ = { + 0A396FB5C6DB40A0BC7B2F01 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; - PRODUCT_NAME = TestCommon; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; + PRODUCT_NAME = IceInvoke; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 0B3C87366D7F6F01886A8FA2 /* Release */ = { + 0C5C2DAF8D756CCECBA59F25 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Ice/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; - PRODUCT_NAME = Ice; - SDKROOT = macosx; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; + PRODUCT_NAME = IceAcm; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 0C7E3DC934A0CF7641FB3AD5 /* Release */ = { + 0CE17BDB74111CCD583007AD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14599,8 +14587,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; - PRODUCT_NAME = IceAdmin; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; + PRODUCT_NAME = IceInheritance; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14608,41 +14596,47 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 0C835DA402F1A9F0466507B2 /* Release */ = { + 0D9D638DB854AFAC8DEAF9F6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + EXECUTABLE_PREFIX = lib; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_BUILDING_SRC, + ICE_STATIC_LIBS, + ICE_SWIFT, + NDEBUG, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; - PRODUCT_NAME = IceAdapterDeactivation; - SDKROOT = iphoneos; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS"; + PRODUCT_NAME = "Ice++11macOS"; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + SUPPORTED_PLATFORMS = macosx; }; name = Release; }; - 0D08D02598910559760557B0 /* Release */ = { + 0DA062A9F13FAE05620C9AB7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -14653,20 +14647,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; - PRODUCT_NAME = IceObjects; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; + PRODUCT_NAME = IceScope; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 0ED0795FBD518BADABB76E66 /* Debug */ = { + 0F49847A3D30FD2426C95804 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14684,8 +14678,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; - PRODUCT_NAME = IceSlicingExceptions; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; + PRODUCT_NAME = IceLocation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14695,56 +14689,13 @@ }; name = Debug; }; - 1050080DAB0C5E34C778431A /* Release */ = { + 119F65B8F08EBACF923587B0 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_STATIC_LIBS, - ICE_SWIFT, - NDEBUG, - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); - INFOPLIST_FILE = src/IceImpl/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 11; - OTHER_LDFLAGS = ( - "-lbz2", - "-liconv", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; - PRODUCT_NAME = IceImpl; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 1265170C8F1AAA4B598ADED6 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; @@ -14754,47 +14705,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; - PRODUCT_NAME = IceHold; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; + PRODUCT_NAME = IceObjects; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 12D9DCF932BC04D869417A6D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; - PRODUCT_NAME = IceProxyAMD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 15992D01F69BDF2F5BF65F3E /* Debug */ = { + 11B6B9A02D099FAA3EDC5C79 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14812,8 +14736,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; - PRODUCT_NAME = IceBinding; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; + PRODUCT_NAME = IceOperations; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14823,38 +14747,36 @@ }; name = Debug; }; - 19DB434C44749212001D23D2 /* Debug */ = { + 1634CFB4307FE4E7F762BDF1 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceGrid/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; - PRODUCT_NAME = IceGrid; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 1BC853462FFD545B69227FF6 /* Release */ = { + 1658450DE946D9DD3F85967B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14870,8 +14792,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; - PRODUCT_NAME = IceServantLocatorAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14882,12 +14804,11 @@ }; name = Release; }; - 1DFA58CFC47EDAB4B866B5FB /* Debug */ = { + 189F759795665D2D47C52CC0 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -14898,25 +14819,24 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; - PRODUCT_NAME = IceExceptionsAMD; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 2001ABB68208BD961B1E1DE7 /* Debug */ = { + 19DC30A096698F1A2FEAEDC7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -14927,20 +14847,19 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; - PRODUCT_NAME = IceServantLocator; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; + PRODUCT_NAME = IceOperations; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 26DA74519A0368B9034D3589 /* Debug */ = { + 1CC3B4ADA7F46E26B0C50F41 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14956,8 +14875,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; - PRODUCT_NAME = IceFacets; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14967,12 +14886,11 @@ }; name = Debug; }; - 292D9A2ECC28EF41DCB33FE6 /* Release */ = { + 1CEDFBC7D1144BB6AD4A569C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -14983,20 +14901,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; - PRODUCT_NAME = IceProxy; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; + PRODUCT_NAME = IceObjects; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 294C7E4FF8FA13A99E302DBC /* Release */ = { + 1E51A9B641EDCF87BD064DC1 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15012,8 +14930,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; - PRODUCT_NAME = IceScope; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15024,11 +14942,12 @@ }; name = Release; }; - 2AE567BE2C03973BA67977DF /* Debug */ = { + 1F66A9EA800ADB6FB598E151 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15039,24 +14958,24 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; - PRODUCT_NAME = IceTimeout; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; + PRODUCT_NAME = IceStream; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 2BA6ECFD7814C41F693D5F2D /* Release */ = { + 202F90A6056798A44A053A01 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15067,20 +14986,19 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; - PRODUCT_NAME = IceLocation; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; + PRODUCT_NAME = IceAdmin; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 2BD2CE5D4C7BFAA44769D17B /* Debug */ = { + 231A559E2F4678F0CEE0F016 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15098,8 +15016,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; - PRODUCT_NAME = IceSlicingObjects; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; + PRODUCT_NAME = IceTimeout; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15109,12 +15027,11 @@ }; name = Debug; }; - 2D5A96BCD3ED2A4E80938697 /* Debug */ = { + 28BB67947897DD592CA0F4D4 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15125,20 +15042,19 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; - PRODUCT_NAME = IceInfo; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; + PRODUCT_NAME = IceStream; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 30247DB891ED8396937B64D7 /* Release */ = { + 2A49049DC2EE04F26563E85E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15163,19 +15079,20 @@ "$(SRCROOT)/../cpp/src/", ); MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS"; - PRODUCT_NAME = "Ice++11macOS"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; + PRODUCT_NAME = "IceDiscovery++11macOS"; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; }; name = Release; }; - 31884568AC7D5F16CCFEF918 /* Release */ = { + 2B678FAF79A30F363A1C296D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15186,20 +15103,49 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; - PRODUCT_NAME = IceUdp; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; + PRODUCT_NAME = IceServantLocator; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 31C88449B370C9A0831B871E /* Debug */ = { + 2CD3EFA3EDCE0C5BCE245D37 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; + PRODUCT_NAME = IceAdmin; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 2F04F8D6E5F2FC5D52163668 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15215,8 +15161,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; - PRODUCT_NAME = IceHold; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15226,7 +15172,7 @@ }; name = Debug; }; - 32D6ED480CB4331166094207 /* Release */ = { + 2FCD884F7716D61AA099F6E5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15244,8 +15190,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; - PRODUCT_NAME = SliceEscape; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15253,9 +15199,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 332A507B12486465253CE7FB /* Release */ = { + 332DA6EB470437102B3384CF /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15271,19 +15217,18 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; - PRODUCT_NAME = IceAcm; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 3401982DEF0CD68AA50F3B94 /* Release */ = { + 334EEAC0E06FCF19981245FD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15301,8 +15246,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15310,9 +15255,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 3785815FF15E7A0FF410712F /* Debug */ = { + 33920A4E3ADE0B87F492CBB7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15330,8 +15275,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; - PRODUCT_NAME = IceProxyAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15339,37 +15284,37 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 389E5B490BDA9B31D200E04D /* Release */ = { + 361036643181FE5D16B60347 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestDriver/macOS/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; - PRODUCT_NAME = TestDriver; - SDKROOT = macosx; - SUPPORTED_PLATFORMS = macosx; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; + PRODUCT_NAME = IceTimeout; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; name = Release; }; - 38FBAB88F5A9921DA55C9ADC /* Release */ = { + 36C3B9CB33D359570C165D87 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15387,8 +15332,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; - PRODUCT_NAME = IceInfo; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; + PRODUCT_NAME = IceAcm; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15396,75 +15341,72 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 395B405CD76D884C7062CBCD /* Release */ = { + 3763FE1D5D07E69ABEA6C6FD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; - PRODUCT_NAME = IceSSLConfiguration; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + INFOPLIST_FILE = test/TestDriver/iOS/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; + PRODUCT_NAME = TestDriver; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; }; - name = Release; + name = Debug; }; - 39897AE51BCFFAEDEB7027CD /* Release */ = { + 378AB8A03B8825928BD7CA70 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; - EXECUTABLE_PREFIX = lib; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_BUILDING_SRC, - ICE_STATIC_LIBS, - ICE_SWIFT, - NDEBUG, - ); + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 3A615213A37FC61A3A8BAAAF /* Release */ = { + 38B6FAD82C23C5497F196AD0 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15475,77 +15417,83 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; - PRODUCT_NAME = IceProxyAMD; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; + PRODUCT_NAME = IceProperties; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 3AC9781DD274565C0D166CFB /* Release */ = { + 3B9F2A9A04C375097DF5DA5B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; + INFOPLIST_FILE = src/IceStorm/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; - PRODUCT_NAME = IceAdmin; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; + PRODUCT_NAME = IceStorm; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 3BC7DB9A0BC2C29D701A2E96 /* Debug */ = { + 3BCD3C246EC27D9918028AF9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + INFOPLIST_FILE = src/IceStorm/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; - PRODUCT_NAME = IceServantLocatorAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; + PRODUCT_NAME = IceStorm; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 3FB258AEEE430FC30BEBCBF7 /* Release */ = { + 3CC583BD5B53A083491B5B35 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15580,39 +15528,43 @@ }; name = Release; }; - 4295ADCA3AB7EB48095A6104 /* Release */ = { + 3F0D0B4901EB77018B68AEED /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; - PRODUCT_NAME = IceProxy; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; + PRODUCT_NAME = TestCommon; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 4585A0D1475F76BD8F948936 /* Debug */ = { + 43092AEE9282AE4492F9E8C1 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15623,19 +15575,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; - PRODUCT_NAME = IceInvoke; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; + PRODUCT_NAME = IceExceptions; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 46DDDE455BA3B666AF62611E /* Debug */ = { + 43AFF6BB4488768B7ADE168D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15651,8 +15604,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; - PRODUCT_NAME = IceSlicingExceptions; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15662,38 +15615,44 @@ }; name = Debug; }; - 480F40A430D2C711FEC9D785 /* Debug */ = { + 43BACE1B30980E095D1043C5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; + INFOPLIST_FILE = src/Glacier2/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; - PRODUCT_NAME = IceAdapterDeactivation; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; + PRODUCT_NAME = Glacier2; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 491DBA5E0D9390DC4514A86F /* Release */ = { + 4466198637A4588CE4E780E6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15704,51 +15663,48 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; - PRODUCT_NAME = IceProperties; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 497225D8C2F05FE4B32BD4E8 /* Debug */ = { + 449E71DA8CE0102A4D3FE271 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceStorm/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; - PRODUCT_NAME = IceStorm; - SDKROOT = macosx; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; + PRODUCT_NAME = IceLocation; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 4C58115A1799993AB3CFC3D2 /* Debug */ = { + 4622F5680462A9BC895EECCF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15766,8 +15722,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; - PRODUCT_NAME = IceObjects; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15775,13 +15731,14 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 50B77AA8407592C4E93513AD /* Debug */ = { + 464F1C354904FC6F8225F42E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15792,24 +15749,24 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; - PRODUCT_NAME = IceProperties; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; + PRODUCT_NAME = IceOperations; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 52314B3580F10392749EB297 /* Debug */ = { + 4A51618B84F5931CCB50C6D5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -15820,20 +15777,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; - PRODUCT_NAME = SliceEscape; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; + PRODUCT_NAME = IceScope; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 5247068929BD3C108C65578F /* Release */ = { + 4B0503C843A97EED4234885C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15851,8 +15808,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; - PRODUCT_NAME = IceServices; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15860,9 +15817,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 543898B8DFD29529AD1AD969 /* Release */ = { + 4BCF325A0A55C5E3246CA63C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15891,42 +15848,7 @@ }; name = Release; }; - 5564B4937C23385043C6B3B0 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CURRENT_PROJECT_VERSION = 3.7.10; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_TESTABILITY = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_BUILDING_SRC, - ICE_STATIC_LIBS, - ICE_SWIFT, - NDEBUG, - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS"; - PRODUCT_NAME = "IceDiscovery++11iOS"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 5719FA43274825EA504FAB78 /* Debug */ = { + 4D432DDEF77EF6C8D5B063AB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15942,8 +15864,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; - PRODUCT_NAME = IceAdmin; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; + PRODUCT_NAME = IceTimeout; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15953,70 +15875,34 @@ }; name = Debug; }; - 57D8E5B2FCCE271542B33D00 /* Release */ = { + 4E2881FF86974CAB24460CDA /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; - PRODUCT_NAME = TestCommon; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; + PRODUCT_NAME = IceFacets; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 5AE9FD21F7A91873AA604C52 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = macosx; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Glacier2/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; - PRODUCT_NAME = Glacier2; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 5B867B973ECB2D9D3E3DF314 /* Release */ = { + 4ECD262FB71069194383327D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16034,8 +15920,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; - PRODUCT_NAME = IceExceptions; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16043,9 +15929,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 5D927E39CC450458D35A1CB1 /* Release */ = { + 4FDA2FAFEFD9EE7F3C11EAF3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16063,8 +15949,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; - PRODUCT_NAME = IceProxyAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; + PRODUCT_NAME = SliceEscape; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16074,39 +15960,34 @@ }; name = Release; }; - 5DEBC84A9C0AB0EAC888078B /* Release */ = { + 5242E73DBE21CDC14C12CC93 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceGrid/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; - PRODUCT_NAME = IceGrid; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; + PRODUCT_NAME = IceInfo; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 5E664041B492822A1D280038 /* Debug */ = { + 52F16DBFDDB29D8337E5A9C2 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16124,8 +16005,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; - PRODUCT_NAME = IceDefaultValue; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16135,7 +16016,7 @@ }; name = Debug; }; - 5FCE26426822AB6142DE2F29 /* Release */ = { + 530FCAB81C139133B4140A49 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16153,8 +16034,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; - PRODUCT_NAME = IceOptional; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16162,40 +16043,14 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; - }; - 62B37900B735C3913A894D55 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; - PRODUCT_NAME = IceStream; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; name = Debug; }; - 62BE4B755CEEA5B5987145D8 /* Release */ = { + 5554B9F7B95836737BB07140 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -16206,76 +16061,63 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; - PRODUCT_NAME = IceDefaultValue; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; + PRODUCT_NAME = IceScope; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 631C0B3A50EF6794CA95F0D4 /* Release */ = { + 59A5313052D318C259C99FF9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_STATIC_LIBS, + ICE_SWIFT, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); + INFOPLIST_FILE = src/IceImpl/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; - PRODUCT_NAME = IceAcm; + OTHER_LDFLAGS = ( + "-lbz2", + "-liconv", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; + PRODUCT_NAME = IceImpl; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 651D49DDDDAFDDDFBB16388F /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; - PRODUCT_NAME = IceOperations; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 6553292B2E38F92ED8CE20A2 /* Debug */ = { + 5A78DB7F65CB39389441528D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16289,12 +16131,12 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceStorm/Info.plist; + INFOPLIST_FILE = src/Glacier2/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; - PRODUCT_NAME = IceStorm; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; + PRODUCT_NAME = Glacier2; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16306,11 +16148,12 @@ }; name = Debug; }; - 65C8ADA2F6F52C95094A7020 /* Debug */ = { + 5ADB4519C98E98559E850BD9 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -16321,114 +16164,112 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; - PRODUCT_NAME = IceObjects; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; + PRODUCT_NAME = IceStream; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 660ABB781992E435F5949B66 /* Debug */ = { + 5C0FBBF4EBD9B7782B924DA2 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_BUILDING_SRC, - ICE_STATIC_LIBS, - ICE_SWIFT, - ); + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); + INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS"; - PRODUCT_NAME = "Ice++11iOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 67877B442127E46152FC9D55 /* Release */ = { + 5CBA4ED58F2F60A54E615EF2 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Glacier2/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; - PRODUCT_NAME = Glacier2; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Release; }; - 67BDDF98B0452063036755EB /* Debug */ = { + 5E5FCAF913C07ECE44B4B687 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; + INFOPLIST_FILE = src/IceGrid/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; - PRODUCT_NAME = IceOptionalAMD; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; + PRODUCT_NAME = IceGrid; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 6854F562DF283D28F1E92189 /* Debug */ = { + 5F26EF188432AE2765F0D788 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -16439,19 +16280,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; - PRODUCT_NAME = IceAmi; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 6896B0390EF8DF5C3AAE0329 /* Release */ = { + 5FCD71235F27C105EAE4CE89 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16469,8 +16311,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; - PRODUCT_NAME = IceHold; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; + PRODUCT_NAME = IceInfo; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16480,39 +16322,34 @@ }; name = Release; }; - 68CE4DD4D1F0F01A39ED6536 /* Release */ = { + 606D46DE7B48AE5486C73A4B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceStorm/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; - PRODUCT_NAME = IceStorm; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; + PRODUCT_NAME = SliceEscape; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 693FBAD38999AE9FC7FD762F /* Release */ = { + 60AE7F72CE719DED162A24FC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16530,8 +16367,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; - PRODUCT_NAME = IceSlicingObjects; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16541,36 +16378,39 @@ }; name = Release; }; - 69C793B3D6199874CEC1CBFA /* Release */ = { + 63FD65C5E0D84791EF23A177 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; - PRODUCT_NAME = IceAmi; - SDKROOT = macosx; + INFOPLIST_FILE = src/IceGrid/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; + PRODUCT_NAME = IceGrid; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 6ADF4A3370892EC66FE1932E /* Release */ = { + 6605DD1F0450DF2E5107309B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16586,8 +16426,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; - PRODUCT_NAME = IceRetry; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16598,40 +16438,36 @@ }; name = Release; }; - 6AF265E60399BCD14587E515 /* Release */ = { + 6AAB8AFFE8FCCFEAEB26CC1F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; - EXECUTABLE_PREFIX = lib; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_BUILDING_SRC, - ICE_STATIC_LIBS, - ICE_SWIFT, - NDEBUG, - ); + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; - PRODUCT_NAME = "IceDiscovery++11macOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; + PRODUCT_NAME = IceServices; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; name = Release; }; - 6C32E3CE18210DB7D9EFE8A9 /* Release */ = { + 6C3678B6DEBB04FBAB8678AB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16647,19 +16483,18 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 6ED1D0054CBBC2C7BB44E599 /* Release */ = { + 6D19B5418B7F4F87CA49139F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16677,8 +16512,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; - PRODUCT_NAME = IceEnums; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16686,9 +16521,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 6FA023D7AFBA73B79675A458 /* Release */ = { + 6D7F26353031A2206559038D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16704,47 +16539,49 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; - PRODUCT_NAME = IceExceptions; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 6FD74B3BF6157A742944B66D /* Release */ = { + 6D831C9F7FF99624C0D1543B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; + INFOPLIST_FILE = src/IceStorm/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; - PRODUCT_NAME = IceInterceptor; - SDKROOT = iphoneos; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; + PRODUCT_NAME = IceStorm; + SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 6FFBB4844B79B25C696DBE03 /* Debug */ = { + 6FFFF59AADB3FC5FEE78CC24 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16762,8 +16599,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; - PRODUCT_NAME = IceProxy; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; + PRODUCT_NAME = IceAdmin; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16771,9 +16608,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 70A1872F4256BC81AF37B0C5 /* Debug */ = { + 721AAAE4997C701F3D97D2CC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16789,22 +16626,24 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; - PRODUCT_NAME = IceAcm; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; + PRODUCT_NAME = IceExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 72126A0B707BAD19AEEDEDDB /* Release */ = { + 73EBC7901108C83DFC9DEB5E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -16815,20 +16654,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; - PRODUCT_NAME = IceSlicingExceptionsAMD; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; + PRODUCT_NAME = IceProperties; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 7426AF474BB8C50D6DA48B5C /* Release */ = { + 753E4E1389A306FD91D57134 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16844,8 +16683,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; - PRODUCT_NAME = IceLocation; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16856,7 +16695,7 @@ }; name = Release; }; - 74433004F4A47EDA9378D86B /* Debug */ = { + 77F12FE102ACD06426F9B1C5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16874,8 +16713,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; - PRODUCT_NAME = IceAcm; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; + PRODUCT_NAME = IceFacets; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16883,14 +16722,13 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 774EE18D92EFEC1B15A193FC /* Debug */ = { + 79BAC867CE0BA26F48EAB081 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -16901,24 +16739,25 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; - PRODUCT_NAME = IceStream; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; + PRODUCT_NAME = IceAdmin; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 77971056002284EB909C66AF /* Release */ = { + 7D81FF808715F401F5995BAD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -16929,55 +16768,55 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; - PRODUCT_NAME = IceStream; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; + PRODUCT_NAME = IceTimeout; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 77C4FFD023F1ECBB461DBB73 /* Debug */ = { + 7F47D6F51BFC46D845A57292 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestDriver/macOS/Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; - PRODUCT_NAME = TestDriver; - SDKROOT = macosx; - SUPPORTED_PLATFORMS = macosx; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; + PRODUCT_NAME = IceUdp; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 784EBC42325599E76491DBAD /* Debug */ = { + 7FCBFF890BD3F0D9EE31F206 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -16985,12 +16824,12 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Ice/Info.plist; + INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; - PRODUCT_NAME = Ice; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; + PRODUCT_NAME = TestCommon; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16999,9 +16838,9 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 7CAA171B1B415BAF97135D47 /* Debug */ = { + 81B28E701634B5B16B664ACF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17017,116 +16856,52 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; - PRODUCT_NAME = IceOperationsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; + PRODUCT_NAME = IceInvoke; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; - }; - 7D556B5B53A614EA02F0F73C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_DYNAMIC_NO_PIC = NO; - GCC_NO_COMMON_BLOCKS = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - "DEBUG=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; - MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - SWIFT_VERSION = 5.0; - USE_HEADERMAP = NO; - }; - name = Debug; + name = Release; }; - 7DD12BF9EC53679A4BC114D3 /* Debug */ = { + 81FC912F25482677E4F43256 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Glacier2/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; - PRODUCT_NAME = Glacier2; - SDKROOT = iphoneos; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; + PRODUCT_NAME = IceEnums; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 7DFC092098D28D37B0822C46 /* Debug */ = { + 83038D154DFC8371AB4E2769 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17137,20 +16912,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; - PRODUCT_NAME = IceInterceptor; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; + PRODUCT_NAME = IceFacets; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 7E3804D5DE2531EDE3D56014 /* Debug */ = { + 876140CA53A19A94210E1A27 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17166,8 +16941,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; - PRODUCT_NAME = IceServantLocatorAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; + PRODUCT_NAME = IceProxy; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17177,12 +16952,11 @@ }; name = Debug; }; - 7E5FE9EBEF682F0AA8C0631D /* Release */ = { + 877807A5CBEBD1FA31DD2EC0 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17193,20 +16967,19 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; - PRODUCT_NAME = IceOptionalAMD; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; + PRODUCT_NAME = IceRetry; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 7ED0F3C464C7EEF36E6D3EB6 /* Release */ = { + 8AA1D310567C3C34DC3A3B88 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17222,24 +16995,22 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; - PRODUCT_NAME = IceBinding; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; + PRODUCT_NAME = IceExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 7EF6DB337935233C26FD7E59 /* Debug */ = { + 8D491209353684FB7A4CE88F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17250,82 +17021,68 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; - PRODUCT_NAME = IceServices; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; + PRODUCT_NAME = IceBinding; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 7F1EF03D92C3A601EF9680B1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = macosx; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; - PRODUCT_NAME = IceSlicingExceptionsAMD; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 826FE9F5072693096A1B8BD3 /* Release */ = { + 91A6BCA875B11CA88A3D7D4D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_STATIC_LIBS, + ICE_SWIFT, + NDEBUG, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); + INFOPLIST_FILE = src/IceImpl/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; - PRODUCT_NAME = IceSlicingObjects; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + OTHER_LDFLAGS = ( + "-lbz2", + "-liconv", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; + PRODUCT_NAME = IceImpl; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 838D69C1047F0199D43A0050 /* Release */ = { + 93537074330FCA54DF4A84B5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17336,25 +17093,24 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; - PRODUCT_NAME = IceStream; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 84824CD4508FA1EA0BBE060D /* Release */ = { + 9549DB8E65D16AAB595A3E2A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17365,20 +17121,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; - PRODUCT_NAME = IceInterceptor; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 85EEE53F1CF66C075F8D83D0 /* Debug */ = { + 968C0F6708FEA447C8916E48 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17402,8 +17158,8 @@ ); IPHONEOS_DEPLOYMENT_TARGET = 12.0; OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS"; - PRODUCT_NAME = "IceDiscovery++11iOS"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS"; + PRODUCT_NAME = "Ice++11iOS"; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17411,36 +17167,37 @@ }; name = Debug; }; - 86DC6BAE054F96AE5B420EEB /* Debug */ = { + 96BA5896B39B3675A1D71350 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; - PRODUCT_NAME = IceOperations; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + INFOPLIST_FILE = test/TestDriver/iOS/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; + PRODUCT_NAME = TestDriver; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 8C3F26FF62C77A76C72B17E1 /* Release */ = { + 96DC0149749876FB50947267 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17456,8 +17213,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; - PRODUCT_NAME = SliceEscape; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; + PRODUCT_NAME = IceServices; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17468,7 +17225,36 @@ }; name = Release; }; - 8C6777E333E6D1CF9A9D4258 /* Debug */ = { + 97BA4334B3723744E42F46A9 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; + PRODUCT_NAME = SliceEscape; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 98F1E8ECE83B2DE82189A30C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17484,18 +17270,19 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; - PRODUCT_NAME = IceInfo; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 8CB13553A470DD7F06D2BD79 /* Release */ = { + 9AD3EDD476D2920F0F249ABB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17513,8 +17300,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; - PRODUCT_NAME = IceOperationsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; + PRODUCT_NAME = IceInheritance; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17524,7 +17311,7 @@ }; name = Release; }; - 8E34E14E8A6BBA8236FCCD14 /* Release */ = { + 9AF9FCFAFB73516832793D05 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17540,19 +17327,18 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; - PRODUCT_NAME = IceFacets; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; + PRODUCT_NAME = IceProperties; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 8E83C6009A10FDC7A30D3611 /* Debug */ = { + 9B9C7EF21BEEE60B38BCEB36 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17568,24 +17354,26 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; + PRODUCT_NAME = IceProperties; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 8EED9A924FC22D431FEA3405 /* Debug */ = { + 9C0805CAD879C67097B4A5E6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -17593,24 +17381,23 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; + INFOPLIST_FILE = src/IceGrid/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; - PRODUCT_NAME = TestCommon; - SDKROOT = iphoneos; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; + PRODUCT_NAME = IceGrid; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 926C64ABF831520E3D89350E /* Debug */ = { + 9D864059DFD5511AE06D4091 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17628,8 +17415,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; - PRODUCT_NAME = IceInheritance; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17639,12 +17426,11 @@ }; name = Debug; }; - 934F8DE46D83BB5774BEF0FA /* Debug */ = { + 9DF7EB1B04CDFD3F047AF9A8 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17655,25 +17441,23 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; - PRODUCT_NAME = IceInvoke; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; + PRODUCT_NAME = IceLocation; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 9392BCF297727351A906B912 /* Release */ = { + 9EAF4316550850D09FF4D447 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17684,20 +17468,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 94F8B00AB9973CA4047B491D /* Debug */ = { + A007AFE8BE813285B739F6B6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17715,8 +17499,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; - PRODUCT_NAME = IceAdapterDeactivation; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17724,14 +17508,13 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 9556959049F349F58689FDD8 /* Debug */ = { + A02167146CAE1B3999BB019F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17742,49 +17525,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; - PRODUCT_NAME = IceUdp; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 95944D6DB52C070BD5C7F2CB /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = macosx; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; - PRODUCT_NAME = IceUdp; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 95A123DD2CE7D5A15751A22E /* Release */ = { + A11F000CB22F87844BAADF02 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17800,8 +17554,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; - PRODUCT_NAME = IceAmi; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; + PRODUCT_NAME = IceStream; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17812,7 +17566,7 @@ }; name = Release; }; - 9B9F1141E5F92F88596CA7B4 /* Debug */ = { + A24DA5E0DE1CA4E2CD90B48A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17830,8 +17584,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; - PRODUCT_NAME = IceFacets; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17841,7 +17595,7 @@ }; name = Debug; }; - 9BFEF238CAFD80164DD4709F /* Debug */ = { + A410CB7D76F91AAEA2214AD9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17859,8 +17613,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; - PRODUCT_NAME = IceTimeout; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17870,7 +17624,7 @@ }; name = Debug; }; - 9FFEBCD1BFB27BE4E3C3BA2D /* Debug */ = { + A50AFDCEEC347902D75959B7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17888,8 +17642,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17897,41 +17651,45 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - A01807171C92C74891F123BB /* Release */ = { + A5C7C0C842A76589E6DDE89F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; - PRODUCT_NAME = IceTimeout; - SDKROOT = iphoneos; + INFOPLIST_FILE = src/Glacier2/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; + PRODUCT_NAME = Glacier2; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - A0E61F1B232FD6EE54A8B12B /* Release */ = { + A721DDF43D4E0CEFCBBD4073 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17942,20 +17700,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; - PRODUCT_NAME = IceOptional; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - A1C2BA445E954333B8810CF2 /* Release */ = { + A7975A847EFD7B826CDC0EC4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17973,8 +17731,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; - PRODUCT_NAME = IceBinding; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17984,7 +17742,7 @@ }; name = Release; }; - A48CD0CF13DC9616D88E0DFB /* Release */ = { + A8C733172599762C570115A3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18002,8 +17760,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; - PRODUCT_NAME = IceServantLocatorAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; + PRODUCT_NAME = IceLocation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18013,7 +17771,7 @@ }; name = Release; }; - A6F7FA5933507B0CECEF0A88 /* Debug */ = { + AB1CE677DB877CDA9CB1CC93 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18029,8 +17787,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; - PRODUCT_NAME = IceSSLConfiguration; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18040,40 +17798,36 @@ }; name = Debug; }; - A702685511112E1F11DDD9DC /* Debug */ = { + ACC9000AD9276B68D7D629C8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_BUILDING_SRC, - ICE_STATIC_LIBS, - ICE_SWIFT, - ); + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11iOS"; - SDKROOT = iphoneos; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; + PRODUCT_NAME = IceBinding; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - A8007F38A751B571CE57FE41 /* Release */ = { + AD5893227C6606A55BED4454 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18089,19 +17843,18 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; - PRODUCT_NAME = IceOptionalAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; + PRODUCT_NAME = IceScope; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - A8089DC5FCA9368EA41F3B19 /* Debug */ = { + AD7BBFBBBA861F31DB7781DC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18117,23 +17870,23 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; - PRODUCT_NAME = IceExceptionsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - A9889FD968301EE1002FCCC3 /* Release */ = { + AE2877F1D00DF4C6026EEB10 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -18144,25 +17897,24 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; - PRODUCT_NAME = IceInvoke; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; + PRODUCT_NAME = IceRetry; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - AA3E50D219DE5B4F43711F6C /* Debug */ = { + AFAE7EA50F6094EFD254507C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -18173,49 +17925,52 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; - PRODUCT_NAME = IceSSLConfiguration; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; + PRODUCT_NAME = IceInvoke; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - AD51DF88482B30BD8A393E25 /* Debug */ = { + B00CA0EB495341182C146271 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_BUILDING_SRC, + ICE_STATIC_LIBS, + ICE_SWIFT, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; - PRODUCT_NAME = IceHold; - SDKROOT = macosx; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS"; + PRODUCT_NAME = "IceLocatorDiscovery++11iOS"; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - AD9D0CC04DFB5CB35EAF6EA7 /* Release */ = { + B1D9635EF1F28C9A3EEC199C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18231,19 +17986,18 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; - PRODUCT_NAME = IceEnums; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - AF3E212B965535B886CB438F /* Release */ = { + B286B1D33C019FE8C93C85DE /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18258,12 +18012,12 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceStorm/Info.plist; + INFOPLIST_FILE = src/Ice/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; - PRODUCT_NAME = IceStorm; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; + PRODUCT_NAME = Ice; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18274,11 +18028,12 @@ }; name = Release; }; - AF8C42393A72D7CC18D6E590 /* Release */ = { + B303B59216692AFE21FB1283 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -18289,110 +18044,173 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; - PRODUCT_NAME = IceServices; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; + PRODUCT_NAME = IceFacets; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - B1E9EFDB20BB2708E3985C75 /* Release */ = { + B32D28768D8961B44F6EB096 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_BUILDING_SRC, + ICE_STATIC_LIBS, + ICE_SWIFT, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestDriver/iOS/Info.plist; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; - PRODUCT_NAME = TestDriver; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS"; + PRODUCT_NAME = "IceDiscovery++11iOS"; SDKROOT = iphoneos; + SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + B3614573B6385A61CA652EE1 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; + PRODUCT_NAME = IceInfo; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - B2694B626CA1AAD3F0360AB6 /* Debug */ = { + B547B942FB033115FDF4EC19 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CURRENT_PROJECT_VERSION = 3.7.10; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_TESTABILITY = NO; + EXECUTABLE_PREFIX = lib; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_BUILDING_SRC, + ICE_STATIC_LIBS, + ICE_SWIFT, + ); + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS"; + PRODUCT_NAME = "Ice++11macOS"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + }; + name = Debug; + }; + B56D9FDB62477D711E6FCB73 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Ice/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; - PRODUCT_NAME = Ice; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; + PRODUCT_NAME = IceInheritance; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - B88A7D1EB4264ED18BA09B8C /* Release */ = { + B5A3C7B3A80F77A26CDA3C49 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; - PRODUCT_NAME = IceInheritance; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; + PRODUCT_NAME = TestCommon; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - BCFD70822F09F0EC4AE670BF /* Debug */ = { + B9D743A5FA3A7CE89359E6D3 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18408,8 +18226,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; - PRODUCT_NAME = IceServices; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; + PRODUCT_NAME = IceObjects; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18419,11 +18237,12 @@ }; name = Debug; }; - BD87CC90E5226E34D4A2F65D /* Release */ = { + B9EF31F46ADF6C8E77CDA3FD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -18434,20 +18253,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; - PRODUCT_NAME = IceInfo; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - C135B40AF2BD950ED3C82873 /* Debug */ = { + BA7687216DA47E0AC5ED93AA /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18471,19 +18290,20 @@ "$(SRCROOT)/../cpp/src/", ); MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS"; - PRODUCT_NAME = "Ice++11macOS"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; + PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; }; name = Debug; }; - C486D8D432CA637EB3DF8424 /* Release */ = { + BC915B8D2230241E306787E8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -18494,20 +18314,75 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; - PRODUCT_NAME = IceSSLConfiguration; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; + PRODUCT_NAME = IceAmi; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - C4DDA2E6D10C55C23F2006C3 /* Release */ = { + BD20C38B6446441879C8FF2B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + SWIFT_VERSION = 5.0; + USE_HEADERMAP = NO; + }; + name = Release; + }; + BDDA287D18F5AA0968836E5D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18523,19 +18398,18 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; + PRODUCT_NAME = IceServantLocator; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - C5F9B34EB23F9480E68E6D02 /* Debug */ = { + BE2C76A8F2347CCBBEDF27DC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18553,8 +18427,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; - PRODUCT_NAME = IceExceptions; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18562,52 +18436,71 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - C6D4C053027BD5C0DDF3703A /* Debug */ = { + C0D4AE648BB79689416BDA47 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_STATIC_LIBS, - ICE_SWIFT, - ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); - INFOPLIST_FILE = src/IceImpl/Info.plist; + INFOPLIST_FILE = src/IceStorm/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - OTHER_LDFLAGS = ( - "-lbz2", - "-liconv", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; - PRODUCT_NAME = IceImpl; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; + PRODUCT_NAME = IceStorm; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + C2F8293F1995280FC979E6AD /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEFINES_MODULE = NO; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = src/Ice/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; + PRODUCT_NAME = Ice; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - C96FA0BF679FDA8BB12DEA57 /* Debug */ = { + C38F9CCF33D50DD7936909BB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18623,8 +18516,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; - PRODUCT_NAME = IceBinding; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18634,39 +18527,182 @@ }; name = Debug; }; - C9ADCEF69F4E23E726D7F42F /* Debug */ = { + C50229ECE27F3F9A4DBA84B3 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; + PRODUCT_NAME = IceEnums; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + C625627B68C80AF03A05FF02 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; - EXECUTABLE_PREFIX = lib; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; + PRODUCT_NAME = IceEnums; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + C9BDFD21E846A4CCA47736D1 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + CAA78153EABB685F2D464844 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_BUILDING_SRC, - ICE_STATIC_LIBS, - ICE_SWIFT, + "DEBUG=1", + "$(inherited)", ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + USE_HEADERMAP = NO; + }; + name = Debug; + }; + CAE5C045E0B58561DF388F62 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; - PRODUCT_NAME = "IceDiscovery++11macOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - CAF62F8EDF6DAC52F59F37B7 /* Release */ = { + CB02F881EF1A6E7331861765 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18684,23 +18720,49 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; - PRODUCT_NAME = IceServantLocator; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + CB054B23514ACEA1E5B94B06 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; + PRODUCT_NAME = IceInheritance; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - CBE662756155E9190A9DF3CD /* Debug */ = { + CBA7D63EE017BD803D7DD44B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -18711,20 +18773,19 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; - PRODUCT_NAME = IceOperationsAMD; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; + PRODUCT_NAME = IceServices; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - CBFB91C348A20AEE13FBD69F /* Release */ = { + CBD53C80A7474FDC490BF0C8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18740,8 +18801,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; - PRODUCT_NAME = IceSlicingExceptions; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18752,38 +18813,35 @@ }; name = Release; }; - CCB8BB488C9DE6C0421F3A11 /* Release */ = { + CC566650C5A5C5A74BB8D3DA /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceGrid/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + INFOPLIST_FILE = test/TestDriver/macOS/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; - PRODUCT_NAME = IceGrid; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; + PRODUCT_NAME = TestDriver; SDKROOT = macosx; - SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; name = Release; }; - CD8DCFF9FC3EDBD27A7151ED /* Debug */ = { + CCDAF0BD73A00FF61D43A1BC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18801,8 +18859,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18810,13 +18868,14 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - CDF7F562D492F8CAB485E41B /* Debug */ = { + CCF58F1A554367A9BB5DA407 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -18827,19 +18886,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; - PRODUCT_NAME = IceDefaultValue; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; + PRODUCT_NAME = IceProxy; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - CE4D6B61A4D74B9A69F3DB2E /* Debug */ = { + CDC4DFBD7B5FC2334BC8AB05 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18857,8 +18917,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; - PRODUCT_NAME = IceProperties; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18866,13 +18926,14 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - D03B25809F4B16EF0D909579 /* Debug */ = { + D257660EE74809A6FC5E13C7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -18883,77 +18944,82 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; - PRODUCT_NAME = IceInheritance; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; + PRODUCT_NAME = IceObjects; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - D2990DB46B84C732A0D91282 /* Debug */ = { + D4342FFBD5E22F6E89EF170E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + INFOPLIST_FILE = src/Glacier2/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; - PRODUCT_NAME = IceOptionalAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; + PRODUCT_NAME = Glacier2; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - D6A87D50636C3C2A53788FCC /* Release */ = { + D5F43C9E2BF076953C751490 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + INFOPLIST_FILE = src/IceGrid/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; - PRODUCT_NAME = IceAdapterDeactivation; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; + PRODUCT_NAME = IceGrid; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - D7AC79C83F1EDCF8E570F1BF /* Debug */ = { + D6005378B384B661EE93A6FC /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18971,8 +19037,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; - PRODUCT_NAME = IceRetry; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; + PRODUCT_NAME = IceServantLocator; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18982,7 +19048,7 @@ }; name = Debug; }; - D872B3C1C65534585A04ADDE /* Release */ = { + D67AC4DADC43587CE3B0FD2E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18998,8 +19064,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; - PRODUCT_NAME = IceExceptionsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; + PRODUCT_NAME = IceInfo; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19010,11 +19076,12 @@ }; name = Release; }; - DB367FE5B4BB420C3F9C54EB /* Release */ = { + D88D261665B417E518187B42 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19025,20 +19092,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; - PRODUCT_NAME = IceInvoke; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; + PRODUCT_NAME = IceServices; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - DE4AAF502FFB1E34C26ED38F /* Release */ = { + DB1BA83B5AEDD6DCDBBED87B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19054,8 +19121,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; - PRODUCT_NAME = IceOperations; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19066,7 +19133,7 @@ }; name = Release; }; - DF96A79592FAE952CC6E0FD7 /* Release */ = { + DE65FFE10625BF8B737951A6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19084,8 +19151,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; - PRODUCT_NAME = IceRetry; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; + PRODUCT_NAME = IceInvoke; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19095,12 +19162,11 @@ }; name = Release; }; - E2D7860D5692FC51B791D803 /* Release */ = { + E225D1B4DEBF3757A3A63F1C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19111,24 +19177,25 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; - PRODUCT_NAME = IceFacets; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - E469073303E77BCF75CA6ACB /* Debug */ = { + E35E6F1EEF54C8B4BD4AD7A1 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19139,19 +19206,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; - PRODUCT_NAME = IceScope; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - E4FF0D7F71912336ECC18DB6 /* Release */ = { + E40793A2DA2FD1B84088FF60 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19167,81 +19235,66 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; - PRODUCT_NAME = IceServantLocator; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - E9484A1CBA995CB6AEAE9BF1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = macosx; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; - PRODUCT_NAME = IceDefaultValue; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - EA2E854B3A2F252DB0461299 /* Debug */ = { + E4E3E80BCF1099A6E5F92434 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_STATIC_LIBS, + ICE_SWIFT, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; - PRODUCT_NAME = IceScope; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); + INFOPLIST_FILE = src/IceImpl/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + OTHER_LDFLAGS = ( + "-lbz2", + "-liconv", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; + PRODUCT_NAME = IceImpl; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - EA913B01BFE7AF868A23C2BB /* Release */ = { + E7041EC9CF0EE21FC97773F6 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19252,20 +19305,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; - PRODUCT_NAME = IceOperationsAMD; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; + PRODUCT_NAME = IceProxy; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - EB0E71D06FD902823318329D /* Debug */ = { + E73E965AE4F4F657D99B5900 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19281,8 +19334,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; - PRODUCT_NAME = IceInterceptor; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19292,93 +19345,43 @@ }; name = Debug; }; - EB781BA1D1350F6680856F47 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - MTL_ENABLE_DEBUG_INFO = NO; - MTL_FAST_MATH = YES; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_COMPILATION_MODE = wholemodule; - SWIFT_OPTIMIZATION_LEVEL = "-O"; - SWIFT_VERSION = 5.0; - USE_HEADERMAP = NO; - }; - name = Release; - }; - EBE0BB237FAE440A92FD3EBF /* Debug */ = { + E7D10C6F6EBF711E4AE4316E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; + INFOPLIST_FILE = src/Ice/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; - PRODUCT_NAME = IceOptional; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; + PRODUCT_NAME = Ice; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - EC174AD62926FFACCDBE8BDF /* Debug */ = { + E839E23A3D8FE879308ED3BD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19389,19 +19392,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; - PRODUCT_NAME = IceServantLocator; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - EC5DB00EE05745E330064054 /* Debug */ = { + E8A266A9CACD828FD5D91DAD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19417,23 +19421,23 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; - PRODUCT_NAME = IceEnums; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; + PRODUCT_NAME = IceAmi; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - EC762EDD9299858E9F124D07 /* Debug */ = { + EA336F4614487B7192AEF282 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19444,66 +19448,34 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; - PRODUCT_NAME = IceSlicingExceptionsAMD; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - ECDA02210FE80EA19FC3A594 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; - DYLIB_COMPATIBILITY_VERSION = 0; - DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceGrid/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; - PRODUCT_NAME = IceGrid; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - ECEC2A0B7C3324E560BBDCF9 /* Debug */ = { + EC657E54B1B7BE372A249147 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_PREPROCESSOR_DEFINITIONS = ( ICE_CPP11_MAPPING, + ICE_BUILDING_SRC, ICE_STATIC_LIBS, ICE_SWIFT, + NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -19512,26 +19484,19 @@ "$(SYMROOT)/$(PLATFORM_NAME)/include/", "$(SRCROOT)/../cpp/src/", ); - INFOPLIST_FILE = src/IceImpl/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - OTHER_LDFLAGS = ( - "-lbz2", - "-liconv", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; - PRODUCT_NAME = IceImpl; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS"; + PRODUCT_NAME = "Ice++11iOS"; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - ED07401774549CC3D3FC436C /* Debug */ = { + ECF4559A965DFB454EDBD04F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19547,22 +19512,24 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; - PRODUCT_NAME = SliceEscape; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; + PRODUCT_NAME = IceAcm; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - ED41065C1FC082D1C0D12B4B /* Debug */ = { + ED0143B5BD711C7FDCC14D91 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19573,19 +19540,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; - PRODUCT_NAME = IceRetry; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - EE7A9AECCEFE4AB91E77838C /* Debug */ = { + ED57FE96F7F9BD2863487190 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19601,22 +19569,24 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; - PRODUCT_NAME = IceLocation; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - EF249BE23C5F80D5F88855DA /* Debug */ = { + EDF9FB7DA979576B72EA656A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19627,19 +19597,20 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; - PRODUCT_NAME = IceUdp; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; + PRODUCT_NAME = IceOptional; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - EFDF5337CF2C614569979785 /* Debug */ = { + EEC0A817374DB756E6E5D0B5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19655,8 +19626,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; - PRODUCT_NAME = IceSlicingExceptionsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19666,39 +19637,35 @@ }; name = Debug; }; - F07AE8BEF7B079F129982D2B /* Debug */ = { + F1D2C3C4131F274A39F78218 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_TESTABILITY = NO; - EXECUTABLE_PREFIX = lib; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_BUILDING_SRC, - ICE_STATIC_LIBS, - ICE_SWIFT, - ); - GCC_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; - SDKROOT = macosx; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; + PRODUCT_NAME = IceOperations; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - F163A97C9F0E53EFBD027651 /* Release */ = { + F2E1E34AD76F3053D7C54F09 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19716,8 +19683,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; - PRODUCT_NAME = IceScope; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; + PRODUCT_NAME = IceAmi; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19725,14 +19692,13 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - F453098930E35C7CBFA77FB1 /* Release */ = { + F2F568D17AF6B70C14C90ECB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19743,22 +19709,24 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; - PRODUCT_NAME = IceObjects; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - F48757F1BD5BD447E7E5A339 /* Debug */ = { + F404E5A34F098B49362FE6CF /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; @@ -19766,31 +19734,27 @@ DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + INFOPLIST_FILE = test/TestDriver/macOS/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; - PRODUCT_NAME = IceOptional; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; + PRODUCT_NAME = TestDriver; SDKROOT = macosx; - SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; - F5CE8D6DB3AC9907B065DE35 /* Debug */ = { + F680B50DDFE6347DA32F3CDB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19801,52 +19765,55 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; - PRODUCT_NAME = IceEnums; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; + PRODUCT_NAME = IceProxy; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - F5DE62AAAC0B9B74542AF36A /* Release */ = { + F6D7582D1E580B97184ED22B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; - FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_BUILDING_SRC, + ICE_STATIC_LIBS, + ICE_SWIFT, + NDEBUG, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Ice/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; - PRODUCT_NAME = Ice; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS"; + PRODUCT_NAME = "IceDiscovery++11iOS"; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; name = Release; }; - F623746ED4F4049925910771 /* Release */ = { + F7AEAA92674355CDEF388AC0 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19864,8 +19831,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; - PRODUCT_NAME = IceTimeout; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; + PRODUCT_NAME = IceExceptions; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19873,9 +19840,37 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; + name = Debug; + }; + F7F2FDA49B1BD99B483C4303 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DYLIB_COMPATIBILITY_VERSION = 0; + DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; + ENABLE_TESTABILITY = NO; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; + PRODUCT_NAME = IceServantLocator; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; + }; name = Release; }; - F80360D07AC2F1003844FD89 /* Release */ = { + F9A34E48B4066A5D2BC3CBA0 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19893,8 +19888,8 @@ INFOPLIST_FILE = test/TestCommon/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; - PRODUCT_NAME = IceOperations; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; + PRODUCT_NAME = IceAcm; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19904,7 +19899,7 @@ }; name = Release; }; - F80FF2DBC096DED4A7DA3C5C /* Debug */ = { + FB01E283F43542E615067814 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19920,8 +19915,8 @@ GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19931,81 +19926,61 @@ }; name = Debug; }; - F85015057487B02E4E0E4F26 /* Release */ = { + FCBE121D7DCE516CCC9BEA9E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; - GCC_PREPROCESSOR_DEFINITIONS = ( - ICE_CPP11_MAPPING, - ICE_STATIC_LIBS, - ICE_SWIFT, - NDEBUG, - ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - HEADER_SEARCH_PATHS = ( - "$(SRCROOT)/../cpp/include/", - "$(SYMROOT)/$(PLATFORM_NAME)/include/", - "$(SRCROOT)/../cpp/src/", - ); - INFOPLIST_FILE = src/IceImpl/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - OTHER_LDFLAGS = ( - "-lbz2", - "-liconv", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; - PRODUCT_NAME = IceImpl; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - FAB6994666BACD9CC2B29848 /* Debug */ = { + FCE4D54C4A37077978FE911B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; + ENABLE_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestDriver/iOS/Info.plist; + INFOPLIST_FILE = test/TestCommon/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; - ONLY_ACTIVE_ARCH = YES; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; - PRODUCT_NAME = TestDriver; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; SDKROOT = iphoneos; + SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - FCA7CF00FFA1BA3FBDD1A88F /* Release */ = { + FE479150A5E98C346B0B6B0B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -20032,960 +20007,979 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - FCCC60D77B4610AEBBBFD8F6 /* Debug */ = { + FF4F40A6B8A5FE7E55CBA539 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; - PRODUCT_NAME = IceAdmin; - SDKROOT = macosx; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; + PRODUCT_NAME = TestCommon; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - FF6EE6A3BF7334D10194F652 /* Release */ = { + FFBAF0E9654CC11BFDD25C8A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; + DEFINES_MODULE = YES; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - ENABLE_BITCODE = NO; + DYLIB_INSTALL_NAME_BASE = "@rpath"; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; + GCC_PREPROCESSOR_DEFINITIONS = ( + ICE_CPP11_MAPPING, + ICE_STATIC_LIBS, + ICE_SWIFT, + NDEBUG, + ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; - PRODUCT_NAME = IceInheritance; - SDKROOT = iphoneos; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); + INFOPLIST_FILE = src/IceImpl/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + MACOSX_DEPLOYMENT_TARGET = 11; + OTHER_LDFLAGS = ( + "-lbz2", + "-liconv", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; + PRODUCT_NAME = IceImpl; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + SUPPORTED_PLATFORMS = macosx; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 00236410B7878815C9462DB6 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = { + 0157127A05BBD04C218262B0 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 62B37900B735C3913A894D55 /* Debug */, - 77971056002284EB909C66AF /* Release */, + B32D28768D8961B44F6EB096 /* Debug */, + F6D7582D1E580B97184ED22B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 044EEF23E04F8A00E36E0E33 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = { + 0252968214EFD83026C28885 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2001ABB68208BD961B1E1DE7 /* Debug */, - CAF62F8EDF6DAC52F59F37B7 /* Release */, + D6005378B384B661EE93A6FC /* Debug */, + 2B678FAF79A30F363A1C296D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0644D9F4813142CF5BD9EDA7 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = { + 030B0C213166A908514BBEE3 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5719FA43274825EA504FAB78 /* Debug */, - 3AC9781DD274565C0D166CFB /* Release */, + 28BB67947897DD592CA0F4D4 /* Debug */, + A11F000CB22F87844BAADF02 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 075918B1BEC8CE4CF04958F2 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = { + 0D38EB796BDA440B8E66B871 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7E3804D5DE2531EDE3D56014 /* Debug */, - 1BC853462FFD545B69227FF6 /* Release */, + 00212E653D64CB6E18BB9028 /* Debug */, + E8A266A9CACD828FD5D91DAD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 091C5CE007148B44FDF05281 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = { + 0DB26316D880D79A043C8220 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F07AE8BEF7B079F129982D2B /* Debug */, - 39897AE51BCFFAEDEB7027CD /* Release */, + 11B6B9A02D099FAA3EDC5C79 /* Debug */, + 464F1C354904FC6F8225F42E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 09AB6F8D633729C8866C99B4 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = { + 0E2D5CC6DCF10732C7895AEA /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ECEC2A0B7C3324E560BBDCF9 /* Debug */, - F85015057487B02E4E0E4F26 /* Release */, + 59A5313052D318C259C99FF9 /* Debug */, + FFBAF0E9654CC11BFDD25C8A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1024A86757B4CF06E68A54FF /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = { + 0EFEF1D7EBC06BC77FD52F2A /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ED07401774549CC3D3FC436C /* Debug */, - 8C3F26FF62C77A76C72B17E1 /* Release */, + E4E3E80BCF1099A6E5F92434 /* Debug */, + 91A6BCA875B11CA88A3D7D4D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 10D2E4823E17F7AA81502243 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = { + 1436FED26E53A492AD49A198 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 94F8B00AB9973CA4047B491D /* Debug */, - D6A87D50636C3C2A53788FCC /* Release */, + AD5893227C6606A55BED4454 /* Debug */, + 4A51618B84F5931CCB50C6D5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 13F2899914E358256D593220 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = { + 163A2F3CF4F68749AD6BE907 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F80FF2DBC096DED4A7DA3C5C /* Debug */, - C4DDA2E6D10C55C23F2006C3 /* Release */, + 968C0F6708FEA447C8916E48 /* Debug */, + EC657E54B1B7BE372A249147 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 147822705D6DB451BE3F544B /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = { + 1B21314EACDD9B26090F7A0D /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 480F40A430D2C711FEC9D785 /* Debug */, - 0C835DA402F1A9F0466507B2 /* Release */, + EEC0A817374DB756E6E5D0B5 /* Debug */, + 9549DB8E65D16AAB595A3E2A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1811E364A2F015F0AFD24FC8 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = { + 1D4D43FA26654DDFBB6F5AEA /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7CAA171B1B415BAF97135D47 /* Debug */, - EA913B01BFE7AF868A23C2BB /* Release */, + D88D261665B417E518187B42 /* Debug */, + 6AAB8AFFE8FCCFEAEB26CC1F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1980BC3BCFEBE70279CF9895 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = { + 1EAF04FCF683069900CD2CB5 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 86DC6BAE054F96AE5B420EEB /* Debug */, - F80360D07AC2F1003844FD89 /* Release */, + FCE4D54C4A37077978FE911B /* Debug */, + 93537074330FCA54DF4A84B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1D8C3D695D1CC0DF208561CF /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = { + 24D42F76DBAE051B1B76F4CE /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C96FA0BF679FDA8BB12DEA57 /* Debug */, - 7ED0F3C464C7EEF36E6D3EB6 /* Release */, + E7041EC9CF0EE21FC97773F6 /* Debug */, + CCF58F1A554367A9BB5DA407 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1F180A72D47E938736B12E02 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = { + 26A74315ED193312D199F3B9 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0ED0795FBD518BADABB76E66 /* Debug */, - FCA7CF00FFA1BA3FBDD1A88F /* Release */, + 9AF9FCFAFB73516832793D05 /* Debug */, + 9B9C7EF21BEEE60B38BCEB36 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 235EAE8BF84A08E14162D089 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = { + 2D0A6566A0B9851960104854 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2AE567BE2C03973BA67977DF /* Debug */, - A01807171C92C74891F123BB /* Release */, + 332DA6EB470437102B3384CF /* Debug */, + DB1BA83B5AEDD6DCDBBED87B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 25BB18B00994010278262887 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = { + 2D0CF23009F00A73CEFE08EE /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1DFA58CFC47EDAB4B866B5FB /* Debug */, - 543898B8DFD29529AD1AD969 /* Release */, + C38F9CCF33D50DD7936909BB /* Debug */, + F2F568D17AF6B70C14C90ECB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2950D67411DBCABCE2C185DA /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = { + 2E5E382C433373FE08562DEC /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 65C8ADA2F6F52C95094A7020 /* Debug */, - 0D08D02598910559760557B0 /* Release */, + 0C5C2DAF8D756CCECBA59F25 /* Debug */, + ECF4559A965DFB454EDBD04F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 29718A28607A68FBD21FC3C5 /* Build configuration list for PBXProject "ice" */ = { + 3128757B52EE1F33A8DBE372 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7D556B5B53A614EA02F0F73C /* Debug */, - EB781BA1D1350F6680856F47 /* Release */, + 19DC30A096698F1A2FEAEDC7 /* Debug */, + F1D2C3C4131F274A39F78218 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2DAF4D2986351CC42ECADCFB /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = { + 31B85D81BB3BFAAF230662F4 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 15992D01F69BDF2F5BF65F3E /* Debug */, - A1C2BA445E954333B8810CF2 /* Release */, + 0354499B2DD0DC62AB168977 /* Debug */, + 98F1E8ECE83B2DE82189A30C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 37C3F9ED3466456577D5EA1E /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = { + 32C4A6C4DF4E4784C694E4CA /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8EED9A924FC22D431FEA3405 /* Debug */, - 57D8E5B2FCCE271542B33D00 /* Release */, + 876140CA53A19A94210E1A27 /* Debug */, + F680B50DDFE6347DA32F3CDB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3A444FA93CDBF94FECF32EF7 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = { + 349E46BBAA5C23BC49FDDCA7 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 660ABB781992E435F5949B66 /* Debug */, - 06910DE5F734355572618C8C /* Release */, + 43AFF6BB4488768B7ADE168D /* Debug */, + 189F759795665D2D47C52CC0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3C8F0B13468176E203388188 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = { + 3A17E7095AB1ECA3CBAC256C /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CDF7F562D492F8CAB485E41B /* Debug */, - 62BE4B755CEEA5B5987145D8 /* Release */, + 4B0503C843A97EED4234885C /* Debug */, + 5CBA4ED58F2F60A54E615EF2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3D26670110605ADB8439EA1A /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = { + 3A6B018810B2355184BFADD6 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3BC7DB9A0BC2C29D701A2E96 /* Debug */, - A48CD0CF13DC9616D88E0DFB /* Release */, + 05657ECF61EFEC81DC7208F3 /* Debug */, + 2A49049DC2EE04F26563E85E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3D3AF29DF96C8805B78B7E6E /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = { + 3BBD0784B868C9DF93BA087B /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5E664041B492822A1D280038 /* Debug */, - E9484A1CBA995CB6AEAE9BF1 /* Release */, + 6C3678B6DEBB04FBAB8678AB /* Debug */, + CBD53C80A7474FDC490BF0C8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3F28405D195B02F119A124AA /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = { + 464CD32F92DF139FF90EA325 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A702685511112E1F11DDD9DC /* Debug */, - 3FB258AEEE430FC30BEBCBF7 /* Release */, + 8D491209353684FB7A4CE88F /* Debug */, + 6605DD1F0450DF2E5107309B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 45F05FDA4B01F011A50096E9 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = { + 495A226D42894D7C7C4FB3B2 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 00D1138C0A8CDAF9F6958438 /* Debug */, - 2BA6ECFD7814C41F693D5F2D /* Release */, + 2F04F8D6E5F2FC5D52163668 /* Debug */, + 1658450DE946D9DD3F85967B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46BDA3159CE9E1C75E6623B8 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = { + 4B428E0CA2D95FAE74B01562 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 04F32B54214BCD3FD94DC85A /* Debug */, - 69C793B3D6199874CEC1CBFA /* Release */, + D5F43C9E2BF076953C751490 /* Debug */, + 9C0805CAD879C67097B4A5E6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 48F7A82136382EBE8DC0D1A4 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = { + 4C8BEDE4F71178624F9BDD5D /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 70A1872F4256BC81AF37B0C5 /* Debug */, - 332A507B12486465253CE7FB /* Release */, + B00CA0EB495341182C146271 /* Debug */, + 3CC583BD5B53A083491B5B35 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4B6F73A21159504E16B57A1B /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = { + 577ED2287A5F0BBFA0232583 /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 85EEE53F1CF66C075F8D83D0 /* Debug */, - 5564B4937C23385043C6B3B0 /* Release */, + B1D9635EF1F28C9A3EEC199C /* Debug */, + EA336F4614487B7192AEF282 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5228F898A71174D634D43378 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = { + 614B9769E03331E188CB19E8 /* Build configuration list for PBXProject "ice" */ = { isa = XCConfigurationList; buildConfigurations = ( - FCCC60D77B4610AEBBBFD8F6 /* Debug */, - 0C7E3DC934A0CF7641FB3AD5 /* Release */, + CAA78153EABB685F2D464844 /* Debug */, + BD20C38B6446441879C8FF2B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 544620CA4E7FECF228A7C8A6 /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = { + 665075D2E65EC4768153CF0C /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EBE0BB237FAE440A92FD3EBF /* Debug */, - A0E61F1B232FD6EE54A8B12B /* Release */, + B9D743A5FA3A7CE89359E6D3 /* Debug */, + 1CEDFBC7D1144BB6AD4A569C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5B3BF42F755322A2D685E036 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = { + 69B629EDFCB8FBDE7E173C34 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9FFEBCD1BFB27BE4E3C3BA2D /* Debug */, - 9392BCF297727351A906B912 /* Release */, + 3763FE1D5D07E69ABEA6C6FD /* Debug */, + 96BA5896B39B3675A1D71350 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5B6FA092C0E02733610C7B59 /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = { + 6B982611FF349CB1EE5F5CDD /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 018D3ACDB8B0A19DBB8B396F /* Debug */, - 4295ADCA3AB7EB48095A6104 /* Release */, + 5242E73DBE21CDC14C12CC93 /* Debug */, + D67AC4DADC43587CE3B0FD2E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5E374F0988577EC8EA81AB28 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = { + 6D13163FD66559C4FBD1F390 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F5CE8D6DB3AC9907B065DE35 /* Debug */, - 6ED1D0054CBBC2C7BB44E599 /* Release */, + CB054B23514ACEA1E5B94B06 /* Debug */, + B56D9FDB62477D711E6FCB73 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5F4A2D7656A289DA657F237B /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = { + 6E9AE200122845A170FA96E8 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ED41065C1FC082D1C0D12B4B /* Debug */, - 6ADF4A3370892EC66FE1932E /* Release */, + BDDA287D18F5AA0968836E5D /* Debug */, + F7F2FDA49B1BD99B483C4303 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 62E64D3926FBD2D1F48DA25D /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = { + 6FE087B24FDE257DD79D7A6A /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EC5DB00EE05745E330064054 /* Debug */, - AD9D0CC04DFB5CB35EAF6EA7 /* Release */, + A410CB7D76F91AAEA2214AD9 /* Debug */, + BE2C76A8F2347CCBBEDF27DC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6583C70856630D705890F9AB /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = { + 7132AA38811E7617A47E8634 /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 67BDDF98B0452063036755EB /* Debug */, - A8007F38A751B571CE57FE41 /* Release */, + 9D864059DFD5511AE06D4091 /* Debug */, + 60AE7F72CE719DED162A24FC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6620D36133716E2A0E3BC9AD /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = { + 7171AF48EFEC75029772E593 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FAB6994666BACD9CC2B29848 /* Debug */, - B1E9EFDB20BB2708E3985C75 /* Release */, + B3614573B6385A61CA652EE1 /* Debug */, + 5FCD71235F27C105EAE4CE89 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6AD12FA7448CD620F06F4544 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = { + 71C26DB9FF59095377426D7F /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9B9F1141E5F92F88596CA7B4 /* Debug */, - E2D7860D5692FC51B791D803 /* Release */, + ED0143B5BD711C7FDCC14D91 /* Debug */, + 09EF95091B2C941C8FF1E748 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6B93B8C9D017B7D0B3CDCD23 /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = { + 71D9586CD06D3A7AA552F80B /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7EF6DB337935233C26FD7E59 /* Debug */, - 5247068929BD3C108C65578F /* Release */, + 38B6FAD82C23C5497F196AD0 /* Debug */, + 73EBC7901108C83DFC9DEB5E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6E5AC7F89D188D7DCAFE657B /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = { + 77CF292B6405CD9DC50E55F1 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EC762EDD9299858E9F124D07 /* Debug */, - 7F1EF03D92C3A601EF9680B1 /* Release */, + 5C0FBBF4EBD9B7782B924DA2 /* Debug */, + 1E51A9B641EDCF87BD064DC1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 72783896962E4BC50A3C078C /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = { + 7D856E3928914BABAE964FDB /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EE7A9AECCEFE4AB91E77838C /* Debug */, - 7426AF474BB8C50D6DA48B5C /* Release */, + 530FCAB81C139133B4140A49 /* Debug */, + ACC9000AD9276B68D7D629C8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 75D718488E61EC96444BA1F8 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = { + 7FE01F67067D7142B0CD4F65 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A6F7FA5933507B0CECEF0A88 /* Debug */, - C486D8D432CA637EB3DF8424 /* Release */, + 9DF7EB1B04CDFD3F047AF9A8 /* Debug */, + 449E71DA8CE0102A4D3FE271 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 77D54A7D0B463F31230957CF /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = { + 81D802AA8BD4316DF8274377 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 07CB1CCF0924723E8F08E7C5 /* Debug */, - 6FA023D7AFBA73B79675A458 /* Release */, + 97BA4334B3723744E42F46A9 /* Debug */, + 4FDA2FAFEFD9EE7F3C11EAF3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7C06159D0366ECE2FC26FCE9 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = { + 8604BB88AF7054188522024C /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 26DA74519A0368B9034D3589 /* Debug */, - 8E34E14E8A6BBA8236FCCD14 /* Release */, + E40793A2DA2FD1B84088FF60 /* Debug */, + ED57FE96F7F9BD2863487190 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7EA6F034D3A1A444D2CD8398 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = { + 8B6BCE61CD3D67F3E3BD8082 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EB0E71D06FD902823318329D /* Debug */, - 6FD74B3BF6157A742944B66D /* Release */, + 6D831C9F7FF99624C0D1543B /* Debug */, + 3B9F2A9A04C375097DF5DA5B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8B5D0F2B1B3E65AA37E96F66 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = { + 8F67E660542E98461C602595 /* Build configuration list for PBXNativeTarget "Ice macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 19DB434C44749212001D23D2 /* Debug */, - CCB8BB488C9DE6C0421F3A11 /* Release */, + C2F8293F1995280FC979E6AD /* Debug */, + B286B1D33C019FE8C93C85DE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8CE6DA8DD65F344C44C20ECF /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = { + 9199459F36DFC89B49984138 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C5F9B34EB23F9480E68E6D02 /* Debug */, - 5B867B973ECB2D9D3E3DF314 /* Release */, + B5A3C7B3A80F77A26CDA3C49 /* Debug */, + 7FCBFF890BD3F0D9EE31F206 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 927086629D95F4C65DC7D986 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = { + 94387391F728B13F25DE50C7 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6854F562DF283D28F1E92189 /* Debug */, - 95A123DD2CE7D5A15751A22E /* Release */, + C9BDFD21E846A4CCA47736D1 /* Debug */, + A02167146CAE1B3999BB019F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 94178A4111559DBDC1193429 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = { + 949317B550B1B1AFD92D0533 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7DD12BF9EC53679A4BC114D3 /* Debug */, - 073F4236CA3F626A8FCD41CB /* Release */, + F7AEAA92674355CDEF388AC0 /* Debug */, + 43092AEE9282AE4492F9E8C1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 94BF99686336765D665E1962 /* Build configuration list for PBXNativeTarget "Ice macOS" */ = { + 964D3AF528C6D718B99C4B07 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 784EBC42325599E76491DBAD /* Debug */, - 0B3C87366D7F6F01886A8FA2 /* Release */, + 202F90A6056798A44A053A01 /* Debug */, + 79BAC867CE0BA26F48EAB081 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 98058983671A49B9B9D12694 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = { + 977E8284CE65D07066ADD555 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2BD2CE5D4C7BFAA44769D17B /* Debug */, - 693FBAD38999AE9FC7FD762F /* Release */, + D257660EE74809A6FC5E13C7 /* Debug */, + 119F65B8F08EBACF923587B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9C3C3747AFC874E570EB571F /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = { + 99C7AB75CFB58B2BC9CB54D3 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AD51DF88482B30BD8A393E25 /* Debug */, - 6896B0390EF8DF5C3AAE0329 /* Release */, + 0F49847A3D30FD2426C95804 /* Debug */, + A8C733172599762C570115A3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9D55DF3FBBE3BFA20172573A /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = { + 9CBEAA1D89D83E1B7344586B /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6FFBB4844B79B25C696DBE03 /* Debug */, - 292D9A2ECC28EF41DCB33FE6 /* Release */, + B547B942FB033115FDF4EC19 /* Debug */, + 0D9D638DB854AFAC8DEAF9F6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A1A08AD4C010082331DCE136 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = { + 9D893DF6CA15F319D4C37CFE /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C9ADCEF69F4E23E726D7F42F /* Debug */, - 6AF265E60399BCD14587E515 /* Release */, + 1634CFB4307FE4E7F762BDF1 /* Debug */, + E839E23A3D8FE879308ED3BD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A1FB629F3DB8F5537ACC46F2 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = { + A058B15145DAA4177378CA84 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4C58115A1799993AB3CFC3D2 /* Debug */, - F453098930E35C7CBFA77FB1 /* Release */, + A24DA5E0DE1CA4E2CD90B48A /* Debug */, + 4622F5680462A9BC895EECCF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A6D0F9F122B7EC98A09C98DE /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = { + A0C903109661754A7310890E /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 12D9DCF932BC04D869417A6D /* Debug */, - 3A615213A37FC61A3A8BAAAF /* Release */, + 2FCD884F7716D61AA099F6E5 /* Debug */, + EDF9FB7DA979576B72EA656A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A6ECFF0AE6F72868FD73E772 /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = { + A49FFB8AF3A3C860FD54F46E /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - BCFD70822F09F0EC4AE670BF /* Debug */, - AF8C42393A72D7CC18D6E590 /* Release */, + 4E2881FF86974CAB24460CDA /* Debug */, + 83038D154DFC8371AB4E2769 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A7B12C54A68B5F3BB09BB60C /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = { + AA28C8DA746390B23C998CD3 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CE4D6B61A4D74B9A69F3DB2E /* Debug */, - 045D9853BF86338733311256 /* Release */, + F2E1E34AD76F3053D7C54F09 /* Debug */, + BC915B8D2230241E306787E8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AD19E78B54CB935962D28D3B /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = { + ACACE4173894FFF52EE39DA7 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7DFC092098D28D37B0822C46 /* Debug */, - 84824CD4508FA1EA0BBE060D /* Release */, + 5E5FCAF913C07ECE44B4B687 /* Debug */, + 63FD65C5E0D84791EF23A177 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AD603A92D4BD1B979C351ECC /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = { + AD6CB133F0EFD74046390926 /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3785815FF15E7A0FF410712F /* Debug */, - 5D927E39CC450458D35A1CB1 /* Release */, + 1F66A9EA800ADB6FB598E151 /* Debug */, + 5ADB4519C98E98559E850BD9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AE6610CCC8687AE5744A53F6 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = { + AD814D241780CB1F06437AF5 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EFDF5337CF2C614569979785 /* Debug */, - 72126A0B707BAD19AEEDEDDB /* Release */, + E73E965AE4F4F657D99B5900 /* Debug */, + C50229ECE27F3F9A4DBA84B3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AE7B39681266EE4045B4EF75 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = { + B3FA3031CFC7509713D02FB1 /* Build configuration list for PBXNativeTarget "Ice iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D7AC79C83F1EDCF8E570F1BF /* Debug */, - DF96A79592FAE952CC6E0FD7 /* Release */, + E7D10C6F6EBF711E4AE4316E /* Debug */, + 0999A071A417465129F1CB6A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AFABD3DE224C0B5C6940A5B7 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = { + B8A4900C8A10B4D3B524509C /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 52314B3580F10392749EB297 /* Debug */, - 32D6ED480CB4331166094207 /* Release */, + 378AB8A03B8825928BD7CA70 /* Debug */, + CDC4DFBD7B5FC2334BC8AB05 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AFC2FC4DD16F87884A40D512 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = { + B8AEBDC5CCFFA9D36FF72CD0 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9BFEF238CAFD80164DD4709F /* Debug */, - F623746ED4F4049925910771 /* Release */, + 3F0D0B4901EB77018B68AEED /* Debug */, + FF4F40A6B8A5FE7E55CBA539 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B29B72E12FD45954EF853156 /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = { + BD31B570526360322E7F63BA /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9556959049F349F58689FDD8 /* Debug */, - 95944D6DB52C070BD5C7F2CB /* Release */, + CBA7D63EE017BD803D7DD44B /* Debug */, + 96DC0149749876FB50947267 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B79C877815ABF505B942A900 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = { + BE77650B59C4E2B377676E45 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 651D49DDDDAFDDDFBB16388F /* Debug */, - DE4AAF502FFB1E34C26ED38F /* Release */, + 0CE17BDB74111CCD583007AD /* Debug */, + 9AD3EDD476D2920F0F249ABB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BACA0E371176684F2AA8A14A /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = { + C22E9D48367DAB854CD8AB46 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EF249BE23C5F80D5F88855DA /* Debug */, - 31884568AC7D5F16CCFEF918 /* Release */, + F404E5A34F098B49362FE6CF /* Debug */, + CC566650C5A5C5A74BB8D3DA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BBE03B18CF52DBF06CD120E4 /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = { + C2937583439E12DEE92C51F2 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 774EE18D92EFEC1B15A193FC /* Debug */, - 838D69C1047F0199D43A0050 /* Release */, + 231A559E2F4678F0CEE0F016 /* Debug */, + 7D81FF808715F401F5995BAD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BCAEC8A06C1D19270BDAC8E0 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = { + C3B296EDB3547BDC8388C399 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AA3E50D219DE5B4F43711F6C /* Debug */, - 395B405CD76D884C7062CBCD /* Release */, + 016AEECBFC9EFFF1E6090B11 /* Debug */, + A50AFDCEEC347902D75959B7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BD8D95737AFD80C1CA704BCA /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = { + C987906A8741F66B405FD072 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 926C64ABF831520E3D89350E /* Debug */, - B88A7D1EB4264ED18BA09B8C /* Release */, + 334EEAC0E06FCF19981245FD /* Debug */, + 5F26EF188432AE2765F0D788 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BFB94717F4ED2D23EF213F86 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = { + CA5A320E5664C9BFB05772CE /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6553292B2E38F92ED8CE20A2 /* Debug */, - 68CE4DD4D1F0F01A39ED6536 /* Release */, + 36C3B9CB33D359570C165D87 /* Debug */, + F9A34E48B4066A5D2BC3CBA0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C11BB948A633390FEA571628 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = { + CB0394D655BA7D9B8142D057 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EC174AD62926FFACCDBE8BDF /* Debug */, - E4FF0D7F71912336ECC18DB6 /* Release */, + B9EF31F46ADF6C8E77CDA3FD /* Debug */, + 33920A4E3ADE0B87F492CBB7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C2CB26111BF3C955550C4B72 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = { + D0AA8018E3D1C21DC2A00EBC /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 046684EB813DC83C5D93BBBD /* Debug */, - 826FE9F5072693096A1B8BD3 /* Release */, + B303B59216692AFE21FB1283 /* Debug */, + 77F12FE102ACD06426F9B1C5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C323C8A30EC76BB9F1EDA4CF /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = { + D30BE105828013751D1037C9 /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8E83C6009A10FDC7A30D3611 /* Debug */, - 6C32E3CE18210DB7D9EFE8A9 /* Release */, + FCBE121D7DCE516CCC9BEA9E /* Debug */, + E225D1B4DEBF3757A3A63F1C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C417073A078CD94D7E1005A8 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = { + D33AE6C245142D0675324FCF /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 77C4FFD023F1ECBB461DBB73 /* Debug */, - 389E5B490BDA9B31D200E04D /* Release */, + 52F16DBFDDB29D8337E5A9C2 /* Debug */, + A007AFE8BE813285B739F6B6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C664B931CC45B69DA172BA64 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = { + D4827EC355C3F9035B72BF00 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8C6777E333E6D1CF9A9D4258 /* Debug */, - BD87CC90E5226E34D4A2F65D /* Release */, + 4ECD262FB71069194383327D /* Debug */, + CCDAF0BD73A00FF61D43A1BC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C7F80BA4C97C8D21B793DE17 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = { + D87BFF32BBF64821815CA977 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ECDA02210FE80EA19FC3A594 /* Debug */, - 5DEBC84A9C0AB0EAC888078B /* Release */, + AB1CE677DB877CDA9CB1CC93 /* Debug */, + 7F47D6F51BFC46D845A57292 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CD1A13B6321D7957542DE130 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = { + DAC003A18A73B54FD01E21B7 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 497225D8C2F05FE4B32BD4E8 /* Debug */, - AF3E212B965535B886CB438F /* Release */, + 877807A5CBEBD1FA31DD2EC0 /* Debug */, + AE2877F1D00DF4C6026EEB10 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CE38CF5CBBFBC1E58056332B /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = { + E038B4B9CC945838CD3D9B02 /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4585A0D1475F76BD8F948936 /* Debug */, - DB367FE5B4BB420C3F9C54EB /* Release */, + 0A396FB5C6DB40A0BC7B2F01 /* Debug */, + DE65FFE10625BF8B737951A6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CF71943CB3679B30EDCADDBB /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = { + E44C1CBBD0B26C3481F76879 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 50B77AA8407592C4E93513AD /* Debug */, - 491DBA5E0D9390DC4514A86F /* Release */, + 3BCD3C246EC27D9918028AF9 /* Debug */, + C0D4AE648BB79689416BDA47 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D0008B9280EA8DD418237763 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = { + E4537A8468EF1FEEE8F8F311 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C135B40AF2BD950ED3C82873 /* Debug */, - 30247DB891ED8396937B64D7 /* Release */, + 606D46DE7B48AE5486C73A4B /* Debug */, + 07E5F000623435C259AA3148 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D071476039D59E60FB986A4E /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = { + E7B316026DBF1CE6D68F925C /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A8089DC5FCA9368EA41F3B19 /* Debug */, - D872B3C1C65534585A04ADDE /* Release */, + A5C7C0C842A76589E6DDE89F /* Debug */, + D4342FFBD5E22F6E89EF170E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D071E6E67415B1084B7FB2B0 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = { + E9970C605E8859BAAB002530 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D03B25809F4B16EF0D909579 /* Debug */, - FF6EE6A3BF7334D10194F652 /* Release */, + FB01E283F43542E615067814 /* Debug */, + 753E4E1389A306FD91D57134 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D3EE323899CFE50C8FF01A4C /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = { + E9A35DA707780FA15F886576 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 31C88449B370C9A0831B871E /* Debug */, - 1265170C8F1AAA4B598ADED6 /* Release */, + CB02F881EF1A6E7331861765 /* Debug */, + 4466198637A4588CE4E780E6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D77B6EAF252C5E522EF824EB /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = { + EDC6890C79963D7F1EC96376 /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 08C9943BB984EF5F0B10A8FE /* Debug */, - 08DB62EDE017834E70BC55B0 /* Release */, + 5554B9F7B95836737BB07140 /* Debug */, + 0DA062A9F13FAE05620C9AB7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DD3460088DD573F25718BB50 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = { + EDCBAD1868C21D4D52A43EC8 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CBE662756155E9190A9DF3CD /* Debug */, - 8CB13553A470DD7F06D2BD79 /* Release */, + AFAE7EA50F6094EFD254507C /* Debug */, + 81B28E701634B5B16B664ACF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DD88214AAC13298E250CAFE5 /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = { + F0D8FCBCA123963F12AA14B8 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EA2E854B3A2F252DB0461299 /* Debug */, - F163A97C9F0E53EFBD027651 /* Release */, + 81FC912F25482677E4F43256 /* Debug */, + C625627B68C80AF03A05FF02 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DF89BAA77340F0D9A91B5B70 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = { + F0F1827DA5AFDAEAA66F8225 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 74433004F4A47EDA9378D86B /* Debug */, - 631C0B3A50EF6794CA95F0D4 /* Release */, + FE479150A5E98C346B0B6B0B /* Debug */, + A721DDF43D4E0CEFCBBD4073 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E28ADFC31AAB0E465B4AEA32 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = { + F2077D8AD4DFC86DB8B0364B /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F48757F1BD5BD447E7E5A339 /* Debug */, - 5FCE26426822AB6142DE2F29 /* Release */, + 4D432DDEF77EF6C8D5B063AB /* Debug */, + 361036643181FE5D16B60347 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E776FBA795F89D6CCE02CD6A /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = { + F4A79ED2732065B4851C86EB /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 934F8DE46D83BB5774BEF0FA /* Debug */, - A9889FD968301EE1002FCCC3 /* Release */, + 009B1D5AA0CAACBA370FCB9D /* Debug */, + A7975A847EFD7B826CDC0EC4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E99F518660F9AB06ACE667CD /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = { + F999CB9EA63099F760D8B7CC /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46DDDE455BA3B666AF62611E /* Debug */, - CBFB91C348A20AEE13FBD69F /* Release */, + 6D19B5418B7F4F87CA49139F /* Debug */, + 4BCF325A0A55C5E3246CA63C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EC2ED350B4BE06E124AF4315 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = { + FB60A0B415E9E347AA1E331F /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2D5A96BCD3ED2A4E80938697 /* Debug */, - 38FBAB88F5A9921DA55C9ADC /* Release */, + E35E6F1EEF54C8B4BD4AD7A1 /* Debug */, + CAE5C045E0B58561DF388F62 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EC4DBEF8FA6B0A7A7177F50B /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = { + FBC432173B82346F63A1CD28 /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D2990DB46B84C732A0D91282 /* Debug */, - 7E5FE9EBEF682F0AA8C0631D /* Release */, + 6D7F26353031A2206559038D /* Debug */, + AD7BBFBBBA861F31DB7781DC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EE183CAB742B1360694466DD /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = { + FBDF261EE2A45A604FD39FB6 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5AE9FD21F7A91873AA604C52 /* Debug */, - 67877B442127E46152FC9D55 /* Release */, + 2CD3EFA3EDCE0C5BCE245D37 /* Debug */, + 6FFFF59AADB3FC5FEE78CC24 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F2C0C2C72D017FA1BC6C221C /* Build configuration list for PBXNativeTarget "Ice iOS" */ = { + FC10685FF608E313BEC22C18 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - B2694B626CA1AAD3F0360AB6 /* Debug */, - F5DE62AAAC0B9B74542AF36A /* Release */, + 1CC3B4ADA7F46E26B0C50F41 /* Debug */, + 9EAF4316550850D09FF4D447 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F5FC90624E257893850F4F24 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = { + FC9F6692633CE8F5DEDAF0AB /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E469073303E77BCF75CA6ACB /* Debug */, - 294C7E4FF8FA13A99E302DBC /* Release */, + 8AA1D310567C3C34DC3A3B88 /* Debug */, + 721AAAE4997C701F3D97D2CC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F8010370F463A7F2210C530C /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = { + FDD08CA1D9C4CEE1314AB011 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CD8DCFF9FC3EDBD27A7151ED /* Debug */, - 3401982DEF0CD68AA50F3B94 /* Release */, + BA7687216DA47E0AC5ED93AA /* Debug */, + 060AFB2F371CCA06ED926100 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FCB71AFE893E7171705D4364 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = { + FFF95930E70A3FD5E4AA31B1 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C6D4C053027BD5C0DDF3703A /* Debug */, - 1050080DAB0C5E34C778431A /* Release */, + 5A78DB7F65CB39389441528D /* Debug */, + 43BACE1B30980E095D1043C5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = 1EB94907D14CF0330FE8A8B4 /* Project object */; + rootObject = FD69C74E28D7406AE764029E /* Project object */; } diff --git a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme index 6c8d6b22644..8fdd91421cb 100644 --- a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme +++ b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> @@ -28,7 +28,7 @@ buildForAnalyzing = "YES"> @@ -42,7 +42,7 @@ buildForAnalyzing = "YES"> @@ -56,7 +56,7 @@ buildForAnalyzing = "YES"> @@ -70,7 +70,7 @@ buildForAnalyzing = "YES"> diff --git a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme index 76f0266eeb3..d9a6006ea9e 100644 --- a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme +++ b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice macOS.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> @@ -28,7 +28,7 @@ buildForAnalyzing = "YES"> @@ -42,7 +42,7 @@ buildForAnalyzing = "YES"> @@ -56,7 +56,7 @@ buildForAnalyzing = "YES"> @@ -70,7 +70,7 @@ buildForAnalyzing = "YES">