From a4c833a413b9397a9ad5bf7f423b48105e0282d6 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sun, 14 Jan 2024 08:31:23 -0500 Subject: [PATCH 1/9] Make Object and derived classes use SharedPtr with Original mapping --- 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/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 +- 38 files changed, 140 insertions(+), 246 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 697e61f0a5a..60b468d3f9c 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/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 9d73af0060b..3458778bc4a 100644 --- a/cpp/src/slice2cpp/Gen.cpp +++ b/cpp/src/slice2cpp/Gen.cpp @@ -2607,7 +2607,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 { From c648ad2460abaa008b3684fe0067c7861904e52a Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sun, 14 Jan 2024 09:17:46 -0500 Subject: [PATCH 2/9] Remove unused servant delegate in Objective-C --- cpp/src/slice2objc/Gen.cpp | 2 +- objective-c/include/objc/Ice/Object.h | 5 +---- objective-c/src/Ice/Object.mm | 26 +------------------------- 3 files changed, 3 insertions(+), 30 deletions(-) diff --git a/cpp/src/slice2objc/Gen.cpp b/cpp/src/slice2objc/Gen.cpp index eaa36939067..d99631411f7 100644 --- a/cpp/src/slice2objc/Gen.cpp +++ b/cpp/src/slice2objc/Gen.cpp @@ -367,7 +367,7 @@ Slice::ObjCVisitor::writeDispatchAndMarshalling(const InterfaceDefPtr& p) _M << sp << nl << "-(void) iceDispatch:(ICECurrent *)current is:(id)istr " << "os:(id)ostr"; _M << sb; - _M << nl << "id target = [self iceTarget];"; + _M << nl << "id target = self;"; _M << nl << "switch(ICEInternalLookupString(iceS_" << name << "_all, sizeof(iceS_" << name << "_all) / sizeof(NSString*), current.operation))"; _M << sb; diff --git a/objective-c/include/objc/Ice/Object.h b/objective-c/include/objc/Ice/Object.h index f7e7a65b61b..e0d19796dcd 100644 --- a/objective-c/include/objc/Ice/Object.h +++ b/objective-c/include/objc/Ice/Object.h @@ -42,17 +42,14 @@ ICE_API @interface ICEObject : NSObject ICE_API @interface ICEServant : ICEObject { + // A pointer to the Ice::Object that wraps this ObjC object. void* iceObject_; - id iceDelegate_; } --(id) initWithDelegate:(id)delegate; -+(id) objectWithDelegate:(id)delegate; +(void) iceD_ice_isA:(id)servant current:(ICECurrent*)current is:(id)is os:(id)os; +(void) iceD_ice_ping:(id)servant current:(ICECurrent*)current is:(id)is os:(id)os; +(void) iceD_ice_id:(id)servant current:(ICECurrent*)current is:(id)is os:(id)os; +(void) iceD_ice_ids:(id)servant current:(ICECurrent*)current is:(id)is os:(id)os; -(void) iceDispatch:(ICECurrent*)current is:(id)is os:(id)os; --(id) iceTarget; @end ICE_API @protocol ICEBlobject diff --git a/objective-c/src/Ice/Object.mm b/objective-c/src/Ice/Object.mm index 980fe3888ac..37bb048ea3b 100644 --- a/objective-c/src/Ice/Object.mm +++ b/objective-c/src/Ice/Object.mm @@ -156,7 +156,7 @@ virtual void __decRef() [os release]; } -BlobjectI::BlobjectI(ICEBlobject* blobject) : _blobject(blobject), _target([blobject iceTarget]) +BlobjectI::BlobjectI(ICEBlobject* blobject) : _blobject(blobject), _target(blobject) { } @@ -359,19 +359,6 @@ -(id)init return nil; } iceObject_ = 0; - iceDelegate_ = 0; - return self; -} - --(id)initWithDelegate:(id)delegate -{ - self = [super init]; - if(!self) - { - return nil; - } - iceObject_ = 0; - iceDelegate_ = [delegate retain]; return self; } @@ -382,15 +369,9 @@ -(void) dealloc delete static_cast(iceObject_); iceObject_ = 0; } - [iceDelegate_ release]; [super dealloc]; } -+(id)objectWithDelegate:(id)delegate -{ - return [[[self alloc] initWithDelegate:delegate] autorelease]; -} - -(BOOL) ice_isA:(NSString*)typeId current:(ICECurrent*)__unused current { int count; @@ -486,11 +467,6 @@ -(void) iceDispatch:(ICECurrent*)current is:(id)is os:(id Date: Sun, 14 Jan 2024 10:43:53 -0500 Subject: [PATCH 3/9] Update Objective-C --- objective-c/src/Ice/CommunicatorI.mm | 2 +- objective-c/src/Ice/Object.mm | 142 +++++++++++++------------- 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 +- 7 files changed, 99 insertions(+), 89 deletions(-) diff --git a/objective-c/src/Ice/CommunicatorI.mm b/objective-c/src/Ice/CommunicatorI.mm index b4195b146c5..bfc71c938c7 100644 --- a/objective-c/src/Ice/CommunicatorI.mm +++ b/objective-c/src/Ice/CommunicatorI.mm @@ -492,7 +492,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 37bb048ea3b..3511012b007 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), _target(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,28 +94,12 @@ 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; id _target; }; -ObjectI::ObjectI(ICEServant* object) : _object(object) -{ -} - void ObjectI::ice_invoke_async(const Ice::AMD_Object_ice_invokePtr& cb, const std::pair& inParams, @@ -156,10 +146,6 @@ virtual void __decRef() [os release]; } -BlobjectI::BlobjectI(ICEBlobject* blobject) : _blobject(blobject), _target(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,71 @@ -(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. + 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. + 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:(std::shared_ptr)arg { self = [super init]; if(!self) @@ -520,7 +526,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 +533,13 @@ -(id) initWithCxxObject:(Ice::Object*)arg -(void) dealloc { cachedObjects.erase(object_); - object_->__decRef(); [super dealloc]; } -+(id) servantWrapperWithCxxObjectNoAutoRelease:(Ice::Object*)arg ++(id) servantWrapperWithCxxObjectNoAutoRelease:(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 +622,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..995de368bdf 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:(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]; } } From 8039713617f05ed8df09ed530d986b3aa4f7a231 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sun, 14 Jan 2024 10:56:46 -0500 Subject: [PATCH 4/9] Clenaup --- objective-c/src/Ice/Object.mm | 4 ++-- objective-c/src/Ice/ObjectI.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/objective-c/src/Ice/Object.mm b/objective-c/src/Ice/Object.mm index 3511012b007..6520830980d 100644 --- a/objective-c/src/Ice/Object.mm +++ b/objective-c/src/Ice/Object.mm @@ -517,7 +517,7 @@ @implementation ICEBlobject @end @implementation ICEServantWrapper --(id) initWithCxxObject:(std::shared_ptr)arg +-(id) initWithCxxObject:(const std::shared_ptr&)arg { self = [super init]; if(!self) @@ -535,7 +535,7 @@ -(void) dealloc cachedObjects.erase(object_); [super dealloc]; } -+(id) servantWrapperWithCxxObjectNoAutoRelease:(std::shared_ptr)arg ++(id) servantWrapperWithCxxObjectNoAutoRelease:(const std::shared_ptr&)arg { @synchronized([ICEServantWrapper class]) { diff --git a/objective-c/src/Ice/ObjectI.h b/objective-c/src/Ice/ObjectI.h index 995de368bdf..cb102891f41 100644 --- a/objective-c/src/Ice/ObjectI.h +++ b/objective-c/src/Ice/ObjectI.h @@ -35,5 +35,5 @@ class ServantWrapper : public virtual Ice::Object { std::shared_ptr object_; } -+(id) servantWrapperWithCxxObjectNoAutoRelease:(std::shared_ptr)arg; ++(id) servantWrapperWithCxxObjectNoAutoRelease:(const std::shared_ptr&)arg; @end From 47284c67f098a672fb77880d85f96a823d4df8fe Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sun, 14 Jan 2024 11:02:50 -0500 Subject: [PATCH 5/9] Update Python --- python/modules/IcePy/Operation.h | 2 +- python/modules/IcePy/PropertiesAdmin.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 { From 60cd4895270336eac6cb425421b301aaa12ea827 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sun, 14 Jan 2024 11:15:21 -0500 Subject: [PATCH 6/9] Add comment --- objective-c/src/Ice/Object.mm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/objective-c/src/Ice/Object.mm b/objective-c/src/Ice/Object.mm index 6520830980d..a3e09fd51cf 100644 --- a/objective-c/src/Ice/Object.mm +++ b/objective-c/src/Ice/Object.mm @@ -464,7 +464,9 @@ -(void) iceDispatch:(ICECurrent*)current is:(id)is os:(id*>(iceObject_); result = weakPtrPtr->lock(); - // result can be null if the C++ wrapper was released / destroyed. + + // 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; @@ -496,7 +498,9 @@ @implementation ICEBlobject 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; From 765d2152f6fcee18969e5a6f3897b9ceed56f2ae Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sun, 14 Jan 2024 14:15:04 -0500 Subject: [PATCH 7/9] Fix windows (cpp, python) and macos (swift) build failures --- 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 - swift/ice.xcodeproj/project.pbxproj | 21184 ++++++++-------- .../xcshareddata/xcschemes/Ice iOS.xcscheme | 10 +- .../xcshareddata/xcschemes/Ice macOS.xcscheme | 10 +- 7 files changed, 10599 insertions(+), 10613 deletions(-) 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/swift/ice.xcodeproj/project.pbxproj b/swift/ice.xcodeproj/project.pbxproj index 5651a8868b3..c30a81b3217 100644 --- a/swift/ice.xcodeproj/project.pbxproj +++ b/swift/ice.xcodeproj/project.pbxproj @@ -7,1763 +7,1710 @@ 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 */; }; + 0018341987DE28CA1CA741D3 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB5D02829AEAB23FFABB5B4F /* WSConnector.cpp */; }; + 00697F0CF3B2AF39EE080EF7 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8960D717D9673447C68F61D7 /* EndpointInfo.cpp */; }; + 0072C42A6D23F148DF459251 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54E9AF62DC5520A54B0CF2AA /* Random.cpp */; }; + 00B613DAA9C2BF3F770470F4 /* EndpointI.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EB7AAB041B597E34A71548A /* EndpointI.mm */; }; + 012112A57534E1CE8702B653 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 01586D48B85E01D0587A5BA2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 0172BC3C5CA19454AA9B50D8 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EDA8B46CA1A0F1CFC1E283B /* SystemdJournalI.cpp */; }; + 01808FC6BF917FA6CC60DA77 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 025FA88297B6C712DCAA8F25 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FBE489334E0ED23D774B550 /* LoggerUtil.cpp */; }; + 02D6E05A0B88B1E5AC7AA938 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F5945F8AFC7C9F3E86F3D4 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 02D7DC30D69353C1B161EEA1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C2B5BBCC468EFCF6C706DDF /* Client.swift */; }; + 032CDFAF5171057955003F6F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 035B3023FCAC87E5D59B95B7 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFD565105BC4E6A56DCB1853 /* Exception.ice */; }; + 036B7294EF6C85869D4D99D0 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5042D96FAC79ED86972DEF0A /* LocalException.cpp */; }; + 036E303C13FCDA857E6CAC88 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4804F5E00E5C966AE7D9FD34 /* BatchOneways.swift */; }; + 038F68BDDAA7D82C87A4E358 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000611DF33CB4304F42A33BE /* RetryQueue.cpp */; }; + 03AE2B78C6E447D09D6B1B9E /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 60C72DE758D50EEE330E214C /* Metrics.ice */; }; + 0431CDD713D70DDCBC01025B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A321E613C2308FD17E0C2E6D /* TestI.swift */; }; + 04490F3CC1B2F69D1CF40F78 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 0464FD639B7E64C401CD0F66 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 04781CF1594EB616E0A82C3E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8EC734E3ABEC1B9F8ED7E1C /* ServerAMD.swift */; }; + 0479A525C9005DE348CDCAC7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66677779E376C6BC1CB257CB /* Client.swift */; }; + 04994BC95865F3AFF995FFBD /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 96057073F871C88A9A437E6C /* RemoteLogger.ice */; }; + 04A1DA6F0688902360376C8B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 04B6E589A0CFC15B1324287A /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DF1CA6ABA240EB1DCE0DCA9E /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 04BF5B027FC2EC31DFF1C3B4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 187ED1A448C608EC15DF698C /* AllTests.swift */; }; + 04CA57F572948DE12AF650F4 /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38D102721EA6D00E46DBB85E /* Cond.cpp */; }; + 0519C7E867DB374F149B1990 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5DABF3352FC370E8C8424646 /* FileParser.ice */; }; + 05B4299FC837338C7C9F07F6 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7FCFB7E350304BE48F9AB70 /* Object.swift */; }; + 05BA88CFDB0A1B982F7DCBCA /* StreamTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA94963DA4E9C2C6BC9D3A1C /* StreamTransceiver.cpp */; }; + 05CD8A6BBC6A23919D9474CF /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31917CC0A13FF7C85862B2F0 /* OutputStream.cpp */; }; + 0616771E9DCC32A8954A64EE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF00A0B8905692CA5CB21851 /* Client.swift */; }; + 0643622519CDC658F54DEA21 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08422DB9B8A6F7BEF0B9659B /* SSLEngine.cpp */; }; + 067B6E6FA2EA192CDFCF9036 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD7C6AB26C45ABFC92DDB247 /* Server.swift */; }; + 06C7C566D33AF10D3C441548 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F600B75D092C22922DC97C /* LocalExceptionFactory.swift */; }; + 06C7FA26056AC4243C624FE1 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D23950CABD458FD84101A42 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0706F0FA4CC01B88DD0D2DE8 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE548BE00DBF796605CE418 /* TestAMDI.swift */; }; + 07231DDD854AABD03305B283 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */; }; + 074A20086ECE8EA68179360C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 0774C7F1D02D5438905530E6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5242AA08870B9E96219670E /* Client.swift */; }; + 07B21E2CAB7DBC84FFCC7754 /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 73E30F6985B146225B2F0177 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 07B9860625BA278EB29B60F8 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 07D1B834520C1898CBA51C6A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 07D2C592286FA9396D82CC5B /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4219AE5EE1189E920E1A77AA /* TestAMD.ice */; }; + 0825802796D8ECBA83F8CD73 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 086044B8C7CD0025AC4D03D5 /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 006CF4F54F5E4A89A3C663B0 /* RouterInfo.cpp */; }; + 0920F0B8C7B88597FBD511A0 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 654CCEC599E0A9552262BFF6 /* RouterF.ice */; }; + 09402B549DA79E6153D5B1B5 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E829B55DFE27094ED4A1790 /* EndpointInfo.cpp */; }; + 096D459BAE2FCF2E26D63288 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AC23262A7AC04461F4A4BFD /* AllTests.swift */; }; + 097C6736BC34ABC39A8351DE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 09CEE7F11F5525460EA4422E /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 0841109EAF658FE8F75F1D35 /* certs */; }; + 0A0B5C8B51AEA59D813EDDC8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7401C2CE09807582FF593E /* Client.swift */; }; + 0A225A1465272A8C992BEBE8 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5FC1B1B7E470DA1817C0EEA4 /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 0A468AC2E0650A5D5537871F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57CF891C000E31222368C816 /* Server.swift */; }; + 0A7EF887C9DAA79818FB599B /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511AD3135337E08B90F9C34B /* BatchRequestQueue.cpp */; }; + 0A945DF4D48C7CF37CF3FE37 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEE6C673CF16E6CD4116CC12 /* ThreadException.cpp */; }; + 0AACFC0CB4701C0AEC238865 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 0AC32732B6437A1A7136CC6B /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7490F0360E314E9C5FF89F3C /* Router.ice */; }; + 0B9335BFAA4E14EB94810181 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 879BBBB407F7C87AA23FEFB0 /* TestI.swift */; }; + 0BC46298F3258DEACAEB87D2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E498B9EBD907E4FAD93351F /* Client.swift */; }; + 0BE3033B3DC78D489AE854F6 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 688574A0631176251901C5D7 /* ServantManager.swift */; }; + 0BF831C6A17EE4C209FFB07D /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2DB1A2EBE508ADA82D566B4 /* TrustManager.cpp */; }; + 0C05B309530BDB59E82F9419 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = ADA2F94E4EDD0ADEEE713717 /* Test.ice */; }; + 0C59DF32C4B266890E39489B /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4749A84AF39751728F692314 /* ConnectorI.cpp */; }; + 0C93CE252AE54609BE184AC6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A0432DEA9466221C423F5 /* TestI.swift */; }; + 0C9758945EDA3658BA968BDF /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27196B5B3415DF6ED7D4A3A5 /* Properties.swift */; }; + 0CC5FB5A531BB50FD446CDCF /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00909CBA5C2223CED4ED9381 /* SSLInfo.ice */; }; + 0CD0FD273978A1755A6B4970 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 0D22F62905B784D9B736C643 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 294AC4A94D492076FFDEF664 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 0D6795ED5818F1BA7304C6D6 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0AF15B4EEC648C875D97939 /* IceGrid.framework */; }; + 0D91C27BAD60BBECB3C0FDC7 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5400703129C16CEB55676316 /* ConnectionInfoFactory.swift */; }; + 0DA69726D275D0F638CCA647 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 206401F7B7D85C2E662248F5 /* RegisterPluginsInit.cpp */; }; + 0DDAE46D5AD5AFABB7E57CF4 /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 065B949882E18BDEB1485FC1 /* Registry.ice */; }; + 0DF6D85D4D268671B58316D9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 069D6D873DB12806A4A9705F /* Server.swift */; }; + 0DF8356374955C9B994ED912 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 0DF98737208C5FF562D1B8B7 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C32566337C1211D2262DE5B8 /* AllTests.swift */; }; + 0E18F54173D74AD248051490 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 0E40C8BD89089A3DD6B11378 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A51F31391447E13718ECF7F /* UdpTransceiver.cpp */; }; + 0E7E65D715D1EE6037D10809 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = D16C752C89102255A084815B /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 0E80A8FA036E42C8CEF55DFB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 879BBBB407F7C87AA23FEFB0 /* TestI.swift */; }; + 0E95472F96C3298CB4401BAE /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB2A63494B776FCB8C2A0BCF /* ServerAMD.swift */; }; + 0EBFC940981F4AE361EEB597 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 0FBBFD2A689370DD3A659CB4 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59DDE7B5BC8DF0F3AD836E76 /* SecureTransportCertificateI.cpp */; }; + 10202B13383E9F4B8247203E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848049457E74A1C8BA343A1D /* Server.swift */; }; + 10531B948E68D655E91C0BB9 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7987BEF538197F4846537BC /* UnknownSlicedValue.swift */; }; + 10980ECEFA4EE39659C106A3 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 876D9FFC7CC704C0504BCB91 /* SHA1.cpp */; }; + 10CDCA1AC74E706DE81268F6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1925D4741CC08B26DFD1621 /* Server.swift */; }; + 11023A79BA4F103EE71D9704 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E98EEC1CF21AF6E6D15DE7 /* ObjectAdapterF.cpp */; }; + 110C0E024EB6945CD5EF31ED /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8110A6A605EABCCC95B70C /* Current.swift */; }; + 11157DE47B322BCA72356E25 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 1137853C143EFCA34A542E73 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A51F31391447E13718ECF7F /* UdpTransceiver.cpp */; }; + 1162E9441073AA4F6A9DF60B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 1165E688A7E875307F3B84B5 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17E2F182F3B77EE5965C3F59 /* TestI.swift */; }; + 11A6C2F6E64486155B43522C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F47009097AD17B454D6780A7 /* Test.ice */; }; + 11AC317527695E10D90CCF69 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 120C3846DF526D2CC01C6BFB /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07391C2F2F17BEF451562D52 /* FileUtil.cpp */; }; + 1220A09A233ADD19F5B63EE2 /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6CE4D7AF84FCCEB30AEE82D /* CommunicatorI.swift */; }; + 1236014A00E4E01EB379A952 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 069D6D873DB12806A4A9705F /* Server.swift */; }; + 126C849738AF6323B384E086 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 1277130DC1A6B2D74FC034FD /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 12E0C4C963DF5E2A484ED2B9 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4077CF4E039DFF0D6A22D3D /* StringConverter.cpp */; }; + 12FE3D9CFB6D51E9A2F18E5F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA38B6705BC845C06AFE3CD7 /* TestI.swift */; }; + 135912851A957FF91A21D58C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 139F52A98D1CCD15770A0116 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 13B99C54525FCB5D99763D7D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97E99C2AEE0BD9BF770175D4 /* AllTests.swift */; }; + 142C7687076AAC2C8C72C5DD /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B24624FBC0D46B2E71D96A /* CtrlCHandler.cpp */; }; + 14364F4CC32A010ABCF07B23 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 145F9CA921B6F461C83FCAF5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 1464A58CDA48D7EDC7455275 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80C813147DFCDC62BE24AD6F /* ThreadPool.cpp */; }; + 14746EC5AA5E6852B4CF1A09 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 147A63836AD5956D3ECEC6AC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 14AF48A72280B8084D647D69 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 14B4462CA4B8DAC51CB9DFAB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8131692BCB1B7FD451C01F8B /* Server.swift */; }; + 151FB7FCE5B2462B0BCF9275 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C38FF5F290399FD2A575BC5 /* Incoming.swift */; }; + 15306E705C2B126FDFB5E91D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7E3DA05928304B5AC220E13 /* TestAMDI.swift */; }; + 1551FC173CF39E02CDA0795A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 043AB17C4C069B93FA1E7D41 /* Server.swift */; }; + 1577BE946FF741D2C8024A12 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 1578DC0DA374E3252D218246 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 11093968C1A0F59042CD7D5B /* Test.ice */; }; + 157BCF7102A1CE6EEDEF5F29 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 15F7DCC09D0084F0822E576C /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B972748A398232A92FC108CB /* Buffer.cpp */; }; + 15FF52207BB3A882D4ACAD44 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E18A66D20FAB52A8017CFEC /* PluginManagerI.cpp */; }; + 1662721D0ACE871AF8158F52 /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CF2439A128695F8D08C60D1 /* IAPConnectionInfo.swift */; }; + 1679AD08C0C9C2C1F16F34D5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 1689503B258341EFDDE5BE0B /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 135C5232085BDE2604DFEE21 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 16A39D292B555A395D8043FA /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AB45D97CBDA0FAEFF65A6AE /* ConnectionInfoF.cpp */; }; + 16C00F03E881EF04CBC89C27 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 16C3FFA9C9C70E9616892007 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7966445621B396BC50FEFDAF /* Service.cpp */; }; + 16EF4C28DFF84F79444B5AF0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 89430DABC966D657CAA11785 /* Test.ice */; }; + 170C4CFE00C77FC6EA64CB0E /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2437C8A597A1CE438BEDEC3D /* LocalExceptionDescription.swift */; }; + 172ABB0861A43489EBDB94E5 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F94A73A9390A0C781AE4A324 /* IAPEndpointInfo.swift */; }; + 175A82560F6DAFF08F73E180 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 176FA0D9CAB57E17A1B6D457 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D097943C4BAC00D7111D073F /* PropertiesI.cpp */; }; + 178CDFD5D67D59A011CA09C2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5248E12595EE33145909A5D9 /* AllTests.swift */; }; + 179758EB67CBBAB3D244B28A /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92E658D78C379EAA3ED57897 /* SlicedData.swift */; }; + 17C3F67246D0DA4164CDF041 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 248A46E1415A6C79670BA017 /* IconvStringConverter.cpp */; }; + 17C7F68FAB5E3D3EFE5570B5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 17EE7DF3C192B5AAAA088776 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 1846C4B6AA0740E353A22F81 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59C46080488C352EA3B5E078 /* ServerAMD.swift */; }; + 184CCCDE951AC454A534BCE7 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 61F67EA48B40D8217803F572 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 1850762506CBCC3C99978655 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B570B45B289F7B6C00BF559D /* ProtocolInstance.cpp */; }; + 18795A6D49413B4DD3261EE1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E2557828DF2EF804720B5DF /* TestI.swift */; }; + 18EB373F03969A5726EFB480 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83F50C58BF53491B5A2519D6 /* SecureTransportEngine.cpp */; }; + 1903737A0771106A96717857 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 190E4907D07E6FEA0FDAEA14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 191571E443B658986B332140 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 953B936F6C84AD4413F0837A /* Connection.mm */; }; + 191F66CD348B3CBE7EE7FC2A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3089717B2724FA70B62A07E /* Client.swift */; }; + 19DEAFA41AC58B52F3270072 /* StreamConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9082BACB853874884EA0C9C /* StreamConnector.cpp */; }; + 19F695F5B7F0E3C2C25376C9 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CF5F747C703C2E26BCF3A54 /* Connection.swift */; }; + 1A0421740818EE069D0CBEC4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 543206D99800E30AAB5B257D /* AllTests.swift */; }; + 1A4A097C8ADF70A2A325F054 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 1A5155B3EE7D2B39FE40516E /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D731F95822FEE54CA546BF4 /* ServerPrivateAMD.ice */; }; + 1A9B2F9F146CEB43F63FAEE6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 1AB0C9E8A36E7177EB9A0B18 /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DAC9DE9BB0E7BD3C95B7C6D /* OutgoingAsync.cpp */; }; + 1AB8E91259048E7AB1876ED5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 1B7FB8AA326578FE9F3B8CB6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 1C12F304FB3287DB86E42E86 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A542194ED490F2D450FBE00 /* CollocatedRequestHandler.cpp */; }; + 1C48D09188909E044E72FC0E /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = A1D1560CEE1155BFFA1F9B22 /* TestAMD.ice */; }; + 1C9A0B565CB0C871EE3CABAE /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66EBE19FA36E23B906766A85 /* WSTransceiver.cpp */; }; + 1CA4763ACFDDB34614425869 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DB36F16689B898D5396DE89 /* SSLEndpointInfo.swift */; }; + 1CA9F9E21052C7E3766D8BD5 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9ED8B6B4E62F9D71D312B66F /* Value.cpp */; }; + 1CAB9532A1CC8144816E56CE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7E2F05661007A6DA5ACB1A9C /* Test.ice */; }; + 1CD23F61AA300C404E3EDF16 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 1D0BF0BD29DB97D61C0675DA /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50755E3F26CA6D9CC706FDC /* TwowaysAMI.swift */; }; + 1D0E1556A7EBC4B9E8C96B54 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B07EBD95BDC4C8F2D8598B89 /* TestAMD.ice */; }; + 1D1E1580C280FCD5F7E083C5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 1D6832EE3EF206F282899D92 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 1DB5F39372C7C1710966126C /* TcpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A9928AEF2ED41ECB96691AF /* TcpEndpointI.cpp */; }; + 1DDDC080F31CA429D204E8A6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 1DEDDDBE872929D306A93333 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E69FAE81A29C4237DF3017 /* TestI.swift */; }; + 1E143F0DD1082A6A97CF4F78 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9DAF4E6A6A0734D36C7039E /* Server.swift */; }; + 1E44E9A0E1B2863ED614F14C /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EDA02B0B44B95EBB2841F9 /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1E48B791A1865EB55D9284DA /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 164143EB3C130B0FA5630E59 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1E53540A9D41DF7E0577619C /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DEDA8D23AD6801409BD6D10 /* PluginI.cpp */; }; + 1E7FC6A3FCC753DC5AC50711 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = BE336D44832D3B066ECDDB06 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EBC94A168E5CAF124CF1E33 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 977C1FE11405DDDBFB5775A2 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 1F093643851476294E4DF1C8 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A500C7A9434EE6B7B6007E2 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1F72EE3605E5F8F02FDE798E /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 87EF303B4F48EAFE426CB832 /* Key.ice */; }; + 1FA9E9F00108DE8B22E3C509 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F7B24CE59A1F99506ABFA9 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1FFF30D901F9DB44501ABBF2 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 873DDDDA9C1B2827C2427670 /* OnewaysAMI.swift */; }; + 2013749497D255BA483932F3 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3A90857F1CD31FC2193C9C89 /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2050EC34186FAE6CB7F93137 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E00667716A1C103FAC5F4862 /* Glacier2.framework */; }; + 20CBBB3E58A156A8A7EE646C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 20CCF9BE9008173E34CA8E6F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B0A74331F696DA324EE12AF /* TestAMDI.swift */; }; + 20E0EC9B72ED0F188C3CA3A3 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7E5BC150A7E6BE558ECEA251 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 20F5F1E6B7E664860383BA12 /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 925C43BB0C5ED12BA8492EA3 /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2113DB3454929A04F837BAD2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A18E1A90F712D013DEBAD12 /* TestI.swift */; }; + 21350A5903CD4A412B2D52EC /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63EFA6A9F175C4F63D612486 /* TraceUtil.cpp */; }; + 2158F7AEE895DE6CB59909EA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 2167F438E88BB33B0802C78E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 278EEAB3360C6F45AF0BA345 /* Client.swift */; }; + 217A42A3C9F0FB086E7DA7AE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFE318F6CB3960BD10185486 /* TestI.swift */; }; + 21886F50FD91B7CEBF441CBC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 218C0D1499948F72482D3D56 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 21A64A28833A269C102EAE91 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B396B2BC10CC618A54890177 /* Test.ice */; }; + 21B635C52B34460B49A820BF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 21CE84AB07B159ED0708EA76 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */; }; + 21D837952971440E5EB330DF /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41F405B3502079EE7591BD56 /* Communicator.swift */; }; + 21DEE1870E95B360F902116A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 21F24DFA62F1079EB03EF7A9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 17D15FE0C359907D9E73E508 /* Test.ice */; }; + 223A3C463C46FFB1A1C7A729 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 224D05F8A42170C8A0D3E680 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 229EC81397D523D3DF52FB8F /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79ABC993469B3E7832F12F25 /* ConnectionI.swift */; }; + 22FFD2A3F595ED46AC2E0958 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7009D84B5EA234435C031C1D /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 233CB26F06DE77C312AA14F2 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99A0FA92B5EA56DCB41FC92 /* EndpointFactoryManager.cpp */; }; + 2380BC330BB2CA8F85F10D07 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 238D6984DA57079300B269A2 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6EC196F1092D9A40472D0F1A /* InputUtil.cpp */; }; + 23B13295432D1028F187ACBB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 24117E70E408C9928171B08E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 2423BCF238AC6AD81B79A39C /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 065B949882E18BDEB1485FC1 /* Registry.ice */; }; + 2428C45CF7F8C77251D81519 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 244925B2D61D7DD174403486 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = C42E3590E041824F3DCB8EB0 /* TestAMD.ice */; }; + 245F0A9E8E40E18DCE5687C4 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A38C5090BFC9479B5774794 /* ProtocolPluginFacade.cpp */; }; + 24764EDFE67BB619256DB8A1 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D98CE77652346A9B41B4831 /* IceGrid.framework */; }; + 25329B0342BB1E2B45C4589C /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 748EE12499322EB81A8498E8 /* ServerPrivate.ice */; }; + 256B36A1C395209309ECDD5B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 257953F655C3275C12048FE4 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 74C18BC9905EB667A2B8518D /* Test.ice */; }; + 25821E0287DE5D6CE40099AE /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08733FFC27D163E7A610C567 /* NetworkProxy.cpp */; }; + 2591DF29610555BC8F376399 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7966445621B396BC50FEFDAF /* Service.cpp */; }; + 259AFF67FB76BBAD098ABE7F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 25ED7008DC9D4BCB5FB028A6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 260604829BC6EF368BC06F2D /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */; }; + 2634FE2D98EAED5260B52D13 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = D447784B77B4412B60FCFC03 /* Session.ice */; }; + 263A1187B3AE86850045620D /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A590A314799E84457E6B723C /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2663574BFC2BBB885AD1EB71 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 267222EAE40D9DA3C9C180FC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 273746EEACA57E9DB33DA124 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238D7DBD94628C8E32119E5B /* IncomingAsync.cpp */; }; + 2755D9B24F7C3B1826BCB535 /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1026DA33ACD08DBDEFF45AC4 /* EndpointF.cpp */; }; + 2787D9A27A2FB75C90CC0FFF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 88E0874AAF62BEBDEAA903B2 /* Test.ice */; }; + 27BA709F3829857FAB6A5F06 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D64D7DE7F59927CC720908 /* ServantLocator.swift */; }; + 27E037D96A065A7E61ED5B6A /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A28E723AB3710F4B62B6B303 /* Exception.cpp */; }; + 282A071C3C1DFECCC4D2FBEC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1962FCE8C13AAA1EDB246D78 /* Client.swift */; }; + 28540770D6ED1942FA05F49C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 287C4F650BFB6E84F2D89401 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AEDF0E03E10480338D6773 /* ServantLocatorF.cpp */; }; + 288240CF1E01298A40C9E48D /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5AE3DC5C68BCF7B63AA95F6F /* Metrics.ice */; }; + 288FC7EBB1C6D1E680D6DB20 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF00A0B8905692CA5CB21851 /* Client.swift */; }; + 290964CF22C53C93CA53C304 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A558073E4D0060993986E950 /* Client.swift */; }; + 29137332A16C86118EDA1E2C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 292B54AD7E6FFDC4750B5A0C /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF3426F5F604EA6AD6D67FF /* Instrumentation.swift */; }; + 2967E3FB8D599E3DACF4AB60 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65ADD8278D737094AD85D73B /* InputStream.cpp */; }; + 29756C9388DCC609F53AA0EE /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 29BA36D3727D013D7AE3B759 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7E2F05661007A6DA5ACB1A9C /* Test.ice */; }; + 29CCCB984235038F1C23DE36 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2321024BC76972FDBEF190 /* Util.swift */; }; + 29DC460D1F6252227B4576F9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 29FB77B26D54802EBE61E134 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 2A15060058139663E7821C80 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 654CCEC599E0A9552262BFF6 /* RouterF.ice */; }; + 2AB59934F0DA4947BC3C7C07 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 2B1DFFB2FE624C8BA6D79DB0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 543206D99800E30AAB5B257D /* AllTests.swift */; }; + 2B5C13822C5D5F8528E32C06 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF6712CD8911F10A5971E9 /* Reference.cpp */; }; + 2BFB4191B7AA1DBC081B52C7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5292AB6BD873695825E1758E /* Test.ice */; }; + 2BFE2D6E0DC4F32FF78CFBF9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 2C0BD819B021415A2B55D8EF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 2C200E9E10BFA312E9E3F9FC /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 990C9617CC26B0961E520996 /* LocalObject.swift */; }; + 2C9B5DB375D29D5992FC98E3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4E2510934C92262E6420D091 /* Test.ice */; }; + 2D66BB6DC37B603C1EB91D29 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00AE826AA0B6D12DE8A593B /* Client.swift */; }; + 2D871DDE4EE8354CDB49D4DD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 2DA654F14912D79AB6E74AB1 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0F99C57D798B822698572DE /* BlobjectFacade.mm */; }; + 2E45A5F32909E7742E003A3E /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; }; + 2E5FECEFC67EFE074A3606FF /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 94750ED6B82F0F0C0E7243D1 /* TraceUtil.mm */; }; + 2EBDF9888333DC98CEC4904F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 2F4C30CB0E62214A96149D20 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 2F63AB037755CC57F2AA51F0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DEE9BBFD65F9CC3DD2E91F5 /* Client.swift */; }; + 2F65C8A9D24FB473F2B67BE6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 2F84AF1FAB750DE9223E27A1 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = ADEE63F9B0ACFD0462CA86EB /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2FD71F0C1BBFC6EA7B19AA9E /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B33CD6B53C345AC42929BAAC /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2FE5B3C36CA225765D9553A0 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 700EF0543089A6F52A51D7E7 /* HttpParser.cpp */; }; + 3022D517E87995A09D4BC94B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 303B30C955BE042B6D833660 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 615E8464EAAEA906EF0953DE /* EndpointI.cpp */; }; + 306A67A7A82BE1F3FD206BAE /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7A933D36328C77B1C03028B /* PluginI.cpp */; }; + 307ADE8C6F9D5E0713B0F416 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 308BD566EA908CF247563DBE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC8C2F843887BE982892CC85 /* AllTests.swift */; }; + 308BEFAA1E891A3CD98EC312 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 585EAAAD1DD963A893315BD6 /* ServantManager.cpp */; }; + 312CC70877750CBB72C8F7E1 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E67BFC86E01DD26387F81954 /* CFNetwork.framework */; }; + 3134465808476C2B9AF5A1E7 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 31404AAF6DED540CAE1C7082 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02C7023576B21B0B085453B7 /* Initialize.cpp */; }; + 317770D521D6E3A64899EBDF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2725188194A8D2470DBF46F5 /* Client.swift */; }; + 3198230FECD6917F1E54E9A5 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EDA8B46CA1A0F1CFC1E283B /* SystemdJournalI.cpp */; }; + 31D90E02CD1D5F627995B0C4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 320718ACEB70681D16ED8ECD /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 324A50B00D435D4EF19DB035 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31CCAAEF9A0D8BD94D02FADD /* DispatchInterceptor.cpp */; }; + 324DE06DE3737E59D4BA2BB5 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D8766C6DCAB7BABFE071D77E /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 32A5401BCBDC4CE0B1FF428B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C6D0DC6E65F5AE88EB1701F /* AllTests.swift */; }; + 32F457506BE4112346FC25C2 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = A1D1560CEE1155BFFA1F9B22 /* TestAMD.ice */; }; + 338D3B703A9596B37A9234FA /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D30AE0D95CE0B8136368F33 /* ObjectPrx.mm */; }; + 33E46E944D89D0AECF0AEF10 /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B05047B0A67FBB7433C356E2 /* OSLogLoggerI.cpp */; }; + 33F02CA9F06C15FF0FB76A2A /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */; }; + 3419C76A03E29460F60A10A9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6DE61C2A91224378F513C93 /* Test.ice */; }; + 34985EBE9C50CB06AA64D8BA /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AB45D97CBDA0FAEFF65A6AE /* ConnectionInfoF.cpp */; }; + 34A571D18E90FAE9D06B69EF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA2F862F15E33C84D1C777E3 /* TestI.swift */; }; + 34D7D317ECB499DB09F9F639 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 34DACF0F45A29B2FABF70BD3 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF5C1DB557360C9F09A15BB8 /* UdpConnector.cpp */; }; + 34E74A2BBD7B7EF71BAE9A2F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0205F3DB3D2A802285F11C8B /* AllTests.swift */; }; + 34F29F31D596DF12B4205EE6 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = ADEE63F9B0ACFD0462CA86EB /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 353989250D7F2EB99BA92BF0 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E29D53CB33DDBF93C9D34C /* InputStream.swift */; }; + 3553F05E74B10F4A5FE9C0AB /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 700EF0543089A6F52A51D7E7 /* HttpParser.cpp */; }; + 35593D1DC9FD62BACFE5C054 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 358524F4B7865BB4AD77E7E7 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2BADF2E71C4E31C2545EBD7 /* PropertiesAdmin.mm */; }; + 35C5A534D7AC3BB2AA85E2F3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 35EB6B845246A5713F9BBFD7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 35FFB634E9D15E5A4D978C9B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD7C6AB26C45ABFC92DDB247 /* Server.swift */; }; + 360716F34BAC49A2B2B4B1B8 /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43931C1667BC9E1EB9EBE642 /* ImplicitContext.cpp */; }; + 363083682BE458B2B4FBD36B /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31917CC0A13FF7C85862B2F0 /* OutputStream.cpp */; }; + 363EBEE0E3EA26AC3E81669F /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BC454AFBA15995FFFE08DBA /* Protocol.cpp */; }; + 3697A9BB3D6A517328B6906D /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F844C21E5E941FB173DD616C /* Instance.cpp */; }; + 369D5C2414ECF2E246C78737 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC33F4F1A32F4DFE8EBB12A9 /* PropertiesI.swift */; }; + 369EF3D5503B14589E768982 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB330C24F7E1E7F765F5B40D /* Client.swift */; }; + 36C3EC4400DDA8402ACC6AD8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 372F513478AE96A9B02E1E28 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CF5F747C703C2E26BCF3A54 /* Connection.swift */; }; + 3739D48403F7B64A879F8FA2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3979D5422F89387622D2651D /* TestI.swift */; }; + 3743992806B7567EE7D64284 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8131692BCB1B7FD451C01F8B /* Server.swift */; }; + 37969434CF573FE2E107DC30 /* Connector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97E37D3215AA9BB8DD87E7B4 /* Connector.mm */; }; + 379AFB2D0C62F742312A463B /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8288E572CC1605192A1F1696 /* WSEndpoint.cpp */; }; + 37BD728FB36E968AE9008EA9 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8044616B12D739F37275B163 /* Logger.mm */; }; + 37D41A2F3CF119CC39F8222E /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 79E564BB39566F3CAD8B878F /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3820134F1B35B1D1E92E600A /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B0C61085F906AE19C4D73ED /* Logger.swift */; }; + 38398D28689BE1AE27EFDB06 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF38F1C85E466EEC07C46EE0 /* RecMutex.cpp */; }; + 38629B5251A9DBA7CF2F98A3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0C70BDF91875EC6706AE12C /* TestI.swift */; }; + 387A307046DAE74D4B359D90 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 953B936F6C84AD4413F0837A /* Connection.mm */; }; + 392B692E590FF92F563A91BB /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4307C8F5994221221EAA83D5 /* ObjectAdapterFactory.cpp */; }; + 3953A1F48B71061302B559D7 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B2C1876280F446CCE7B816D9 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3995C27D07CB622FE667FC3E /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DAC9DE9BB0E7BD3C95B7C6D /* OutgoingAsync.cpp */; }; + 39989167034C3272CA3BD987 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */; }; + 399B3AE9CD7D52AA3D974DF7 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0F1C0C87F3118B4B5673E1 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 399E20453F0FFA4DE48A30F6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 714EC172B42055EC5BF98E11 /* TestI.swift */; }; + 39A91BF44E483F22FC43BA29 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0CBBD39BB0BC5077AC80C4D /* AcceptorI.cpp */; }; + 39BFDC307D3D2D55B1FDFB50 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5052AC8588F0B21D8BE3AD20 /* LoggerF.cpp */; }; + 39CD88EBD62959CEE9CBDF5F /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D62D9A3A91168A2CA52AAE8 /* Endpoint.swift */; }; + 39E05A2E3433BFBB8D58681C /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89C8AEE905086856134C860E /* Collocated.swift */; }; + 3AAAC42656BCF859E342EF5C /* libIce C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CD9C4FF6B42F14CAB807960 /* libIce C++11 macOS.a */; }; + 3AB574C22427757199B86CE0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BDD768C41EE98F60B1ADFD6 /* TestI.swift */; }; + 3AE2B565314D08D3FF70C3B3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A18E1A90F712D013DEBAD12 /* TestI.swift */; }; + 3B719984FE998AA0FB6BBDA3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 3BA7B0B434E5E02B9D750C0A /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A53A47B49B4866AB8EE69620 /* ReferenceFactory.cpp */; }; + 3BD7F3DCBF353531853B9787 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E73A61A877F2E6823B7907 /* TestI.swift */; }; + 3BEE80BD6285446BA2128FB4 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 397D6E5EA9E00485DEEDF569 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3BF9E4CC841F0653549B0515 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0F25A5B87F1D6D4DE443C3F7 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3BFE460683D8559E6A8101AC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 3C02844A7DAA17DDECD68687 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 248A46E1415A6C79670BA017 /* IconvStringConverter.cpp */; }; + 3C02A4508CD8276D0BC6AE3B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 3C28C8DA74A1C7BBB8E86B74 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = C9268509E17D41945A7D998E /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C37A292CA67085CEE563AB3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 3C6D235D0D6DE82E42EA4632 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = E73324B4E2A13F9EFC446206 /* EndpointInfoFactory.swift */; }; + 3C7DA4CD086A31722B14C6AF /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CABAAA81FDF2158619AA51BB /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3CA9BFC67A994E2EB8C16368 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 3CABC75D222B03775270DA8E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 17D15FE0C359907D9E73E508 /* Test.ice */; }; + 3D040DD5FCF7504343A2EC3D /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D731F95822FEE54CA546BF4 /* ServerPrivateAMD.ice */; }; + 3D0B4C2019194618E9AE34F6 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D075D441DE8B7DA8AA330C5 /* BlobjectAsync.swift */; }; + 3DACF73B85EFF125789135F2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 3DE78F344E8540CDFD5B4254 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0542741E3D6987968EDC3A03 /* ObjectAdapterI.swift */; }; + 3E092E58009E2A1614D58825 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 3E32C2500353BC9AB51D92D7 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7A0A8197B967AFCB434D4FE1 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 3E3965C73F6867AEEA31C03E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 11093968C1A0F59042CD7D5B /* Test.ice */; }; + 3E74B978028C2095E79EB6F2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 3EB594D7B8B6AC35A80F6A4D /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63EFA6A9F175C4F63D612486 /* TraceUtil.cpp */; }; + 3EB9B210291BB7557E04374A /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78B6F5E512D86BC4BDC8026B /* Object.cpp */; }; + 3EF0398FCB4591E2CDEA2FFB /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 01CD17E5927E812D8DD3EAC1 /* TestAMD.ice */; }; + 3F0925A3511C364792909CA5 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DB36F16689B898D5396DE89 /* SSLEndpointInfo.swift */; }; + 3F0A65C9CFB288F98E19799B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 3F118C82349E685F75AA3C92 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 3F75A94E0EAFD519FF1BB253 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B0A74331F696DA324EE12AF /* TestAMDI.swift */; }; + 3F924E5914B4957FE3C5D13C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDA15621A632772E70EF9DE9 /* Server.swift */; }; + 3FD5E94297204866ECEA47C2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 3FD8F288D9C3AED2649CA04F /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08397788AB99AF6585C187A4 /* Endpoint.cpp */; }; + 3FD9D1D3C10723136813DBC7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C0093783F41BC3D488E98600 /* Test.ice */; }; + 40094C3EAB990523863BA5E8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 40645501AF8502F567C28FEE /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7A933D36328C77B1C03028B /* PluginI.cpp */; }; + 40700CF27FB897708C8E3FC9 /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B80DE963F4B8A8CE7A086F4B /* ServantLocator.cpp */; }; + 40F02DB514B3FFB0C0706912 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BCB9D60D449CB2F6D37702 /* AdminFacetFactory.swift */; }; + 40F08703FA8A937D09706386 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC52095091A14C3F13099644 /* OperationMode.ice */; }; + 411E513F993E091CB1E2AC4F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 323B42FB5AD8FC12D8AE7CDE /* Server.swift */; }; + 412F52164B8A9A3BAF19EBD1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C265F58DECCDAB36E4CD6A6 /* Client.swift */; }; + 41359D3BBD5E94768E60773F /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2A2E598EF61DF473F6F1896D /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4198D33F3732415C4D92222E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848049457E74A1C8BA343A1D /* Server.swift */; }; + 419A77E8C424CB2E6558CA92 /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68FE5BEC43DB70CE488BA78C /* SSLConnectionInfo.swift */; }; + 41A357398D70D93257339E8B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C6D0DC6E65F5AE88EB1701F /* AllTests.swift */; }; + 41C87D63EE0B4F7119F1AFED /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29114B3DD6DE83F72CE4BEF6 /* TestCommon.swift */; }; + 41E039270E0805499570605D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5AD5A8F56E90F0DF1C96F2 /* Client.swift */; }; + 420559557CDAA1A07D378EA3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 014D0EE5D267E432DA21670A /* Client.swift */; }; + 42401834C114B2832139FF2E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB4A17E1D7AFC814618AE832 /* Client.swift */; }; + 42A86FABE59B3FE293E609BD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 43219B5BB970F1B55CE454AA /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09A12C7A25EC939F04AC6CB8 /* ValueFactoryManagerI.swift */; }; + 433753C318BA6309627F8436 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21D15D6C8E3919123C989D88 /* StringConverterPlugin.cpp */; }; + 435A0B3E906B0A91CC244021 /* Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = BECB73EA046F28161933053C /* Notifications.mm */; }; + 43A06A4A51A4558C24398F0D /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = F0DB50962CCFE3F777DFA679 /* Context.ice */; }; + 43A17B3FA08F9100FE050837 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B643EA2D961B5A046DA618B /* AllTests.swift */; }; + 43BEC394D6019C242A1965FD /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC8043E62037681FA6B23AE1 /* RFC2253.cpp */; }; + 440AA05E3A9604C6442EEA39 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36A3DD415DB5D47F3DD67986 /* Util.cpp */; }; + 4446DF6E15D87AE4822DB2F3 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 60C72DE758D50EEE330E214C /* Metrics.ice */; }; + 44F660CF3E288CADA03C9E75 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C536B3A8A8CD276788EE5A1A /* AllTests.swift */; }; + 4511CAA8C1392A439742B53B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA44D2D537AF18875B1AF6E /* Server.swift */; }; + 458A24FE79D3611E1E628182 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB330C24F7E1E7F765F5B40D /* Client.swift */; }; + 458E08E5F9B0736BA438BED1 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */; }; + 458EF9B014A0C7657AB8BD60 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 145489AECBBABC46B13BBD6F /* ObjectAdapter.mm */; }; + 45C087E01EE697577A42E469 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31C92631DA6DA4BADFE8C59F /* EndpointFactory.cpp */; }; + 45D397710D514A934510642C /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F0E8376C2AD9B7DDE63D13E /* Properties.cpp */; }; + 45D97239DCB34F0BBA90095C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 45FCAA660699E603A4291A08 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 79B44ECCFF08BDD9E83A886B /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 460166E775382AF887D095F0 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C520CFEA9E7F6ABF0BB8DEFE /* LookupI.cpp */; }; + 461823AD45D5FBE8BC6E9588 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5CA31F719AC415E991FB8790 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 46D59D884D1C0E7DC99CDD01 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 46D6175F2BA05EDE03AE80F5 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A84471908266098F39B2D842 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 470344329175105E480A6526 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 4714CE6112C1E40B9171D952 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A500C7A9434EE6B7B6007E2 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 471A21D3CAA2EC4182B2D2DA /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E07F2808B7ABBDDF36A6614 /* Controller.ice */; }; + 474229F67C964ECBC86FFE44 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B722E075AEEBEA3D471A855 /* ObjectAdapterI.cpp */; }; + 476EC843AE77537D626FB504 /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCC0E3729F4A0124693C97A /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 477F9ABD3ADD138056741BCB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A19D8983C8F5E4BF02AA82C4 /* Test.ice */; }; + 4786ECF6B6C742E04D341284 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 479CA0789624646DFAA32548 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 102C8EBB7B156230C64E8D84 /* IceStorm.framework */; }; + 47E530BA383A469D57F3AD2B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 480A168967EF40F23CE23AFF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C30A1A1C29802757EAC98B0 /* Client.swift */; }; + 487A5360D29674F9324E6A81 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 487D841EE5B42671944AE28A /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 24EEF303A9F8E4869A064E55 /* ClientPrivate.ice */; }; + 48D6D2B0D802B078BA554DA9 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7F6F6014A25D3EA8088D4D /* Collocated.swift */; }; + 49071D3B86174CFAA05E7489 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8C536D312B9304B2D44C277 /* IPEndpointI.cpp */; }; + 490A47684F9522DA0EB3B71D /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C4AA43D47071643F9248425 /* ConnectionI.cpp */; }; + 49301E54077F72EF4C17EF94 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E00667716A1C103FAC5F4862 /* Glacier2.framework */; }; + 4954FD2AC663B8C418A39FEC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 495A47AEE0C8881638302999 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC332916E29C4DB70EDDC09 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4963E6A2F3B94627BD3C2122 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD9A6F271F1D24C181329DEC /* ConnectionRequestHandler.cpp */; }; + 498FC7DC4E527F8D28C5B260 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80C813147DFCDC62BE24AD6F /* ThreadPool.cpp */; }; + 49F7CDDFA1E4CEBE301FAD6E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 49FE39730C4806DFB684E9CF /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 58A46161AB366B92156533D6 /* IceDiscovery.ice */; }; + 4A1722F2B254F5A7C51DC5C7 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E70AFD8DC408D542FD307AB5 /* Instrumentation.cpp */; }; + 4A739393CA5A4D3034091082 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09A12C7A25EC939F04AC6CB8 /* ValueFactoryManagerI.swift */; }; + 4AD65AA33D07C3122665572B /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85A919E5EEB0EC42C4BAF17A /* Options.cpp */; }; + 4ADF224365C51AD0BE287779 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BCB9D60D449CB2F6D37702 /* AdminFacetFactory.swift */; }; + 4B17AEDCE912654DF4F1B81D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D90B76046F6620FA39EB66FA /* TestI.swift */; }; + 4B333E3B2B1960B959792FF8 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78B6F5E512D86BC4BDC8026B /* Object.cpp */; }; + 4B35254B4B03D338C27D1448 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292810AEFEB4C7B5B49D1C98 /* RequestHandler.cpp */; }; + 4B3D0D86BFA72510F02B26BB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A321E613C2308FD17E0C2E6D /* TestI.swift */; }; + 4B698F4BA047FF7356D9D7FE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E498B9EBD907E4FAD93351F /* Client.swift */; }; + 4BF6604BC790A31F1C67EAB5 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29114B3DD6DE83F72CE4BEF6 /* TestCommon.swift */; }; + 4C1FE5673C9DCFCC6C521681 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EEC8F950880BA5D14A58ACE /* AllTests.swift */; }; + 4C3E68F02B2C9BD2C28A4D7F /* TcpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A72C73AF071E66FC94B9C561 /* TcpConnector.cpp */; }; + 4C49409A75762B82E4BE1007 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BEC5A912505A2D0739F41AE /* Collocated.swift */; }; + 4C654FF1266E98B906EDCCEC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 4CC927F5A9DB3DE178615D2E /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C14840E2D26E13A7C5D6AC9 /* OutputStream.swift */; }; + 4CF9B8FFCEC00582965D6CE3 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 540A7B3104F684B945E4E393 /* MutexProtocol.cpp */; }; + 4D11B7270E733B4273E0FA5D /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08F114BAF6B711459E6438F1 /* ConsoleUtil.cpp */; }; + 4D273679B85FF12E509E9C70 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFC58AB4E1C5B5964CD9F8D3 /* UserAccountMapper.ice */; }; + 4D4E22B2077F9937C031C5CE /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FEB045E2BE5B2791729997F6 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4D60D0B72D3DD34473145C7D /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6297BCCEF80EEAA0E5BB22A7 /* ConnectionFactory.cpp */; }; + 4D6DE19AB3C8A36450960C2E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 4D90AA0165758DCA6F4E5573 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B24624FBC0D46B2E71D96A /* CtrlCHandler.cpp */; }; + 4D9C2C7F08BDCED4939C8CA4 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2967E04C4326091B1910DB93 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4DEC9591C46508E168F67B6D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EEC8F950880BA5D14A58ACE /* AllTests.swift */; }; + 4E12B6B1E647A3BBD18FA3B6 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02C7023576B21B0B085453B7 /* Initialize.cpp */; }; + 4E52A5C6A682AD06A560D8B8 /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EDA02B0B44B95EBB2841F9 /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4E5F2B5F0189D7BFB17FD725 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFBB16D3C8E2986C4EB8D12D /* Network.cpp */; }; + 4E66421B983A52C43625EFF8 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = EFDF1AFD3FE00EFB8D0F40DF /* Properties.mm */; }; + 4E79D345C7D2A366F7D1715F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F90D823F008079DDF85638 /* TestAMDI.swift */; }; + 4EA6D84C757D5BE591C26638 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 4EAD393284CCF137A487D040 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 09486704DD4EBAC0DD6677C8 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4EC88C92AA0FC0A517F3C9FA /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE732A9CB17BA09E4B52F143 /* Transceiver.cpp */; }; + 4F3613958F9EE0BF75AB64C1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 4F4F9325271124005C734F42 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA44AC521456FBE35AC0D96D /* UUID.cpp */; }; + 4F9F8F0810481C81391D8CB5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 71C219D846F1B5B1FDD3578E /* Test.ice */; }; + 4FE9ACBEB15A45D193EF97D2 /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCC0E3729F4A0124693C97A /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4FF9C92D07C52E796BDDAB09 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 508534B8EF19FD5FEFDAB249 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 508E9C24CD856630898F556C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367F5C787891BBE1B298343 /* TestI.swift */; }; + 50E08BF2848339F9284E25ED /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D92A55DB4A2264AEEDC97D5D /* ImplicitContextI.cpp */; }; + 50EB15A0D6DF626B6EE6F2B1 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3159C7F956674DA8F082423D /* Base64.cpp */; }; + 51118B71D7D03F9E63CAAC8A /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28F6EBEDD7E3BB7D5EA9FBD4 /* ObserverHelper.cpp */; }; + 512B06413F6FFC00EF9E639E /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A9E418725A7536BFB1BF5F9E /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 519646A83A47B52F8323EEAD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 74C18BC9905EB667A2B8518D /* Test.ice */; }; + 51B543350C9BC2DEA824F676 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5124560E2C8D4CA6F32B121F /* ClassResolver.swift */; }; + 51C24535F43ED7568BD3C4D8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 521F04B4A86C343DF07CC55B /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5042D96FAC79ED86972DEF0A /* LocalException.cpp */; }; + 525F9365A999DFAFDBB720B3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 52858702FE194D8B2F3FAF99 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB841745F334BE569AAC2791 /* InstrumentationF.cpp */; }; + 52917832550139896AF4EB59 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 52C90CA2DDEC67D745293E34 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62BD73733BF5EF5838784676 /* LoggerI.cpp */; }; + 52E1DED4E3F543049FAF6EDC /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA8D617819FF713F80CE4A0 /* Blobject.swift */; }; + 53344552350017DCCC922BA5 /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BC454AFBA15995FFFE08DBA /* Protocol.cpp */; }; + 5359708A14D3FF5119AFCC16 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = C9268509E17D41945A7D998E /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5385A9DD587796EAE5FC99FE /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D652FBDA58B2A88C9EE9351 /* Proxy.swift */; }; + 538B2C4025C32BF487869AE1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5923FFFFBE73677A77330996 /* Server.swift */; }; + 53CA31576F7B085963D38037 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FBE489334E0ED23D774B550 /* LoggerUtil.cpp */; }; + 53DBB4E9FCB30BF1603CDD09 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E580B9D9CC76D53B7B18272C /* IceImpl.framework */; }; + 53DE8F7FBACDBB37D1DA9101 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = C42E3590E041824F3DCB8EB0 /* TestAMD.ice */; }; + 54393BFF1D83F3E981FC1B7F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 545A7478618FA7277C12C6C7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 54B208E550318720CF0886EC /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31C92631DA6DA4BADFE8C59F /* EndpointFactory.cpp */; }; + 54BAC7C6B5C92629D6E4DEEF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 746535D89AE46CEA581E57AF /* Test.ice */; }; + 54D449931AD3D789593DEADC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 5507F5352871DB46AA66235C /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3159C7F956674DA8F082423D /* Base64.cpp */; }; + 553233BCC9A149A6061D671D /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 053E3EA43764388B8A0304F1 /* LocalObject.mm */; }; + 555CB23B8C24752C88C5B6EA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 558AAB0D9EC1A2AE5831C99C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F32E0BF2C8C888EC8ADD08A9 /* Client.swift */; }; + 55F6F002E5AD62ED4950F9D0 /* StreamEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C91F21E0EC4A9AB95D7E569A /* StreamEndpointI.cpp */; }; + 55FA81E16C3E0400C3622932 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D50C3279384F2AA6BA994E0 /* Router.ice */; }; + 55FF45BCE5599DE5C5C0A73B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 5600EC0B8A694C907D5E70D3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DD7C821443F5E0607D4DE6F8 /* Test.ice */; }; + 5607DD25299446F07752A306 /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CF60B8793F769C8446821BF9 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 560834AD1A197083C8BE8942 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 561077E7B6A5882AF8646B61 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE4880C3857E46FDB8466BDA /* Server.swift */; }; + 56352A4EB5A199C170B61599 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 563FC8ABBBD015DE9C469C56 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6BCE84AFC62FA7351297E6 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 56455B5C8BE6ECA559D703C8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3548229461616CC182BCEBD /* Client.swift */; }; + 5646AF5748468E8367A8B2B8 /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8DED3CCF7ABF57CB61A22DE /* Plugin.cpp */; }; + 5662E8863A145D1CA6D929B5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 56AF104E15F9D407777CB4DD /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0F1E9B04036C7A1BB7003EF /* Client.swift */; }; + 56B312059BBB28373C60ECE7 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1F8FE1A0E059D0118539988 /* FactoryTable.cpp */; }; + 56DFADAF1768EA7556E0DDB6 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A53A47B49B4866AB8EE69620 /* ReferenceFactory.cpp */; }; + 56FBF3A9AB42F50ABC6D9428 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = E22C0DF633DFF1F13E530965 /* Twoways.swift */; }; + 570F91544266D4CADF784323 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68A1DF0813FCFD98C103C20D /* ServerAMD.swift */; }; + 57457D4037025A4B24CDAB0D /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 978FF0AEF23EE4E31F7CB0BE /* FormatType.swift */; }; + 57692E85AB50C3FA34A3DDB2 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3240EAAE31EEEE2C1A979DF8 /* NativePropertiesAdmin.swift */; }; + 577DA2B9A1B14718E505178F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 578E85F2ACBF6FE077558453 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 57DF162FC6CFAF34105C6347 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 583A5A675D444BA0B139780A /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 94750ED6B82F0F0C0E7243D1 /* TraceUtil.mm */; }; + 58731F415B7F60515B1023A4 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94FDF54850CD30639F5F2A76 /* Proxy.cpp */; }; + 58C83AB506FA69E086CBBC6A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AB42DA37A87829961E185A1 /* Server.swift */; }; + 58F654A06BB0AEB3759FA754 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38EBAF76FAFE72C64335C5B /* UtilException.cpp */; }; + 58F819BF5E32F0301C276167 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE732A9CB17BA09E4B52F143 /* Transceiver.cpp */; }; + 590B30F38A2DFC0CAEE33014 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F18DA127CFF3E191C1169914 /* Selector.cpp */; }; + 59139E6E230A3382F1E3715C /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43931C1667BC9E1EB9EBE642 /* ImplicitContext.cpp */; }; + 59227CB2B5242F8633F368B4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 595522F6099D05330116C450 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 96057073F871C88A9A437E6C /* RemoteLogger.ice */; }; + 59651F37E654C8823CEE0912 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0542741E3D6987968EDC3A03 /* ObjectAdapterI.swift */; }; + 596F9AFEEA41228FA193E260 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1C48DE3037CF4AE7BFD44F84 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 59EB77479D063ADC9B2D323B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 5A0055A5ABBBB0D459E43E5B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C0093783F41BC3D488E98600 /* Test.ice */; }; + 5A4FCB52A138384242EC41F2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2CC389E3BAC5C77C6DFC3B2 /* Client.swift */; }; + 5A65AF9F96CF139CF41BECDD /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AE623D75A48D156E4410F1AD /* libIceLocatorDiscovery C++11 macOS.a */; }; + 5A70341D32664BCC9FB6D922 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 35AE9823C665F00939098688 /* Identity.ice */; }; + 5AFA14CFA0D5B2602C25C72C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EB971FEE56EA31F7716F3AD /* AllTests.swift */; }; + 5B030C5AE731084E45F25138 /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEAA1F26027433EC0170129E /* CommunicatorF.cpp */; }; + 5B30A1C7106D235EECD371A2 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E7A74CCB2DED35DB6A1B93 /* Communicator.cpp */; }; + 5B335989737F66B47BE61847 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */; }; + 5B92C39D3E26B89A720C1108 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C37E81FE388B9D7FAB3C7C2C /* Server.swift */; }; + 5C953EC1A4D29E2D3FC233B1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 5D20890C7DD2538AB7E70DB3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 5D6852B070BF3BE58AC082F3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C30A1A1C29802757EAC98B0 /* Client.swift */; }; + 5DDF39A2B0E18D7BC0644CEF /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC48F3FEB7298E0C6FB9C9BD /* Oneways.swift */; }; + 5DDF47B7BB0721D19F9ADE42 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 60C72DE758D50EEE330E214C /* Metrics.ice */; }; + 5E8CB82E96183A00602D33F9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD76D50BBE665C06B63D8EA0 /* AllTests.swift */; }; + 5ECCA1C3D4BF2684FA6E05D5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C32566337C1211D2262DE5B8 /* AllTests.swift */; }; + 5F133154CDDD2309623DBA4D /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = E73324B4E2A13F9EFC446206 /* EndpointInfoFactory.swift */; }; + 5F4F659E54E72A3923BA7E05 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 5F90BC3E8434F37052D21747 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 5FB0C48B0BB085684D1D05D6 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08422DB9B8A6F7BEF0B9659B /* SSLEngine.cpp */; }; + 5FB5335AA0332FFE9F80D568 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 601AE55BEB7C928FFF774792 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C4E36FFCFD779F3349E0B808 /* Test.ice */; }; + 60627F6BFDB33527B71F7172 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */; }; + 60729C52D701EE8270A8BC44 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85A919E5EEB0EC42C4BAF17A /* Options.cpp */; }; + 60BB3AE8CDE506001E498270 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B9776ADB255F1973621C98 /* TestI.swift */; }; + 60DE445CD9C49D62E8D5521A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 60E1A08BF3DF777FE43DEF83 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2321024BC76972FDBEF190 /* Util.swift */; }; + 60E42FD8D5C59731BADC40C9 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 53A5BF7BE1E27774AE055437 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 60EACE4E3104FF8141E4212C /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = F8AFAAB080FEF12A06662C69 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 611D1E8C0AC59BE838506D7A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA6C41DF9E4B34FCEDC9493A /* Client.swift */; }; + 614BE0D924BF4D86313559AD /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D075D441DE8B7DA8AA330C5 /* BlobjectAsync.swift */; }; + 6160F950A58B054D12D963B3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 619741963C59007C6D22C8E3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 61C4E04534B59B12AA56F750 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1D68FCE2A561F7EC2ACDCAA /* ImplicitContextI.swift */; }; + 61CE9D15ACE85029660C1E95 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 61E7766D0ECA90A3969500B8 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD8ABC24EC401B3963964DB0 /* ServerAMD.swift */; }; + 623015A7A85F5AD04050E7B2 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 358B68004AEA4DEE9CC643DF /* ConnectionInfo.cpp */; }; + 623D02D1C7E5691F89015FB8 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 654CCEC599E0A9552262BFF6 /* RouterF.ice */; }; + 623F35B1EE9BB8F4AEF24A81 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */; }; + 62572F0A0E64E238AE4041ED /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 62B29A312B8F55B653D9664A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 62F5B617CB223589C7FFCE33 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA44D2D537AF18875B1AF6E /* Server.swift */; }; + 63469B17D875A7DAAF873C97 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 63568851267BB6756FA339EC /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 64826F8AA2F1B443C0AEFD5C /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6361D79F77A9F19E3564564B /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B972748A398232A92FC108CB /* Buffer.cpp */; }; + 6377BC79AD4C6C18CB585F67 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 688574A0631176251901C5D7 /* ServantManager.swift */; }; + 63A6AE967BECEE6E91432B91 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 63C4D368D4E7394F8C269507 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3D9E5A1FEF7356081B23255 /* SlicedData.cpp */; }; + 63C6AC701FD2F02A5B60DFD8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B396B2BC10CC618A54890177 /* Test.ice */; }; + 64133ED7B6EDF761D206478F /* Transceiver.mm in Sources */ = {isa = PBXBuildFile; fileRef = DE0FE67A381FD4FD9F7DD015 /* Transceiver.mm */; }; + 641C43C2F02D34F279B4CEFF /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C37059709E53268E7C14372 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6427196F2B0891F6524E55CF /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99A0FA92B5EA56DCB41FC92 /* EndpointFactoryManager.cpp */; }; + 646707A36F91F0631B887A31 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 646D198397E749966DB40E3A /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02CB2CD05CEE1E2166255186 /* ConnectionInfo.cpp */; }; + 648D8D01FBDDE620653F907A /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E35C99046C1F715F4B4E5F /* Initialize.swift */; }; + 64FB14BBAB1B754BA393BF06 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17B4B38AC0363CAFA24A9E4 /* Shared.cpp */; }; + 653850FF0CFE825110E58AA0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 65982AA7C6095AD8475F8D4F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 65A8AF2CF8EE9372DA44FE37 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFC58AB4E1C5B5964CD9F8D3 /* UserAccountMapper.ice */; }; + 65BCEDE5DBB4CD4617C6FF7D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EB971FEE56EA31F7716F3AD /* AllTests.swift */; }; + 65ECC0458CBF7904A506CDAE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 661618CE4D8FF002E5AD6890 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 19AA73005971E2B69755A399 /* ServerPrivate.ice */; }; + 663230989A239EDB681EBA7C /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79F3ED290282BD409F3522BE /* SliceInfo.swift */; }; + 666B594E9BB773EA22623170 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CE3EFB47219D60018ECBCE1B /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 66AC2567B6670DC2A83953FB /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52B6920962BB40484351B828 /* LoggerWrapper.swift */; }; + 66EB6C5BEA8ABD459CD1C5DF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 6702C6BCF912D1445DFA5380 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 671518A946A0761D8E02FB3E /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 671C5DC6CF676112E82E6E28 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 672AFD89DDBD201DEB56D8D7 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = F0DB50962CCFE3F777DFA679 /* Context.ice */; }; + 6736B7FCD6A2E3A641B0BEEE /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B9B7D2C864B2D316ADE535 /* Exception.swift */; }; + 675820CF4F643F83204FFA1A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE7F0BCED1A80C49DD69EED5 /* AllTests.swift */; }; + 67877EA20DA6A2E11F52B79D /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 164143EB3C130B0FA5630E59 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 67958EBA770BFD3838254333 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 44B4CA994280A6DA16BE5B80 /* Test.ice */; }; + 67F343A920ECA0C6C8F798A2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 681283AB3F4D3C57BA2DAD4E /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B80DE963F4B8A8CE7A086F4B /* ServantLocator.cpp */; }; + 68337CBF05C2DA45B34BCE3A /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7847B096AC0D34F6A6A83F0 /* TestAMDI.swift */; }; + 6833FA2587B83E832DF0757A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 6835F2FEC5F2CD79B4938E7F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1D0DCF81BE7E3A82E4C8306 /* TestI.swift */; }; + 6897437304C4DFDB71F0B384 /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8288E572CC1605192A1F1696 /* WSEndpoint.cpp */; }; + 68BE71A6D1A2000E1CCF037E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57CF891C000E31222368C816 /* Server.swift */; }; + 68E284BBBE9AF0BDC7635E8B /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F07B1686893281A6AD084966 /* ImplicitContextF.cpp */; }; + 68F668E656345A7D9F3D99A9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = A09BB09CBD110F5A9A95C3BC /* Server.swift */; }; + 68F86A82194C13E7CCC45FF2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 69111FD172BDB8E174C7365A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 6918229332F5D5BA6B82D7CD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DF443F93429C08880793844 /* TestI.swift */; }; + 6923B7F3B5833B17B1444A9F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 770F579715615C54D53ABF72 /* TestAMDI.swift */; }; + 693E823DD3F152A5CADF56ED /* libIceDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F20CF9182023E2AB477F4A39 /* libIceDiscovery C++11 iOS.a */; }; + 698D678767BF41CA11BF7572 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2591D7770A25B731A7D961B0 /* Server.swift */; }; + 69D52BE18FAD6179243A7A8D /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; }; + 6A0314BAAAB1E1D5321D0E26 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = BE336D44832D3B066ECDDB06 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6A2B255A91EC1F933473BFC4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 6A2E71B1352408738F0F77AB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 6A3DC36E88854D99A7DF1CCA /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 346EA4E8BF5EBE984DAF0872 /* TestAMDI.swift */; }; + 6A40774D61D6CCC937C6AC31 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A47964EE995DCCF12193A7C8 /* TestI.swift */; }; + 6AB4C973B7D16E7747B38FA1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 6AF5EB3E096847C86D409473 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 401D314CEA8878CFB3F1674F /* Collocated.swift */; }; + 6B247546FF2E0F8C92352C81 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6B2E2425DCEABA5C1EA2DBAE /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4321B1EC69E230431008038 /* Connector.cpp */; }; + 6BA413B384BE48782FD4106A /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 63DF48DC6AC320881942F9D2 /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6BCCFE670D1A1A869E4F8EA6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8188FC2EE67FAC79B3DDD184 /* AllTests.swift */; }; + 6BD827012FAC4AC28D8F3086 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3DCD2329D6CC0E7D1A67304 /* SliceFlags.swift */; }; + 6C1F10D34E51D607BD0F87B3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 6C3C0602B1B8FF69F18518DF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1D0DCF81BE7E3A82E4C8306 /* TestI.swift */; }; + 6C9FA9D2501970F08B561AE9 /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA03B082E40C34B986B183E0 /* TraceLevels.cpp */; }; + 6CC623094D0967F02F04F651 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59FC3375D6E90AE4E3134B50 /* CommunicatorI.cpp */; }; + 6D66F60AD807A0D621B4FCDA /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2981BE0BA9E535D4E8738D6C /* SecureTransportPluginI.cpp */; }; + 6D75D9051192FCD409BB41B4 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F15FB749EF455BD7CA108204 /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6DA0B9BB176F6BCCB270A5A4 /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = E400CBFEEB7A5C82AA30E765 /* Process.mm */; }; + 6DB6A62110660F912E3A425A /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27196B5B3415DF6ED7D4A3A5 /* Properties.swift */; }; + 6DDF0843AEE85A7BC67F6D1A /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F546DCC7DF65F50BED56636 /* PropertiesAdminI.swift */; }; + 6E0F4BA532FBA5A46F06B1E7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB4A17E1D7AFC814618AE832 /* Client.swift */; }; + 6E3FD5DBDB9B448F1EDA89D7 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC2D223A5415E0568A67FC72 /* SecureTransportTransceiverI.cpp */; }; + 6E6B63060307B772C99F21B3 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7987BEF538197F4846537BC /* UnknownSlicedValue.swift */; }; + 6E9B566339D8E8339FD384F7 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 6EB55CA35B0042F8907ABB71 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A26B127504B1411F9A44E917 /* Time.cpp */; }; + 6EB9599AA1A7328CB5EEC889 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */; }; + 6EF44198D76492489EEA8B9D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C536B3A8A8CD276788EE5A1A /* AllTests.swift */; }; + 6EF5810F0D6DB1CD94969C3A /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C4AA43D47071643F9248425 /* ConnectionI.cpp */; }; + 6F54ACB5C499213640C15344 /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C4920C3131DE43086740705E /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7073B348FF70E9085EB2A77D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 7095D0B562AF1399B8AE8E1C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D75F8E6BDE3707D84F90250 /* Test.ice */; }; + 70AB12AD44C972293921A90E /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C4B3812EC86A075A591325CD /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 711B3416FAF9FFD66902D667 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EF9EA920CDA248C30B741E3 /* Collocated.swift */; }; + 71580E5F4321782220583BF6 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C291B1D3FF41716E62FE1B66 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 716BA3AF8285604C0993408F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E73A61A877F2E6823B7907 /* TestI.swift */; }; + 71B3704D98093EDE2A1731A9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 71E7FD03D2194AEEBD0238D4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 71F4D472DBAEE211AC348305 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA44AC521456FBE35AC0D96D /* UUID.cpp */; }; + 721ABF1FCB1E91E0D979C9EE /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC8043E62037681FA6B23AE1 /* RFC2253.cpp */; }; + 7257C43AB0E12E76E38DB6C2 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 07B40D097E062D485AF3F394 /* TestAMD.ice */; }; + 7284EF59424060A58D2734D8 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F294A7B72FAF1011CB416FA /* AllTests.swift */; }; + 7299858CC411A3BA51EA12CB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1925D4741CC08B26DFD1621 /* Server.swift */; }; + 72BCBF10AB3B8FC119868A22 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3D95F9289578400C8DD7B0E /* MetricsAdminI.cpp */; }; + 732C986A3AE8629CAF57AC36 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 7374F6D453C0207902F43CFB /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 681AABFFA977FBCD95B43311 /* Instance.cpp */; }; + 73AFC54F4D4336070DC87303 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = D16C752C89102255A084815B /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 73B3F11FA4E2E153E1EFCA77 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 73BA33E3EFB8A6AA4EA8370A /* libIce C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EB11AE63135A23028AE12F90 /* libIce C++11 iOS.a */; }; + 73BA63A3CC9DCC9D20E64B64 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E7FD5CE013170C15DA09A31 /* LoggerAdminI.cpp */; }; + 73D741CD871F61247D2012D1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F91A4DE4998C11CD9FA265 /* Client.swift */; }; + 73F09AB536E76818864ACC32 /* LaunchScreen.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = C045207B0CFBEA2826456197 /* LaunchScreen.storyboard */; }; + 74179549A179708EC1F30CF7 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 7451CFE0B0DDF0536B287153 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF698C2D5D97DCCFC7D85451 /* Endpoint.mm */; }; + 74629744424689F013519A6F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 89430DABC966D657CAA11785 /* Test.ice */; }; + 747A63095FC03440BD795862 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD8ABC24EC401B3963964DB0 /* ServerAMD.swift */; }; + 74B6D0915C42A96499E0191C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 74FC1F8681CD55379E111F23 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DEE9BBFD65F9CC3DD2E91F5 /* Client.swift */; }; + 7506819774CF24B7691C32E7 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = D26101A37129FDCC7F02DE6A /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 75069E7FC7D00B2A003CD5BD /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38D102721EA6D00E46DBB85E /* Cond.cpp */; }; + 751560A68722B308F6C21119 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */; }; + 75182724EA5355E68E9DFFA6 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B6B06FDB50B258D64C0C1B5 /* Value.swift */; }; + 7535D4607A3ECC358A421FEA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 759A80CED591A7990CCF8CD9 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0F77C35360BC168A8EE3C849 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 75DF6D77AB9E216E1BFB7164 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6232FC65AC888C2919A29D4A /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7628B8E4495A90D8508C3459 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B8AD33CAF2513831F190948 /* Server.swift */; }; + 763D4BF738EB436A2FBA4012 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 769C4E885E7E13D63F5C9184 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50755E3F26CA6D9CC706FDC /* TwowaysAMI.swift */; }; + 76DF8DADFFAA355F53083DCB /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8EC734E3ABEC1B9F8ED7E1C /* ServerAMD.swift */; }; + 76E928740B0374061A0B2E4C /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD917785198D9351B3909F60 /* ImplicitContext.swift */; }; + 76FEC9B75CEC89A42B71C16A /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC52095091A14C3F13099644 /* OperationMode.ice */; }; + 77129808429C81C2AB037481 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = EE56A762315F2E6B866D2172 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7726D14089BB24F5E567F6B6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDA15621A632772E70EF9DE9 /* Server.swift */; }; + 772CA57DE3BE1FE47025F228 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 7735AFBC7F28D830774C507E /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A303F7D2349A2BAAF06FBA7 /* PluginF.cpp */; }; + 776BD0070DCDF3131A59D788 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5292AB6BD873695825E1758E /* Test.ice */; }; + 778723B748D759EFEC60C0F3 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48FF8C7FFEC75A3D1F598354 /* ProcessI.swift */; }; + 7794C7FD958B1B638FA39434 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292810AEFEB4C7B5B49D1C98 /* RequestHandler.cpp */; }; + 77A5A85603F8961F35C8AF6F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 77CC7C7DEDF87C5E2B010FE7 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E580B9D9CC76D53B7B18272C /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 77FAF4CD8EBA344B63C2D87C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1570CABD05CE88D0D442FBAA /* AllTests.swift */; }; + 78062257E13BE39337E96538 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82B698D2AA00D8433E829B6C /* DefaultsAndOverrides.cpp */; }; + 7853F06192F28AF6AB408E41 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 786328BEAE17891594F5B83F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50727E8340FCAC13BECEC831 /* Client.swift */; }; + 78FED968098DFDB32666A53A /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C0AF15B4EEC648C875D97939 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7918C758E9FC4D94FAF9C75D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE7F0BCED1A80C49DD69EED5 /* AllTests.swift */; }; + 79503EB61471FE7225C2CD32 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7101B26D06079EE4319D8BB4 /* UdpEndpointI.cpp */; }; + 7960BAF96A0FD68992BA64D3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18CE168298CE80608E0B6DCD /* Collocated.swift */; }; + 7984763859B1132CEA8B6C17 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D50C3279384F2AA6BA994E0 /* Router.ice */; }; + 798F9ED73855A18315650195 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE85799B50D901E7EE91B724 /* Communicator.mm */; }; + 79E24AF1F29BCC8EB16F5797 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 876D9FFC7CC704C0504BCB91 /* SHA1.cpp */; }; + 79EE0B3F30DD627D8DAE8E41 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 7A003E7134D70BDE825BD906 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 746535D89AE46CEA581E57AF /* Test.ice */; }; + 7A7A4C7A80706237CFE714DD /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8B3B91893CDE2FCE46DB8C3 /* ValueFactoryManagerI.cpp */; }; + 7A8FCFFFBDB5348A80FC9EBC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA2F862F15E33C84D1C777E3 /* TestI.swift */; }; + 7A9DB38700D4C6ECE4AE53F8 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = E597DC759086A689098B811C /* ServerAMD.swift */; }; + 7ADD4BB8DBFDDB60947DB5A1 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF38F1C85E466EEC07C46EE0 /* RecMutex.cpp */; }; + 7AE9BBD2B5985BA1C9A8A9DE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7896AFF2A6A7C311E7C0DBBA /* Test.ice */; }; + 7B157DCB3C603A7EDAF35E77 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AEDF0E03E10480338D6773 /* ServantLocatorF.cpp */; }; + 7B311962159224E81FF3F6C9 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5507FC7D9307D1B742D67CE8 /* Clash.ice */; }; + 7B32D189930B4349E8C9426A /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 102C8EBB7B156230C64E8D84 /* IceStorm.framework */; }; + 7B3325A26D5CCE04158FB480 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F47009097AD17B454D6780A7 /* Test.ice */; }; + 7B4093DC56456EF617CD7CA9 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B570B45B289F7B6C00BF559D /* ProtocolInstance.cpp */; }; + 7B418B8458096FB5EF4C5D1E /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 63086CCB688E11EB58FA8847 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7B531C9230D86E2F61BCB0E8 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = AFF94B5C18B237C5BCC2586A /* IceStorm.ice */; }; + 7B6916A88A0A037EF164D18E /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 19AA73005971E2B69755A399 /* ServerPrivate.ice */; }; + 7BE8AA23C233405C278A22A5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 99B5902E632A1305ED246DA8 /* Test.ice */; }; + 7C70271D70FE7C71CA4E6A2C /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C90B96D25DD719CC60E168 /* Collocated.swift */; }; + 7C8E9F28A7A5E23739A4E5AB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721BA6A8AE743A4B2FF95A5 /* Server.swift */; }; + 7C967026CF877781CF90F55E /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DF969510683D898EFE4084C0 /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7CB5BE628EB7893853BA789E /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE017E010C3B64228A0758B7 /* Connection.cpp */; }; + 7CC88F908182D3BC48437B75 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 7CEE74EF0FFA0AF462DDC54C /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5D80A2F30612934EEB5E8AA /* WSAcceptor.cpp */; }; + 7D592EE68A7CD7F0B34884B7 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD976A623B36B1B8928E4F84 /* Server.swift */; }; + 7D9A72846D731A74B0073C3F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 7DE7F63B8B17B7DE9CC53DA8 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 748EE12499322EB81A8498E8 /* ServerPrivate.ice */; }; + 7E1CEB886804B90A520C9F06 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 58A46161AB366B92156533D6 /* IceDiscovery.ice */; }; + 7E3651954058DFC1CB0759F3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66677779E376C6BC1CB257CB /* Client.swift */; }; + 7EC26B1196E7D01F695B4BF7 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 7EFB948C8F71C0940154D850 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD9A6F271F1D24C181329DEC /* ConnectionRequestHandler.cpp */; }; + 7F871A8C8D80A4C9D8942B16 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 80295B329F47AD618475BF99 /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B68896EE6832BCFFC1CDEA85 /* EndpointSelectionType.swift */; }; + 8038411DFDFD19DB768C7556 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 8044DF34E086E9207057E6AC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 807A23F8A58BC92EDCAC7CAD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7771C966A95A75444CDD9607 /* AllTests.swift */; }; + 807F919519C4AEB2EBB5114E /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 35AE9823C665F00939098688 /* Identity.ice */; }; + 80D6A0F053834FE292E3DE0A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC8C2F843887BE982892CC85 /* AllTests.swift */; }; + 80EC62E70535BB96C57F58F9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C37E81FE388B9D7FAB3C7C2C /* Server.swift */; }; + 80F1CE0419339022678607E2 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC33F4F1A32F4DFE8EBB12A9 /* PropertiesI.swift */; }; + 81047873254ADAD8E58FEEC2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 88E0874AAF62BEBDEAA903B2 /* Test.ice */; }; + 8116182CE642218EE0297F19 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD976A623B36B1B8928E4F84 /* Server.swift */; }; + 8128D9ACC369D6F1247B8910 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6297BCCEF80EEAA0E5BB22A7 /* ConnectionFactory.cpp */; }; + 820CF3DC6B93BFB98EFF91A7 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D98CE77652346A9B41B4831 /* IceGrid.framework */; }; + 8237C181EE1CB5F17024B315 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 82405BD150C77B92AE21D727 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4DF3479CC49100449C494653 /* Test.ice */; }; + 82F8761B8B726286ECCC2853 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */; }; + 8329CA5C26C5132A2F162417 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 834066F3E00F8A8149DDCA41 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 834246E0E89FF486CAC79A89 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D92A55DB4A2264AEEDC97D5D /* ImplicitContextI.cpp */; }; + 836ED348F8A9705B34D613FA /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7342B8BA9FB0E6A989E0B06 /* ObjectAdapter.cpp */; }; + 838BFA0588472EC15995940E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 83B35AF48C1D0E68EEA97C55 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 83FEEB974C87EBDC8EE7223A /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */; }; + 841BFE0613018387F3873E99 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A7049303E4CC0D79196E584 /* EndpointI.cpp */; }; + 84226DD2E2F66765A7D0143C /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6EC196F1092D9A40472D0F1A /* InputUtil.cpp */; }; + 845053DF8321A58CE6067BA5 /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D9F47C5F7E714936213E615 /* Current.cpp */; }; + 846C177F4AD7FF27D8B66A83 /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A8AFF8F311501C1902F407B9 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 84AF4F009CF9E16EBEDCAC3F /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CF60B8793F769C8446821BF9 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 84CC6162A6BBE3FC8B845E15 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59DDE7B5BC8DF0F3AD836E76 /* SecureTransportCertificateI.cpp */; }; + 84D4C8F119C9EE1C09FD9884 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B80662080CB423CE83029C /* AllTests.swift */; }; + 851FA14B9E98213ED8975304 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D82A4CA54A5484DD964DFE39 /* AllTests.swift */; }; + 853CD8ABEAC9F6D9859387F1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 857674BAC5C3DFB88B3B4ABD /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A28E723AB3710F4B62B6B303 /* Exception.cpp */; }; + 858D29278C64E90B53093ADC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA38B6705BC845C06AFE3CD7 /* TestI.swift */; }; + 85D9AF5104CE3F3E362D3C63 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 978FF0AEF23EE4E31F7CB0BE /* FormatType.swift */; }; + 85DEA81A55CB3E4104D24E29 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 862F47193B485FAEA9801BB4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97E99C2AEE0BD9BF770175D4 /* AllTests.swift */; }; + 86480249061BFEBB3EF8D4AA /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = FDD74C1D5D68EB2943068DA2 /* Version.ice */; }; + 8655F3C92CD573B2D95AB505 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 014D0EE5D267E432DA21670A /* Client.swift */; }; + 865A4A6FB3D81631DEDDA54D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 8669F90A254F560CED2D2D2D /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */; }; + 86DFE4BDC8937108E605E755 /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 614B4EEEE8D6EC764E4CB54B /* FacetMap.swift */; }; + 87072B81D09CA7998317AC57 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB5D02829AEAB23FFABB5B4F /* WSConnector.cpp */; }; + 871F735E7EAB7F895E82DC66 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 87224A54B03EFE9729904FFF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 876B53FB4F46CE95E08476AF /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DFCE210A780A814AEE2A57AC /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 876BD275061F47E61178094E /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 685C908500567FED302500C2 /* ACM.cpp */; }; + 87A06205244785BDD42529A1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C265F58DECCDAB36E4CD6A6 /* Client.swift */; }; + 87B9C072C30E2DBED33BB8ED /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC6EBC91E36FD1E5EEDDEA5F /* Collocated.swift */; }; + 88252DBE558C77A619038DA4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 88345F83E1301D2FF1C1D263 /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08F114BAF6B711459E6438F1 /* ConsoleUtil.cpp */; }; + 886792273848EFE3371AF4A0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 88C496A9001C639C933AC98B /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = FDD74C1D5D68EB2943068DA2 /* Version.ice */; }; + 8905F8A712324754F451DFFF /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF6712CD8911F10A5971E9 /* Reference.cpp */; }; + 891AB334019BB7E8BEE85BA2 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 042B09E718B4AF7FEC08C931 /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 892E2CEDBBCFBCA1F9E5E748 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 8932803C962A9FC5FE8EB618 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECB41582845B643446FFF5A0 /* Collocated.swift */; }; + 89440AF05FA7CC8EB88BE86C /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE017E010C3B64228A0758B7 /* Connection.cpp */; }; + 895DBBE4ED47839BFB80E431 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2110B3C9B21AE73C0BD6ECBD /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 89A18A72BB4884C905C3D894 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 737C8B48855EE4342128C161 /* PropertiesF.cpp */; }; + 89D3ACE4EC733E3DB21C14C3 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08397788AB99AF6585C187A4 /* Endpoint.cpp */; }; + 89ECDC747A165854E1A4F971 /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66EBE19FA36E23B906766A85 /* WSTransceiver.cpp */; }; + 8A00939F0CD533282212A9B2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5AD5A8F56E90F0DF1C96F2 /* Client.swift */; }; + 8A2FB80DAF4057C43165F948 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 8A3155B3F4C4D042241E2AA8 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3573CD4E6D9EB58A37C88DBF /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8A7860F817320C324C588ACA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 8AA0A446F9EF18611E79D8D1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 8AA8293CDB629E0E92F460B3 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3573CD4E6D9EB58A37C88DBF /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8B18A9E9A12346C8ED49B6A9 /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5D80A2F30612934EEB5E8AA /* WSAcceptor.cpp */; }; + 8B6404C0117C60D6BCFDA8CC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 8B6DB53E884B0623F78F9B96 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D097943C4BAC00D7111D073F /* PropertiesI.cpp */; }; + 8B6F0C3D7A777167E4FD4924 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80BDC773852878159B385AA8 /* Server.swift */; }; + 8B7711A7F655C504F16447D7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 8B7CF432027FB4D652E66F08 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 71C219D846F1B5B1FDD3578E /* Test.ice */; }; + 8B86EBBE72B4D6104A5FCCCF /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5923FFFFBE73677A77330996 /* Server.swift */; }; + 8BBC231865D38CC433D929BF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5248E12595EE33145909A5D9 /* AllTests.swift */; }; + 8C3C0F4EF3C2B59801C65447 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E829B55DFE27094ED4A1790 /* EndpointInfo.cpp */; }; + 8C3F661FBF62FDE58807D739 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7401C2CE09807582FF593E /* Client.swift */; }; + 8CD7C7F8CD5CF7929BE18A81 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B848104E80383628C5A2CF73 /* Test.ice */; }; + 8CD7F5964EAE861660D6977A /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE85799B50D901E7EE91B724 /* Communicator.mm */; }; + 8D0FF5C22DF55CE32D75CC84 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C520CFEA9E7F6ABF0BB8DEFE /* LookupI.cpp */; }; + 8D18DC057A5D72091A6DFBE4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 8D4BD3FB0759473D2489E8BE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 8D64EA1EAAFC0C7A0F94A5EC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9DAF4E6A6A0734D36C7039E /* Server.swift */; }; + 8D69DDFC431A064DC4647F12 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65ADD8278D737094AD85D73B /* InputStream.cpp */; }; + 8D780C8CBB06009CA2D3F5C7 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A26B127504B1411F9A44E917 /* Time.cpp */; }; + 8D86DD29625A7FAC9080713B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 8DA3A5C96FF54B27DA669C22 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 8DB73EBF4C2845D055412A18 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C38FF5F290399FD2A575BC5 /* Incoming.swift */; }; + 8DCA1D0474EC0432EAC54AAA /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 259E1CFC2597003F39AF9275 /* CountDownLatch.cpp */; }; + 8E000FA58A8BF9C987EDDF46 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 990C9617CC26B0961E520996 /* LocalObject.swift */; }; + 8E03445E92185967E8DD12C0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 8E5245DB3069B0D996247CFF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB7DEF69D88E4196C6C38C6 /* Client.swift */; }; + 8E54196DDD5049D8DAC54C1E /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B05047B0A67FBB7433C356E2 /* OSLogLoggerI.cpp */; }; + 8E97031B28FCA915CDDD4A5E /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8ED527CE33CD5E98D4395F3B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 8EE7680FBD0E3B74CBF47E27 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A14118D0E57AF0A5F37755A /* AllTests.swift */; }; + 8F402940833F34C3FFDBA8C3 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 07B40D097E062D485AF3F394 /* TestAMD.ice */; }; + 8F5D7506EF6BCB3D883E0303 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = AFF94B5C18B237C5BCC2586A /* IceStorm.ice */; }; + 8F90919FDD9BDB3330814400 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A6D9088DAAB107784DA16DE0 /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8FAA4DFC51B140E7F4A29684 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 8FC01AE4D5A702BC8A31783E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 8FD0E948F857C79A381DD164 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7F6F6014A25D3EA8088D4D /* Collocated.swift */; }; + 8FD7EB5AEC4912BEEEDAEED2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 8FDA09F45B9AB6BD1E411872 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 8FDB877BA52CA228C6CE9D88 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2DB1A2EBE508ADA82D566B4 /* TrustManager.cpp */; }; + 8FF467A992F60AE6913EF8D6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B9776ADB255F1973621C98 /* TestI.swift */; }; + 8FFF1D48A4993384E286D04A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 90396689FED2BE972C518274 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 9069580CEF0C50BC0D548024 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2725188194A8D2470DBF46F5 /* Client.swift */; }; + 908E05CD6BF7384E988465D4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + 90F8F55D353DAF6C27D22646 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48FF8C7FFEC75A3D1F598354 /* ProcessI.swift */; }; + 9100D670BD0902AD4FBEDA79 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 96057073F871C88A9A437E6C /* RemoteLogger.ice */; }; + 917E14572AE0B2E97F541042 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3D98CE77652346A9B41B4831 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9181A6BBA6FD673EA823A689 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 99B5902E632A1305ED246DA8 /* Test.ice */; }; + 9204A2F66BD793877C2C1FBF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 9221FBCFB03BF7DB8E80316C /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8E86E1134A0E4313F11F025 /* RequestHandlerFactory.cpp */; }; + 922CC8214A0218AA4015C20D /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0AF49C110C762F572C744977 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 92388EB12542F6B1292CE23F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AC47855542E0FC1068E3A9 /* Server.swift */; }; + 92CC5C6998619BE603D750E5 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4477AA6B5501589EC90C4F2 /* ValueFactory.swift */; }; + 931BE9080B44F58D559B8206 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C90B96D25DD719CC60E168 /* Collocated.swift */; }; + 93C4965EBD4F44FAB183C5F4 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 585EAAAD1DD963A893315BD6 /* ServantManager.cpp */; }; + 93DAFE2E582CAFB57622168C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A558073E4D0060993986E950 /* Client.swift */; }; + 93E82A4FF25EBC7EDD3858D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 9470D0DF053DE7012BF91D7D /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D30AE0D95CE0B8136368F33 /* ObjectPrx.mm */; }; + 94D96E1E93C00C303E419E88 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31CCAAEF9A0D8BD94D02FADD /* DispatchInterceptor.cpp */; }; + 94F4CFFA6DB0A2C7508E550A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 9515D9FB6383BE8459D6E624 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 401D314CEA8878CFB3F1674F /* Collocated.swift */; }; + 951B9BEDF850E9E38C146377 /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1BD6C158D137668766182C6 /* CertificateI.cpp */; }; + 95308B332BCF771798ACDEC4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 9541617B04428080C862F221 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 87EF303B4F48EAFE426CB832 /* Key.ice */; }; + 9554BF43135121B7D65E2E7C /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4387BB8D14955178CF59D4F /* Acceptor.cpp */; }; + 955C4B5851FC27BD076098AF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 959931FF252BA4696D793D30 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 95B55872D9D23F15BFB4A57B /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 873DDDDA9C1B2827C2427670 /* OnewaysAMI.swift */; }; + 95C626F7F7EE5460E72969F6 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C54DFAFDC0223F71EBCA048 /* OpaqueEndpointI.cpp */; }; + 9619F8AA58E59D7BDE10E213 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 9667D7FF72AC7F7F693E0496 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = DE0294898D1572E655754A5B /* IceLocatorDiscovery.ice */; }; + 9670FBA186530E35DAC0DDCA /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D238D915AA7B2C9AAA51674C /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 967DACE1B78C42A031FA8623 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E153E7D44172EC94A37022 /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 96A327804FE56315FA908FBC /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A7F4197C8123883ABAF8C85D /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 97134D0F45385D17BB4AD8CE /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A35C4E163EB55AE186B1AF8 /* Logger.cpp */; }; + 972ADC32F17372B5C30532D0 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5052AC8588F0B21D8BE3AD20 /* LoggerF.cpp */; }; + 97481AEC4000BC44F22F0712 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000611DF33CB4304F42A33BE /* RetryQueue.cpp */; }; + 97648C6132A20AE515ECB787 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1B2E875251FF8233F5415E48 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 97D40FCE27599C22E56DF214 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 97E15FB52037B16AC187CBD8 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3979D5422F89387622D2651D /* TestI.swift */; }; + 97F5C6EE108405CBF7F7F9F1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AC23262A7AC04461F4A4BFD /* AllTests.swift */; }; + 98C3C4B071EF9C6F09322013 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA8D617819FF713F80CE4A0 /* Blobject.swift */; }; + 98D4C1B1369325C1133BBE98 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 814042ADB97F55EAA8E0BEE4 /* PropertiesAdminI.cpp */; }; + 98DE3F717107A1F542CE0648 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 98F63C97A3560D1B7063BA2C /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 31807FCC8B102E3BA2E0BBC5 /* ClientPrivate.ice */; }; + 992670B71CA3CA542C9A7D54 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC332916E29C4DB70EDDC09 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9929944B6270F68EE990FCB9 /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8110A6A605EABCCC95B70C /* Current.swift */; }; + 9941D28677EAC759FF252E04 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 654CCEC599E0A9552262BFF6 /* RouterF.ice */; }; + 9948A17DD52514E7C2F0074B /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28F6EBEDD7E3BB7D5EA9FBD4 /* ObserverHelper.cpp */; }; + 995CFAC19FD43A7F67F2805C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 99691C23E18FA58A76148837 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 99839C7C174F1AB6AE8344ED /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6F38DD25FC0B9CF9834644C9 /* Locator.ice */; }; + 99844B3A968E31726EE5572E /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 24EEF303A9F8E4869A064E55 /* ClientPrivate.ice */; }; + 9990F28A57C58C7DED5AC285 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + 9991831C1643E2E62BA18219 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F18DA127CFF3E191C1169914 /* Selector.cpp */; }; + 99B0FE475C82FD4103A59330 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + 99EF11BE8BD4279EF6B81B34 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = DE0294898D1572E655754A5B /* IceLocatorDiscovery.ice */; }; + 9A06DAAA0B203CA2157102A0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DD7C821443F5E0607D4DE6F8 /* Test.ice */; }; + 9A181D7F3BCDE13B2B12928D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9668122A663485B283D6E354 /* AllTests.swift */; }; + 9A2CF04ECC8D5D4C2D846B51 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 9A4B7BDB0CF51BF38A70D353 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 9A6797228E8FABD723BAEF2E /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9F93205A8C96574AF482B2AB /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9A831E10A02D537C4F2F1236 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F546DCC7DF65F50BED56636 /* PropertiesAdminI.swift */; }; + 9A89F20EFF48B5A0A01E4860 /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4487959432B7C792830C5266 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9A9846D0A51010D3639834DC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 9ACBDB87668CADF95E2D9FC1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 9AD33D51C7075AF3070BA8B2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 10FBAC0DE50DD8520BF0D494 /* Test.ice */; }; + 9ADA0F6235539F8F26919051 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B324F3F918968083524C839F /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9B62AC540356B46A318ABAFB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = ADA2F94E4EDD0ADEEE713717 /* Test.ice */; }; + 9B631B8D1B0D1E314639EC85 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2D63C2A77F018D37B047CFA9 /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9B73A6F077FB75A43F7DAE02 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + 9B9542CCAFF468634E1B1672 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18CE168298CE80608E0B6DCD /* Collocated.swift */; }; + 9BC25E00F33F3AC0A0B7BAC2 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1F8FE1A0E059D0118539988 /* FactoryTable.cpp */; }; + 9BFAE53486883E170688D76A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8188FC2EE67FAC79B3DDD184 /* AllTests.swift */; }; + 9C17134AC1DB656CA2F01C9E /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */; }; + 9C684B66E3E7AEBF591C1150 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCF77AA38122CC9F97CA697A /* Client.swift */; }; + 9C869A7A50B22DB555CC9004 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1962FCE8C13AAA1EDB246D78 /* Client.swift */; }; + 9CE0109A317A46F2409A18B5 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 31807FCC8B102E3BA2E0BBC5 /* ClientPrivate.ice */; }; + 9CF2EC8A140F3674CD8B4181 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + 9D45C5E5D8433A8C25F178F7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + 9D547612C029D152FB04C251 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 9D6A459545335A93DE35A937 /* Assets.xcassets in Sources */ = {isa = PBXBuildFile; fileRef = 101D000CFC727409838DEE04 /* Assets.xcassets */; }; + 9D73435873964679C928BB13 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 737C8B48855EE4342128C161 /* PropertiesF.cpp */; }; + 9DB03E845F65202EB39E3115 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BF3A34243EBCF0033484450 /* PluginI.cpp */; }; + 9DCC3C21D3245727D4CCC405 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4321B1EC69E230431008038 /* Connector.cpp */; }; + 9DEC69361646694ADE128FE9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 9E01A5E11A073ECCBA820D92 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 99F9D2D3C733AFDB4D23EB00 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9E36493AA2A1DB7E35F45A6E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89C8AEE905086856134C860E /* Collocated.swift */; }; + 9E67E9EE49147CF058353C43 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04CC49DCD0D4C30286DEACE3 /* InstrumentationI.cpp */; }; + 9E7E37B00D3C6813AFB984B9 /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41F405B3502079EE7591BD56 /* Communicator.swift */; }; + 9E8DD612EA94C6AF073D2BE3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00AE826AA0B6D12DE8A593B /* Client.swift */; }; + 9E9CB4E5940E527D09BC3F0B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + 9EEDE9281FF63C59FC1F4F61 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 182630D7EE2E9D527F3E7FC2 /* ExternalAccessory.framework */; }; + 9F3EC4CF229801630E4DA883 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 35AE9823C665F00939098688 /* Identity.ice */; }; + 9F90174E943BDAB586C260A3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC6EBC91E36FD1E5EEDDEA5F /* Collocated.swift */; }; + 9F9D995257C6956AC279FF3D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + 9FAD01E7A5A3E50F861682DA /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF698C2D5D97DCCFC7D85451 /* Endpoint.mm */; }; + 9FBEC4A643CE38595A7CB226 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E7FD5CE013170C15DA09A31 /* LoggerAdminI.cpp */; }; + 9FD686DE121AE997FC29EAC6 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7FCFB7E350304BE48F9AB70 /* Object.swift */; }; + A0149DC58918685B9C5F2976 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 01CD17E5927E812D8DD3EAC1 /* TestAMD.ice */; }; + A02F4BA9CDA144203FA206F1 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 82BA2AD0516BDC1B952A1A16 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A050D241D029DEDDB1DFC6E0 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FC1B02BF28CB20BA8607932 /* LocatorInfo.cpp */; }; + A05A10B6FBD0AB0DA5F06517 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F7B24CE59A1F99506ABFA9 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A074B308562DA349AB4659EA /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B0C61085F906AE19C4D73ED /* Logger.swift */; }; + A08EA856B344D8B4281F2EA9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + A0B9342FC17498B8E4E2679D /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E00667716A1C103FAC5F4862 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A0BBE2FA8F876D16C2A73EB2 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 27D7B1673A591C9B7CAF8808 /* Forward.ice */; }; + A0CC746B46CF2A1808F7694B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5206DD21F8DF743B9A61B14B /* Test.ice */; }; + A0E4EE3E2A26F93DD54B7C0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + A10198668C86E808ADAB0616 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E78C7100074203EDD9A86A1A /* Collocated.swift */; }; + A129D3B708FDC043C773555B /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF3426F5F604EA6AD6D67FF /* Instrumentation.swift */; }; + A12B9DACA618AAAFF07EFA06 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DF443F93429C08880793844 /* TestI.swift */; }; + A1981A764085A99EEC5E4B4B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6DE61C2A91224378F513C93 /* Test.ice */; }; + A19B83EBFC52D54B327152DA /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 102C8EBB7B156230C64E8D84 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A1D0719594430445F69D5943 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + A1F4ECEC16BD53589AC95BC7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1599141F395131410355644A /* TestI.swift */; }; + A2054992B8CE70C1D425598A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + A20E3E83764CBC9CC7D035C1 /* StreamAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25D7EE2BD98457D481B8B3BC /* StreamAcceptor.cpp */; }; + A214D71B7058ABD7775B79A5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B80662080CB423CE83029C /* AllTests.swift */; }; + A216308FFA7F4D18363061AB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + A2278BA50113911A136EDD47 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2028B9FE566140E37F6A80E /* ProxyFactory.cpp */; }; + A230E5CB808BA0203AC69D4B /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E70AFD8DC408D542FD307AB5 /* Instrumentation.cpp */; }; + A26B148723583F5F831BF775 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B306F3D24CD60364FAF42DBD /* Client.swift */; }; + A274AE19070174CC7E66E22C /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07391C2F2F17BEF451562D52 /* FileUtil.cpp */; }; + A274B3590B5C38EA5AD85E9A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B183D8B5CE1435DBB960167D /* AppDelegate.swift */; }; + A277D08D79C49F784F3E6105 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02CB2CD05CEE1E2166255186 /* ConnectionInfo.cpp */; }; + A299361F94B7BFDD16C90C78 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + A2BDFD11C3155D23B684A5CA /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 145489AECBBABC46B13BBD6F /* ObjectAdapter.mm */; }; + A2E2212187162F926159A5CC /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8697F5EF8C512BDD2D230A1 /* PermissionsVerifier.ice */; }; + A2E3516A08D310BECD05E875 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1096EF87824C8D901CB7EB0 /* ServerAMD.swift */; }; + A2E5F886FD4B23BC51B4292A /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8697F5EF8C512BDD2D230A1 /* PermissionsVerifier.ice */; }; + A2E672B4B4434441205D8769 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */; }; + A32A0537F40F21D10090A7FB /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7AD25AF9E04E7237D00DA079 /* Metrics.ice */; }; + A357FB84B5FAC4E07572BCE9 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5DB117E9F7CD97246E362D0 /* LocalObject.cpp */; }; + A3A50A3F5C0EF82A11B7EB07 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */; }; + A3C813D0284A183F2C9013D2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + A3F6F9A0E7D7425809679F12 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5400703129C16CEB55676316 /* ConnectionInfoFactory.swift */; }; + A4B79799AA177ECC2680F3E3 /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFF0ED34748664151B72A1D2 /* Incoming.cpp */; }; + A4BA56050938ECDC2307189C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + A4D36C0FD19DE530887B370F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C4E36FFCFD779F3349E0B808 /* Test.ice */; }; + A5173EC0F8ADAE747419B3D7 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6F38DD25FC0B9CF9834644C9 /* Locator.ice */; }; + A51F2D0C28544E74C78FF985 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + A554EF63FA4E6A5D761F981F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + A5B856E9E86689D24951DD67 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 698CE5506A44CD12B6835C88 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A5C7AB16FC112BED82F89C05 /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92E658D78C379EAA3ED57897 /* SlicedData.swift */; }; + A5F2C50EFE98A0E24E47672E /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3DCD2329D6CC0E7D1A67304 /* SliceFlags.swift */; }; + A61F4624E2918A651B93C920 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + A627FA2E306B19A78BE077B5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + A62F8477FA3CBC17475FB322 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C9EE6928D91D3DD502B5B8C /* ConnectRequestHandler.cpp */; }; + A6308AE13C3F31335293B164 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2028B9FE566140E37F6A80E /* ProxyFactory.cpp */; }; + A6A4F6000E0E0B56DE6090AD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + A6DD61F672BCEBB094EFA299 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 10FBAC0DE50DD8520BF0D494 /* Test.ice */; }; + A6E1C8F6BC77FEBA93DA9EC8 /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBAE1ADE6A6A3C9DACBF2C68 /* LocatorI.cpp */; }; + A6E9DDCB266F59F01E1D3E2A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA6C41DF9E4B34FCEDC9493A /* Client.swift */; }; + A70BDA756A9B7A42C3D2E7A6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + A7B42343AC9E2951EC59C338 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + A7EE2C1997021D64CF91787C /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = CA042305E180817575383DD8 /* TestAMD.ice */; }; + A815DDA39526FA93C2851FB5 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A7049303E4CC0D79196E584 /* EndpointI.cpp */; }; + A824549EE2D79F19D9E96045 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68A1DF0813FCFD98C103C20D /* ServerAMD.swift */; }; + A84195F835C0EE4FB4785717 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4CF51F5BA92DBCFB19276E79 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A8E6141724C576A3EB73695C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0C70BDF91875EC6706AE12C /* TestI.swift */; }; + A913E2AFE4FE7CA8D35BD76B /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2424727B01DAAE130B238EF7 /* InitializationData.swift */; }; + A92EAC6E21F6504793754DB2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFE318F6CB3960BD10185486 /* TestI.swift */; }; + A9414CB4BCDB9E09B40E1249 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94FDF54850CD30639F5F2A76 /* Proxy.cpp */; }; + A9A2C6A2EAABE0514D916CFA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + A9CF883E427C334ADD258E16 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC6572D6D1B9BB5AD0EBFF57 /* ArgVector.cpp */; }; + A9E7C418A13AF88F95B56863 /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68FE5BEC43DB70CE488BA78C /* SSLConnectionInfo.swift */; }; + A9F4F71B394900161CABCDDF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 24511A349B3AC892968F3C7E /* Test.ice */; }; + AA3DF90F9F7AE7E41A7A9F89 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = D447784B77B4412B60FCFC03 /* Session.ice */; }; + AA903940404A6CF2F522CABE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + AAB7E9939903E4976A03CF5C /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */; }; + AAC4E4F6E9E71BB058B4ABF5 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F98C3CA8C685D2666897D25 /* StringUtil.cpp */; }; + AAE4675B438542D382FABD79 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5124560E2C8D4CA6F32B121F /* ClassResolver.swift */; }; + AAE75D6A127A5DDAFD75A272 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA45CDF58CA91E2E635F08A /* TestI.swift */; }; + AB2D4F0471D4AE020F18FA29 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77242285508C579CC5B0D48D /* Server.swift */; }; + AB8E4E81E5F4E854A6C82F46 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; }; + AC3C703D291DA979F3C915DA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + AC45AA1D12ED92644FDFFE25 /* TcpAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F562D9D8A7515B35C2F58350 /* TcpAcceptor.cpp */; }; + AC543328F191EEF6FD7A8983 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + ACA078A151886FF1B9180EB8 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79F3ED290282BD409F3522BE /* SliceInfo.swift */; }; + ACACE420C4781E94BA667B3B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B40AB91DB677ED424B70FA69 /* Client.swift */; }; + ACB7DB01983490A9612C897F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + ACDB50DB35A6779B56D47D82 /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F95B39360BF7A5A8F3336C02 /* ConnectionF.cpp */; }; + AD17C0A7220054AF2343A0E5 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A896AB8FC799C78576276217 /* OutputUtil.cpp */; }; + AD358F37A777336A39C8B99A /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1096EF87824C8D901CB7EB0 /* ServerAMD.swift */; }; + AD4272746FF4D38E8495E2E6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4E2510934C92262E6420D091 /* Test.ice */; }; + AD542D5B6992526391AD8D25 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB841745F334BE569AAC2791 /* InstrumentationF.cpp */; }; + AD62AF11D8BBC2CACC704697 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A0432DEA9466221C423F5 /* TestI.swift */; }; + AD82A51F863258B191EEB488 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F98C3CA8C685D2666897D25 /* StringUtil.cpp */; }; + ADB1AFEE08A56BB42FE008EF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF5E56D13752DB41032C1BAB /* AllTests.swift */; }; + ADF818ED72CA48CD036E5C7A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + ADF9112F19AD07C8800D540D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + AE32C55E7D9EE564F84EDB43 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + AE7F49DDBCC0F010BD7A2EFF /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EF9EA920CDA248C30B741E3 /* Collocated.swift */; }; + AEBFBD3E02A9FFBD8FFDBF3F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + AED4F17F4BD2F1F9BD1A1834 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BF3F7C97E46FF31D7DBAFF42 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + AF5A80243991E5AA16E0D227 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + AF76E41B539190348EA3B4E7 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = F8AFAAB080FEF12A06662C69 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; + AFB9E6C201C3912182FCA333 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F97826A9DCAFE51593E3E836 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + AFC826EB9C6FC596575BAB6C /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D652FBDA58B2A88C9EE9351 /* Proxy.swift */; }; + AFCB1192BA3F48442D920C1C /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 540A7B3104F684B945E4E393 /* MutexProtocol.cpp */; }; + AFD6AB5AD6800C6D202F9E08 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3240EAAE31EEEE2C1A979DF8 /* NativePropertiesAdmin.swift */; }; + B09C0508C2DBD6737E11665A /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D51058046137C699E489643B /* DynamicLibrary.cpp */; }; + B0A4BA7E87864E87F5BCF1CD /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F91A4DE4998C11CD9FA265 /* Client.swift */; }; + B10BBA489EE9CE93542DF349 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 753E12D3EE11FCE2B8E3B8F9 /* Server.swift */; }; + B142EFD0673F101282671532 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + B1431EBFEB84AD625884B324 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2424727B01DAAE130B238EF7 /* InitializationData.swift */; }; + B1BF10F883AC7BB3FB0A5548 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 99BB692606D808F7F66B6446 /* Session.ice */; }; + B1C6A1EA2197139A7EECAD83 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC52095091A14C3F13099644 /* OperationMode.ice */; }; + B1D78D559C48248DEE45CE22 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + B24B1B3B4D615A89A141EE46 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + B25A522ECC27DD8D012BBB38 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2437C8A597A1CE438BEDEC3D /* LocalExceptionDescription.swift */; }; + B25F38AB93AB1A3133696F00 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AC47855542E0FC1068E3A9 /* Server.swift */; }; + B2645C7AC36F03C6118E59E0 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7AAAA99233AA95D5E2D8623D /* Admin.ice */; }; + B28964A958A1D4B9949032C5 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40F0848AD5E921D3D29D8E5F /* MetricsObserverI.cpp */; }; + B2AD8E5819AF0F52E798EF1B /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA23EE95BEDA285AEE6F8A0D /* IceUtil.mm */; }; + B2B047120C9B97524D190BBB /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 346EA4E8BF5EBE984DAF0872 /* TestAMDI.swift */; }; + B2EEE757E6D5F3B2ABC5D2E1 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A38C5090BFC9479B5774794 /* ProtocolPluginFacade.cpp */; }; + B2F8335DA50D91649AD4A803 /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEAA1F26027433EC0170129E /* CommunicatorF.cpp */; }; + B31FF29C712A0585DA2B16A8 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2981BE0BA9E535D4E8738D6C /* SecureTransportPluginI.cpp */; }; + B342CA44502DE774A8E79975 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FC1B02BF28CB20BA8607932 /* LocatorInfo.cpp */; }; + B36A489853F82B2E57647BD7 /* Main.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 7EA959FB1AE1C0215813F162 /* Main.storyboard */; }; + B3CC6F4D6DB25A45BCC1C24D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7847B096AC0D34F6A6A83F0 /* TestAMDI.swift */; }; + B442190D15696E1BD40AC0FA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + B4B84F514376A4A8E4A6ED31 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238D7DBD94628C8E32119E5B /* IncomingAsync.cpp */; }; + B4BE891DFDFF27AE72183B50 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CE5EF72F93C8A48F13699E40 /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + B4F1A4E2CFCC9898C9B2E828 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7896AFF2A6A7C311E7C0DBBA /* Test.ice */; }; + B51C69F89B80DA2E1B401184 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + B53337A63B03967706AC3204 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6E0FC8B916544739F08DBD2A /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + B55F456482188268D8FBE02E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = A09BB09CBD110F5A9A95C3BC /* Server.swift */; }; + B5631F7A1EA8676C88F7897D /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBAE1ADE6A6A3C9DACBF2C68 /* LocatorI.cpp */; }; + B57E0BFEFD3ADCAA3672C527 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + B5A1B9C863BD82ECEA0D0E3C /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CF2439A128695F8D08C60D1 /* IAPConnectionInfo.swift */; }; + B5B9BBB7EE1A047FC5216ECB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + B5C9AB5A11C9DC99931B8C57 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B848104E80383628C5A2CF73 /* Test.ice */; }; + B5DB285F9C6EAD474FAA95BB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EF3EED5D49B0E829BC0E03A /* TestI.swift */; }; + B5FCC340B092B2D332433AA8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 278EEAB3360C6F45AF0BA345 /* Client.swift */; }; + B64EEC007F67795539001A1C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80BDC773852878159B385AA8 /* Server.swift */; }; + B676889E0E4DAFC083A035ED /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */; }; + B6A9C7628EAFE90B4E3A712C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + B6B0AD61FEB0ABF698126781 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = F84548B73653D4C1742C2AD9 /* certs */; }; + B6B30C6F69C46D9769464518 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + B6D10C65D061D7D1D4EB5729 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA45CDF58CA91E2E635F08A /* TestI.swift */; }; + B6F436312C61E057ECDECCD8 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E78C7100074203EDD9A86A1A /* Collocated.swift */; }; + B6F50BA90185C68282A3573B /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E580B9D9CC76D53B7B18272C /* IceImpl.framework */; }; + B6FBDF0052EF47CE6B52F328 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC6572D6D1B9BB5AD0EBFF57 /* ArgVector.cpp */; }; + B751C81FEFAFDD39434EE7D0 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0AF15B4EEC648C875D97939 /* IceGrid.framework */; }; + B76A3686BEAF19E70AA5587F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 24511A349B3AC892968F3C7E /* Test.ice */; }; + B7F221C5248CAB086EB64C67 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */; }; + B83638F0D662B79B5A0975A3 /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC08CE6FC9829FC76970ABF /* ObjectAdapter.swift */; }; + B89F95BBC741F229F326FBB9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE4880C3857E46FDB8466BDA /* Server.swift */; }; + B8C52DF2827AE7AC5AA2FDD1 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5507FC7D9307D1B742D67CE8 /* Clash.ice */; }; + B8EB08195365B3764B9F0777 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C7529E7D6E0CE82CABE0D45B /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + B904C69A68313FE87E876699 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5DB117E9F7CD97246E362D0 /* LocalObject.cpp */; }; + B921CF701C7ABCB95B5489BA /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA0E2961E11E1150BA971DB0 /* EndpointI.swift */; }; + B94C97890E9A5D64D52DCAEE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D08B05FD08F60E1D3870BBF2 /* Test.ice */; }; + B966483371606869BB002249 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECB41582845B643446FFF5A0 /* Collocated.swift */; }; + B9B9FEAC21799ECDE7C16E09 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203BF667EB7502A11DAAD293 /* OptionalFormat.swift */; }; + B9D79D3ECA42805AE43C28E6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D82A4CA54A5484DD964DFE39 /* AllTests.swift */; }; + B9D7BFA85056512F43AB0701 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721BA6A8AE743A4B2FF95A5 /* Server.swift */; }; + BA6136386C06CDE18915B249 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 685C908500567FED302500C2 /* ACM.cpp */; }; + BA8EDD5F400F44488ADEBCD1 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 60C72DE758D50EEE330E214C /* Metrics.ice */; }; + BA90DA40D414B0DB97A49CB5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50727E8340FCAC13BECEC831 /* Client.swift */; }; + BA9A241562A265F29B588468 /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9490D97D26F54E2DE96FE5E /* ValueFactory.cpp */; }; + BABB95F2BCAA9B4C835466C4 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BEA81A87699651060DB2E4A /* StreamSocket.cpp */; }; + BABC32201225A91C5A25EA93 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D23950CABD458FD84101A42 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BAE5D97C28D6B650ED4D4706 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36A3DD415DB5D47F3DD67986 /* Util.cpp */; }; + BAF3246BCB036F3FDD4BEC82 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B07EBD95BDC4C8F2D8598B89 /* TestAMD.ice */; }; + BB00A92C945030D3F7CB1108 /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1BD6C158D137668766182C6 /* CertificateI.cpp */; }; + BB0627CE5A909DB8B89570F2 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 273E5195A6D681AF9C343F47 /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BB42E17D60B59344EDBD9D56 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7F6624BB6F4570C1B15B7C59 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BB5A13609DB215E6583AE660 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + BB836B5E8EB2F43BD9656753 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A19D8983C8F5E4BF02AA82C4 /* Test.ice */; }; + BBA1C03B0A59799B56B2C0DA /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7E3DA05928304B5AC220E13 /* TestAMDI.swift */; }; + BC10A8AD3F1353F4DE35FE57 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F365747574374068F56B9FD /* libIceLocatorDiscovery C++11 iOS.a */; }; + BC7E4DBA7D73110E5CA447BA /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8B3B91893CDE2FCE46DB8C3 /* ValueFactoryManagerI.cpp */; }; + BCAD5735C893A46116E6A080 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = FDD74C1D5D68EB2943068DA2 /* Version.ice */; }; + BCF08A16C4619922A60B7811 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0F1C0C87F3118B4B5673E1 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BD34921C3C75DF924FDFF57A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7771C966A95A75444CDD9607 /* AllTests.swift */; }; + BD4486E46D3800D9836FEBBF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + BD4668C593E2B731A449859D /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A35C4E163EB55AE186B1AF8 /* Logger.cpp */; }; + BDDCE26BD7594406AF5A5A70 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + BDEEEA8F75868D04E2763F08 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 99BB692606D808F7F66B6446 /* Session.ice */; }; + BE9763782AD0F8D1C9B367C0 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6ACA341F8D22FF154D2C3631 /* Plugin.swift */; }; + BEA8A85E1A1521E5D7B7FBB0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A14118D0E57AF0A5F37755A /* AllTests.swift */; }; + BF192091BB537835893B6097 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 197DFA765AE77FC51AEF8CC3 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BF2ED6CBEE98AA49A9CC643E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EF3EED5D49B0E829BC0E03A /* TestI.swift */; }; + BF3495F443BA537B55E419BA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + BF44643792D19A3A6AF218FE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5B27506E526D876D902739A /* AllTests.swift */; }; + BF563871B8C1710CB7C10DDE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF5E56D13752DB41032C1BAB /* AllTests.swift */; }; + BFB497D499A0397F7FDD2369 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3548229461616CC182BCEBD /* Client.swift */; }; + BFCE75841F61F771CAF746A0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + BFD6E1E93E91C48E46BB3353 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D53779F0A96B303BCCEAEFCD /* ViewController.swift */; }; + C03CEB6C13E93631A7A84FCD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77242285508C579CC5B0D48D /* Server.swift */; }; + C0F2252DBC9DF62F01802D0C /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC56C57F4AF048D4B7528E44 /* UnsupportedAdminFacet.mm */; }; + C13E142A45648F7040E3EB1F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + C1AEE0EAC78A383EC6D234B0 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 681AABFFA977FBCD95B43311 /* Instance.cpp */; }; + C1ED60554A4D48729279D0D1 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77A833C278A8A075161EBAA8 /* Exception.mm */; }; + C1EF67608B9D20245C3B4903 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4307C8F5994221221EAA83D5 /* ObjectAdapterFactory.cpp */; }; + C222CC7EE9494ECFC5EC8D6F /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4077CF4E039DFF0D6A22D3D /* StringConverter.cpp */; }; + C25732180D01695CFA011678 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + C26282DA482B3A282EC20CAB /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3665BE59BB614AAE0CDF2FE /* EventHandler.cpp */; }; + C309FA89F6823F3F6618FDA5 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C54DFAFDC0223F71EBCA048 /* OpaqueEndpointI.cpp */; }; + C35678C287F8F9A637655A7A /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BEC5A912505A2D0739F41AE /* Collocated.swift */; }; + C3A5F72AA3A7E6A2C5CF7160 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA23EE95BEDA285AEE6F8A0D /* IceUtil.mm */; }; + C3D21BDC151A7C398E3CB974 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B8AD33CAF2513831F190948 /* Server.swift */; }; + C409F4A89EA4DBA75ACECAC0 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 95E105439BA21E7D9534BAA3 /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C42BE5C720B857B4DF47D736 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59C46080488C352EA3B5E078 /* ServerAMD.swift */; }; + C480C3056D5D95CFE0D230EC /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0F2C3F356F0573D576A925FB /* ServerPrivateAMD.ice */; }; + C48F676CD5319A8FCC64558F /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7342B8BA9FB0E6A989E0B06 /* ObjectAdapter.cpp */; }; + C4F1E9325871166B577761BD /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E7B4AD1931A23E635750A562 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C52A5C479A5C09FDFC29A368 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C9EE6928D91D3DD502B5B8C /* ConnectRequestHandler.cpp */; }; + C53C9AD418AB700BC9B5B2CF /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 043AB17C4C069B93FA1E7D41 /* Server.swift */; }; + C56F8DF28EE4E3EBBD329E91 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2BADF2E71C4E31C2545EBD7 /* PropertiesAdmin.mm */; }; + C5C0ACB9917A6EBADBEE205C /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6ACA341F8D22FF154D2C3631 /* Plugin.swift */; }; + C5C2FECC4860219581389BAE /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7AD25AF9E04E7237D00DA079 /* Metrics.ice */; }; + C5F9D85C25B7333CE3ED978A /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F844C21E5E941FB173DD616C /* Instance.cpp */; }; + C60593303A3B702CBA40204D /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */; }; + C614BDC1295291BDCF41EC71 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */; }; + C64011C9443A5988B170EEFA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + C6AFDA64C688FF06B9310908 /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A303F7D2349A2BAAF06FBA7 /* PluginF.cpp */; }; + C6B62EB8CD89E069E59ED384 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF2604CFDFD9F02C2548D7C4 /* Thread.cpp */; }; + C6D8C383B45A96F4637F5A3C /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */; }; + C6DF378AF6E6653008466E9C /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08733FFC27D163E7A610C567 /* NetworkProxy.cpp */; }; + C707CDC8444931346E0E9A77 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3089717B2724FA70B62A07E /* Client.swift */; }; + C7AAC21D23FB9C7F4D7306AD /* libIceDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FF2875AE0E0680CDB9C9B1B8 /* libIceDiscovery C++11 macOS.a */; }; + C82E8BEDDC20EC57EE94CCAB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B306F3D24CD60364FAF42DBD /* Client.swift */; }; + C834907D047E9AA3E4540029 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8C536D312B9304B2D44C277 /* IPEndpointI.cpp */; }; + C8877B3C819990B6BC7A690D /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = D26101A37129FDCC7F02DE6A /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C8D3E461307EB4D460985F7C /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = E22C0DF633DFF1F13E530965 /* Twoways.swift */; }; + C8F130C843CE329970CE6DF1 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4749A84AF39751728F692314 /* ConnectorI.cpp */; }; + C93FBD32CB01DCF0DD912B6B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + C971E7B0131BF13655D468B9 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82B698D2AA00D8433E829B6C /* DefaultsAndOverrides.cpp */; }; + C99C0FAC4856145800CB6948 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + C9A2AE33C23EEFB2099F749E /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C321C7D5D3EEBFF6B77950C /* FactoryTableInit.cpp */; }; + CA0F36142EBD4397EE7622CD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + CA3767AF6A1D9C1A1A6EE7B4 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 27D7B1673A591C9B7CAF8808 /* Forward.ice */; }; + CA90EC3044CF03BEE0A79E98 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DE81698975B33852370169B0 /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CA9A8A3756ECC527753B1160 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B6B06FDB50B258D64C0C1B5 /* Value.swift */; }; + CAA05AA07F9F217B0FD37667 /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA03B082E40C34B986B183E0 /* TraceLevels.cpp */; }; + CB08CC281534672927561D65 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AB42DA37A87829961E185A1 /* Server.swift */; }; + CB0EA922D4BEB16E6B68FFB6 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04CC49DCD0D4C30286DEACE3 /* InstrumentationI.cpp */; }; + CB3C7EE6E6D99CCCC6D9E51E /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9ED8B6B4E62F9D71D312B66F /* Value.cpp */; }; + CB6C7B09D11CFB55948EB796 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39B7FD86E7AAB2B74EA0F79A /* AllTests.swift */; }; + CB7FCDA8BBA9538914A9D6B5 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = E58B32872CC6A0C1048F6248 /* Descriptor.ice */; }; + CB93D94A72ACB6460406106A /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3077BF706F4E5C8BA2500DA /* ImplicitContext.mm */; }; + CBA2586558C473108D1842F5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + CBF0EEA7678D3359CAE68078 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40F0848AD5E921D3D29D8E5F /* MetricsObserverI.cpp */; }; + CBF3C2474A9C447BA9905F4E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + CC2E3D87471BBA696973522B /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1FD8BF102CBDEA4AE9A1BEF0 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CC93901E1D8CB7948402ADFC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + CCCDEE08F99C171111B5EB86 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + CD1974E69E78E59EFB0451C3 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFBB16D3C8E2986C4EB8D12D /* Network.cpp */; }; + CD50B206BDF7F3B5AAC0FEFA /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3D9E5A1FEF7356081B23255 /* SlicedData.cpp */; }; + CD646C6A94062A9D0A397244 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39B7FD86E7AAB2B74EA0F79A /* AllTests.swift */; }; + CD6C6398B754387A5CF5CA9A /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203BF667EB7502A11DAAD293 /* OptionalFormat.swift */; }; + CD9ACCBDE72090CEA1B5CDDF /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = E58B32872CC6A0C1048F6248 /* Descriptor.ice */; }; + CDF7F513816B48F9B04BCBA4 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B986932C2925F4F85570A5B /* Mutex.swift */; }; + CE3F516C6BCFD191F6EF75C5 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B986932C2925F4F85570A5B /* Mutex.swift */; }; + CE718F0554CDFCF1ED39FB7A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + CEB1AE999611FBFA57C54C12 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + CF06DF1CD1F897F0B4FC9334 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + CF467ECA243473DAA814D048 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F600B75D092C22922DC97C /* LocalExceptionFactory.swift */; }; + CF54DE141E09CF1FD2F8D99E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = E597DC759086A689098B811C /* ServerAMD.swift */; }; + CF646D3A12CB83166392CEE6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + CF9EC652EE21A343A2685988 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8D90EA61D510888A922C76 /* Client.swift */; }; + CFC195CB641909D037D0CCB8 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7490F0360E314E9C5FF89F3C /* Router.ice */; }; + CFE5F1C21970D5D8ECD4FC54 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC2D223A5415E0568A67FC72 /* SecureTransportTransceiverI.cpp */; }; + D053C9626C8F6B692897D6AA /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DFCE210A780A814AEE2A57AC /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D05E6544BA2CB7987F563B1F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + D06F6FD95F3B3DD60298A587 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7490F0360E314E9C5FF89F3C /* Router.ice */; }; + D071A91812655939890551E8 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFD565105BC4E6A56DCB1853 /* Exception.ice */; }; + D073DA318597A838C099688F /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5AE3DC5C68BCF7B63AA95F6F /* Metrics.ice */; }; + D0918E43C63B007F8787034D /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8044616B12D739F37275B163 /* Logger.mm */; }; + D0B68D28A36F25DBDEEEE0B0 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1515A9EBA05A025707FA0A5B /* main.swift */; }; + D12BFEE94D559BE97EA05925 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1D68FCE2A561F7EC2ACDCAA /* ImplicitContextI.swift */; }; + D1750FB93060EF4C23FCA4CE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + D17C7CCF486CFFB13A7E4F8A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + D19EE30CA81B28E902F68A75 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83F50C58BF53491B5A2519D6 /* SecureTransportEngine.cpp */; }; + D1A5973A5392B9F0A7D551FF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + D20B8F69CCF1E0A4C2B28CD4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45C8F6FB616A194C3B2F51F4 /* TestI.swift */; }; + D2512B6E3C43F4F50507FD7A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + D2960954B18EB5482D9C08AE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D08B05FD08F60E1D3870BBF2 /* Test.ice */; }; + D2BD83724E67D0BF55280D93 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C37059709E53268E7C14372 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2C1332796532EC9D13F2A01 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ACB9AA204E947072B6089FC4 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + D2D7AC43D47EAC4F693FEDC6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F294A7B72FAF1011CB416FA /* AllTests.swift */; }; + D2EB8D72E7B2D2C2C47BDBAB /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = FDD74C1D5D68EB2943068DA2 /* Version.ice */; }; + D2EFEB9E0E91C48FBDE17656 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + D359A277456C1432D3D2713D /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 259E1CFC2597003F39AF9275 /* CountDownLatch.cpp */; }; + D39B227A38413AEFBAB8EE91 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCF77AA38122CC9F97CA697A /* Client.swift */; }; + D3A075A4E31396353AF654FC /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1026DA33ACD08DBDEFF45AC4 /* EndpointF.cpp */; }; + D3B2170996EE9D9A4178F087 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB2A63494B776FCB8C2A0BCF /* ServerAMD.swift */; }; + D442A5075C050714DD84E2C2 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */; }; + D44E98F08362136B999A176A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + D47E7EB5C8A2F63A302DF2AA /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0F99C57D798B822698572DE /* BlobjectFacade.mm */; }; + D48F8AD05FF8E64BCBF7D3D1 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F90D823F008079DDF85638 /* TestAMDI.swift */; }; + D493480967AAEB71801A0D46 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AADAF4F2A9298B55860DC8AB /* Client.swift */; }; + D4A1C9D30C746269BFA9A55B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + D4D63EFCA9639B1347B119D2 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38EBAF76FAFE72C64335C5B /* UtilException.cpp */; }; + D53361B4E18F02F39AD71F7C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E2557828DF2EF804720B5DF /* TestI.swift */; }; + D547B10B9B0582311BAAB31A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + D54DD89128401A9E190A2CC4 /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 533D65B77DD79A97AE2A1A8F /* SecureTransportUtil.cpp */; }; + D55538B35122E4FB0FB98280 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + D55FDB743E5A6E822F3AAF4A /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A542194ED490F2D450FBE00 /* CollocatedRequestHandler.cpp */; }; + D5B05C56684E9AF8549AAD04 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4477AA6B5501589EC90C4F2 /* ValueFactory.swift */; }; + D5B136ECAE08DC357CBB0FC1 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7490F0360E314E9C5FF89F3C /* Router.ice */; }; + D5F6AB847BEEEF0A8646388B /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6F38DD25FC0B9CF9834644C9 /* Locator.ice */; }; + D65AAD574F10CC5260DEDF9B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0205F3DB3D2A802285F11C8B /* AllTests.swift */; }; + D6B102876B48EF4B4CA8F75D /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC08CE6FC9829FC76970ABF /* ObjectAdapter.swift */; }; + D6D05F5C607B332E0FE623C2 /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F07B1686893281A6AD084966 /* ImplicitContextF.cpp */; }; + D6F5990B7C76C78341F87B52 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 187ED1A448C608EC15DF698C /* AllTests.swift */; }; + D71B01B9823A114BA16DC5C2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A47964EE995DCCF12193A7C8 /* TestI.swift */; }; + D7278E9D2A77063BE213C0E8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3E80F236FF9CC3D3ABDABC94 /* Test.ice */; }; + D7398A853900B2D4C341BBE2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4DF3479CC49100449C494653 /* Test.ice */; }; + D73AB114429EB5C8F292E4DC /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0417ABE38D6F16A1223B078 /* UIKit.framework */; }; + D7401A165877E9EA69A0165F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 770F579715615C54D53ABF72 /* TestAMDI.swift */; }; + D76544D05F02CC68167E8FF7 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F7CA3B0771AAB23FD2BBAB32 /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + D7925782BB7F4C817FD0AA57 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F94A73A9390A0C781AE4A324 /* IAPEndpointInfo.swift */; }; + D7F868E56A6E9055EA7EE9B6 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C321C7D5D3EEBFF6B77950C /* FactoryTableInit.cpp */; }; + D81AF7157AAAAD80CED907DF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B643EA2D961B5A046DA618B /* AllTests.swift */; }; + D84966B3582B40ECC94EE434 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF2604CFDFD9F02C2548D7C4 /* Thread.cpp */; }; + D857103C966CAC42C206AD91 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + D88E2F85B135A0BC74FF48D3 /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 85B515A196F89D779308CAD1 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + D89777822ADB1527B2E9ECDF /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 614B4EEEE8D6EC764E4CB54B /* FacetMap.swift */; }; + D8CCB30783ED0346C979E749 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17E2F182F3B77EE5965C3F59 /* TestI.swift */; }; + D918497C4CFF0B3FE6C8E9FF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB7DEF69D88E4196C6C38C6 /* Client.swift */; }; + D97BCDE42B2D775C8EF3AE38 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367F5C787891BBE1B298343 /* TestI.swift */; }; + D9A262313E99DF4F916ACEAB /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0CBBD39BB0BC5077AC80C4D /* AcceptorI.cpp */; }; + DA2350D29732E5C260DE2CA3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + DA3CB710A71685FEC7F899BD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5784A651E1A32B4749128DE1 /* AllTests.swift */; }; + DA5FD412CA303435EC0BD6A8 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17B4B38AC0363CAFA24A9E4 /* Shared.cpp */; }; + DA777C2519E5B4091CF7C54C /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE284562963BDD32CEEF2902 /* Timer.cpp */; }; + DA8B7FCFA35AA56A3EFD271D /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 206401F7B7D85C2E662248F5 /* RegisterPluginsInit.cpp */; }; + DAC9E92FDB209CC2D715EBEF /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + DB2D614A5808D193088DE541 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5F9757AB402E520F6A127C8D /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DB4F725DB292A3B29DA0D1B5 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 77413C0CE48FA70D463B327C /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DB6297628D1095BCA0E76407 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + DB75EB4EE7CE66C80C5EE26C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + DB77761A15E27B58B5FED5AC /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1B71BDB8210B42A2FC5F0C82 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DBB7F84496509ED6498EF3DA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + DBE6458D34651589E7720E78 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + DC744E01B81A89EEBEF1F1B5 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62BD73733BF5EF5838784676 /* LoggerI.cpp */; }; + DC80C2E33FB5AE127BEDF73F /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6CE4D7AF84FCCEB30AEE82D /* CommunicatorI.swift */; }; + DD7559B902076F85721A3BE5 /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC93FDF7BB0162F351F94E98 /* LocalException.swift */; }; + DDFFAA38F6E8DA644E395A20 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + DE4F221E7B43ECB85073A654 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87C7BBC6F22A9A903F1FB5A4 /* BatchOnewaysAMI.swift */; }; + DECBEB44AF185A09A7FCC64F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45C8F6FB616A194C3B2F51F4 /* TestI.swift */; }; + DF06D92BA14A9549F58F07A9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 323B42FB5AD8FC12D8AE7CDE /* Server.swift */; }; + DF801682057D9E3481021BF9 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C14840E2D26E13A7C5D6AC9 /* OutputStream.swift */; }; + DF841E9C81A9DD7D0D27B435 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3665BE59BB614AAE0CDF2FE /* EventHandler.cpp */; }; + DFA814FDD933EEA0C6018647 /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC56C57F4AF048D4B7528E44 /* UnsupportedAdminFacet.mm */; }; + DFC84089EB6C7C3DDCD8C1DA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + DFDC8F8075A4114675F568FD /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59F4F79624A15326B17E88ED /* PropertyNames.cpp */; }; + E0171B0F8F9AD0DB8A46CE03 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511AD3135337E08B90F9C34B /* BatchRequestQueue.cpp */; }; + E080250FCAB43DD84603268D /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CA06581C1F468D6DFACFA9C2 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E085CF894D47FF6C9A3CD5B0 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = EE56A762315F2E6B866D2172 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E1A31D3A169D4200F2F3F07A /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 246925D469B0CD3F19FC5EF4 /* SysLoggerI.cpp */; }; + E1C1934BB4D16C16FA11BF0F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + E2150CB6BA407CAEB82D3EA8 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DEDA8D23AD6801409BD6D10 /* PluginI.cpp */; }; + E22D1E64BBBE6C060473ED19 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + E24DAC092926FBEAF91679CB /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC93FDF7BB0162F351F94E98 /* LocalException.swift */; }; + E254C9DB9C32B839FB1ED073 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + E3048FA6DCBF6AE977F880C9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + E31F8BD247F7EFF2BF88403C /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 0841109EAF658FE8F75F1D35 /* certs */; }; + E33606D9A1D3FC4166231FEE /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6C1CDE26751507399301F945 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E3763CF6D5C07A3D3ED6EC99 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 053E3EA43764388B8A0304F1 /* LocalObject.mm */; }; + E37C083C51128D4F812DFECE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5B27506E526D876D902739A /* AllTests.swift */; }; + E39D0BAF24DE0513CB5CFE63 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 273E5195A6D681AF9C343F47 /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3AE7D6BB6F62823F1F29326 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + E3B6DDA346162ADE50B1864E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 44B4CA994280A6DA16BE5B80 /* Test.ice */; }; + E3BED76CFEA93576EE34FA5D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + E3C19CCAA5625E5938BC62C9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1570CABD05CE88D0D442FBAA /* AllTests.swift */; }; + E3CDD467EEBA8EAC5394CE7A /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77A833C278A8A075161EBAA8 /* Exception.mm */; }; + E3F3F343ED7740DD59F18110 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + E3F6799674E7EF82586899D9 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79ABC993469B3E7832F12F25 /* ConnectionI.swift */; }; + E40F05BA8489AAB761152686 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + E434146673B4685DFAA0386E /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */; }; + E46F315B2FE959CC2492512E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0F1E9B04036C7A1BB7003EF /* Client.swift */; }; + E4E52BB485AAE3F157C712D5 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */; }; + E5CBEC389C711B5308FF9381 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B722E075AEEBEA3D471A855 /* ObjectAdapterI.cpp */; }; + E620BA872F0DE08AAF53BB43 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59FC3375D6E90AE4E3134B50 /* CommunicatorI.cpp */; }; + E634E724E3309B5C4CD661DB /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + E63AF4D08B9EFB88EA47A758 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E69FAE81A29C4237DF3017 /* TestI.swift */; }; + E6D2CAE0C0295F5764C05900 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A896AB8FC799C78576276217 /* OutputUtil.cpp */; }; + E7A7932B3C78022433B7A206 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + E7E91715336C76DC5AD01D93 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2CC389E3BAC5C77C6DFC3B2 /* Client.swift */; }; + E810AC28FA6CDF71929F2137 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF5C1DB557360C9F09A15BB8 /* UdpConnector.cpp */; }; + E823D510B3477722C248DCC7 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E8693CAB4DA65B12C05C6B97 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C19ED6991B81D0F741D8B390 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E8956EC59BBE5F86D680A905 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87C7BBC6F22A9A903F1FB5A4 /* BatchOnewaysAMI.swift */; }; + E8B76651846F221ED65BED57 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 615E8464EAAEA906EF0953DE /* EndpointI.cpp */; }; + E8BE4DFEE22FD1758897D7FE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8D90EA61D510888A922C76 /* Client.swift */; }; + E8D67F1B923E3B3C5B2ED0EE /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8DED3CCF7ABF57CB61A22DE /* Plugin.cpp */; }; + E8FA35D450BF9D20E43A1B63 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 714EC172B42055EC5BF98E11 /* TestI.swift */; }; + E8FC55175649B5BC8777C9D1 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 96057073F871C88A9A437E6C /* RemoteLogger.ice */; }; + E90DFA944181471958D118D0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + E915365B65F166283C5A7F9D /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B68896EE6832BCFFC1CDEA85 /* EndpointSelectionType.swift */; }; + E91FC07C9A154CE7C6F5689F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + E97CEF9CD19A46E9C4CE76EF /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D51058046137C699E489643B /* DynamicLibrary.cpp */; }; + E9B6B5DD581F17C55F3746FB /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + E9C5A9435BC9DF7C9F0896C5 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = CA042305E180817575383DD8 /* TestAMD.ice */; }; + E9C9012DDE95D30E68B720FE /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F95B39360BF7A5A8F3336C02 /* ConnectionF.cpp */; }; + EA1EDFC25BB45BDD2E4ED129 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */; }; + EA6F9A7E36D0151F968863D5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + EA7D0BAD39C7346EB632D6BE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + EA81884A036C1B83E353172D /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFF0ED34748664151B72A1D2 /* Incoming.cpp */; }; + EAAB4C91C36CE3F2DE37D235 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + EAB83885C6B77A2D99A17F28 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BF3A34243EBCF0033484450 /* PluginI.cpp */; }; + EAC6DC63B415344EA963D8EF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + EAE752895F55485E6B9D314E /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52B6920962BB40484351B828 /* LoggerWrapper.swift */; }; + EB31B1FBCB271396431126B1 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = CB2C9FFB0BA6BBA3E848504F /* Convert.mm */; }; + EB3DA38B8BFB0D4CB9619CC2 /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F0E8376C2AD9B7DDE63D13E /* Properties.cpp */; }; + EB4B274437E107D0C67AC046 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + EB51EFFEB6762C02A0AB27E4 /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3077BF706F4E5C8BA2500DA /* ImplicitContext.mm */; }; + EB89F1F6CBD6E83E06BB9DBB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + EBB341E040CC4BB228CA4D2A /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23234EE76F12BDE06765390A /* Security.framework */; }; + EC281258A1E8C93527EE8192 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + EC28468FB6DCDBBB3A2F5939 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */; }; + EC67DE80E989A1BBCA6D2E7A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + EC95DFA9D4A946EA82A21A69 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D90B76046F6620FA39EB66FA /* TestI.swift */; }; + ECC4429CC6E5FD93D6461316 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D64D7DE7F59927CC720908 /* ServantLocator.swift */; }; + ECE047163CB55F0E700743B6 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 135C5232085BDE2604DFEE21 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ED1AE7B4467B99CAE85A91B4 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = CB2C9FFB0BA6BBA3E848504F /* Convert.mm */; }; + ED5787262CD1986FC4D09E77 /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59F4F79624A15326B17E88ED /* PropertyNames.cpp */; }; + EDCFCF99DC5A895DF62E8929 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3E80F236FF9CC3D3ABDABC94 /* Test.ice */; }; + EDE9713BC451CE5E12CA1F8F /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 006CF4F54F5E4A89A3C663B0 /* RouterInfo.cpp */; }; + EE19CE8B034CFA0F59078B90 /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9490D97D26F54E2DE96FE5E /* ValueFactory.cpp */; }; + EE2D1BCE972F27CCCA9D475F /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC48F3FEB7298E0C6FB9C9BD /* Oneways.swift */; }; + EE6577FBED8C0450B3C6345A /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00909CBA5C2223CED4ED9381 /* SSLInfo.ice */; }; + EF1418198F7ECD2729A37969 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 99CDD3BEF9831A379194BA9E /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + EF3919AD2952F7B3755AAF76 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + EF3F061F550183120C8B5456 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E29D53CB33DDBF93C9D34C /* InputStream.swift */; }; + EF5BF0ADF4AADCAD20D976BD /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 925C43BB0C5ED12BA8492EA3 /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EF6B600C01360A3E77570577 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E39E0C1B10E19B51E2A7B2E4 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + F08C001ECA218C73A5E4B48C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5242AA08870B9E96219670E /* Client.swift */; }; + F0A512F9DB88649C58FC9DDD /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = E400CBFEEB7A5C82AA30E765 /* Process.mm */; }; + F0B987226D3972F934B8BDE0 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = F0DB50962CCFE3F777DFA679 /* Context.ice */; }; + F13A4AA1DA75AA9E62F116D6 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC52095091A14C3F13099644 /* OperationMode.ice */; }; + F13FBCE9EEA5B5820E2112C5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2591D7770A25B731A7D961B0 /* Server.swift */; }; + F190A21FA780155868903D60 /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B9B7D2C864B2D316ADE535 /* Exception.swift */; }; + F1E936862D17AF9C6D2B44D7 /* TcpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41D003139C78BDCDD6F24440 /* TcpTransceiver.cpp */; }; + F1F8BD03C1F0F501CEFD81AD /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D62D9A3A91168A2CA52AAE8 /* Endpoint.swift */; }; + F21FCFEF6A0F15862F7627DB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5206DD21F8DF743B9A61B14B /* Test.ice */; }; + F24BEAE12877F57261308991 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 753E12D3EE11FCE2B8E3B8F9 /* Server.swift */; }; + F253CC5000807172EC6C807B /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 246925D469B0CD3F19FC5EF4 /* SysLoggerI.cpp */; }; + F2DC38D190A55A61548531BB /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D9F47C5F7E714936213E615 /* Current.cpp */; }; + F2F8E672D0B6448433C0F8B5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B40AB91DB677ED424B70FA69 /* Client.swift */; }; + F2FB54DF4CFFC0C16DFC2A9A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + F318F86CFB6818B759FC35CB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; + F33F3FA8FDE07357527E668B /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54E9AF62DC5520A54B0CF2AA /* Random.cpp */; }; + F33FD946C46440BB04E2C977 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + F358B827B18187A436C6B807 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 814042ADB97F55EAA8E0BEE4 /* PropertiesAdminI.cpp */; }; + F36251032A3F4AD1E9C34A21 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E35C99046C1F715F4B4E5F /* Initialize.swift */; }; + F380C17C1B690A521FF15647 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */; }; + F3989FFBEA39D4B805F2A109 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + F3AEBFD1C3D3CE06735E9D64 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD76D50BBE665C06B63D8EA0 /* AllTests.swift */; }; + F3E8FD1DDD07547A0DF7D91D /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD917785198D9351B3909F60 /* ImplicitContext.swift */; }; + F4113CB3B13A1BE5DC7388F5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9668122A663485B283D6E354 /* AllTests.swift */; }; + F412B716233F6DC5B5F06E83 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 855BA3CF130D0F9747BDA673 /* Security.framework */; }; + F41589B2D9BF5C39BD869A77 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C2B5BBCC468EFCF6C706DDF /* Client.swift */; }; + F449A7BB4CF9C07F8749F812 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3D95F9289578400C8DD7B0E /* MetricsAdminI.cpp */; }; + F44CA32D2CDFDDE45F4E72D9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5784A651E1A32B4749128DE1 /* AllTests.swift */; }; + F4524A3A925EA566BCDC4B69 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4219AE5EE1189E920E1A77AA /* TestAMD.ice */; }; + F4ECCD3D34061B012E0217C9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + F5144F08CA8D806B2D8428D9 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE548BE00DBF796605CE418 /* TestAMDI.swift */; }; + F52BD20B24695C7C57BE0E64 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCD573A768D574A4F55647D /* Server.swift */; }; + F55F952FA802F099EB0C65AA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + F560F6F9B086723C991AAF10 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21D15D6C8E3919123C989D88 /* StringConverterPlugin.cpp */; }; + F5A588A2CB3E1874486FE65E /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 35AE9823C665F00939098688 /* Identity.ice */; }; + F5D8C4461601E5387C59C544 /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 533D65B77DD79A97AE2A1A8F /* SecureTransportUtil.cpp */; }; + F606445AA2CA160F522C5A99 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ADE78EC4CCE93F2E0C1D0DD3 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + F623630184815B0DE4997E35 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E98EEC1CF21AF6E6D15DE7 /* ObjectAdapterF.cpp */; }; + F628A90221011F3D8A44697E /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4387BB8D14955178CF59D4F /* Acceptor.cpp */; }; + F64C59605860BD6C23A27155 /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA0E2961E11E1150BA971DB0 /* EndpointI.swift */; }; + F6550E4045DCA75D9D253C74 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = F0DB50962CCFE3F777DFA679 /* Context.ice */; }; + F66F71C7ADF724DFA67D30B0 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7101B26D06079EE4319D8BB4 /* UdpEndpointI.cpp */; }; + F6D94346785E7673ABB2546C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + F72F1331B81005123FEB13DC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + F7690849B01BF1B6ACD65602 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + F79F0E9568D388C01B9EE3E3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + F7AB684C3F174249370B021B /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E7A74CCB2DED35DB6A1B93 /* Communicator.cpp */; }; + F7BCEDD8F080F78BF0C96B6F /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BEA81A87699651060DB2E4A /* StreamSocket.cpp */; }; + F7BF505A4C89F1C269AFF18F /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = EFDF1AFD3FE00EFB8D0F40DF /* Properties.mm */; }; + F7C97C18DD83300CB84462EE /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 25C7F6C8A9023BB604FCC8C6 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + F7EDF8ED76FF8FBF6F3B68E2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F32E0BF2C8C888EC8ADD08A9 /* Client.swift */; }; + F873A044FA20C143145F4AB4 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F5945F8AFC7C9F3E86F3D4 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F918003040F10A93E73FA52F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; + F97CFDA8CB8A23C6E8BA3976 /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 63086CCB688E11EB58FA8847 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F98D3E533343BAF313BB0467 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E153E7D44172EC94A37022 /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F9E1CF73FB5D607F2B0B496D /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E00667716A1C103FAC5F4862 /* Glacier2.framework */; }; + F9E490F4986A69522B970470 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; + F9E6A31066990817284C9D29 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE284562963BDD32CEEF2902 /* Timer.cpp */; }; + FABCCCE9318EED5B0DC9F223 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCD573A768D574A4F55647D /* Server.swift */; }; + FAD4FFF37B2141B2899DF603 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + FAED9875AA5B9E82F4A02F8C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; + FB6A27A456FA8598F97A504C /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0F2C3F356F0573D576A925FB /* ServerPrivateAMD.ice */; }; + FBD8E146BB674CE428406901 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + FC1BA26D46512B4D4D2879BC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1599141F395131410355644A /* TestI.swift */; }; + FC3F53F10FE9848D4097C765 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4804F5E00E5C966AE7D9FD34 /* BatchOneways.swift */; }; + FC54082ACCBB1B3E3B7227C2 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 042B09E718B4AF7FEC08C931 /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FC9545FF8C73189660C16820 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEE6C673CF16E6CD4116CC12 /* ThreadException.cpp */; }; + FC9A18D11F913E0934D5A0B1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; + FCE39C66D42EC30588470F9F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BDD768C41EE98F60B1ADFD6 /* TestI.swift */; }; + FD4D122A3A32EFED9A1AD109 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; + FD9CFF63A465FE5ECC4C7CA3 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7AAAA99233AA95D5E2D8623D /* Admin.ice */; }; + FDAD5D7CD773EC05A012585B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; + FDB0026B8DD58118D1FB23F7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AADAF4F2A9298B55860DC8AB /* Client.swift */; }; + FDEE2605F7A6D5CEBFFE8454 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8E86E1134A0E4313F11F025 /* RequestHandlerFactory.cpp */; }; + FE391B7557F38AC35E039414 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6F38DD25FC0B9CF9834644C9 /* Locator.ice */; }; + FE70BFEF5C9234B3C7D50949 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */; }; + FEF1F5854B457272592D1ADC /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */; }; + FEF7D62704721832132771C2 /* ControllerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12D95BAB303CB972B193B0D /* ControllerI.swift */; }; + FF0B5151635EB14F6DD91125 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */; }; + FF1C80A5D20366AB76CEA278 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D75F8E6BDE3707D84F90250 /* Test.ice */; }; + FF32105E110C3C169B476D0C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; + FF7889ABF8FAE68C77657C16 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5DABF3352FC370E8C8424646 /* FileParser.ice */; }; + FFE50E379B96CC7FE138393C /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E18A66D20FAB52A8017CFEC /* PluginManagerI.cpp */; }; /* End PBXBuildFile section */ /* Begin PBXBuildRule section */ - 0466AC2D98B8B1797376E136 /* PBXBuildRule */ = { + 004224CFB509E7C1FC39428F /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/location/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceStorm/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/location/Test.ice, + "$SRCROOT/../slice/IceStorm/IceStorm.ice", + "$SRCROOT/../slice/IceStorm/Metrics.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/location/*.ice"; + name = "Slice Compiler for IceStorm/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(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\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/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"; }; - 0967805BCE1E6813D3222CB3 /* PBXBuildRule */ = { + 0688C0CD4406817FA01FF0FD /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/TestCommon/*.ice"; + filePatterns = "*/test/Ice/scope/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/scope/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestCommon/*.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"; }; - 0C0617F153A415C074261882 /* PBXBuildRule */ = { + 07CE6980CA9698C633E0290B /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/servantLocator/*.ice"; + filePatterns = "*/test/Slice/escape/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Slice/escape/Clash.ice, + test/Slice/escape/Key.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.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"; }; - 0C5CEDF0AEA0C1E49A457740 /* PBXBuildRule */ = { + 0958E402CF051D4C22CB38E7 /* 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/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/ami/Test.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/Ice/ami/*.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"; }; - 107BD6620EE608E35A022969 /* PBXBuildRule */ = { + 0C497AE78CB318C9D8E80C6B /* 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/timeout/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/timeout/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.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"; }; - 128FAF301C269413416FAA54 /* 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"; - }; - 1B736E4E7FFE3533A30B274E /* PBXBuildRule */ = { + 0DCF0D46E3E230305834ECF7 /* 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)/IceStorm_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceStorm/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", + "$SRCROOT/../slice/IceStorm/IceStorm.ice", + "$SRCROOT/../slice/IceStorm/Metrics.ice", ); isEditable = 1; - name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; + name = "Slice Compiler for IceStorm/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(INPUT_FILE_BASE).h", + "$(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/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/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"; }; - 1C375202C956F2D48BA3ED28 /* PBXBuildRule */ = { + 0DDD9C52FD49098F8B3785BD /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/TestCommon/*.ice"; + filePatterns = "*/test/Ice/adapterDeactivation/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/adapterDeactivation/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestCommon/*.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"; }; - 20EF03E694DD62EB32DDF0E9 /* PBXBuildRule */ = { + 0F9586CF2348081A43AE65D0 /* 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/services/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/admin/*.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"; }; - 218A39931936B7DB8D4146F1 /* PBXBuildRule */ = { + 0FBF8A09C0F0EDCB96B6EAB6 /* 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/properties/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/udp/*.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"; }; - 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 */ = { + 162A1E09280CE82F4A264925 /* 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/ami/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/ami/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/services/*.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"; }; - 2858747B6861DE83819511E8 /* PBXBuildRule */ = { + 189AEA277312C4FDE4F0E0E0 /* 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/defaultValue/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/defaultValue/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - 2BA1008CDE69BB9420622248 /* PBXBuildRule */ = { + 1C73735EFAD37D1CFA1D669A /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/inheritance/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/inheritance/*.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"; }; - 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 */ = { + 1DD5AA8184DF6DA93A755326 /* 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/retry/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - 30D86CB9DA45178F1428181C /* PBXBuildRule */ = { + 23DBFE117A0213EDA0978F3C /* 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/hold/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/enums/Test.ice, + test/Ice/hold/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/enums/*.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"; }; - 31D6D32086AF25ED463453D1 /* PBXBuildRule */ = { + 24EFF29543366B1888A17736 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; @@ -1795,189 +1742,163 @@ 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 */ = { - 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"; - }; - 36DE15588AC64891A9D439C5 /* PBXBuildRule */ = { + 28DD4EFFB1C9520539DE741D /* 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/admin/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/retry/Test.ice, + test/Ice/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/retry/*.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"; }; - 37E7964C9FFFE14C60B44E2D /* PBXBuildRule */ = { + 29E4309E99D7B07919B4D720 /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/invoke/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/invoke/*.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"; }; - 38AC950A4251F435221EFAC1 /* PBXBuildRule */ = { + 2C73273142987B7C6C0DC25D /* 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/interceptor/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/admin/Test.ice, + test/Ice/interceptor/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/admin/*.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"; }; - 3965EDB8CE72829F3D9DCB62 /* PBXBuildRule */ = { + 34112FA3CAB0CFDBAB99076A /* 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/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/facets/Test.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/facets/*.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"; }; - 39EFC04AD52EB3D38ACEC29B /* PBXBuildRule */ = { + 39718FDCC97D2AF791C4FF7B /* 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/stream/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/udp/Test.ice, + test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/udp/*.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"; }; - 39F14EA9557A024F28CE6D27 /* PBXBuildRule */ = { + 4160F97C6DD6AB072C8E1471 /* 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/admin/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/info/Test.ice, + test/Ice/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/info/*.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"; }; - 3A33010CA67242C2D53EB955 /* PBXBuildRule */ = { + 44AAB332860E31A022811D8C /* 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/scope/*.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/scope/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.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"; }; - 3DA7D46CB7FDC1044780F802 /* PBXBuildRule */ = { + 47076ACD2D5E157833A7069A /* 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/optional/*.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/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/objects/*.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"; }; - 3DBD640E2BEB04526B028A5A /* PBXBuildRule */ = { + 49AE49184984F4BC11E7A190 /* 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/acm/*.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/acm/Test.ice, ); isEditable = 1; - name = "Slice Compiler for Glacier2/*.ice"; + name = "Slice Compiler for test/Ice/acm/*.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 */ = { + 4C469FA3F0E5AD08A4D9A4AF /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -1995,783 +1916,765 @@ 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 */ = { + 4CD37FEA4E1356B16598939F /* 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/defaultServant/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultValue/Test.ice, + test/Ice/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultValue/*.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"; }; - 4BDEECBB026BEFDBD29E459B /* PBXBuildRule */ = { + 5068FEA3DC1C1093B8937B89 /* 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/slicing/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/interceptor/Test.ice, - ); - isEditable = 1; - 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"; - }; - 4C421FC35B245A38A2DC32DC /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - 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", + 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 IceGrid/*.ice"; + name = "Slice Compiler for test/Ice/slicing/objects/*.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 */ = { + 524158F422632D370591A3C8 /* 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/location/*.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/location/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/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"; }; - 534EC6EEB3FEA55F9D73125B /* PBXBuildRule */ = { + 52CB70ACF18A2ADFDACECC20 /* 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/proxy/*.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/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for IceGrid/*.ice"; + name = "Slice Compiler for test/Ice/proxy/*.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 */ = { + 54945514B316D0C5BE8F1BD7 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/stream/*.ice"; + filePatterns = "*/test/TestCommon/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/stream/*.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"; }; - 61C6F8B373F05C401E109411 /* PBXBuildRule */ = { + 55EAA30E2F1BC82BF4F771D5 /* 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)/Ice_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceStorm/IceStorm.ice", - "$SRCROOT/../slice/IceStorm/Metrics.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 IceStorm/*.ice"; + name = "Slice Compiler for Ice/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/Ice_$(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\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"; }; - 63D573DC53F83A59A80709FB /* PBXBuildRule */ = { + 5CD295F2AB4F6ED4E7481CD4 /* 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/invoke/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/hold/Test.ice, + test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/hold/*.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"; }; - 63DDCC4D5FD71F078F7E4F48 /* PBXBuildRule */ = { + 5D5176301B17E939F7D3BA96 /* 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"; }; - 66AADE9A203B6E92C0F1391B /* PBXBuildRule */ = { + 605130A9C132997054E51A39 /* 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/inheritance/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Slice/escape/Clash.ice, - test/Slice/escape/Key.ice, + test/Ice/inheritance/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Slice/escape/*.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"; }; - 66EC3CDC1436D5FC248ABDE2 /* PBXBuildRule */ = { + 605A5E76A3A4E8E932681992 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceGrid/*.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, + "$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/slicing/exceptions/*.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"; }; - 6980DA7D553A970823D703F5 /* PBXBuildRule */ = { + 6118D9947998D75D49CC2D58 /* 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"; }; - 6BE1B308FBCD4A40D2BC9295 /* PBXBuildRule */ = { + 620197F8BBA2706B29E42E10 /* 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"; }; - 6D5FC6B24A46269E13F729E4 /* PBXBuildRule */ = { + 62BDB959D414B8733A130CA5 /* 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/defaultServant/*.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/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.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"; }; - 72F35AAC1EF89B2124E08DCB /* PBXBuildRule */ = { + 68C2715B73A2D8D20ADB2DA5 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/Ice/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Glacier2/*.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", + "$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 Ice/*.ice"; + name = "Slice Compiler for Glacier2/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).swift", + "$(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/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"; + 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"; }; - 742E56F2651A2BE95B6B6B3B /* PBXBuildRule */ = { + 6EA612880E2BD61FA55791F1 /* 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/stream/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - 74A132106B8ED6BDC6AD0A55 /* PBXBuildRule */ = { + 72406AFBCC3F4300CD164514 /* 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/udp/*.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/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.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"; }; - 77EE3BF67D50E86264F906AD /* PBXBuildRule */ = { + 763D1ED0B8332881198D49B8 /* 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/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Slice/escape/Clash.ice, - test/Slice/escape/Key.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Slice/escape/*.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"; }; - 78A8306481EAD2AF63BA0088 /* PBXBuildRule */ = { + 7970F3E9D6D694AE79CECD41 /* 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)/IceGrid_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceGrid/*.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/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/slicing/objects/*.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"; }; - 79065FBA33ECBF04C1CEA5C3 /* PBXBuildRule */ = { + 7A8AC688B641270820DEEF2B /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/scripts/*.ice"; + filePatterns = "*/test/Ice/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - ../scripts/Controller.ice, + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestDriver/*.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"; }; - 7A406C9507E9F0183666FACE /* PBXBuildRule */ = { + 7B1BAF201633E1738A131BFA /* 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/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.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"; }; - 7AE86571FE663DFD312D016F /* PBXBuildRule */ = { + 7B991C6CCABC0AA2E9FB8B02 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/timeout/*.ice"; + filePatterns = "*/test/Slice/escape/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/timeout/Test.ice, + test/Slice/escape/Clash.ice, + test/Slice/escape/Key.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/timeout/*.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"; }; - 7AF73AB9C64F083D9C05305D /* PBXBuildRule */ = { + 7BAA2CDB7FE6CFAB268E6F37 /* 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/services/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/acm/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/acm/*.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"; }; - 7C90749B9EADCC92591D2928 /* PBXBuildRule */ = { + 7E9BC15F46E89E69FF3C48E5 /* 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/enums/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/services/*.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"; }; - 813C0725B93686899604C1FA /* PBXBuildRule */ = { + 80947A2FF18E06E5B940ACA0 /* 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/slicing/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/retry/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/retry/*.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"; }; - 863F5538D25F019305A64FC8 /* PBXBuildRule */ = { + 840549D991E1A4FD227C6758 /* 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/timeout/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/timeout/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.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"; }; - 89AB5A64D2F7BAEFD84AE805 /* PBXBuildRule */ = { + 8511F95A239D531035420376 /* 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/defaultValue/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/inheritance/Test.ice, + test/Ice/defaultValue/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/inheritance/*.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"; }; - 8A4F2CD3250B81F8C0666116 /* PBXBuildRule */ = { + 865847DA2C67708B4CFE870A /* 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/interceptor/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultServant/Test.ice, + test/Ice/interceptor/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultServant/*.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"; }; - 8E3847FCC2ACB7BD84BF09A9 /* PBXBuildRule */ = { + 8B137D938FD033910546D033 /* 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/slicing/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/acm/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/acm/*.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"; }; - 93291BDDE80CD363ABC4F3A8 /* PBXBuildRule */ = { + 8C8CC733E29C006823557D53 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/operations/*.ice"; + filePatterns = "*/scripts/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + ../scripts/Controller.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.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"; }; - 94E5D10C50E22678B4070CAB /* PBXBuildRule */ = { + 911BD070DE8A35466F16B31E /* 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/slicing/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/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/objects/*.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"; }; - 97E3158E2FE22E029A177CE1 /* PBXBuildRule */ = { + 9913D482606672073EF9884B /* 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/info/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/IceSSL/configuration/Test.ice, + test/Ice/info/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/IceSSL/configuration/*.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"; }; - 9857D4A53D3975A39E217C0C /* PBXBuildRule */ = { + 9CDAD8CE99953C5570CB5E41 /* 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"; }; - 9A27AD256C05C172E1AE72B0 /* PBXBuildRule */ = { + 9E0AF5CFAC8166721B3CF714 /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/invoke/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/invoke/*.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"; }; - 9ACD1AEFAB14C0CB524D3F92 /* PBXBuildRule */ = { + A95C953B51B380A17FA926CB /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/binding/*.ice"; + filePatterns = "*/test/TestCommon/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/binding/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/binding/*.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"; }; - 9DA1377CA4018EE85FEDBCFC /* PBXBuildRule */ = { + AC517155B65FC1204E85F8CC /* 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/acm/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/ami/Test.ice, + test/Ice/acm/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/ami/*.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"; }; - 9F0AE24E71BB2E0F5FB12231 /* PBXBuildRule */ = { + AF2534F44B95A47ADDFDF67B /* 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/retry/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - A32CF8285A6B053AF2C4DC9C /* PBXBuildRule */ = { + B72BE837295DF17DDFD40108 /* 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/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultServant/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/defaultServant/*.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"; }; - A9309FB45F908E127E08BE15 /* PBXBuildRule */ = { + B7499AD05BA236E3286AE115 /* 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/adapterDeactivation/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/scope/Test.ice, + test/Ice/adapterDeactivation/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/scope/*.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"; }; - AC68646374FB44918F0B8881 /* PBXBuildRule */ = { + BC64AA56465C8FBE08B7179A /* 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/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - AFEAB7B27D528834C61D6D46 /* PBXBuildRule */ = { + BE80EF3BB4E02CA5EE251A84 /* 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/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - B1D07C5FDE5DEACA2FDE19DC /* PBXBuildRule */ = { + BECC26E3DBBF204B7E5927F4 /* 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/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.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/Ice/servantLocator/*.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"; }; - B60A4504342022B2D5D5D7ED /* PBXBuildRule */ = { + BFAC9385AF5B1C62CB304049 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -2789,422 +2692,516 @@ 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"; }; - BA0F22F6A09A012085A064E5 /* PBXBuildRule */ = { + C258307974147646482ED430 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/Ice/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/operations/*.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/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for Ice/*.ice"; + name = "Slice Compiler for test/Ice/operations/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Ice_$(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/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"; + 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"; }; - BE2E1AE0DE697D063BC3791D /* PBXBuildRule */ = { + C523A5A2902F545CFF1BC083 /* 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/info/*.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/info/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.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"; }; - C3283B881010BB1CC95A6603 /* PBXBuildRule */ = { + C5736C2941BE781DDE64631D /* 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/properties/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/enums/*.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"; }; - C57FC8986B378D208F20BAE0 /* PBXBuildRule */ = { + C728E6AA53372B98CCCC75A1 /* 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 */ = { + C7B22BC973A3D0530889FDC4 /* 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/binding/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/hold/Test.ice, + test/Ice/binding/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/hold/*.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"; }; - C803868AD619AB7FA87719EA /* PBXBuildRule */ = { + CBC1E6F17724241F37D0F5E5 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/defaultValue/*.ice"; + filePatterns = "*/test/IceSSL/configuration/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultValue/Test.ice, + test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultValue/*.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"; }; - CA7A3B7BE443511788BBDE35 /* PBXBuildRule */ = { + CC080E7B675EE59A2EBB5267 /* 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/facets/*.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/facets/Test.ice, ); isEditable = 1; - name = "Slice Compiler for Glacier2/*.ice"; + name = "Slice Compiler for test/Ice/facets/*.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 */ = { + CF38C0C5FCA88D918D126407 /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/adapterDeactivation/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/adapterDeactivation/*.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"; }; - D19E3CA19E1AB471788912B0 /* PBXBuildRule */ = { + D24C1EFB9554C738FBBFF4A4 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/scope/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceLocatorDiscovery/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/scope/Test.ice, + "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/scope/*.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"; }; - DEF7AB418DFE189C238F7B8D /* PBXBuildRule */ = { + D6040EDFC55D213BAA794052 /* 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/ami/*.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/ami/Test.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for Ice/*.ice"; + name = "Slice Compiler for test/Ice/ami/*.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 */ = { + D777AFCE3F658CA3EABD87DB /* 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/enums/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - E1324200244312457CEC651B /* PBXBuildRule */ = { + D8A4713D3A7254EAA8C5E194 /* 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"; + }; + DF94B80C79B35D09316699A7 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/proxy/*.ice"; + filePatterns = "*/scripts/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + ../scripts/Controller.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - E2598B04DB03DCEAC4D8DCD7 /* PBXBuildRule */ = { + E04915D736AB4D5D74C64119 /* 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"; + }; + E05145B97E66726EE7A63085 /* 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/hold/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/hold/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.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"; }; - E2BF9E65FA70259DC67BBB19 /* PBXBuildRule */ = { + E3FF2A65AF816E8EBDF4617D /* 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/invoke/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/info/Test.ice, + test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/info/*.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"; }; - E685247FAC72008244FF4F4D /* PBXBuildRule */ = { + E556D4E668AC214B1FF3412D /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/timeout/*.ice"; + filePatterns = "*/test/IceSSL/configuration/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/timeout/Test.ice, + test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/timeout/*.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"; }; - E9F0B8E6967BCBEEBDE3820E /* PBXBuildRule */ = { + E67B7E81577CA0548EDC58B7 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/scripts/*.ice"; + filePatterns = "*/test/Ice/udp/*.ice"; fileType = pattern.proxy; inputFiles = ( - ../scripts/Controller.ice, + test/Ice/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestDriver/*.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"; }; - E9FBB1B4891957CADFB0648B /* PBXBuildRule */ = { + E6FA2856755390788BB6DAA2 /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; + filePatterns = "*/Ice/*.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", + ); + isEditable = 1; + name = "Slice2Cpp Compiler for Ice/*.ice"; + outputFiles = ( + "$(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/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"; + }; + ECA001EC16338B375200B5F6 /* 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/location/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/stream/Test.ice, + test/Ice/location/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/stream/*.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"; }; - EAF2BF97C81C44268C1B9295 /* PBXBuildRule */ = { + EE1B96369E945536DFA93DC8 /* 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/inheritance/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/interceptor/Test.ice, + test/Ice/inheritance/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/interceptor/*.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"; }; - EDB0F7ED19C5B183A3246E2F /* PBXBuildRule */ = { + EEDA6000FD40D396D43D25FC /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Ice/*.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", + ); + isEditable = 1; + name = "Slice Compiler for Ice/*.ice"; + outputFiles = ( + "$(DERIVED_FILE_DIR)/Ice_$(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/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"; + }; + F0FB78ABEAFADCDA0762CC8E /* 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/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/properties/*.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"; }; - EE7E4F4B1C7CE544A204C4B2 /* PBXBuildRule */ = { + F4FF19C8B36BC51E28C1D10F /* 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"; + }; + F53C7359C7688256ADE30010 /* 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/slicing/objects/*.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/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/objects/*.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"; }; - EF9EDAEAEEAF00D419FAFC48 /* PBXBuildRule */ = { + F5B0EDABA2B7DE5B601FD5F2 /* 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/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/properties/*.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"; }; - F2E7BBE6049D4FB5B98F07F0 /* PBXBuildRule */ = { + F65ADC4709B3D7098379FDB4 /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/facets/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/facets/*.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"; }; - F713BCB2DE19D0204969C4C3 /* PBXBuildRule */ = { + FD27D7E107BB01688F427A34 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -3222,17 +3219,18 @@ 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 */ = { + FEB3111859F1906BC9DD77BA /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/location/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/location/*.ice"; + name = "Slice Compiler for test/Ice/servantLocator/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); @@ -3242,1770 +3240,1816 @@ /* End PBXBuildRule section */ /* Begin PBXContainerItemProxy section */ - 00D89C717F365A9B330E3D7C /* PBXContainerItemProxy */ = { + 02F1D59BE481F8A321545E57 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = BB40FADABEB7A74BCFAF8930; + remoteInfo = "Glacier2 iOS"; }; - 014501AC275F60A5050D23D1 /* PBXContainerItemProxy */ = { + 04774B6B043E06B20DDA85EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - 0206073BE2096B182AEEB99F /* PBXContainerItemProxy */ = { + 04E20A5BB846D91BB012068F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66766A219D36565BAA8D85DB; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - 0239F500BAC2E87283B0DB3B /* PBXContainerItemProxy */ = { + 05A958A1B7047AB7DD79AF63 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D166D330DEC6674B8372A98E; - remoteInfo = "IceStorm macOS"; + remoteGlobalIDString = 02E12A01B24B3B3E6927EAD6; + remoteInfo = "IceStorm iOS"; }; - 03FE801C71B56486EB5861EE /* PBXContainerItemProxy */ = { + 080DA5611BBDFB5DD434C97C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C4ECB5C2679ED962EFAEA71; - remoteInfo = "IceServices iOS"; + remoteGlobalIDString = FF7948EAFE0A62518B685629; + remoteInfo = "IceAcm iOS"; }; - 043F5A3C19D22388B6604E8C /* PBXContainerItemProxy */ = { + 088E53D66ADCB77044B68F04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7649B8B4D36C63D3D167ED11; - remoteInfo = "IceSlicingExceptions macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 0445FD490A608CA2BBC5A706 /* PBXContainerItemProxy */ = { + 0AB1D88FDB0B571F67339DB0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C8F64BC2EB740FC26540C5A; - remoteInfo = "IceEnums macOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 055279623C7C6ED5BE872EB1 /* PBXContainerItemProxy */ = { + 0ADE15174170E0B43C1FEB12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD615D3AE7C4D142D2D859B8; - remoteInfo = "IceBinding macOS"; + remoteGlobalIDString = EACA18083EFA62557FBB6215; + remoteInfo = "IceGrid iOS"; }; - 056F818105111FA828DFA996 /* PBXContainerItemProxy */ = { + 0B4C82CA734FA90D97995650 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1461134F8E13923F515F804D; - remoteInfo = "IceImpl iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 06958B65D9E61CD65C030E7E /* PBXContainerItemProxy */ = { + 0B84F4707C85691977B46138 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B9A94B53B78BCA1F3F37DB5; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = 137A22811E93D82B716007C8; + remoteInfo = "Glacier2 macOS"; }; - 084E22A8552E2814CEC545B7 /* PBXContainerItemProxy */ = { + 0C3FFB5250946DB2F62ED0B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 8FBA8150AB11D2A819C1D2EA; + remoteInfo = "IceAmi iOS"; }; - 0A9D7521506E54EF49F62920 /* PBXContainerItemProxy */ = { + 0D1D2EE5267D4EC47BDCC5D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 600F66FEB1C8FA05B0D86986; + remoteInfo = "IceBinding macOS"; }; - 0C260F3F898DDD2ED50A2604 /* PBXContainerItemProxy */ = { + 0E84347D1A08F7F15DC27ED3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - 0E5B072C3073550289AC022D /* PBXContainerItemProxy */ = { + 0ED57033457114F5ED5B4752 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 59678E1D5AFC460FA5D03A6B; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = 836D0AD1DCC62D99CC1CB8EA; + remoteInfo = "IceExceptions macOS"; }; - 0F5655381197825B7102E2FB /* PBXContainerItemProxy */ = { + 0FFEF472F74C83504B38C5DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D8E57767C0E6E25C9171CD94; - remoteInfo = "IceEnums iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 12367DE4298BD4FAC0C724E8 /* PBXContainerItemProxy */ = { + 101049B04F050F0556BAEDC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 33115CA925E128B5715AB93A; - remoteInfo = "IceExceptionsAMD iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 133E6ECC4287650410BA9EE1 /* PBXContainerItemProxy */ = { + 10454185DE4E6FB837057223 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = B3FAC186802EC7B160722234; - remoteInfo = "IceAdapterDeactivation macOS"; + remoteGlobalIDString = 9F316F6F4FE88F030A110125; + remoteInfo = "Ice C++11 macOS"; }; - 13C138092DDD001C4BE931E7 /* PBXContainerItemProxy */ = { + 1083543E7C3C54D87729DFFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - 14E3FB2F892E6ADEC5EEEE46 /* PBXContainerItemProxy */ = { + 10D49A2F0F75754D60170585 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - 15F4529F1879A67F50F754A9 /* PBXContainerItemProxy */ = { + 124951D212D9706A742AAD8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = B06DD43CC98E177E5491959D; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 16D6FE9D2BDB54DDB4735C1A /* PBXContainerItemProxy */ = { + 12C39D1B6EEC499875CE301C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 172CBAB495365D889B14D951 /* PBXContainerItemProxy */ = { + 1546F78CDC6948BFC536E89F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 065FE0308F8C069FEF18896D; + remoteInfo = "IceServices macOS"; }; - 179172FA190EA2F6FB1B6134 /* PBXContainerItemProxy */ = { + 15E475DDE808AF169C09737D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - 183D02F1CDC7663537F0F150 /* PBXContainerItemProxy */ = { + 163882765647C8ED7AD33778 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 19A436987D04FD3FE857CE4D /* PBXContainerItemProxy */ = { + 1798C04524E372354944B484 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 1B5149A81431CE3EF21C3351 /* PBXContainerItemProxy */ = { + 17A8BFF896953B1998E75E96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = AE646D18FFEFFFB65901B9D9; + remoteInfo = "IceLocation iOS"; }; - 1B5BEFE3ACBFD71141DFB8AC /* PBXContainerItemProxy */ = { + 1A66F60C8D1392CB576BB6E9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 8716086DA12B2BDD0A0AB020; + remoteInfo = "IceTimeout macOS"; }; - 1BFB741D987C73ABE77B0C32 /* PBXContainerItemProxy */ = { + 1CA7EF0186E289C74677C302 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = BB148EB91DBAAACC5D08F10B; - remoteInfo = "IceImpl macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - 1C86476610F2E1CFF118CB0C /* PBXContainerItemProxy */ = { + 1CF5C6CF222BB3A825FE1731 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = BB148EB91DBAAACC5D08F10B; - remoteInfo = "IceImpl macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 1D75B9D8D2478679CC49270A /* PBXContainerItemProxy */ = { + 1DA75F379586881F62DEC72A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 953A9306D1F74C3E46325E82; - remoteInfo = "IceGrid macOS"; + remoteGlobalIDString = 330758B0C9821D7E1E2243D3; + remoteInfo = "IceProxyAMD iOS"; }; - 21BE39872F46F3825FB2C0BC /* PBXContainerItemProxy */ = { + 1E0C5D84390243D1F093EAE9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66766A219D36565BAA8D85DB; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = 26B6DCD78B127AE4BDB35209; + remoteInfo = "IceRetry iOS"; }; - 2403B7E46EFF8B1823936276 /* PBXContainerItemProxy */ = { + 1E776D0361C6D4CA7ADAA8B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 984F9509A61A9677BDD2B1E7; - remoteInfo = "IceBinding iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 24519292C63CDD33513EFF95 /* PBXContainerItemProxy */ = { + 1F3CA22617C41E7E5DC92496 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 246668AAF6B00CDDA6E9C701 /* PBXContainerItemProxy */ = { + 1F934DA62B7876554BFE25E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = C386F0ADF5BCB591C41D4FFD; + remoteInfo = "IceOperationsAMD iOS"; }; - 25469C37FEC81A040110CF43 /* PBXContainerItemProxy */ = { + 1FDF92C740D86B8DAF02BC71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32B8209C4A20C3D8A8496A49; - remoteInfo = "IceServices macOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 25BEADB06BE24072293366FF /* PBXContainerItemProxy */ = { + 2056ABE6D73F234C39C0A109 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1461134F8E13923F515F804D; - remoteInfo = "IceImpl iOS"; + remoteGlobalIDString = 1849F40335AEAFEAB939B520; + remoteInfo = "IceServantLocatorAMD macOS"; }; - 289518D8279A017F4EA87E20 /* PBXContainerItemProxy */ = { + 21073CC71FE922B62C6FA61C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - 2A753D85D7D7B4468801DD01 /* PBXContainerItemProxy */ = { + 22C284711804C2B72408557A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 74391EA658CAB520F6080EFB; + remoteInfo = "IceDiscovery C++11 macOS"; }; - 2A9B31FD5450BEAC59472BD7 /* PBXContainerItemProxy */ = { + 237A2AA7222257F643AE591A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = BAD99ED95E14E2F53810245D; + remoteInfo = "IceObjects iOS"; }; - 2BEAE6758EFA118B2027CCE6 /* PBXContainerItemProxy */ = { + 2406FB9C52A6CD48CF8E7E30 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 032E51349714AC140B16B6B4; + remoteInfo = "IceOptionalAMD iOS"; }; - 2C3295921EABE6A2B4B344B3 /* PBXContainerItemProxy */ = { + 25861C368313982F64FCFCE1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 086D7EFAFD5B99B06915E82A; - remoteInfo = "IceStorm iOS"; + remoteGlobalIDString = CEE926A8FFE81634B9CBA64C; + remoteInfo = "IceProxy iOS"; }; - 2EF62F8C4BCBD2D0C38BCA8B /* PBXContainerItemProxy */ = { + 2791207B562F08EEDE8694BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 0FE313AA3347701853A8ACC2; + remoteInfo = "IceScope iOS"; }; - 31334DDE7BEFE6B15239CD3E /* PBXContainerItemProxy */ = { + 28308B058AA8525E4B221564 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A292FEFD4AC0C53DF83589BE; + remoteInfo = "IceProxy macOS"; }; - 3266390A5794F2FAA5AB106B /* PBXContainerItemProxy */ = { + 2AD592A2235556B7CF68D372 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 57641F57B5FDCF62AD0FCD45; + remoteInfo = "IceFacets iOS"; }; - 332C20F6F8CECC445FA43DBE /* PBXContainerItemProxy */ = { + 2BF05714148999A822860758 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 02E12A01B24B3B3E6927EAD6; + remoteInfo = "IceStorm iOS"; }; - 33916F796E33205889F8A514 /* PBXContainerItemProxy */ = { + 2C1760F84B17A927353B44D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D2EB13A2B3406D37FA2754E9; - remoteInfo = "IceSlicingObjectsAMD iOS"; + remoteGlobalIDString = 0520084212F98FC56E36026A; + remoteInfo = "IceLocation macOS"; }; - 361B9424E3E8CEFDCD4E18F1 /* PBXContainerItemProxy */ = { + 2DB10530B98F5C10277BDF10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 366E74274441B9A0FCDA56D5 /* PBXContainerItemProxy */ = { + 2E362D204705D96236DA7308 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = DE8F7D3EE9F4909908CB3923; - remoteInfo = "IceStream macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 36E9BF62C12569F45DA81AF3 /* PBXContainerItemProxy */ = { + 2F7DA7F9AD6E9BB9FD3237DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C353EC6DD74EF040A9869F1A; + remoteInfo = "IceSlicingExceptions iOS"; }; - 386AB84004D9B78C0EDD536D /* PBXContainerItemProxy */ = { + 2F8D1CAC651E8D59006EFD72 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7862E459B18BD8751A67923F; - remoteInfo = "IceProxy macOS"; + remoteGlobalIDString = 4A4450AB007BDD9E08CDC48B; + remoteInfo = "IceOperationsAMD macOS"; }; - 396D434D2A6FBB7DFE7FB14F /* PBXContainerItemProxy */ = { + 31043A801393C80C771D88C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 263FF8D1D5EF5BA8F4E3FDFA; - remoteInfo = "IceOptional iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 3B9A50B36B7EC52474EC74CE /* PBXContainerItemProxy */ = { + 35640F3820EFC19B6758C50F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7B09AAAF71F5D5AB2F8C1B78; - remoteInfo = "IceUdp macOS"; + remoteGlobalIDString = D52144324A93F3717DC3A4BB; + remoteInfo = "IceInheritance macOS"; }; - 3C96FBBA1D866525481B6407 /* PBXContainerItemProxy */ = { + 35ED6D2F347DF92D6FE7310B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 73B0FB7CB263578EA908E6BF; - remoteInfo = "IceProperties iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 3CB4CA72520721540AEF5655 /* PBXContainerItemProxy */ = { + 37B09DA87F27CB7ABE8325BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 246FEE224D85BEE24C2D1581; - remoteInfo = "IceServantLocator iOS"; + remoteGlobalIDString = 866E8F0547A584631426B2A5; + remoteInfo = "IceProxyAMD macOS"; }; - 3D8884CD565D4A35EB22C64D /* PBXContainerItemProxy */ = { + 37F29581EFF202ECB7D4A0D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = BF6E058050842A50604055C2; - remoteInfo = "IceOptionalAMD iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 3F0579C966297CC06DB23E31 /* PBXContainerItemProxy */ = { + 3894FA8C71251D14C413F375 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D166D330DEC6674B8372A98E; - remoteInfo = "IceStorm macOS"; + remoteGlobalIDString = 30CD23A6E9655B858C148892; + remoteInfo = "IceAdapterDeactivation macOS"; }; - 402763FE8881D4A8E87ADE5B /* PBXContainerItemProxy */ = { + 39EFC00272C6203BA2739F55 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - 41CC0169F1111C04E415AC8D /* PBXContainerItemProxy */ = { + 3A3907750B192A4164843BD4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = CF2C35C710236049C9C60B79; - remoteInfo = "IceProperties macOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 424D32CEB0DE33F9E1D2EDAD /* PBXContainerItemProxy */ = { + 3B24D3755A46DDD29C24B72D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 439600681D10A6E220DE0AD7 /* PBXContainerItemProxy */ = { + 3C299AFF4F7BCDF5320774F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 47675D8C1F957EE4364D7889 /* PBXContainerItemProxy */ = { + 3DDD2A62396435A09C641971 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 80D1931BE1B80501D33167DD; - remoteInfo = "IceTimeout macOS"; + remoteGlobalIDString = F18532A4F881321CB6AE2614; + remoteInfo = "IceDefaultValue iOS"; }; - 4790FABF6E6F6384DC30DEF1 /* PBXContainerItemProxy */ = { + 3E0292931E0236A0D004F053 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = DE7C3CE12D76528ED6571BB0; - remoteInfo = "IceTimeout iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 488DB15BEBD72B41BFC2F7C0 /* PBXContainerItemProxy */ = { + 4076824240EA3725053168B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - 4952EEE2AED387DB9EEA4BD4 /* PBXContainerItemProxy */ = { + 40EC11FC36AD38007C21C6EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = CFA7C016ADBDBC9AE9AB0FF7; + remoteInfo = "IceGrid macOS"; }; - 4A977A65758B16E7E31D8996 /* PBXContainerItemProxy */ = { + 43F27E2455DFDB8B0F43DF75 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4FDA69908F50F24A52FA5554; - remoteInfo = "IceScope iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 4B703F834745FE58850D62D4 /* PBXContainerItemProxy */ = { + 46EF2CE00F01F9EB508A2670 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 4BD9B6A40A3A2BAE3F792DF2 /* PBXContainerItemProxy */ = { + 470DB549AF0696DF551E03E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A2BA1134828B7EE3273C5D13; + remoteInfo = "IceObjects macOS"; }; - 4BF30E2AC14F122F253331FA /* PBXContainerItemProxy */ = { + 47FAFF9D6569E68CABF65040 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D7E804643FF0F11F9B5B0EA8; - remoteInfo = "IceOperations macOS"; + remoteGlobalIDString = 0210DABE4A3F8E46162FC09A; + remoteInfo = "IceFacets macOS"; }; - 4C7D8D5F56D51212B4EB3EDE /* PBXContainerItemProxy */ = { + 483533F0757ED3F22A50F73E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 205D8173670283F9A6ADDECA; + remoteInfo = "IceOptionalAMD macOS"; }; - 4CAAF120E053F3911CDCBB12 /* PBXContainerItemProxy */ = { + 496CC30FB83C3D5689E55992 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = AD0E7F89F478FE77514A8842; + remoteInfo = "IceServices iOS"; }; - 4CEC6C7D95E0CA1C63DEB2A9 /* PBXContainerItemProxy */ = { + 4B036C207C08D140D8ECDF94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = EEC6F479C65DCAAB4950D96F; - remoteInfo = "IceFacets macOS"; + remoteGlobalIDString = 9FEDBE2BC73385F81D251350; + remoteInfo = "IceImpl macOS"; }; - 4D0ECF7B4A4E30694C530DC7 /* PBXContainerItemProxy */ = { + 4D3AF207C2965ADE012D2344 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 54C05D7A1468FBA7EB02A914; - remoteInfo = "IceInheritance macOS"; + remoteGlobalIDString = 1AAB45470D9803BF85F70BF0; + remoteInfo = "IceBinding iOS"; + }; + 4D9DC67DA712ACC2EF7313A5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AA9DCC224B96540517FC8217; + remoteInfo = "IceSSLConfiguration iOS"; }; - 4D4C5D798AFFB8EA4F4BB9AB /* PBXContainerItemProxy */ = { + 50128C099A3CF7A9D7D34405 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - 4FA7360902327FE1AEDD3760 /* PBXContainerItemProxy */ = { + 5037CE3078B57AB307002568 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - 4FD344865433C487A7C74F3E /* PBXContainerItemProxy */ = { + 514855FEB49BFD6BB1472BD6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 961580353429DCE0D0B109CB; - remoteInfo = "IceScope macOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 5020DC827D0CDBDE619C1999 /* PBXContainerItemProxy */ = { + 5308F3A03AE16A651E327C44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - 50E06DF792893808145A8EAB /* PBXContainerItemProxy */ = { + 53755BAD7B2EA1AD79CAEDBE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - 520C9E1BA5F83158E30E26F9 /* PBXContainerItemProxy */ = { + 5513FD3EB06702845234B6E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 52A7DB154C18252C0118A925 /* PBXContainerItemProxy */ = { + 55D25AB9B857AE18CCAB5270 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 408FAEC665C8C38D7A2248A7; + remoteInfo = "IceDefaultServant iOS"; }; - 534637D15E3B13C82368E2DF /* PBXContainerItemProxy */ = { + 587C03CD19778AC277402EC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 554ED7B7307F91FB05534DB9 /* PBXContainerItemProxy */ = { + 5A357832ED6DB437413B159E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 66766A219D36565BAA8D85DB; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 565C3379B039CBE177EDEFEB /* PBXContainerItemProxy */ = { + 5AA83B738974FE7C022EE611 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - 57ACB85FDE7F2314CCE6A7F8 /* PBXContainerItemProxy */ = { + 5B62EB88A0D7C4BC05CF553A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = CC8E2C60DE859F3875C1A578; - remoteInfo = "IceOperationsAMD macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 5A1A8F8FAFE4A01BD86E291F /* PBXContainerItemProxy */ = { + 5B79C9D4A01E72B879EDEB10 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 85AD9F1A782BBCA078D72ECA; + remoteInfo = "IceDefaultServant macOS"; }; - 5D854259AC58BF71060A4FE2 /* PBXContainerItemProxy */ = { + 5C2BDD1F7CD22C469FF2BC4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - 5DDEA32F1C31BC51C5C6D66E /* PBXContainerItemProxy */ = { + 5DB13D8EE71751CB075CD794 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B9A94B53B78BCA1F3F37DB5; + remoteGlobalIDString = 8F82ACAB074FFBE3B4D8F339; remoteInfo = "Ice C++11 iOS"; }; - 5FC49C5318AA80BB4616722C /* PBXContainerItemProxy */ = { + 5DF3D971056622D31D908176 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 45B627654A6C6E672B177B58; - remoteInfo = "IceSlicingObjectsAMD macOS"; - }; - 61A26954F988625C541F1F01 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; - }; - 61BC7B11FD7679D2366C9C3F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 87E9A0678200BC32DF77CC22; - remoteInfo = "IceRetry iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 61D1B0A84E51FD06361FA27C /* PBXContainerItemProxy */ = { + 5E92589DEC11FF0774D2FC4C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 82C53B88275C4981212133CC; - remoteInfo = "IceSlicingExceptionsAMD macOS"; + remoteGlobalIDString = 6204C55F63CC62BE2A2B08C9; + remoteInfo = "IceProperties iOS"; }; - 61E2B5DB1640EA077C36236E /* PBXContainerItemProxy */ = { + 5F13CBE277E8222A756266A1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - 62F870226A3B49EF769A6F69 /* PBXContainerItemProxy */ = { + 6096BE5870763AC1855E4FEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = D7CF9E2B46E63FC31B7A1F92; + remoteInfo = "IceAcm macOS"; }; - 63119168261AABF6098B7D8C /* PBXContainerItemProxy */ = { + 60B1571F8AEFCD29A0DD20CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 6315F1589B46F7B4E65EFECB /* PBXContainerItemProxy */ = { + 62BBA732C3711A7003559032 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 8F82ACAB074FFBE3B4D8F339; + remoteInfo = "Ice C++11 iOS"; }; - 64243A42833EB19FFF1EDAC1 /* PBXContainerItemProxy */ = { + 65E2CA13F3897003E6020246 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - 64AAB3780F7152FEDDDF1C63 /* PBXContainerItemProxy */ = { + 65E4D69F83161D7FD6CD98D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = B51FD7FF275A85DCE665AB96; - remoteInfo = "IceObjects macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - 64E24FB3A09A1FAF8FA07FF9 /* PBXContainerItemProxy */ = { + 66998044C76BFAC007A08089 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3D1F7E6A7317D6CB8877A0D5; - remoteInfo = "IceAdapterDeactivation iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 65DDD513A3AD330E4DED4FBD /* PBXContainerItemProxy */ = { + 674B5652E10D914DD5AA0D14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7AC3B103C3B879479057C283; - remoteInfo = "IceDefaultServant iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 65E35AB963957665F82C78A4 /* PBXContainerItemProxy */ = { + 69C0973CE4AC597D87F0CC67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = EBB34A2FBFB19A98854A90B2; - remoteInfo = "IceObjects iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 695A31E5C75603C7FBD2276A /* PBXContainerItemProxy */ = { + 6E7BAB3FDAAFA5B13D1CC895 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = DD3F4218F00B8F03628CFF85; - remoteInfo = "IceStream iOS"; + remoteGlobalIDString = 595CBA41E37503369DC5E136; + remoteInfo = "IceEnums iOS"; }; - 69E7A8EC87F6BD69985BE302 /* PBXContainerItemProxy */ = { + 6FD91744CC3C92594C713913 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2C9432880D461B94B2829F4D; - remoteInfo = "IceAmi iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 6ACCFCFB18833D2E4B29A59B /* PBXContainerItemProxy */ = { + 70992C659FB809947542BF98 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - 6B0AB5FCB178D5C6B7BD91DB /* PBXContainerItemProxy */ = { + 7113F8F89F2CEA84A61862D9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 6B7FE12812349143703F9B3B /* PBXContainerItemProxy */ = { + 7340355D75412875945DEE04 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 6C14F96F54B2F09A87EF82E4 /* PBXContainerItemProxy */ = { + 73CA73AF92CF2C882906C7EF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 81EBCBBD81DAA61D4581DF4A; + remoteInfo = "IceTimeout iOS"; }; - 6CDE8504E9B7417FC60202FC /* PBXContainerItemProxy */ = { + 746F0F0BE070900F901A030E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 6EF8510E1A2A180A27F9ED34 /* PBXContainerItemProxy */ = { + 7475914DC76F68487DDE435E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 137A22811E93D82B716007C8; + remoteInfo = "Glacier2 macOS"; }; - 6FBFA1D5551FA04E8D5D1888 /* PBXContainerItemProxy */ = { + 74871813383637AD809DB571 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 709A3F364483E15887C64210 /* PBXContainerItemProxy */ = { + 75CA660A2D6F6AEC6D522233 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = E1DFDE719731E7D4A7FEF6E0; - remoteInfo = "IceDefaultValue iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 70C90AE95855653A9AC0CE50 /* PBXContainerItemProxy */ = { + 75E30D8BC5881EFBF70EA140 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 182B60B239B1CC9AAF97C3ED; + remoteInfo = "IceSSLConfiguration macOS"; }; - 718C3CF8AFB80575F45C8CDA /* PBXContainerItemProxy */ = { + 761A21ECE288F318C0F07F58 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - 720832E175EB439A57A39484 /* PBXContainerItemProxy */ = { + 77336DB172773086F33DE302 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11C4703EE1A20D4D647A2951; - remoteInfo = "IceDefaultValue macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - 73353E58AC47EC3C0E7E4660 /* PBXContainerItemProxy */ = { + 77DF3890E1786A15A18724C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 214682343A5CDC54C07B1A1B; + remoteInfo = "IceHold macOS"; }; - 735348BAA927AF23DB6A9224 /* PBXContainerItemProxy */ = { + 7815CFBD06551649906B5770 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 6C9760FEBCAAE6CE0FA2DC30; + remoteInfo = "IceHold iOS"; }; - 73A2F189E512673017E1BFE6 /* PBXContainerItemProxy */ = { + 785910A02E277731751D94FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 61321B12DA134239ABC63556; + remoteInfo = "IceAdapterDeactivation iOS"; }; - 758C83C5E9AC0CBAE5F586A1 /* PBXContainerItemProxy */ = { + 78B89ACEA5183EDBD231250B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - 758EC9DFA3BCF0FA971D1F71 /* PBXContainerItemProxy */ = { + 7909541A87A3969E62A8D76D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 6D2A74C3BC8748EAD4AF10CA; + remoteInfo = "IceInvoke macOS"; }; - 75D90FD867A1C5A9F54E6920 /* PBXContainerItemProxy */ = { + 79291E616A79762AAA043BC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = AF397ABBF2A5A4C1FCF90790; + remoteInfo = "IceServantLocator iOS"; }; - 76E71BF16EFF9D2AC7E83382 /* PBXContainerItemProxy */ = { + 79462F2296ABDFB8BD15906C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 44669E73C88B6F4F3038B679; - remoteInfo = "SliceEscape macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - 78F1308C887D1667DE857AF8 /* PBXContainerItemProxy */ = { + 7BB5FF0440E7397329F730FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = BC8247889BA776D5F194850C; + remoteInfo = "IceSlicingObjects iOS"; }; - 7C6BF10F61186DD69616F0C2 /* PBXContainerItemProxy */ = { + 7D1311CCD0AD0D14DF684101 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 59678E1D5AFC460FA5D03A6B; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 7EE72D0E259A4D5150B01076 /* PBXContainerItemProxy */ = { + 7F77B050D8D9177B58C744C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = B06DD43CC98E177E5491959D; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = 86D99596C3AC52CDD7C6A937; + remoteInfo = "IceServantLocatorAMD iOS"; }; - 7EFFF6DF96D917257417FC18 /* PBXContainerItemProxy */ = { + 8060445ABDBD1051C1344C96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - 825C0A36A7AC7136A8289E00 /* PBXContainerItemProxy */ = { + 826B47DEC92C7B1AA09ABB5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = FC5FC6ACD26B2D242E65DDEF; - remoteInfo = "IceOperations iOS"; + remoteGlobalIDString = 53EC7722C4E553C8B5189060; + remoteInfo = "IceInfo iOS"; }; - 827AAA0DBD12FF9B085F6843 /* PBXContainerItemProxy */ = { + 8490387359BE5724994B3D56 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 47118015D4FFF9159FC93434; - remoteInfo = "IceAdmin iOS"; + remoteGlobalIDString = 137A22811E93D82B716007C8; + remoteInfo = "Glacier2 macOS"; }; - 84E7D19B1BC7D48A5CCFCFC9 /* PBXContainerItemProxy */ = { + 852C05BDD534DB44709C07C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 96F2227A2D1F58BCEA8ED0F6; + remoteInfo = "IceUdp macOS"; }; - 863213C4D9F821BDBBB2F0AC /* PBXContainerItemProxy */ = { + 8569D3B6F0C1240326500260 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = A2837C7BEC47E856E536F9B3; - remoteInfo = "IceFacets iOS"; + remoteGlobalIDString = 9F316F6F4FE88F030A110125; + remoteInfo = "Ice C++11 macOS"; }; - 870182EC13F330A5C99A8AD8 /* PBXContainerItemProxy */ = { + 8587E52646DD02D89A81EBF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - 874262A59C8B1F6AEE8C42F1 /* PBXContainerItemProxy */ = { + 8779B8D8D3BACED7A8A54A9F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - 8838EE71DB9C73D4BDB9E15D /* PBXContainerItemProxy */ = { + 88E9909EB6F7154046E78033 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - 88DF7E54543F3B33D43E28E6 /* PBXContainerItemProxy */ = { + 8991DFD0D88BB4FBC68E3FF7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - 89FC34EF19D5D0ABC4D1EA35 /* PBXContainerItemProxy */ = { + 89BB66CA925FF81CC3C4702D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 8B673B53CF2890202D016783; + remoteInfo = "IceInfo macOS"; }; - 8B8368E9D04D9365D7FEF1DB /* PBXContainerItemProxy */ = { + 8B18A6C108529E5D0AE08A7C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FD780B3B0F51D50A0233C81; + remoteGlobalIDString = 1714972356F07102A679833E; remoteInfo = "IceInterceptor macOS"; }; - 8F2F3FC6FC38618B325EFB96 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 59678E1D5AFC460FA5D03A6B; - remoteInfo = "Ice C++11 macOS"; - }; - 8F39CEB5897DD5417B1A0BEA /* PBXContainerItemProxy */ = { + 8DE974F341AADB664C9BC5F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; - }; - 8F9C0007F42379910D9FF4A9 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 9097BF0D9D5029FE82933379 /* PBXContainerItemProxy */ = { + 9045E5A631A69D61EB1F9E8D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D6C19C2ACCB1CB3FB3B25FA9; - remoteInfo = "IceGrid iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 9121DFC979593B1E11C648A8 /* PBXContainerItemProxy */ = { + 90611DDF57B019E5E078509F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B9A94B53B78BCA1F3F37DB5; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - 9204F421FDD1F7C1A321EFF5 /* PBXContainerItemProxy */ = { + 951326359780A13415B74340 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = E2CC2C0A9253A8A9567DA40C; + remoteInfo = "IceOptional macOS"; }; - 92CB9BA81DAA028497F4ABB5 /* PBXContainerItemProxy */ = { + 95898F407A05B5C7BF184F74 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - 939FC52BA742DFCF56314DD7 /* PBXContainerItemProxy */ = { + 97396975E754D36A4408A58E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - 93CD96FF4EB061E085F2A386 /* PBXContainerItemProxy */ = { + 978A989313EC93B33642623B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 9938DD491B5B4A54DB0A80E3; + remoteInfo = "IceDefaultValue macOS"; }; - 95FF20C7B96C39DAEA9783B7 /* PBXContainerItemProxy */ = { + 97B35E09FB8379402B16C9B9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - 9636074FB23CB93DD4FDD351 /* PBXContainerItemProxy */ = { + 9C7171466351C72E76E6896B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EA1D2D4417E34B61AC64FEE1; + remoteInfo = "IceInterceptor iOS"; }; - 96C749A2EF071F5E2130E695 /* PBXContainerItemProxy */ = { + 9D65E855E55E1AB1E46C47C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4426F98834307DB6D023DE51; - remoteInfo = "IceInheritance iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - 98B15343A8E74143ED5B4B0A /* PBXContainerItemProxy */ = { + 9FE3D1A04B09E6CF7F7502C5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = BCEAC60BF9D3DB0E6BB1DD33; - remoteInfo = "IceSlicingObjects macOS"; + remoteGlobalIDString = 8F82ACAB074FFBE3B4D8F339; + remoteInfo = "Ice C++11 iOS"; }; - 9E97558F58846088EB744D06 /* PBXContainerItemProxy */ = { + 9FFED967233D448C9D5FCD1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D4F0B99BDEE21096E1027E; - remoteInfo = "IceInfo iOS"; + remoteGlobalIDString = 204D17961BE241E9AA6931C4; + remoteInfo = "IceSlicingExceptionsAMD macOS"; }; - 9FC3D5756BE155623977F09D /* PBXContainerItemProxy */ = { + A0F016AD1E999B7BEEFD079D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - 9FD62E260BCCE118132284B9 /* PBXContainerItemProxy */ = { + A1564C6A6F504130C7B077E4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = BC8AD08D72ABA5BDCF4A07E3; + remoteInfo = "IceStream macOS"; }; - A07196A81A2D3095AFD04529 /* PBXContainerItemProxy */ = { + A27C6B11529DF945963C598D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3CC923BA7EC9201D602FFE65; - remoteInfo = "IceAcm iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - A1177BDA42ECB93DD19E9EEC /* PBXContainerItemProxy */ = { + A2ED78FDF2B79D91463F89B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - A3981340330BF1B2BBE5C5ED /* PBXContainerItemProxy */ = { + A3AFC54E8EA145173239BD48 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - A52B386CD17D3AC93A7BBB23 /* PBXContainerItemProxy */ = { + A4BA589A6533E902A79E9953 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - A6D0AA617D51148B4A729D8B /* PBXContainerItemProxy */ = { + A5D3113454C161DD75477BA5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = BB40FADABEB7A74BCFAF8930; + remoteInfo = "Glacier2 iOS"; }; - A70E7564B3A082D6BCBE1D17 /* PBXContainerItemProxy */ = { + AA3A356C6953B9401698C4F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 457BBB51C97A0228B53F703A; - remoteInfo = "IceExceptions iOS"; + remoteGlobalIDString = 9FAA9797D207A26125233020; + remoteInfo = "IceProperties macOS"; }; - A8C02DAD0D072836518FAF59 /* PBXContainerItemProxy */ = { + AB1F8CB427C7F0F350F353F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - AA1D3D274DE1D1DACAF76475 /* PBXContainerItemProxy */ = { + AB49C261B8E6842F0934E90E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = BBEFD25BD9A130DE61D90238; - remoteInfo = "IceOperationsAMD iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - AA999748EC22F00D7E5E42EB /* PBXContainerItemProxy */ = { + AC1F23397FF990BFB8F67C56 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - AAF7F7CC5EB52708BEAAC88A /* PBXContainerItemProxy */ = { + AD75D3B0464DD8529292B622 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 736E7E0279329997566B6CBD; - remoteInfo = "IceInterceptor iOS"; + remoteGlobalIDString = 90FA36CD9B0F6F2C3BC99401; + remoteInfo = "IceOperations iOS"; }; - AB9364286ACF8E12CD09F08F /* PBXContainerItemProxy */ = { + AE9B904DF12B5B648AE23337 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 94D926D5469FBD751BF9B740; + remoteInfo = "IceScope macOS"; }; - ABC6C317ECF9D9B7E1EA45F4 /* PBXContainerItemProxy */ = { + AF3025EB1D4A3CDF25855D1B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - ABEABF70DC2F4D6B6E50A4BC /* PBXContainerItemProxy */ = { + B0486932F2DD45930580B73A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 086D7EFAFD5B99B06915E82A; - remoteInfo = "IceStorm iOS"; + remoteGlobalIDString = E84AD21BA9DB06F21E2D3BB3; + remoteInfo = "IceLocatorDiscovery C++11 iOS"; }; - AC1FECBB876831076416E474 /* PBXContainerItemProxy */ = { + B19A744D8AB77B2B729518B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = B49EEDD01A8C36F24785F1E7; - remoteInfo = "IceAdmin macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - AD02F61E11394A39B48185B1 /* PBXContainerItemProxy */ = { + B1A28AE71B094403C2C0C8C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = B1154CF85BB46C6CCA916ABD; - remoteInfo = "IceRetry macOS"; + remoteGlobalIDString = 1F921787D1BBEBC84AF46F5D; + remoteInfo = "IceSlicingObjectsAMD iOS"; }; - AE21B8411D203C7FC4055270 /* PBXContainerItemProxy */ = { + B2D94D8BBB319F772FF7C077 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - B033F882805EFC28F4711FC0 /* PBXContainerItemProxy */ = { + B2EF5A0F019D0798C8E56756 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = BA6B1EBD97713F7883F4CA94; + remoteInfo = "IceSlicingExceptions macOS"; }; - B0511C999599692CEF63C386 /* PBXContainerItemProxy */ = { + B349CD7089A08FE116851B73 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4CA64E4D7C1BECF901572919; - remoteInfo = "IceDiscovery C++11 macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - B18B4B776B2C5C1E43BB8117 /* PBXContainerItemProxy */ = { + B365A4BAEE25960F7C19EF20 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6B689E233D18BEC5377ECFE9; - remoteInfo = "IceProxyAMD iOS"; + remoteGlobalIDString = B0A77BB6DFBFBE8B44E34482; + remoteInfo = "IceOptional iOS"; }; - B27B1B823F57615994AA87FE /* PBXContainerItemProxy */ = { + B3D3F185D102E0E8FE8D4788 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - B27F0A0C8164D50379B47811 /* PBXContainerItemProxy */ = { + B3ECC1E2787AE418FA27994C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 85DA963BEF597DDF5EBD28D4; + remoteInfo = "IceDiscovery C++11 iOS"; }; - B2CB3A501165B7E78E956557 /* PBXContainerItemProxy */ = { + B4E319A813799C8D726C4379 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - B394E49E013E4A6297833ACF /* PBXContainerItemProxy */ = { + B5BFDAAF6AE364DD7061584B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - B4D6DC6746AF83195798E010 /* PBXContainerItemProxy */ = { + B5F2564776EA1F243AB49D5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8DB5F9E207CEEFAD3CA28266; - remoteInfo = "IceDefaultServant macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - B50E757FD1BF6AF7A6F37EDE /* PBXContainerItemProxy */ = { + B644051E85864FAFA9B1ADE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - B7B7629BBC65294BCFA76061 /* PBXContainerItemProxy */ = { + B68C23310174EDAB1C726EE7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8E23FF66CFB6287919E99A31; - remoteInfo = "IceLocatorDiscovery C++11 macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - B7F648BD936198D44B002228 /* PBXContainerItemProxy */ = { + B72EB5F999F616B79B17B6AF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AFBF627FDB9280859A796E95; + remoteInfo = "IceStream iOS"; }; - B83CA1F1B88DCBA5E07177D0 /* PBXContainerItemProxy */ = { + B7A43EE3A8546D7831BBE9CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 653844725C6B533AEBD3977F; - remoteInfo = "IceProxyAMD macOS"; + remoteGlobalIDString = A5A118B8D38A8DF773729D3E; + remoteInfo = "IceEnums macOS"; }; - B951D0A96AF960ED8F08DDFC /* PBXContainerItemProxy */ = { + B7DAD4A79D1B39A351361B43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = B502D4DB10FAD01329293155; + remoteInfo = "IceOperations macOS"; }; - BA77B9323A7565435BBBB21C /* PBXContainerItemProxy */ = { + B898B88B9D2370C90091CA70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9D8A9741B7D4BD64D5B31B88; - remoteInfo = "IceLocation macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - BB2E208EBD5BE41E44F8EB27 /* PBXContainerItemProxy */ = { + B8E082D0B95AECE4310FFBD5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C66C239BBA518B87D48C1C3; - remoteInfo = "IceSSLConfiguration macOS"; + remoteGlobalIDString = C11F92A0F52BB78CE42B609D; + remoteInfo = "IceInheritance iOS"; }; - BB9C3870FD19928B2D211011 /* PBXContainerItemProxy */ = { + B8EC0A4D5ACA3C64100F5519 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 953A9306D1F74C3E46325E82; - remoteInfo = "IceGrid macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - BBE986EDE9CEA2409CEA11DC /* PBXContainerItemProxy */ = { + B9310496AD9B4161E3EFB68F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - BC400B6D1967FEED0EDD3926 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; - }; - BD5BDE3817FEC6E0B6EF6DBE /* PBXContainerItemProxy */ = { + BA14EFBEC1ADAC16CFAF4570 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - BD799E40E1B1231346583165 /* PBXContainerItemProxy */ = { + BADB735E88BEF016E412AC96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C65AA8108580E3668BDBC3F; - remoteInfo = "IceOptionalAMD macOS"; + remoteGlobalIDString = 0763ED05481F11F83E2EE767; + remoteInfo = "IceStorm macOS"; }; - BE7A26630FA857A0F9DE2244 /* PBXContainerItemProxy */ = { + BC5EC2C581CEA0BED68A07E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - C3147B2B67B7EBE5156B5365 /* PBXContainerItemProxy */ = { + BD7EBF2F4BEE5CE80F7FDE34 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 60091C7C300D5092A8E52149; - remoteInfo = "IceExceptionsAMD macOS"; + remoteGlobalIDString = 9FEDBE2BC73385F81D251350; + remoteInfo = "IceImpl macOS"; }; - C32F4810A9B60D686D43153B /* PBXContainerItemProxy */ = { + BE883B87719EC8D076FF6B78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - C38E4E0F120F34468BCB4F61 /* PBXContainerItemProxy */ = { + BEB34F0BDDE3C8CE03F2277A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - C4648503F7E00B7B097DD352 /* PBXContainerItemProxy */ = { + BEDBE2EA1EECA7EFB1E39F8B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938EB0FB3FB9C74695580EBE; - remoteInfo = "IceServantLocator macOS"; + remoteGlobalIDString = AD5C495F17B512B2D13CC822; + remoteInfo = "IceInvoke iOS"; }; - C48482DE10A162F47CEE22B0 /* PBXContainerItemProxy */ = { + BFC93BE5D1A5B2CFD4575F9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 563E7C5E9BFDDAD9AEB54CD4; - remoteInfo = "IceDiscovery C++11 iOS"; + remoteGlobalIDString = 8D692CC4BED85D90455B3611; + remoteInfo = "IceLocatorDiscovery C++11 macOS"; }; - C77629519BBBB5C64DB1BEE7 /* PBXContainerItemProxy */ = { + C3DE4AFD27BC034B2AFA89FD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 08063B79E151583B4BCA64E2; - remoteInfo = "IceSlicingExceptionsAMD iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - C82C192791BA7B79C32D9024 /* PBXContainerItemProxy */ = { + C454691EF6B4F7655269AFAB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D660697C6325570C429F2BC9; - remoteInfo = "IceOptional macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - C94FC3CACFFDF403942A0713 /* PBXContainerItemProxy */ = { + C53DB7524D834CD967E9FA4D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4CD1512C8E4830F6FAC5E6E4; - remoteInfo = "IceSSLConfiguration iOS"; + remoteGlobalIDString = A9149583C7CA34903D80B3C4; + remoteInfo = "IceImpl iOS"; }; - C9567EC56D783D1440891852 /* PBXContainerItemProxy */ = { + C5ED53B11A35E611F70CD0BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - CC3474720734885708BBBD6A /* PBXContainerItemProxy */ = { + C7E6BB3A69B21AA9378983B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = F41AE083FE7A390670B538F9; + remoteInfo = "IceServantLocator macOS"; }; - CD3F5FB4DE55DDA83EAF3052 /* PBXContainerItemProxy */ = { + C8F115F9CA8B54E9534DEEFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - CDFC04EB2D7F9C1BDD4EE235 /* PBXContainerItemProxy */ = { + CB8D00FE1ED96C2C67C62B36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = F9DF2DD34D62DDCA59B08490; - remoteInfo = "IceInvoke iOS"; + remoteGlobalIDString = EACA18083EFA62557FBB6215; + remoteInfo = "IceGrid iOS"; }; - CE6D8582F9E5F43FD4CA3741 /* PBXContainerItemProxy */ = { + D1C34263362C925446B8169C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 3922C5D52BCDB27B7A0BD1C2; + remoteInfo = "IceExceptionsAMD macOS"; }; - CEF13A536AF71E7BF67099FA /* PBXContainerItemProxy */ = { + D27B32C7AB353D5AE4902D67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - CF6B626BD259CB7B40F13866 /* PBXContainerItemProxy */ = { + D36C2411C435C799F754506E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 4E4074DFF5890EB17098C624; + remoteInfo = "SliceEscape iOS"; }; - CF8051D30E715DB8FEBA9FD7 /* PBXContainerItemProxy */ = { + D37C81BBEC64F74D436EC901 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = E51388D0936150349DB47717; - remoteInfo = "IceInfo macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - D0EF17D320E8AB74A974F526 /* PBXContainerItemProxy */ = { + D3D242A6092E087E9C48B054 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 92DFD90832239D72108865B4; - remoteInfo = "IceUdp iOS"; + remoteGlobalIDString = 3C1B36794C4B3EFB2B618967; + remoteInfo = "IceRetry macOS"; }; - D33424573227C409DB3052BE /* PBXContainerItemProxy */ = { + D40E9987316CBD6277131445 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 568C96C03F49810104EE6CD1; - remoteInfo = "IceSlicingObjects iOS"; + remoteGlobalIDString = 9F316F6F4FE88F030A110125; + remoteInfo = "Ice C++11 macOS"; }; - D566C077519B17B006F4C457 /* PBXContainerItemProxy */ = { + D4162EF180337D61BC95E0E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - D5F74D0D75EAC0F8566B0B23 /* PBXContainerItemProxy */ = { + D426300D75A672E2E4B19816 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7C4454250BFF2F744DA15043; - remoteInfo = "IceProxy iOS"; + remoteGlobalIDString = EFD2EA453C644DB2E82BF9B6; + remoteInfo = "IceSlicingObjects macOS"; }; - D6167EF5F451D5FA93AD9BB8 /* PBXContainerItemProxy */ = { + D68E9B85F7C0297292175F63 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - D72F2F8587751A3BF793B388 /* PBXContainerItemProxy */ = { + D7446F13E4963912133B5474 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - D8081E43C2CA5A8101CA8073 /* PBXContainerItemProxy */ = { + D75D41C2BE55D0728A6B69A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2D69E78989BA05C0A499A44D; - remoteInfo = "IceHold iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - D89D5EEC26C160330B7B8AEF /* PBXContainerItemProxy */ = { + D8A4B24B1515F28B19D2FAF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C6B3F2AAE2C93C3A2670E5E; - remoteInfo = "IceHold macOS"; + remoteGlobalIDString = E3479E14717F19236E306587; + remoteInfo = "IceSlicingObjectsAMD macOS"; }; - D960472284DF0ABCD771B249 /* PBXContainerItemProxy */ = { + D8F6F2757A01AC13B5411B8B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - D961E429680328C9376ACD00 /* PBXContainerItemProxy */ = { + D8FC56D106C26473144FAB83 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = CE79EFA5A2D0EEBD42B1DC53; - remoteInfo = "IceAcm macOS"; + remoteGlobalIDString = D62438E4F1A3CC9836A8E287; + remoteInfo = "IceSlicingExceptionsAMD iOS"; }; - DA2C65875456DE264A8FBF2A /* PBXContainerItemProxy */ = { + DA826583F9B7BF0EEBF2FB41 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 7E8564022216773735645574; + remoteInfo = "SliceEscape macOS"; }; - DA4FD535D6ECC7CE2309F91A /* PBXContainerItemProxy */ = { + DAC1B85E691C0D40E8D1F5FC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = B06DD43CC98E177E5491959D; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - DB77A67E19C085ADDB8375E5 /* PBXContainerItemProxy */ = { + DC335AD85FEA67D0DFA5E868 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AD01C6A244838BF6DABEF5C; - remoteInfo = "IceLocation iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - DFBECEB61102BF7765DB140A /* PBXContainerItemProxy */ = { + DE066803381D22096C90B687 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - E1AC4FB4D3B4CF7873039E01 /* PBXContainerItemProxy */ = { + DFA5BCC169F4D1EAE539311E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - E5906B2ADE3E196F77A1B16C /* PBXContainerItemProxy */ = { + DFB7D5AA00C0BB078188829E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = BB40FADABEB7A74BCFAF8930; + remoteInfo = "Glacier2 iOS"; }; - E91160C56A9113D9DF5D3D49 /* PBXContainerItemProxy */ = { + E0482DF36F85D8040DD1A018 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - E95A5D586C90B9F7D0D0EBB3 /* PBXContainerItemProxy */ = { + E251CA04F82003BCE485A5CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - EA3D11C332176AD29691910F /* PBXContainerItemProxy */ = { + E334451CB20D9C36CF4DAF28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - EAF9C98295A4D9DE76503537 /* PBXContainerItemProxy */ = { + E33E7B8EB30DF9BB129AA6C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 25D99E456ADFE5745483AC23; - remoteInfo = "IceExceptions macOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - EB5B0656FDEA65501DF4D528 /* PBXContainerItemProxy */ = { + E4E19538F1C589FEC4A22691 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7BD0591E1B5ABBDFE982E6E8; - remoteInfo = "IceServantLocatorAMD iOS"; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; }; - EC69D880228AE4E6A91615A1 /* PBXContainerItemProxy */ = { + E6440D29EAE62D986D6FC567 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D6C19C2ACCB1CB3FB3B25FA9; - remoteInfo = "IceGrid iOS"; + remoteGlobalIDString = D0CB5D7E1779A34D43B5B89E; + remoteInfo = "IceUdp iOS"; }; - ECC059FC573C0C136A8DAD26 /* PBXContainerItemProxy */ = { + E69E5BCED226C2529340C152 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - EE61473FD27F5A8827B87E34 /* PBXContainerItemProxy */ = { + EAE2CB011D2B1E218EBD8ED0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; remoteInfo = "TestCommon iOS"; }; - EEA312042511A8F9B80EA1CE /* PBXContainerItemProxy */ = { + ED10296BB17D4CD063607027 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = B4C54B94A72325BA4250EB2E; - remoteInfo = "IceServantLocatorAMD macOS"; + remoteGlobalIDString = 0A1278D024EC2ADD3E42D968; + remoteInfo = "IceExceptions iOS"; }; - F1075D8455C9CE7882F11E53 /* PBXContainerItemProxy */ = { + EFB6982D58325AEC0E826519 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - F1DF8648413A52CDB11A66C8 /* PBXContainerItemProxy */ = { + F000AFFB3A25C7ABC28E92B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D4D6FEE0BB4641B83FAB188E; - remoteInfo = "IceAmi macOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - F2B67D875A18BB46121D6096 /* PBXContainerItemProxy */ = { + F10FBFB1C1BCBACCAD0EF873 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED67C4392ADE53C242195C57; - remoteInfo = "IceSlicingExceptions iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - F357B9DDB1618D1957526349 /* PBXContainerItemProxy */ = { + F11C9AD6C3166B60D9EAB0D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteInfo = "Ice macOS"; }; - F478DDCD9811E6F09C91EAF1 /* PBXContainerItemProxy */ = { + F1763831D933F47A6857F5FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 68767C0FE145D39DE4D88779; + remoteInfo = "IceAmi macOS"; }; - F4F2783B8E2574AA2335D126 /* PBXContainerItemProxy */ = { + F2B3FE6B4DECBBFC3B769C20 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = A9149583C7CA34903D80B3C4; + remoteInfo = "IceImpl iOS"; + }; + F33737401446C0666AA11215 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - F7A1DB397366FD2B523DE3D2 /* PBXContainerItemProxy */ = { + F4326B28E318075CA66DF1E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 000899F4C56AEFCFE1B77B0B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 45F2051058E66C596838C08E; + remoteInfo = "IceAdmin iOS"; }; - F8B1BB7CC7D12EA9B482F87D /* PBXContainerItemProxy */ = { + F697CB11BE5CDAEE843BFD83 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; remoteInfo = "TestCommon macOS"; }; - F8D350B56D7FF192A55E7627 /* PBXContainerItemProxy */ = { + F6C5BC7691501CEE31FF8230 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836518381BE3202105EFCC03; + remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; remoteInfo = "Ice macOS"; }; - FA3AD6B4016627232A0C7027 /* PBXContainerItemProxy */ = { + F6CC7D98224224CD6B4D1B39 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; - FB24B8B91A047033703F023F /* PBXContainerItemProxy */ = { + F78DD79E88AA7C72D2C7630B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = D24AF243F3E2AFCAA656BA3E; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 287E9414F6A74860FF1188EE; + remoteInfo = "IceExceptionsAMD iOS"; }; - FB32F61FBDCCA0F3A6DA953C /* PBXContainerItemProxy */ = { + F825B993E634C733D44A5574 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F13DB1C06A1425528829C6C; - remoteInfo = "SliceEscape iOS"; + remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteInfo = "TestCommon iOS"; }; - FD2425EA92C135B5B7BBC01C /* PBXContainerItemProxy */ = { + F84548D90CFD4FE124DF0010 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 65B4CEBE6BC37BE3E80C822B; - remoteInfo = "IceInvoke macOS"; + remoteGlobalIDString = 0763ED05481F11F83E2EE767; + remoteInfo = "IceStorm macOS"; }; - FE41A5548AB62154B45A8694 /* PBXContainerItemProxy */ = { + FA116D1FBBE97D6621713DEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1D8E308F3BB453AE7F0F43D1; - remoteInfo = "IceLocatorDiscovery C++11 iOS"; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteInfo = "Ice iOS"; }; - FEB999A0E55F6F5ABEB4DAF1 /* PBXContainerItemProxy */ = { + FA303C60AEC916F5237A3111 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 1EB94907D14CF0330FE8A8B4 /* Project object */; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9C08369D07430A8AFB9F41A3; + remoteGlobalIDString = BDB1F608C841B14238DB67CF; remoteInfo = "Ice iOS"; }; + FD38DE0D1285459EBF5C368C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CFA7C016ADBDBC9AE9AB0FF7; + remoteInfo = "IceGrid macOS"; + }; + FF1E1593F0B50EF869897059 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + proxyType = 1; + remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteInfo = "TestCommon macOS"; + }; + FFE50197D1F8471ADAEC705D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC69EEBE9D64F07481829BFA; + remoteInfo = "IceAdmin macOS"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ - 87798ACFBEEF1C10BC811D29 /* Copy Symbols */ = { + 0635600956BBB7B4E2F71046 /* Copy Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; - dstSubfolderSpec = 16; + dstSubfolderSpec = 10; files = ( + EB4B274437E107D0C67AC046 /* Glacier2.framework in Copy Frameworks */, + 8E97031B28FCA915CDDD4A5E /* Ice.framework in Copy Frameworks */, + CA90EC3044CF03BEE0A79E98 /* IceAcm.bundle in Copy Frameworks */, + A84195F835C0EE4FB4785717 /* IceAdapterDeactivation.bundle in Copy Frameworks */, + D2C1332796532EC9D13F2A01 /* IceAdmin.bundle in Copy Frameworks */, + 9ADA0F6235539F8F26919051 /* IceAmi.bundle in Copy Frameworks */, + 4D4E22B2077F9937C031C5CE /* IceBinding.bundle in Copy Frameworks */, + 46D6175F2BA05EDE03AE80F5 /* IceDefaultServant.bundle in Copy Frameworks */, + 512B06413F6FFC00EF9E639E /* IceDefaultValue.bundle in Copy Frameworks */, + 9A89F20EFF48B5A0A01E4860 /* IceEnums.bundle in Copy Frameworks */, + 7C967026CF877781CF90F55E /* IceExceptions.bundle in Copy Frameworks */, + 666B594E9BB773EA22623170 /* IceExceptionsAMD.bundle in Copy Frameworks */, + 0A225A1465272A8C992BEBE8 /* IceFacets.bundle in Copy Frameworks */, + 917E14572AE0B2E97F541042 /* IceGrid.framework in Copy Frameworks */, + D76544D05F02CC68167E8FF7 /* IceHold.bundle in Copy Frameworks */, + 77CC7C7DEDF87C5E2B010FE7 /* IceImpl.framework in Copy Frameworks */, + BB42E17D60B59344EDBD9D56 /* IceInfo.bundle in Copy Frameworks */, + 3953A1F48B71061302B559D7 /* IceInheritance.bundle in Copy Frameworks */, + DB2D614A5808D193088DE541 /* IceInterceptor.bundle in Copy Frameworks */, + E8693CAB4DA65B12C05C6B97 /* IceInvoke.bundle in Copy Frameworks */, + 60E42FD8D5C59731BADC40C9 /* IceLocation.bundle in Copy Frameworks */, + 07B21E2CAB7DBC84FFCC7754 /* IceObjects.bundle in Copy Frameworks */, + 9670FBA186530E35DAC0DDCA /* IceOperations.bundle in Copy Frameworks */, + 45FCAA660699E603A4291A08 /* IceOperationsAMD.bundle in Copy Frameworks */, + E33606D9A1D3FC4166231FEE /* IceOptional.bundle in Copy Frameworks */, + 1EBC94A168E5CAF124CF1E33 /* IceOptionalAMD.bundle in Copy Frameworks */, + 596F9AFEEA41228FA193E260 /* IceProperties.bundle in Copy Frameworks */, + 9E01A5E11A073ECCBA820D92 /* IceProxy.bundle in Copy Frameworks */, + 41359D3BBD5E94768E60773F /* IceProxyAMD.bundle in Copy Frameworks */, + 2013749497D255BA483932F3 /* IceRetry.bundle in Copy Frameworks */, + 922CC8214A0218AA4015C20D /* IceScope.bundle in Copy Frameworks */, + 9A6797228E8FABD723BAEF2E /* IceServantLocator.bundle in Copy Frameworks */, + 2FD71F0C1BBFC6EA7B19AA9E /* IceServantLocatorAMD.bundle in Copy Frameworks */, + DB4F725DB292A3B29DA0D1B5 /* IceServices.bundle in Copy Frameworks */, + EF6B600C01360A3E77570577 /* IceSlicingExceptions.bundle in Copy Frameworks */, + 563FC8ABBBD015DE9C469C56 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, + B53337A63B03967706AC3204 /* IceSlicingObjects.bundle in Copy Frameworks */, + C4F1E9325871166B577761BD /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, + 3BF9E4CC841F0653549B0515 /* IceSSLConfiguration.bundle in Copy Frameworks */, + 3134465808476C2B9AF5A1E7 /* IceStorm.framework in Copy Frameworks */, + 6BA413B384BE48782FD4106A /* IceStream.bundle in Copy Frameworks */, + 97648C6132A20AE515ECB787 /* IceTimeout.bundle in Copy Frameworks */, + D88E2F85B135A0BC74FF48D3 /* IceUdp.bundle in Copy Frameworks */, + 7EC26B1196E7D01F695B4BF7 /* PromiseKit.xcframework in Copy Frameworks */, + 8F90919FDD9BDB3330814400 /* SliceEscape.bundle in Copy Frameworks */, + 07B9860625BA278EB29B60F8 /* TestCommon.framework in Copy Frameworks */, ); - name = "Copy Symbols"; + name = "Copy Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; - CDD63FFC164A91851939E3AA /* Copy Frameworks */ = { + 440CDC3992F6F8DEDC8FF875 /* Copy Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; dstSubfolderSpec = 10; 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 */, + A0B9342FC17498B8E4E2679D /* Glacier2.framework in Copy Frameworks */, + 487A5360D29674F9324E6A81 /* Ice.framework in Copy Frameworks */, + B8EB08195365B3764B9F0777 /* IceAcm.bundle in Copy Frameworks */, + 20E0EC9B72ED0F188C3CA3A3 /* IceAdapterDeactivation.bundle in Copy Frameworks */, + 184CCCDE951AC454A534BCE7 /* IceAdmin.bundle in Copy Frameworks */, + 895DBBE4ED47839BFB80E431 /* IceAmi.bundle in Copy Frameworks */, + CC2E3D87471BBA696973522B /* IceBinding.bundle in Copy Frameworks */, + 71580E5F4321782220583BF6 /* IceDefaultServant.bundle in Copy Frameworks */, + 75DF6D77AB9E216E1BFB7164 /* IceDefaultValue.bundle in Copy Frameworks */, + DB77761A15E27B58B5FED5AC /* IceEnums.bundle in Copy Frameworks */, + 6F54ACB5C499213640C15344 /* IceExceptions.bundle in Copy Frameworks */, + 6D75D9051192FCD409BB41B4 /* IceExceptionsAMD.bundle in Copy Frameworks */, + 22FFD2A3F595ED46AC2E0958 /* IceFacets.bundle in Copy Frameworks */, + 78FED968098DFDB32666A53A /* IceGrid.framework in Copy Frameworks */, + 324DE06DE3737E59D4BA2BB5 /* IceHold.bundle in Copy Frameworks */, + 6B247546FF2E0F8C92352C81 /* IceImpl.framework in Copy Frameworks */, + BF192091BB537835893B6097 /* IceInfo.bundle in Copy Frameworks */, + 37D41A2F3CF119CC39F8222E /* IceInheritance.bundle in Copy Frameworks */, + A5B856E9E86689D24951DD67 /* IceInterceptor.bundle in Copy Frameworks */, + A02F4BA9CDA144203FA206F1 /* IceInvoke.bundle in Copy Frameworks */, + 461823AD45D5FBE8BC6E9588 /* IceLocation.bundle in Copy Frameworks */, + 846C177F4AD7FF27D8B66A83 /* IceObjects.bundle in Copy Frameworks */, + AFB9E6C201C3912182FCA333 /* IceOperations.bundle in Copy Frameworks */, + 263A1187B3AE86850045620D /* IceOperationsAMD.bundle in Copy Frameworks */, + 96A327804FE56315FA908FBC /* IceOptional.bundle in Copy Frameworks */, + AED4F17F4BD2F1F9BD1A1834 /* IceOptionalAMD.bundle in Copy Frameworks */, + F606445AA2CA160F522C5A99 /* IceProperties.bundle in Copy Frameworks */, + 3E32C2500353BC9AB51D92D7 /* IceProxy.bundle in Copy Frameworks */, + C409F4A89EA4DBA75ACECAC0 /* IceProxyAMD.bundle in Copy Frameworks */, + 3C7DA4CD086A31722B14C6AF /* IceRetry.bundle in Copy Frameworks */, + 0D22F62905B784D9B736C643 /* IceScope.bundle in Copy Frameworks */, + 9B631B8D1B0D1E314639EC85 /* IceServantLocator.bundle in Copy Frameworks */, + 04B6E589A0CFC15B1324287A /* IceServantLocatorAMD.bundle in Copy Frameworks */, + 63568851267BB6756FA339EC /* IceServices.bundle in Copy Frameworks */, + EF1418198F7ECD2729A37969 /* IceSlicingExceptions.bundle in Copy Frameworks */, + 4D9C2C7F08BDCED4939C8CA4 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, + 759A80CED591A7990CCF8CD9 /* IceSlicingObjects.bundle in Copy Frameworks */, + 4EAD393284CCF137A487D040 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, + 3BEE80BD6285446BA2128FB4 /* IceSSLConfiguration.bundle in Copy Frameworks */, + A19B83EBFC52D54B327152DA /* IceStorm.framework in Copy Frameworks */, + B4BE891DFDFF27AE72183B50 /* IceStream.bundle in Copy Frameworks */, + F7C97C18DD83300CB84462EE /* IceTimeout.bundle in Copy Frameworks */, + E080250FCAB43DD84603268D /* IceUdp.bundle in Copy Frameworks */, + E823D510B3477722C248DCC7 /* PromiseKit.xcframework in Copy Frameworks */, + 70AB12AD44C972293921A90E /* SliceEscape.bundle in Copy Frameworks */, + 671518A946A0761D8E02FB3E /* TestCommon.framework in Copy Frameworks */, ); name = "Copy Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; - CFE22D2D567F96EB6E32E3F3 /* Copy Symbols */ = { + B8CBC486347FCEEA7EEA81CD /* Copy Symbols */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; @@ -5015,5391 +5059,5343 @@ name = "Copy Symbols"; runOnlyForDeploymentPostprocessing = 0; }; - FE2A2E12EADD764C6E1249C9 /* Copy Frameworks */ = { + DF80F5FE8BC3363CBD19BE84 /* Copy Symbols */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; - dstSubfolderSpec = 10; + dstSubfolderSpec = 16; 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 */, ); - name = "Copy Frameworks"; + name = "Copy Symbols"; runOnlyForDeploymentPostprocessing = 0; }; /* 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 = ""; }; + 000611DF33CB4304F42A33BE /* RetryQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RetryQueue.cpp; path = ../cpp/src/Ice/RetryQueue.cpp; sourceTree = ""; }; + 006CF4F54F5E4A89A3C663B0 /* RouterInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RouterInfo.cpp; path = ../cpp/src/Ice/RouterInfo.cpp; sourceTree = ""; }; + 00909CBA5C2223CED4ED9381 /* SSLInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLInfo.ice; path = ../slice/Glacier2/SSLInfo.ice; sourceTree = ""; }; + 014D0EE5D267E432DA21670A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/ami/Client.swift; sourceTree = ""; }; + 01CD17E5927E812D8DD3EAC1 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/operations/TestAMD.ice; sourceTree = ""; }; + 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocatorI.swift; path = test/Ice/servantLocator/ServantLocatorI.swift; sourceTree = ""; }; + 0205F3DB3D2A802285F11C8B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/servantLocator/AllTests.swift; sourceTree = ""; }; + 02C7023576B21B0B085453B7 /* Initialize.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Initialize.cpp; path = ../cpp/src/Ice/Initialize.cpp; sourceTree = ""; }; + 02CB2CD05CEE1E2166255186 /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceSSL/ConnectionInfo.cpp; sourceTree = ""; }; + 0367F5C787891BBE1B298343 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/inheritance/TestI.swift; sourceTree = ""; }; + 042B09E718B4AF7FEC08C931 /* Communicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Communicator.h; path = src/IceImpl/Communicator.h; sourceTree = ""; }; + 043AB17C4C069B93FA1E7D41 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/optional/Server.swift; sourceTree = ""; }; + 04CC49DCD0D4C30286DEACE3 /* InstrumentationI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationI.cpp; path = ../cpp/src/Ice/InstrumentationI.cpp; sourceTree = ""; }; + 053E3EA43764388B8A0304F1 /* LocalObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.mm; path = src/IceImpl/LocalObject.mm; sourceTree = ""; }; + 0542741E3D6987968EDC3A03 /* ObjectAdapterI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapterI.swift; path = src/Ice/ObjectAdapterI.swift; sourceTree = ""; }; + 065B949882E18BDEB1485FC1 /* Registry.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Registry.ice; path = ../slice/IceGrid/Registry.ice; sourceTree = ""; }; + 069D6D873DB12806A4A9705F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/operations/Server.swift; sourceTree = ""; }; + 07391C2F2F17BEF451562D52 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = ../cpp/src/IceUtil/FileUtil.cpp; sourceTree = ""; }; + 07B40D097E062D485AF3F394 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/objects/TestAMD.ice; sourceTree = ""; }; + 08397788AB99AF6585C187A4 /* Endpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Endpoint.cpp; path = ../cpp/src/Ice/Endpoint.cpp; sourceTree = ""; }; + 0841109EAF658FE8F75F1D35 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = test/IceSSL/configuration/../../../../cpp/test/IceSSL/certs; sourceTree = ""; }; + 08422DB9B8A6F7BEF0B9659B /* SSLEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLEngine.cpp; path = ../cpp/src/IceSSL/SSLEngine.cpp; sourceTree = ""; }; + 08733FFC27D163E7A610C567 /* NetworkProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkProxy.cpp; path = ../cpp/src/Ice/NetworkProxy.cpp; sourceTree = ""; }; + 08F114BAF6B711459E6438F1 /* ConsoleUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsoleUtil.cpp; path = ../cpp/src/IceUtil/ConsoleUtil.cpp; sourceTree = ""; }; + 09486704DD4EBAC0DD6677C8 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 09A12C7A25EC939F04AC6CB8 /* ValueFactoryManagerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactoryManagerI.swift; path = src/Ice/ValueFactoryManagerI.swift; sourceTree = ""; }; + 0AE548BE00DBF796605CE418 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/objects/TestAMDI.swift; sourceTree = ""; }; + 0AF49C110C762F572C744977 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0D075D441DE8B7DA8AA330C5 /* BlobjectAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlobjectAsync.swift; path = src/Ice/BlobjectAsync.swift; sourceTree = ""; }; + 0DB36F16689B898D5396DE89 /* SSLEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLEndpointInfo.swift; path = src/Ice/SSLEndpointInfo.swift; sourceTree = ""; }; + 0EF3EED5D49B0E829BC0E03A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/hold/TestI.swift; sourceTree = ""; }; + 0EF9EA920CDA248C30B741E3 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/servantLocator/Collocated.swift; sourceTree = ""; }; + 0F25A5B87F1D6D4DE443C3F7 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0F2C3F356F0573D576A925FB /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/exceptions/ServerPrivateAMD.ice; sourceTree = ""; }; + 0F7401C2CE09807582FF593E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/objects/Client.swift; sourceTree = ""; }; + 0F77C35360BC168A8EE3C849 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 101D000CFC727409838DEE04 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = test/TestDriver/iOS/Assets.xcassets; sourceTree = ""; }; + 1026DA33ACD08DBDEFF45AC4 /* EndpointF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointF.cpp; path = ../cpp/src/Ice/EndpointF.cpp; sourceTree = ""; }; + 102C8EBB7B156230C64E8D84 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 10E29D53CB33DDBF93C9D34C /* InputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStream.swift; path = src/Ice/InputStream.swift; sourceTree = ""; }; + 10FBAC0DE50DD8520BF0D494 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/udp/Test.ice; sourceTree = ""; }; + 11093968C1A0F59042CD7D5B /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/objects/Test.ice; sourceTree = ""; }; + 11AEDF0E03E10480338D6773 /* ServantLocatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocatorF.cpp; path = ../cpp/src/Ice/ServantLocatorF.cpp; sourceTree = ""; }; + 135C5232085BDE2604DFEE21 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = src/IceImpl/Config.h; sourceTree = ""; }; + 145489AECBBABC46B13BBD6F /* ObjectAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.mm; path = src/IceImpl/ObjectAdapter.mm; sourceTree = ""; }; + 1515A9EBA05A025707FA0A5B /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = test/TestDriver/macOS/main.swift; sourceTree = ""; }; + 1570CABD05CE88D0D442FBAA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/hold/AllTests.swift; sourceTree = ""; }; + 1599141F395131410355644A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/adapterDeactivation/TestI.swift; sourceTree = ""; }; + 164143EB3C130B0FA5630E59 /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Connection.h; path = src/IceImpl/Connection.h; sourceTree = ""; }; + 17D15FE0C359907D9E73E508 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/ami/Test.ice; sourceTree = ""; }; + 17E2F182F3B77EE5965C3F59 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/operations/TestI.swift; sourceTree = ""; }; + 182630D7EE2E9D527F3E7FC2 /* 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; }; + 187ED1A448C608EC15DF698C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/optional/AllTests.swift; sourceTree = ""; }; + 18CE168298CE80608E0B6DCD /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/adapterDeactivation/Collocated.swift; sourceTree = ""; }; + 18F600B75D092C22922DC97C /* LocalExceptionFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionFactory.swift; path = src/Ice/LocalExceptionFactory.swift; sourceTree = ""; }; + 1962FCE8C13AAA1EDB246D78 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/operations/Client.swift; sourceTree = ""; }; + 197DFA765AE77FC51AEF8CC3 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 19AA73005971E2B69755A399 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/objects/ServerPrivate.ice; sourceTree = ""; }; + 1A303F7D2349A2BAAF06FBA7 /* PluginF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginF.cpp; path = ../cpp/src/Ice/PluginF.cpp; sourceTree = ""; }; + 1B2E875251FF8233F5415E48 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1B54FF32B84CD34A3EAA00EE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/TestCommon/Info.plist; sourceTree = ""; }; + 1B71BDB8210B42A2FC5F0C82 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1BC454AFBA15995FFFE08DBA /* Protocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Protocol.cpp; path = ../cpp/src/Ice/Protocol.cpp; sourceTree = ""; }; + 1BEC5A912505A2D0739F41AE /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/proxy/Collocated.swift; sourceTree = ""; }; + 1C1A5C984E086E684382E966 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 1C48DE3037CF4AE7BFD44F84 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1D30AE0D95CE0B8136368F33 /* ObjectPrx.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectPrx.mm; path = src/IceImpl/ObjectPrx.mm; sourceTree = ""; }; + 1D652FBDA58B2A88C9EE9351 /* Proxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Proxy.swift; path = src/Ice/Proxy.swift; sourceTree = ""; }; + 1D731F95822FEE54CA546BF4 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/objects/ServerPrivateAMD.ice; sourceTree = ""; }; + 1DAF6712CD8911F10A5971E9 /* Reference.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Reference.cpp; path = ../cpp/src/Ice/Reference.cpp; sourceTree = ""; }; + 1E498B9EBD907E4FAD93351F /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/hold/Client.swift; sourceTree = ""; }; + 1FD8BF102CBDEA4AE9A1BEF0 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 203BF667EB7502A11DAAD293 /* OptionalFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalFormat.swift; path = src/Ice/OptionalFormat.swift; sourceTree = ""; }; + 206401F7B7D85C2E662248F5 /* RegisterPluginsInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RegisterPluginsInit.cpp; path = ../cpp/src/Ice/RegisterPluginsInit.cpp; sourceTree = ""; }; + 20BCB9D60D449CB2F6D37702 /* AdminFacetFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdminFacetFactory.swift; path = src/Ice/AdminFacetFactory.swift; sourceTree = ""; }; + 2110B3C9B21AE73C0BD6ECBD /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 21D15D6C8E3919123C989D88 /* StringConverterPlugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverterPlugin.cpp; path = ../cpp/src/Ice/StringConverterPlugin.cpp; sourceTree = ""; }; + 23234EE76F12BDE06765390A /* 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; }; + 238D7DBD94628C8E32119E5B /* IncomingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IncomingAsync.cpp; path = ../cpp/src/Ice/IncomingAsync.cpp; sourceTree = ""; }; + 2424727B01DAAE130B238EF7 /* InitializationData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InitializationData.swift; path = src/Ice/InitializationData.swift; sourceTree = ""; }; + 2437C8A597A1CE438BEDEC3D /* LocalExceptionDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionDescription.swift; path = src/Ice/LocalExceptionDescription.swift; sourceTree = ""; }; + 24511A349B3AC892968F3C7E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/proxy/Test.ice; sourceTree = ""; }; + 246925D469B0CD3F19FC5EF4 /* SysLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysLoggerI.cpp; path = ../cpp/src/Ice/SysLoggerI.cpp; sourceTree = ""; }; + 248A46E1415A6C79670BA017 /* IconvStringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IconvStringConverter.cpp; path = ../cpp/src/Ice/IconvStringConverter.cpp; sourceTree = ""; }; + 24EEF303A9F8E4869A064E55 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/objects/ClientPrivate.ice; sourceTree = ""; }; + 2591D7770A25B731A7D961B0 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/retry/Server.swift; sourceTree = ""; }; + 259E1CFC2597003F39AF9275 /* CountDownLatch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CountDownLatch.cpp; path = ../cpp/src/Ice/CountDownLatch.cpp; sourceTree = ""; }; + 25C7F6C8A9023BB604FCC8C6 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 25D7EE2BD98457D481B8B3BC /* StreamAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamAcceptor.cpp; path = ../cpp/src/Ice/ios/StreamAcceptor.cpp; sourceTree = ""; }; + 27196B5B3415DF6ED7D4A3A5 /* Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Properties.swift; path = src/Ice/Properties.swift; sourceTree = ""; }; + 2725188194A8D2470DBF46F5 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/interceptor/Client.swift; sourceTree = ""; }; + 273E5195A6D681AF9C343F47 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = src/IceImpl/Exception.h; sourceTree = ""; }; + 278EEAB3360C6F45AF0BA345 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/timeout/Client.swift; sourceTree = ""; }; + 27B24624FBC0D46B2E71D96A /* CtrlCHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CtrlCHandler.cpp; path = ../cpp/src/IceUtil/CtrlCHandler.cpp; sourceTree = ""; }; + 27D7B1673A591C9B7CAF8808 /* Forward.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Forward.ice; path = test/Ice/objects/Forward.ice; sourceTree = ""; }; + 28F6EBEDD7E3BB7D5EA9FBD4 /* ObserverHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverHelper.cpp; path = ../cpp/src/Ice/ObserverHelper.cpp; sourceTree = ""; }; + 29114B3DD6DE83F72CE4BEF6 /* TestCommon.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestCommon.swift; path = test/TestCommon/TestCommon.swift; sourceTree = ""; }; + 292810AEFEB4C7B5B49D1C98 /* RequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandler.cpp; path = ../cpp/src/Ice/RequestHandler.cpp; sourceTree = ""; }; + 294AC4A94D492076FFDEF664 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2967E04C4326091B1910DB93 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2981BE0BA9E535D4E8738D6C /* SecureTransportPluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportPluginI.cpp; path = ../cpp/src/IceSSL/SecureTransportPluginI.cpp; sourceTree = ""; }; + 2A2E598EF61DF473F6F1896D /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.ice; path = ../slice/Ice/PropertiesAdmin.ice; sourceTree = ""; }; + 2A5AD5A8F56E90F0DF1C96F2 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/facets/Client.swift; sourceTree = ""; }; + 2AB45D97CBDA0FAEFF65A6AE /* ConnectionInfoF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfoF.cpp; path = ../cpp/src/IceSSL/ConnectionInfoF.cpp; sourceTree = ""; }; + 2B0A74331F696DA324EE12AF /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/proxy/TestAMDI.swift; sourceTree = ""; }; + 2D63C2A77F018D37B047CFA9 /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2DA8717C158AFF4CF60E6E87 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 2EB971FEE56EA31F7716F3AD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/exceptions/AllTests.swift; sourceTree = ""; }; + 2EEC8F950880BA5D14A58ACE /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/exceptions/AllTests.swift; sourceTree = ""; }; + 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorF.ice; path = ../slice/Ice/LocatorF.ice; sourceTree = ""; }; + 3159C7F956674DA8F082423D /* Base64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Base64.cpp; path = ../cpp/src/Ice/Base64.cpp; sourceTree = ""; }; + 31807FCC8B102E3BA2E0BBC5 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/exceptions/ClientPrivate.ice; sourceTree = ""; }; + 31917CC0A13FF7C85862B2F0 /* OutputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputStream.cpp; path = ../cpp/src/Ice/OutputStream.cpp; sourceTree = ""; }; + 31C92631DA6DA4BADFE8C59F /* EndpointFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactory.cpp; path = ../cpp/src/Ice/EndpointFactory.cpp; sourceTree = ""; }; + 31CCAAEF9A0D8BD94D02FADD /* DispatchInterceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DispatchInterceptor.cpp; path = ../cpp/src/Ice/DispatchInterceptor.cpp; sourceTree = ""; }; + 323B42FB5AD8FC12D8AE7CDE /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/proxy/Server.swift; sourceTree = ""; }; + 3240EAAE31EEEE2C1A979DF8 /* NativePropertiesAdmin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NativePropertiesAdmin.swift; path = src/Ice/NativePropertiesAdmin.swift; sourceTree = ""; }; + 346EA4E8BF5EBE984DAF0872 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/exceptions/TestAMDI.swift; sourceTree = ""; }; + 3573CD4E6D9EB58A37C88DBF /* LocalObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocalObject.h; path = src/IceImpl/LocalObject.h; sourceTree = ""; }; + 358B68004AEA4DEE9CC643DF /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceIAP/ConnectionInfo.cpp; sourceTree = ""; }; + 35AE9823C665F00939098688 /* Identity.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Identity.ice; path = ../slice/Ice/Identity.ice; sourceTree = ""; }; + 36A3DD415DB5D47F3DD67986 /* Util.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Util.cpp; path = ../cpp/src/IceSSL/Util.cpp; sourceTree = ""; }; + 37F91A4DE4998C11CD9FA265 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/adapterDeactivation/Client.swift; sourceTree = ""; }; + 38D102721EA6D00E46DBB85E /* Cond.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cond.cpp; path = ../cpp/src/Ice/Cond.cpp; sourceTree = ""; }; + 3979D5422F89387622D2651D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/binding/TestI.swift; sourceTree = ""; }; + 397D6E5EA9E00485DEEDF569 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 39B7FD86E7AAB2B74EA0F79A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/adapterDeactivation/AllTests.swift; sourceTree = ""; }; + 3A18E1A90F712D013DEBAD12 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/info/TestI.swift; sourceTree = ""; }; + 3A90857F1CD31FC2193C9C89 /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 3B8AD33CAF2513831F190948 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/adapterDeactivation/Server.swift; sourceTree = ""; }; + 3B986932C2925F4F85570A5B /* Mutex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mutex.swift; path = src/Ice/Mutex.swift; sourceTree = ""; }; + 3C30A1A1C29802757EAC98B0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/proxy/Client.swift; sourceTree = ""; }; + 3C54DFAFDC0223F71EBCA048 /* OpaqueEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpaqueEndpointI.cpp; path = ../cpp/src/Ice/OpaqueEndpointI.cpp; sourceTree = ""; }; + 3D23950CABD458FD84101A42 /* Properties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Properties.h; path = src/IceImpl/Properties.h; sourceTree = ""; }; + 3D62D9A3A91168A2CA52AAE8 /* Endpoint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Endpoint.swift; path = src/Ice/Endpoint.swift; sourceTree = ""; }; + 3D98CE77652346A9B41B4831 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3E18A66D20FAB52A8017CFEC /* PluginManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginManagerI.cpp; path = ../cpp/src/Ice/PluginManagerI.cpp; sourceTree = ""; }; + 3E80F236FF9CC3D3ABDABC94 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/timeout/Test.ice; sourceTree = ""; }; + 3F98C3CA8C685D2666897D25 /* StringUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringUtil.cpp; path = ../cpp/src/IceUtil/StringUtil.cpp; sourceTree = ""; }; + 401D314CEA8878CFB3F1674F /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/retry/Collocated.swift; sourceTree = ""; }; + 40F0848AD5E921D3D29D8E5F /* MetricsObserverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsObserverI.cpp; path = ../cpp/src/Ice/MetricsObserverI.cpp; sourceTree = ""; }; + 41D003139C78BDCDD6F24440 /* TcpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpTransceiver.cpp; path = ../cpp/src/Ice/TcpTransceiver.cpp; sourceTree = ""; }; + 41F405B3502079EE7591BD56 /* Communicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Communicator.swift; path = src/Ice/Communicator.swift; sourceTree = ""; }; + 4219AE5EE1189E920E1A77AA /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/exceptions/TestAMD.ice; sourceTree = ""; }; + 42B9B7D2C864B2D316ADE535 /* Exception.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Exception.swift; path = src/Ice/Exception.swift; sourceTree = ""; }; + 4307C8F5994221221EAA83D5 /* ObjectAdapterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterFactory.cpp; path = ../cpp/src/Ice/ObjectAdapterFactory.cpp; sourceTree = ""; }; + 43931C1667BC9E1EB9EBE642 /* ImplicitContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContext.cpp; path = ../cpp/src/Ice/ImplicitContext.cpp; sourceTree = ""; }; + 4487959432B7C792830C5266 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 44B4CA994280A6DA16BE5B80 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/binding/Test.ice; sourceTree = ""; }; + 44D64D7DE7F59927CC720908 /* ServantLocator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocator.swift; path = src/Ice/ServantLocator.swift; sourceTree = ""; }; + 45C8F6FB616A194C3B2F51F4 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/servantLocator/TestI.swift; sourceTree = ""; }; + 4749A84AF39751728F692314 /* ConnectorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectorI.cpp; path = ../cpp/src/IceSSL/ConnectorI.cpp; sourceTree = ""; }; + 4804F5E00E5C966AE7D9FD34 /* BatchOneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOneways.swift; path = test/Ice/operations/BatchOneways.swift; sourceTree = ""; }; + 48FF8C7FFEC75A3D1F598354 /* ProcessI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProcessI.swift; path = src/Ice/ProcessI.swift; sourceTree = ""; }; + 4A7049303E4CC0D79196E584 /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/Ice/EndpointI.cpp; sourceTree = ""; }; + 4AB7DEF69D88E4196C6C38C6 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultValue/Client.swift; sourceTree = ""; }; + 4BA8D617819FF713F80CE4A0 /* Blobject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Blobject.swift; path = src/Ice/Blobject.swift; sourceTree = ""; }; + 4CF51F5BA92DBCFB19276E79 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 4D9F47C5F7E714936213E615 /* Current.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Current.cpp; path = ../cpp/src/Ice/Current.cpp; sourceTree = ""; }; + 4DF3479CC49100449C494653 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/operations/Test.ice; sourceTree = ""; }; + 4DF443F93429C08880793844 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/exceptions/TestI.swift; sourceTree = ""; }; + 4E2510934C92262E6420D091 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultValue/Test.ice; sourceTree = ""; }; + 4E7FD5CE013170C15DA09A31 /* LoggerAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerAdminI.cpp; path = ../cpp/src/Ice/LoggerAdminI.cpp; sourceTree = ""; }; + 4E829B55DFE27094ED4A1790 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceSSL/EndpointInfo.cpp; sourceTree = ""; }; + 4EDA8B46CA1A0F1CFC1E283B /* SystemdJournalI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SystemdJournalI.cpp; path = ../cpp/src/Ice/SystemdJournalI.cpp; sourceTree = ""; }; + 4F294A7B72FAF1011CB416FA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/udp/AllTests.swift; sourceTree = ""; }; + 4F365747574374068F56B9FD /* libIceLocatorDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4F546DCC7DF65F50BED56636 /* PropertiesAdminI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesAdminI.swift; path = src/Ice/PropertiesAdminI.swift; sourceTree = ""; }; + 5042D96FAC79ED86972DEF0A /* LocalException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalException.cpp; path = ../cpp/src/Ice/LocalException.cpp; sourceTree = ""; }; + 5052AC8588F0B21D8BE3AD20 /* LoggerF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerF.cpp; path = ../cpp/src/Ice/LoggerF.cpp; sourceTree = ""; }; + 50727E8340FCAC13BECEC831 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Slice/escape/Client.swift; sourceTree = ""; }; + 50E98EEC1CF21AF6E6D15DE7 /* ObjectAdapterF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterF.cpp; path = ../cpp/src/Ice/ObjectAdapterF.cpp; sourceTree = ""; }; + 511AD3135337E08B90F9C34B /* BatchRequestQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchRequestQueue.cpp; path = ../cpp/src/Ice/BatchRequestQueue.cpp; sourceTree = ""; }; + 5124560E2C8D4CA6F32B121F /* ClassResolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassResolver.swift; path = src/Ice/ClassResolver.swift; sourceTree = ""; }; + 5206DD21F8DF743B9A61B14B /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/interceptor/Test.ice; sourceTree = ""; }; + 5248E12595EE33145909A5D9 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/objects/AllTests.swift; sourceTree = ""; }; + 5292AB6BD873695825E1758E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/servantLocator/Test.ice; sourceTree = ""; }; + 52B6920962BB40484351B828 /* LoggerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoggerWrapper.swift; path = src/Ice/LoggerWrapper.swift; sourceTree = ""; }; + 533D65B77DD79A97AE2A1A8F /* SecureTransportUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportUtil.cpp; path = ../cpp/src/IceSSL/SecureTransportUtil.cpp; sourceTree = ""; }; + 53A5BF7BE1E27774AE055437 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 5400703129C16CEB55676316 /* ConnectionInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionInfoFactory.swift; path = src/Ice/ConnectionInfoFactory.swift; sourceTree = ""; }; + 540A7B3104F684B945E4E393 /* MutexProtocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MutexProtocol.cpp; path = ../cpp/src/IceUtil/MutexProtocol.cpp; sourceTree = ""; }; + 543206D99800E30AAB5B257D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/binding/AllTests.swift; sourceTree = ""; }; + 54E9AF62DC5520A54B0CF2AA /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = ../cpp/src/IceUtil/Random.cpp; sourceTree = ""; }; + 5507FC7D9307D1B742D67CE8 /* Clash.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Clash.ice; path = test/Slice/escape/Clash.ice; sourceTree = ""; }; + 5721BA6A8AE743A4B2FF95A5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/admin/Server.swift; sourceTree = ""; }; + 5784A651E1A32B4749128DE1 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/info/AllTests.swift; sourceTree = ""; }; + 57CF891C000E31222368C816 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/ami/Server.swift; sourceTree = ""; }; + 585EAAAD1DD963A893315BD6 /* ServantManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantManager.cpp; path = ../cpp/src/Ice/ServantManager.cpp; sourceTree = ""; }; + 58A46161AB366B92156533D6 /* IceDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceDiscovery.ice; path = ../slice/IceDiscovery/IceDiscovery.ice; sourceTree = ""; }; + 5923FFFFBE73677A77330996 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/info/Server.swift; sourceTree = ""; }; + 59C46080488C352EA3B5E078 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/proxy/ServerAMD.swift; sourceTree = ""; }; + 59DDE7B5BC8DF0F3AD836E76 /* SecureTransportCertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportCertificateI.cpp; path = ../cpp/src/IceSSL/SecureTransportCertificateI.cpp; sourceTree = ""; }; + 59F4F79624A15326B17E88ED /* PropertyNames.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyNames.cpp; path = ../cpp/src/Ice/PropertyNames.cpp; sourceTree = ""; }; + 59FC3375D6E90AE4E3134B50 /* CommunicatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorI.cpp; path = ../cpp/src/Ice/CommunicatorI.cpp; sourceTree = ""; }; + 5A500C7A9434EE6B7B6007E2 /* IceGridSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceGridSwift.h; path = src/IceGrid/IceGridSwift.h; sourceTree = ""; }; + 5A6BCE84AFC62FA7351297E6 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 5A9928AEF2ED41ECB96691AF /* TcpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpEndpointI.cpp; path = ../cpp/src/Ice/TcpEndpointI.cpp; sourceTree = ""; }; + 5AA45CDF58CA91E2E635F08A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/ami/TestI.swift; sourceTree = ""; }; + 5AE3DC5C68BCF7B63AA95F6F /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/IceStorm/Metrics.ice; sourceTree = ""; }; + 5B0C61085F906AE19C4D73ED /* Logger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Logger.swift; path = src/Ice/Logger.swift; sourceTree = ""; }; + 5B643EA2D961B5A046DA618B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/acm/AllTests.swift; sourceTree = ""; }; + 5BEA81A87699651060DB2E4A /* StreamSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamSocket.cpp; path = ../cpp/src/Ice/StreamSocket.cpp; sourceTree = ""; }; + 5C265F58DECCDAB36E4CD6A6 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultServant/Client.swift; sourceTree = ""; }; + 5C37059709E53268E7C14372 /* ImplicitContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImplicitContext.h; path = src/IceImpl/ImplicitContext.h; sourceTree = ""; }; + 5CA31F719AC415E991FB8790 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 5CF2439A128695F8D08C60D1 /* IAPConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPConnectionInfo.swift; path = src/Ice/IAPConnectionInfo.swift; sourceTree = ""; }; + 5D75F8E6BDE3707D84F90250 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/retry/Test.ice; sourceTree = ""; }; + 5DABF3352FC370E8C8424646 /* FileParser.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FileParser.ice; path = ../slice/IceGrid/FileParser.ice; sourceTree = ""; }; + 5DAC9DE9BB0E7BD3C95B7C6D /* OutgoingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutgoingAsync.cpp; path = ../cpp/src/Ice/OutgoingAsync.cpp; sourceTree = ""; }; + 5DEE9BBFD65F9CC3DD2E91F5 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/servantLocator/Client.swift; sourceTree = ""; }; + 5E7A0432DEA9466221C423F5 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/optional/TestI.swift; sourceTree = ""; }; + 5F8110A6A605EABCCC95B70C /* Current.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Current.swift; path = src/Ice/Current.swift; sourceTree = ""; }; + 5F8D90EA61D510888A922C76 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/services/Client.swift; sourceTree = ""; }; + 5F9757AB402E520F6A127C8D /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 5FC1B1B7E470DA1817C0EEA4 /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 60C72DE758D50EEE330E214C /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Ice/Metrics.ice; sourceTree = ""; }; + 60EDA02B0B44B95EBB2841F9 /* IceImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceImpl.h; path = src/IceImpl/IceImpl.h; sourceTree = ""; }; + 614B4EEEE8D6EC764E4CB54B /* FacetMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacetMap.swift; path = src/Ice/FacetMap.swift; sourceTree = ""; }; + 615E8464EAAEA906EF0953DE /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/IceSSL/EndpointI.cpp; sourceTree = ""; }; + 61B80662080CB423CE83029C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/enums/AllTests.swift; sourceTree = ""; }; + 61F67EA48B40D8217803F572 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6232FC65AC888C2919A29D4A /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6297BCCEF80EEAA0E5BB22A7 /* ConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionFactory.cpp; path = ../cpp/src/Ice/ConnectionFactory.cpp; sourceTree = ""; }; + 62BD73733BF5EF5838784676 /* LoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerI.cpp; path = ../cpp/src/Ice/LoggerI.cpp; sourceTree = ""; }; + 63086CCB688E11EB58FA8847 /* BlobjectFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlobjectFacade.h; path = src/IceImpl/BlobjectFacade.h; sourceTree = ""; }; + 63DF48DC6AC320881942F9D2 /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 63EFA6A9F175C4F63D612486 /* TraceUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceUtil.cpp; path = ../cpp/src/Ice/TraceUtil.cpp; sourceTree = ""; }; + 64826F8AA2F1B443C0AEFD5C /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 654CCEC599E0A9552262BFF6 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Ice/RouterF.ice; sourceTree = ""; }; + 65ADD8278D737094AD85D73B /* InputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputStream.cpp; path = ../cpp/src/Ice/InputStream.cpp; sourceTree = ""; }; + 65E69FAE81A29C4237DF3017 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/objects/TestI.swift; sourceTree = ""; }; + 66677779E376C6BC1CB257CB /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/info/Client.swift; sourceTree = ""; }; + 66EBE19FA36E23B906766A85 /* WSTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSTransceiver.cpp; path = ../cpp/src/Ice/WSTransceiver.cpp; sourceTree = ""; }; + 681AABFFA977FBCD95B43311 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/Ice/Instance.cpp; sourceTree = ""; }; + 685C908500567FED302500C2 /* ACM.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ACM.cpp; path = ../cpp/src/Ice/ACM.cpp; sourceTree = ""; }; + 688574A0631176251901C5D7 /* ServantManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantManager.swift; path = src/Ice/ServantManager.swift; sourceTree = ""; }; + 68A1DF0813FCFD98C103C20D /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/objects/ServerAMD.swift; sourceTree = ""; }; + 68FE5BEC43DB70CE488BA78C /* SSLConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLConnectionInfo.swift; path = src/Ice/SSLConnectionInfo.swift; sourceTree = ""; }; + 698CE5506A44CD12B6835C88 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6AB42DA37A87829961E185A1 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/timeout/Server.swift; sourceTree = ""; }; + 6ACA341F8D22FF154D2C3631 /* Plugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Plugin.swift; path = src/Ice/Plugin.swift; sourceTree = ""; }; + 6C14840E2D26E13A7C5D6AC9 /* OutputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputStream.swift; path = src/Ice/OutputStream.swift; sourceTree = ""; }; + 6C1CDE26751507399301F945 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6C2B5BBCC468EFCF6C706DDF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/udp/Client.swift; sourceTree = ""; }; + 6C6D0DC6E65F5AE88EB1701F /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/scope/AllTests.swift; sourceTree = ""; }; + 6C9EE6928D91D3DD502B5B8C /* ConnectRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectRequestHandler.cpp; path = ../cpp/src/Ice/ConnectRequestHandler.cpp; sourceTree = ""; }; + 6CF5F747C703C2E26BCF3A54 /* Connection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Connection.swift; path = src/Ice/Connection.swift; sourceTree = ""; }; + 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointTypes.ice; path = ../slice/Ice/EndpointTypes.ice; sourceTree = ""; }; + 6E0FC8B916544739F08DBD2A /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6EC196F1092D9A40472D0F1A /* InputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputUtil.cpp; path = ../cpp/src/IceUtil/InputUtil.cpp; sourceTree = ""; }; + 6F01F4D0DA57D647E4189538 /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 6F0E8376C2AD9B7DDE63D13E /* Properties.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Properties.cpp; path = ../cpp/src/Ice/Properties.cpp; sourceTree = ""; }; + 6F38DD25FC0B9CF9834644C9 /* Locator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Locator.ice; path = ../slice/Ice/Locator.ice; sourceTree = ""; }; + 6FBE489334E0ED23D774B550 /* LoggerUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerUtil.cpp; path = ../cpp/src/Ice/LoggerUtil.cpp; sourceTree = ""; }; + 7009D84B5EA234435C031C1D /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 700EF0543089A6F52A51D7E7 /* HttpParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HttpParser.cpp; path = ../cpp/src/Ice/HttpParser.cpp; sourceTree = ""; }; + 7101B26D06079EE4319D8BB4 /* UdpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpEndpointI.cpp; path = ../cpp/src/Ice/UdpEndpointI.cpp; sourceTree = ""; }; + 714EC172B42055EC5BF98E11 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/exceptions/TestI.swift; sourceTree = ""; }; + 71C219D846F1B5B1FDD3578E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/stream/Test.ice; sourceTree = ""; }; + 737C8B48855EE4342128C161 /* PropertiesF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesF.cpp; path = ../cpp/src/Ice/PropertiesF.cpp; sourceTree = ""; }; + 73E30F6985B146225B2F0177 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 746535D89AE46CEA581E57AF /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/admin/Test.ice; sourceTree = ""; }; + 748EE12499322EB81A8498E8 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/exceptions/ServerPrivate.ice; sourceTree = ""; }; + 7490F0360E314E9C5FF89F3C /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Ice/Router.ice; sourceTree = ""; }; + 74C18BC9905EB667A2B8518D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/exceptions/Test.ice; sourceTree = ""; }; + 74D6726513624795759A7851 /* 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; }; + 753E12D3EE11FCE2B8E3B8F9 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/servantLocator/Server.swift; sourceTree = ""; }; + 770F579715615C54D53ABF72 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/exceptions/TestAMDI.swift; sourceTree = ""; }; + 77242285508C579CC5B0D48D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/exceptions/Server.swift; sourceTree = ""; }; + 77413C0CE48FA70D463B327C /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7771C966A95A75444CDD9607 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/facets/AllTests.swift; sourceTree = ""; }; + 77A833C278A8A075161EBAA8 /* Exception.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.mm; path = src/IceImpl/Exception.mm; sourceTree = ""; }; + 77EC8521AFDAD69584F76199 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 7896AFF2A6A7C311E7C0DBBA /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/objects/Test.ice; sourceTree = ""; }; + 78B6F5E512D86BC4BDC8026B /* Object.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../cpp/src/Ice/Object.cpp; sourceTree = ""; }; + 7966445621B396BC50FEFDAF /* Service.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Service.cpp; path = ../cpp/src/Ice/Service.cpp; sourceTree = ""; }; + 79ABC993469B3E7832F12F25 /* ConnectionI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionI.swift; path = src/Ice/ConnectionI.swift; sourceTree = ""; }; + 79B44ECCFF08BDD9E83A886B /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 79E564BB39566F3CAD8B878F /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 79F3ED290282BD409F3522BE /* SliceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceInfo.swift; path = src/Ice/SliceInfo.swift; sourceTree = ""; }; + 7A0A8197B967AFCB434D4FE1 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7A38C5090BFC9479B5774794 /* ProtocolPluginFacade.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolPluginFacade.cpp; path = ../cpp/src/Ice/ProtocolPluginFacade.cpp; sourceTree = ""; }; + 7A542194ED490F2D450FBE00 /* CollocatedRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CollocatedRequestHandler.cpp; path = ../cpp/src/Ice/CollocatedRequestHandler.cpp; sourceTree = ""; }; + 7AAAA99233AA95D5E2D8623D /* Admin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Admin.ice; path = ../slice/IceGrid/Admin.ice; sourceTree = ""; }; + 7AD25AF9E04E7237D00DA079 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Glacier2/Metrics.ice; sourceTree = ""; }; + 7C38FF5F290399FD2A575BC5 /* Incoming.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Incoming.swift; path = src/Ice/Incoming.swift; sourceTree = ""; }; + 7DEDA8D23AD6801409BD6D10 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceSSL/PluginI.cpp; sourceTree = ""; }; + 7E2557828DF2EF804720B5DF /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/retry/TestI.swift; sourceTree = ""; }; + 7E2F05661007A6DA5ACB1A9C /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/adapterDeactivation/Test.ice; sourceTree = ""; }; + 7E5BC150A7E6BE558ECEA251 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7EA959FB1AE1C0215813F162 /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = test/TestDriver/iOS/Base.lproj/Main.storyboard; sourceTree = ""; }; + 7EB7AAB041B597E34A71548A /* EndpointI.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.mm; path = ../cpp/src/IceIAP/EndpointI.mm; sourceTree = ""; }; + 7F0F1C0C87F3118B4B5673E1 /* PropertiesAdmin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropertiesAdmin.h; path = src/IceImpl/PropertiesAdmin.h; sourceTree = ""; }; + 7F6624BB6F4570C1B15B7C59 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7FC1B02BF28CB20BA8607932 /* LocatorInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorInfo.cpp; path = ../cpp/src/Ice/LocatorInfo.cpp; sourceTree = ""; }; + 7FCC0E3729F4A0124693C97A /* ObjectPrx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectPrx.h; path = src/IceImpl/ObjectPrx.h; sourceTree = ""; }; + 8044616B12D739F37275B163 /* Logger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.mm; path = src/IceImpl/Logger.mm; sourceTree = ""; }; + 80BDC773852878159B385AA8 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/IceSSL/configuration/Server.swift; sourceTree = ""; }; + 80C813147DFCDC62BE24AD6F /* ThreadPool.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPool.cpp; path = ../cpp/src/Ice/ThreadPool.cpp; sourceTree = ""; }; + 8131692BCB1B7FD451C01F8B /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/inheritance/Server.swift; sourceTree = ""; }; + 814042ADB97F55EAA8E0BEE4 /* PropertiesAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesAdminI.cpp; path = ../cpp/src/Ice/PropertiesAdminI.cpp; sourceTree = ""; }; + 8188FC2EE67FAC79B3DDD184 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/admin/AllTests.swift; sourceTree = ""; }; + 8288E572CC1605192A1F1696 /* WSEndpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSEndpoint.cpp; path = ../cpp/src/Ice/WSEndpoint.cpp; sourceTree = ""; }; + 82B698D2AA00D8433E829B6C /* DefaultsAndOverrides.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultsAndOverrides.cpp; path = ../cpp/src/Ice/DefaultsAndOverrides.cpp; sourceTree = ""; }; + 82BA2AD0516BDC1B952A1A16 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 83F50C58BF53491B5A2519D6 /* SecureTransportEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportEngine.cpp; path = ../cpp/src/IceSSL/SecureTransportEngine.cpp; sourceTree = ""; }; + 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = BuiltinSequences.ice; path = ../slice/Ice/BuiltinSequences.ice; sourceTree = ""; }; + 848049457E74A1C8BA343A1D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/objects/Server.swift; sourceTree = ""; }; + 855BA3CF130D0F9747BDA673 /* 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; }; + 85A919E5EEB0EC42C4BAF17A /* Options.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Options.cpp; path = ../cpp/src/IceUtil/Options.cpp; sourceTree = ""; }; + 85B515A196F89D779308CAD1 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 87172D22D512BAFF0B704A27 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Ice/Info.plist; sourceTree = ""; }; + 873DDDDA9C1B2827C2427670 /* OnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnewaysAMI.swift; path = test/Ice/operations/OnewaysAMI.swift; sourceTree = ""; }; + 876D9FFC7CC704C0504BCB91 /* SHA1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SHA1.cpp; path = ../cpp/src/Ice/SHA1.cpp; sourceTree = ""; }; + 879BBBB407F7C87AA23FEFB0 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/scope/TestI.swift; sourceTree = ""; }; + 87C7BBC6F22A9A903F1FB5A4 /* BatchOnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOnewaysAMI.swift; path = test/Ice/operations/BatchOnewaysAMI.swift; sourceTree = ""; }; + 87EF303B4F48EAFE426CB832 /* Key.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Key.ice; path = test/Slice/escape/Key.ice; sourceTree = ""; }; + 88E0874AAF62BEBDEAA903B2 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/IceSSL/configuration/Test.ice; sourceTree = ""; }; + 89430DABC966D657CAA11785 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/acm/Test.ice; sourceTree = ""; }; + 8960D717D9673447C68F61D7 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceIAP/EndpointInfo.cpp; sourceTree = ""; }; + 89C8AEE905086856134C860E /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/operations/Collocated.swift; sourceTree = ""; }; + 8A14118D0E57AF0A5F37755A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/proxy/AllTests.swift; sourceTree = ""; }; + 8A35C4E163EB55AE186B1AF8 /* Logger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Logger.cpp; path = ../cpp/src/Ice/Logger.cpp; sourceTree = ""; }; + 8A51F31391447E13718ECF7F /* UdpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpTransceiver.cpp; path = ../cpp/src/Ice/UdpTransceiver.cpp; sourceTree = ""; }; + 8AC23262A7AC04461F4A4BFD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/retry/AllTests.swift; sourceTree = ""; }; + 8B6B06FDB50B258D64C0C1B5 /* Value.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Value.swift; path = src/Ice/Value.swift; sourceTree = ""; }; + 8B7F6F6014A25D3EA8088D4D /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/ami/Collocated.swift; sourceTree = ""; }; + 8BDD768C41EE98F60B1ADFD6 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/facets/TestI.swift; sourceTree = ""; }; + 8BF3A34243EBCF0033484450 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceLocatorDiscovery/PluginI.cpp; sourceTree = ""; }; + 8C321C7D5D3EEBFF6B77950C /* FactoryTableInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTableInit.cpp; path = ../cpp/src/Ice/FactoryTableInit.cpp; sourceTree = ""; }; + 8C4AA43D47071643F9248425 /* ConnectionI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionI.cpp; path = ../cpp/src/Ice/ConnectionI.cpp; sourceTree = ""; }; + 8E07F2808B7ABBDDF36A6614 /* Controller.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Controller.ice; path = ../scripts/Controller.ice; sourceTree = ""; }; + 8EEDB1FF955CF9544E65EAC7 /* 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; }; + 90C90B96D25DD719CC60E168 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/inheritance/Collocated.swift; sourceTree = ""; }; + 925C43BB0C5ED12BA8492EA3 /* IceSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceSwift.h; path = src/Ice/IceSwift.h; sourceTree = ""; }; + 92E658D78C379EAA3ED57897 /* SlicedData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SlicedData.swift; path = src/Ice/SlicedData.swift; sourceTree = ""; }; + 94750ED6B82F0F0C0E7243D1 /* TraceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.mm; path = src/IceImpl/TraceUtil.mm; sourceTree = ""; }; + 94FDF54850CD30639F5F2A76 /* Proxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Proxy.cpp; path = ../cpp/src/Ice/Proxy.cpp; sourceTree = ""; }; + 953B936F6C84AD4413F0837A /* Connection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.mm; path = src/IceImpl/Connection.mm; sourceTree = ""; }; + 95E105439BA21E7D9534BAA3 /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 96057073F871C88A9A437E6C /* RemoteLogger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RemoteLogger.ice; path = ../slice/Ice/RemoteLogger.ice; sourceTree = ""; }; + 9668122A663485B283D6E354 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/IceSSL/configuration/AllTests.swift; sourceTree = ""; }; + 977C1FE11405DDDBFB5775A2 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 978FF0AEF23EE4E31F7CB0BE /* FormatType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatType.swift; path = src/Ice/FormatType.swift; sourceTree = ""; }; + 97E37D3215AA9BB8DD87E7B4 /* Connector.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.mm; path = ../cpp/src/IceIAP/Connector.mm; sourceTree = ""; }; + 97E99C2AEE0BD9BF770175D4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultServant/AllTests.swift; sourceTree = ""; }; + 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 990C9617CC26B0961E520996 /* LocalObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalObject.swift; path = src/Ice/LocalObject.swift; sourceTree = ""; }; + 99B5902E632A1305ED246DA8 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/exceptions/Test.ice; sourceTree = ""; }; + 99B9776ADB255F1973621C98 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/objects/TestI.swift; sourceTree = ""; }; + 99BB692606D808F7F66B6446 /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/Glacier2/Session.ice; sourceTree = ""; }; + 99CDD3BEF9831A379194BA9E /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 99F9D2D3C733AFDB4D23EB00 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 9B722E075AEEBEA3D471A855 /* ObjectAdapterI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterI.cpp; path = ../cpp/src/Ice/ObjectAdapterI.cpp; sourceTree = ""; }; + 9CD9C4FF6B42F14CAB807960 /* libIce C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 9D50C3279384F2AA6BA994E0 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Glacier2/Router.ice; sourceTree = ""; }; + 9ED8B6B4E62F9D71D312B66F /* Value.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../cpp/src/Ice/Value.cpp; sourceTree = ""; }; + 9F84FD475359A48442829A39 /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; + 9F93205A8C96574AF482B2AB /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A09BB09CBD110F5A9A95C3BC /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/exceptions/Server.swift; sourceTree = ""; }; + A0E153E7D44172EC94A37022 /* IceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceUtil.h; path = src/IceImpl/IceUtil.h; sourceTree = ""; }; + A19D8983C8F5E4BF02AA82C4 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/inheritance/Test.ice; sourceTree = ""; }; + A1D1560CEE1155BFFA1F9B22 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/optional/TestAMD.ice; sourceTree = ""; }; + A2028B9FE566140E37F6A80E /* ProxyFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProxyFactory.cpp; path = ../cpp/src/Ice/ProxyFactory.cpp; sourceTree = ""; }; + A26B127504B1411F9A44E917 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = ../cpp/src/IceUtil/Time.cpp; sourceTree = ""; }; + A28E723AB3710F4B62B6B303 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = ../cpp/src/Ice/Exception.cpp; sourceTree = ""; }; + A2BADF2E71C4E31C2545EBD7 /* PropertiesAdmin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.mm; path = src/IceImpl/PropertiesAdmin.mm; sourceTree = ""; }; + A321E613C2308FD17E0C2E6D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/timeout/TestI.swift; sourceTree = ""; }; + A3DCD2329D6CC0E7D1A67304 /* SliceFlags.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceFlags.swift; path = src/Ice/SliceFlags.swift; sourceTree = ""; }; + A47964EE995DCCF12193A7C8 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/enums/TestI.swift; sourceTree = ""; }; + A4E73A61A877F2E6823B7907 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/admin/TestI.swift; sourceTree = ""; }; + A53A47B49B4866AB8EE69620 /* ReferenceFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReferenceFactory.cpp; path = ../cpp/src/Ice/ReferenceFactory.cpp; sourceTree = ""; }; + A558073E4D0060993986E950 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/inheritance/Client.swift; sourceTree = ""; }; + A590A314799E84457E6B723C /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A5B27506E526D876D902739A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/timeout/AllTests.swift; sourceTree = ""; }; + A5DB117E9F7CD97246E362D0 /* LocalObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalObject.cpp; path = ../cpp/src/Ice/LocalObject.cpp; sourceTree = ""; }; + A6D9088DAAB107784DA16DE0 /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A72C73AF071E66FC94B9C561 /* TcpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnector.cpp; path = ../cpp/src/Ice/TcpConnector.cpp; sourceTree = ""; }; + A7987BEF538197F4846537BC /* UnknownSlicedValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnknownSlicedValue.swift; path = src/Ice/UnknownSlicedValue.swift; sourceTree = ""; }; + A7E3DA05928304B5AC220E13 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/optional/TestAMDI.swift; sourceTree = ""; }; + A7F4197C8123883ABAF8C85D /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A84471908266098F39B2D842 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A8697F5EF8C512BDD2D230A1 /* PermissionsVerifier.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifier.ice; path = ../slice/Glacier2/PermissionsVerifier.ice; sourceTree = ""; }; + A896AB8FC799C78576276217 /* OutputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputUtil.cpp; path = ../cpp/src/IceUtil/OutputUtil.cpp; sourceTree = ""; }; + A8AFF8F311501C1902F407B9 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A8B3B91893CDE2FCE46DB8C3 /* ValueFactoryManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactoryManagerI.cpp; path = ../cpp/src/Ice/ValueFactoryManagerI.cpp; sourceTree = ""; }; + A8F5945F8AFC7C9F3E86F3D4 /* Endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Endpoint.h; path = src/IceImpl/Endpoint.h; sourceTree = ""; }; + A9E418725A7536BFB1BF5F9E /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + AADAF4F2A9298B55860DC8AB /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/scope/Client.swift; sourceTree = ""; }; + AB4A17E1D7AFC814618AE832 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/acm/Client.swift; sourceTree = ""; }; + AB841745F334BE569AAC2791 /* InstrumentationF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationF.cpp; path = ../cpp/src/Ice/InstrumentationF.cpp; sourceTree = ""; }; + ABB7C1A5CA7A5D473338E96D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceStorm/Info.plist; sourceTree = ""; }; + ACB9AA204E947072B6089FC4 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertyDict.ice; path = ../slice/Ice/PropertyDict.ice; sourceTree = ""; }; + ADA2F94E4EDD0ADEEE713717 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/invoke/Test.ice; sourceTree = ""; }; + ADE78EC4CCE93F2E0C1D0DD3 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + ADEE63F9B0ACFD0462CA86EB /* OutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OutputStream.h; path = src/IceImpl/OutputStream.h; sourceTree = ""; }; + AE017E010C3B64228A0758B7 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connection.cpp; path = ../cpp/src/Ice/Connection.cpp; sourceTree = ""; }; + AE623D75A48D156E4410F1AD /* libIceLocatorDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + AEAA1F26027433EC0170129E /* CommunicatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorF.cpp; path = ../cpp/src/Ice/CommunicatorF.cpp; sourceTree = ""; }; + AF5E56D13752DB41032C1BAB /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/invoke/AllTests.swift; sourceTree = ""; }; + AF698C2D5D97DCCFC7D85451 /* Endpoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.mm; path = src/IceImpl/Endpoint.mm; sourceTree = ""; }; + AFF94B5C18B237C5BCC2586A /* IceStorm.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceStorm.ice; path = ../slice/IceStorm/IceStorm.ice; sourceTree = ""; }; + B05047B0A67FBB7433C356E2 /* OSLogLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OSLogLoggerI.cpp; path = ../cpp/src/Ice/OSLogLoggerI.cpp; sourceTree = ""; }; + B07EBD95BDC4C8F2D8598B89 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/exceptions/TestAMD.ice; sourceTree = ""; }; + B0C70BDF91875EC6706AE12C /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/invoke/TestI.swift; sourceTree = ""; }; + B17B4B38AC0363CAFA24A9E4 /* Shared.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shared.cpp; path = ../cpp/src/IceUtil/Shared.cpp; sourceTree = ""; }; + B183D8B5CE1435DBB960167D /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = test/TestDriver/iOS/AppDelegate.swift; sourceTree = ""; }; + B1925D4741CC08B26DFD1621 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/acm/Server.swift; sourceTree = ""; }; + B1BD6C158D137668766182C6 /* CertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateI.cpp; path = ../cpp/src/IceSSL/CertificateI.cpp; sourceTree = ""; }; + B1D68FCE2A561F7EC2ACDCAA /* ImplicitContextI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContextI.swift; path = src/Ice/ImplicitContextI.swift; sourceTree = ""; }; + B2C1876280F446CCE7B816D9 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + B306F3D24CD60364FAF42DBD /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/invoke/Client.swift; sourceTree = ""; }; + B3089717B2724FA70B62A07E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/IceSSL/configuration/Client.swift; sourceTree = ""; }; + B324F3F918968083524C839F /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + B33CD6B53C345AC42929BAAC /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + B38EBAF76FAFE72C64335C5B /* UtilException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UtilException.cpp; path = ../cpp/src/IceUtil/UtilException.cpp; sourceTree = ""; }; + B396B2BC10CC618A54890177 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/optional/Test.ice; sourceTree = ""; }; + B3D95F9289578400C8DD7B0E /* MetricsAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsAdminI.cpp; path = ../cpp/src/Ice/MetricsAdminI.cpp; sourceTree = ""; }; + B3D9E5A1FEF7356081B23255 /* SlicedData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SlicedData.cpp; path = ../cpp/src/Ice/SlicedData.cpp; sourceTree = ""; }; + B40AB91DB677ED424B70FA69 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/stream/Client.swift; sourceTree = ""; }; + B4E7A74CCB2DED35DB6A1B93 /* Communicator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Communicator.cpp; path = ../cpp/src/Ice/Communicator.cpp; sourceTree = ""; }; + B570B45B289F7B6C00BF559D /* ProtocolInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolInstance.cpp; path = ../cpp/src/Ice/ProtocolInstance.cpp; sourceTree = ""; }; + B68896EE6832BCFFC1CDEA85 /* EndpointSelectionType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointSelectionType.swift; path = src/Ice/EndpointSelectionType.swift; sourceTree = ""; }; + B80DE963F4B8A8CE7A086F4B /* ServantLocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocator.cpp; path = ../cpp/src/Ice/ServantLocator.cpp; sourceTree = ""; }; + B848104E80383628C5A2CF73 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultServant/Test.ice; sourceTree = ""; }; + B972748A398232A92FC108CB /* Buffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Buffer.cpp; path = ../cpp/src/Ice/Buffer.cpp; sourceTree = ""; }; + B99A0FA92B5EA56DCB41FC92 /* EndpointFactoryManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactoryManager.cpp; path = ../cpp/src/Ice/EndpointFactoryManager.cpp; sourceTree = ""; }; + BA03B082E40C34B986B183E0 /* TraceLevels.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceLevels.cpp; path = ../cpp/src/Ice/TraceLevels.cpp; sourceTree = ""; }; + BA23EE95BEDA285AEE6F8A0D /* IceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IceUtil.mm; path = src/IceImpl/IceUtil.mm; sourceTree = ""; }; + BA38B6705BC845C06AFE3CD7 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/udp/TestI.swift; sourceTree = ""; }; + BB2A63494B776FCB8C2A0BCF /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/servantLocator/ServerAMD.swift; sourceTree = ""; }; + BB5D02829AEAB23FFABB5B4F /* WSConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSConnector.cpp; path = ../cpp/src/Ice/WSConnector.cpp; sourceTree = ""; }; + BC33F4F1A32F4DFE8EBB12A9 /* PropertiesI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesI.swift; path = src/Ice/PropertiesI.swift; sourceTree = ""; }; + BC6EBC91E36FD1E5EEDDEA5F /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/facets/Collocated.swift; sourceTree = ""; }; + BCCD7A2776EFD0C816828644 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; + BCF77AA38122CC9F97CA697A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/properties/Client.swift; sourceTree = ""; }; + BD917785198D9351B3909F60 /* ImplicitContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContext.swift; path = src/Ice/ImplicitContext.swift; sourceTree = ""; }; + BDA44D2D537AF18875B1AF6E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/hold/Server.swift; sourceTree = ""; }; + BDF027FA6FECE2B7A5046271 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Glacier2/Info.plist; sourceTree = ""; }; + BE284562963BDD32CEEF2902 /* Timer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Timer.cpp; path = ../cpp/src/Ice/Timer.cpp; sourceTree = ""; }; + BE336D44832D3B066ECDDB06 /* Glacier2Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Glacier2Swift.h; path = src/Glacier2/Glacier2Swift.h; sourceTree = ""; }; + BE4880C3857E46FDB8466BDA /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/location/Server.swift; sourceTree = ""; }; + BECB73EA046F28161933053C /* Notifications.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Notifications.mm; path = ../cpp/src/Ice/ios/Notifications.mm; sourceTree = ""; }; + BF3F7C97E46FF31D7DBAFF42 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + BFF0ED34748664151B72A1D2 /* Incoming.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Incoming.cpp; path = ../cpp/src/Ice/Incoming.cpp; sourceTree = ""; }; + C0093783F41BC3D488E98600 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/enums/Test.ice; sourceTree = ""; }; + C045207B0CFBEA2826456197 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = test/TestDriver/iOS/Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + C0AF15B4EEC648C875D97939 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C0CBBD39BB0BC5077AC80C4D /* AcceptorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AcceptorI.cpp; path = ../cpp/src/IceSSL/AcceptorI.cpp; sourceTree = ""; }; + C0F99C57D798B822698572DE /* BlobjectFacade.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = BlobjectFacade.mm; path = src/IceImpl/BlobjectFacade.mm; sourceTree = ""; }; + C19ED6991B81D0F741D8B390 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C1D0DCF81BE7E3A82E4C8306 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/proxy/TestI.swift; sourceTree = ""; }; + C291B1D3FF41716E62FE1B66 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C32566337C1211D2262DE5B8 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultValue/AllTests.swift; sourceTree = ""; }; + C3665BE59BB614AAE0CDF2FE /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = ../cpp/src/Ice/EventHandler.cpp; sourceTree = ""; }; + C37E81FE388B9D7FAB3C7C2C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/objects/Server.swift; sourceTree = ""; }; + C4077CF4E039DFF0D6A22D3D /* StringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverter.cpp; path = ../cpp/src/IceUtil/StringConverter.cpp; sourceTree = ""; }; + C42E3590E041824F3DCB8EB0 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/proxy/TestAMD.ice; sourceTree = ""; }; + C4321B1EC69E230431008038 /* Connector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connector.cpp; path = ../cpp/src/Ice/Connector.cpp; sourceTree = ""; }; + C4477AA6B5501589EC90C4F2 /* ValueFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactory.swift; path = src/Ice/ValueFactory.swift; sourceTree = ""; }; + C4920C3131DE43086740705E /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C4B3812EC86A075A591325CD /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C4E36FFCFD779F3349E0B808 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/location/Test.ice; sourceTree = ""; }; + C50755E3F26CA6D9CC706FDC /* TwowaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwowaysAMI.swift; path = test/Ice/operations/TwowaysAMI.swift; sourceTree = ""; }; + C520CFEA9E7F6ABF0BB8DEFE /* LookupI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LookupI.cpp; path = ../cpp/src/IceDiscovery/LookupI.cpp; sourceTree = ""; }; + C5242AA08870B9E96219670E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/optional/Client.swift; sourceTree = ""; }; + C536B3A8A8CD276788EE5A1A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/objects/AllTests.swift; sourceTree = ""; }; + C5E35C99046C1F715F4B4E5F /* Initialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Initialize.swift; path = src/Ice/Initialize.swift; sourceTree = ""; }; + C6DE61C2A91224378F513C93 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/info/Test.ice; sourceTree = ""; }; + C7342B8BA9FB0E6A989E0B06 /* ObjectAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapter.cpp; path = ../cpp/src/Ice/ObjectAdapter.cpp; sourceTree = ""; }; + C7529E7D6E0CE82CABE0D45B /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C91F21E0EC4A9AB95D7E569A /* StreamEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamEndpointI.cpp; path = ../cpp/src/Ice/ios/StreamEndpointI.cpp; sourceTree = ""; }; + C9268509E17D41945A7D998E /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = src/IceImpl/Logger.h; sourceTree = ""; }; + C9DAF4E6A6A0734D36C7039E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/enums/Server.swift; sourceTree = ""; }; + CA042305E180817575383DD8 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/servantLocator/TestAMD.ice; sourceTree = ""; }; + CA06581C1F468D6DFACFA9C2 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + CA2F862F15E33C84D1C777E3 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/acm/TestI.swift; sourceTree = ""; }; + CA44AC521456FBE35AC0D96D /* UUID.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UUID.cpp; path = ../cpp/src/IceUtil/UUID.cpp; sourceTree = ""; }; + CA94963DA4E9C2C6BC9D3A1C /* StreamTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamTransceiver.cpp; path = ../cpp/src/Ice/ios/StreamTransceiver.cpp; sourceTree = ""; }; + CABAAA81FDF2158619AA51BB /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + CB2C9FFB0BA6BBA3E848504F /* Convert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Convert.mm; path = src/IceImpl/Convert.mm; sourceTree = ""; }; + CB330C24F7E1E7F765F5B40D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/exceptions/Client.swift; sourceTree = ""; }; + CBAE1ADE6A6A3C9DACBF2C68 /* LocatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorI.cpp; path = ../cpp/src/IceDiscovery/LocatorI.cpp; sourceTree = ""; }; + CC8C2F843887BE982892CC85 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/inheritance/AllTests.swift; sourceTree = ""; }; + CD76D50BBE665C06B63D8EA0 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/operations/AllTests.swift; sourceTree = ""; }; + CE3EFB47219D60018ECBCE1B /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + CE5EF72F93C8A48F13699E40 /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + CF2604CFDFD9F02C2548D7C4 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Thread.cpp; path = ../cpp/src/Ice/Thread.cpp; sourceTree = ""; }; + CF5C1DB557360C9F09A15BB8 /* UdpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpConnector.cpp; path = ../cpp/src/Ice/UdpConnector.cpp; sourceTree = ""; }; + CF60B8793F769C8446821BF9 /* TraceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceUtil.h; path = src/IceImpl/TraceUtil.h; sourceTree = ""; }; + D08B05FD08F60E1D3870BBF2 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/scope/Test.ice; sourceTree = ""; }; + D097943C4BAC00D7111D073F /* PropertiesI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesI.cpp; path = ../cpp/src/Ice/PropertiesI.cpp; sourceTree = ""; }; + D16C752C89102255A084815B /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = src/IceImpl/Convert.h; sourceTree = ""; }; + D1F8FE1A0E059D0118539988 /* FactoryTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTable.cpp; path = ../cpp/src/Ice/FactoryTable.cpp; sourceTree = ""; }; + D238D915AA7B2C9AAA51674C /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + D26101A37129FDCC7F02DE6A /* IceStormSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceStormSwift.h; path = src/IceStorm/IceStormSwift.h; sourceTree = ""; }; + D2DB1A2EBE508ADA82D566B4 /* TrustManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TrustManager.cpp; path = ../cpp/src/IceSSL/TrustManager.cpp; sourceTree = ""; }; + D3548229461616CC182BCEBD /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/binding/Client.swift; sourceTree = ""; }; + D447784B77B4412B60FCFC03 /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/IceGrid/Session.ice; sourceTree = ""; }; + D51058046137C699E489643B /* DynamicLibrary.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DynamicLibrary.cpp; path = ../cpp/src/Ice/DynamicLibrary.cpp; sourceTree = ""; }; + D53779F0A96B303BCCEAEFCD /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = test/TestDriver/iOS/ViewController.swift; sourceTree = ""; }; + D7847B096AC0D34F6A6A83F0 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/servantLocator/TestAMDI.swift; sourceTree = ""; }; + D7A933D36328C77B1C03028B /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceDiscovery/PluginI.cpp; sourceTree = ""; }; + D7FCFB7E350304BE48F9AB70 /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = src/Ice/Object.swift; sourceTree = ""; }; + D82A4CA54A5484DD964DFE39 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/location/AllTests.swift; sourceTree = ""; }; + D8766C6DCAB7BABFE071D77E /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + D8C536D312B9304B2D44C277 /* IPEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPEndpointI.cpp; path = ../cpp/src/Ice/IPEndpointI.cpp; sourceTree = ""; }; + D8DED3CCF7ABF57CB61A22DE /* Plugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Plugin.cpp; path = ../cpp/src/Ice/Plugin.cpp; sourceTree = ""; }; + D8E86E1134A0E4313F11F025 /* RequestHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandlerFactory.cpp; path = ../cpp/src/Ice/RequestHandlerFactory.cpp; sourceTree = ""; }; + D8F7B24CE59A1F99506ABFA9 /* UnsupportedAdminFacet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnsupportedAdminFacet.h; path = src/IceImpl/UnsupportedAdminFacet.h; sourceTree = ""; }; + D90B76046F6620FA39EB66FA /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/IceSSL/configuration/TestI.swift; sourceTree = ""; }; + D92A55DB4A2264AEEDC97D5D /* ImplicitContextI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextI.cpp; path = ../cpp/src/Ice/ImplicitContextI.cpp; sourceTree = ""; }; + DC2321024BC76972FDBEF190 /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = src/Ice/Util.swift; sourceTree = ""; }; + DC52095091A14C3F13099644 /* OperationMode.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = OperationMode.ice; path = ../slice/Ice/OperationMode.ice; sourceTree = ""; }; + DD7C821443F5E0607D4DE6F8 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/facets/Test.ice; sourceTree = ""; }; + DD976A623B36B1B8928E4F84 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/binding/Server.swift; sourceTree = ""; }; + DD9A6F271F1D24C181329DEC /* ConnectionRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionRequestHandler.cpp; path = ../cpp/src/Ice/ConnectionRequestHandler.cpp; sourceTree = ""; }; + DDCD573A768D574A4F55647D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/udp/Server.swift; sourceTree = ""; }; + DE0294898D1572E655754A5B /* IceLocatorDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceLocatorDiscovery.ice; path = ../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice; sourceTree = ""; }; + DE0FE67A381FD4FD9F7DD015 /* Transceiver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.mm; path = ../cpp/src/IceIAP/Transceiver.mm; sourceTree = ""; }; + DE7F0BCED1A80C49DD69EED5 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/ami/AllTests.swift; sourceTree = ""; }; + DE81698975B33852370169B0 /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + DEC08CE6FC9829FC76970ABF /* ObjectAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapter.swift; path = src/Ice/ObjectAdapter.swift; sourceTree = ""; }; + DEE6C673CF16E6CD4116CC12 /* ThreadException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadException.cpp; path = ../cpp/src/IceUtil/ThreadException.cpp; sourceTree = ""; }; + DF00A0B8905692CA5CB21851 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/admin/Client.swift; sourceTree = ""; }; + DF1CA6ABA240EB1DCE0DCA9E /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + DF38F1C85E466EEC07C46EE0 /* RecMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecMutex.cpp; path = ../cpp/src/IceUtil/RecMutex.cpp; sourceTree = ""; }; + DF969510683D898EFE4084C0 /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + DFCE210A780A814AEE2A57AC /* ObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectAdapter.h; path = src/IceImpl/ObjectAdapter.h; sourceTree = ""; }; + E00667716A1C103FAC5F4862 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E00AE826AA0B6D12DE8A593B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/enums/Client.swift; sourceTree = ""; }; + E0417ABE38D6F16A1223B078 /* 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; }; + E12D95BAB303CB972B193B0D /* ControllerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControllerI.swift; path = test/TestDriver/iOS/ControllerI.swift; sourceTree = ""; }; + E22C0DF633DFF1F13E530965 /* Twoways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Twoways.swift; path = test/Ice/operations/Twoways.swift; sourceTree = ""; }; + E3077BF706F4E5C8BA2500DA /* ImplicitContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.mm; path = src/IceImpl/ImplicitContext.mm; sourceTree = ""; }; + E39E0C1B10E19B51E2A7B2E4 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + E400CBFEEB7A5C82AA30E765 /* Process.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.mm; path = src/IceImpl/Process.mm; sourceTree = ""; }; + E4387BB8D14955178CF59D4F /* Acceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Acceptor.cpp; path = ../cpp/src/Ice/Acceptor.cpp; sourceTree = ""; }; + E580B9D9CC76D53B7B18272C /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E58B32872CC6A0C1048F6248 /* Descriptor.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Descriptor.ice; path = ../slice/IceGrid/Descriptor.ice; sourceTree = ""; }; + E597DC759086A689098B811C /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/optional/ServerAMD.swift; sourceTree = ""; }; + E5F90D823F008079DDF85638 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/operations/TestAMDI.swift; sourceTree = ""; }; + E67BFC86E01DD26387F81954 /* 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; }; + E70AFD8DC408D542FD307AB5 /* Instrumentation.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instrumentation.cpp; path = ../cpp/src/Ice/Instrumentation.cpp; sourceTree = ""; }; + E73324B4E2A13F9EFC446206 /* EndpointInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointInfoFactory.swift; path = src/Ice/EndpointInfoFactory.swift; sourceTree = ""; }; + E78C7100074203EDD9A86A1A /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/exceptions/Collocated.swift; sourceTree = ""; }; + E7B4AD1931A23E635750A562 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + E9082BACB853874884EA0C9C /* StreamConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamConnector.cpp; path = ../cpp/src/Ice/ios/StreamConnector.cpp; sourceTree = ""; }; + E9490D97D26F54E2DE96FE5E /* ValueFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactory.cpp; path = ../cpp/src/Ice/ValueFactory.cpp; sourceTree = ""; }; + EA0E2961E11E1150BA971DB0 /* EndpointI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointI.swift; path = src/Ice/EndpointI.swift; sourceTree = ""; }; + EA6C41DF9E4B34FCEDC9493A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/objects/Client.swift; sourceTree = ""; }; + EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.ice; path = ../slice/Ice/Process.ice; sourceTree = ""; }; + EB11AE63135A23028AE12F90 /* libIce C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + EB4A88B7EE541CB6AEC177AB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceGrid/Info.plist; sourceTree = ""; }; + EC2D223A5415E0568A67FC72 /* SecureTransportTransceiverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportTransceiverI.cpp; path = ../cpp/src/IceSSL/SecureTransportTransceiverI.cpp; sourceTree = ""; }; + EC56C57F4AF048D4B7528E44 /* UnsupportedAdminFacet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = UnsupportedAdminFacet.mm; path = src/IceImpl/UnsupportedAdminFacet.mm; sourceTree = ""; }; + ECB41582845B643446FFF5A0 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/objects/Collocated.swift; sourceTree = ""; }; + EDA15621A632772E70EF9DE9 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/scope/Server.swift; sourceTree = ""; }; + EDC332916E29C4DB70EDDC09 /* Process.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Process.h; path = src/IceImpl/Process.h; sourceTree = ""; }; + EE56A762315F2E6B866D2172 /* AdminFacetFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AdminFacetFactory.h; path = src/IceImpl/AdminFacetFactory.h; sourceTree = ""; }; + EE85799B50D901E7EE91B724 /* Communicator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.mm; path = src/IceImpl/Communicator.mm; sourceTree = ""; }; + EFBB16D3C8E2986C4EB8D12D /* Network.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Network.cpp; path = ../cpp/src/Ice/Network.cpp; sourceTree = ""; }; + EFDF1AFD3FE00EFB8D0F40DF /* Properties.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.mm; path = src/IceImpl/Properties.mm; sourceTree = ""; }; + EFE318F6CB3960BD10185486 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/location/TestI.swift; sourceTree = ""; }; + F07B1686893281A6AD084966 /* ImplicitContextF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextF.cpp; path = ../cpp/src/Ice/ImplicitContextF.cpp; sourceTree = ""; }; + F0DB50962CCFE3F777DFA679 /* Context.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Context.ice; path = ../slice/Ice/Context.ice; sourceTree = ""; }; + F0F1E9B04036C7A1BB7003EF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/location/Client.swift; sourceTree = ""; }; + F1096EF87824C8D901CB7EB0 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/operations/ServerAMD.swift; sourceTree = ""; }; + F15FB749EF455BD7CA108204 /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F18DA127CFF3E191C1169914 /* Selector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Selector.cpp; path = ../cpp/src/Ice/Selector.cpp; sourceTree = ""; }; + F20CF9182023E2AB477F4A39 /* libIceDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F2CC389E3BAC5C77C6DFC3B2 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/retry/Client.swift; sourceTree = ""; }; + F32E0BF2C8C888EC8ADD08A9 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/exceptions/Client.swift; sourceTree = ""; }; + F47009097AD17B454D6780A7 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/hold/Test.ice; sourceTree = ""; }; + F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; + F562D9D8A7515B35C2F58350 /* TcpAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpAcceptor.cpp; path = ../cpp/src/Ice/TcpAcceptor.cpp; sourceTree = ""; }; + F5D80A2F30612934EEB5E8AA /* WSAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSAcceptor.cpp; path = ../cpp/src/Ice/WSAcceptor.cpp; sourceTree = ""; }; + F6CE4D7AF84FCCEB30AEE82D /* CommunicatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommunicatorI.swift; path = src/Ice/CommunicatorI.swift; sourceTree = ""; }; + F7CA3B0771AAB23FD2BBAB32 /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F844C21E5E941FB173DD616C /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/IceSSL/Instance.cpp; sourceTree = ""; }; + F84548B73653D4C1742C2AD9 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = ../certs; sourceTree = ""; }; + F8AC47855542E0FC1068E3A9 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/facets/Server.swift; sourceTree = ""; }; + F8AFAAB080FEF12A06662C69 /* LoggerWrapperI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerWrapperI.h; path = src/IceImpl/LoggerWrapperI.h; sourceTree = ""; }; + F8EC734E3ABEC1B9F8ED7E1C /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/exceptions/ServerAMD.swift; sourceTree = ""; }; + F94A73A9390A0C781AE4A324 /* IAPEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPEndpointInfo.swift; path = src/Ice/IAPEndpointInfo.swift; sourceTree = ""; }; + F95B39360BF7A5A8F3336C02 /* ConnectionF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionF.cpp; path = ../cpp/src/Ice/ConnectionF.cpp; sourceTree = ""; }; + F97826A9DCAFE51593E3E836 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + FB64C1942DFC8ACD03DC7591 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FC48F3FEB7298E0C6FB9C9BD /* Oneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Oneways.swift; path = test/Ice/operations/Oneways.swift; sourceTree = ""; }; + FC6572D6D1B9BB5AD0EBFF57 /* ArgVector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ArgVector.cpp; path = ../cpp/src/Ice/ArgVector.cpp; sourceTree = ""; }; + FC8043E62037681FA6B23AE1 /* RFC2253.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RFC2253.cpp; path = ../cpp/src/IceSSL/RFC2253.cpp; sourceTree = ""; }; + FC93FDF7BB0162F351F94E98 /* LocalException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalException.swift; path = src/Ice/LocalException.swift; sourceTree = ""; }; + FD7C6AB26C45ABFC92DDB247 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/invoke/Server.swift; sourceTree = ""; }; + FD8ABC24EC401B3963964DB0 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/exceptions/ServerAMD.swift; sourceTree = ""; }; + FDD74C1D5D68EB2943068DA2 /* Version.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Version.ice; path = ../slice/Ice/Version.ice; sourceTree = ""; }; + FDF3426F5F604EA6AD6D67FF /* Instrumentation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Instrumentation.swift; path = src/Ice/Instrumentation.swift; sourceTree = ""; }; + FE732A9CB17BA09E4B52F143 /* Transceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Transceiver.cpp; path = ../cpp/src/Ice/Transceiver.cpp; sourceTree = ""; }; + FEB045E2BE5B2791729997F6 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + FF2875AE0E0680CDB9C9B1B8 /* libIceDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFC58AB4E1C5B5964CD9F8D3 /* UserAccountMapper.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = UserAccountMapper.ice; path = ../slice/IceGrid/UserAccountMapper.ice; sourceTree = ""; }; + FFD565105BC4E6A56DCB1853 /* Exception.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.ice; path = ../slice/IceGrid/Exception.ice; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 03002C90EFE637815A0A72E5 /* Frameworks */ = { + 02145A4BA1F1929F98277F3F /* 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 */, ); runOnlyForDeploymentPostprocessing = 0; }; - 08C55A113D26874EB5C02B30 /* Frameworks */ = { + 03969FEBBB361D750052E277 /* 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 */, + 886792273848EFE3371AF4A0 /* Foundation.framework in Frameworks */, + 95308B332BCF771798ACDEC4 /* Ice.framework in Frameworks */, + A2054992B8CE70C1D425598A /* PromiseKit.xcframework in Frameworks */, + A70BDA756A9B7A42C3D2E7A6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0B40E563316A44A6683EA42E /* Frameworks */ = { + 064811FE756C489F622F4CD2 /* 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 */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0EA9E0BBBDCDB4A805183653 /* Frameworks */ = { + 087369FE5CBF4571DF972817 /* 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 */, + ADF9112F19AD07C8800D540D /* Foundation.framework in Frameworks */, + BFCE75841F61F771CAF746A0 /* Ice.framework in Frameworks */, + B442190D15696E1BD40AC0FA /* PromiseKit.xcframework in Frameworks */, + 8FAA4DFC51B140E7F4A29684 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1054FB4FA1C7CF26A6A0D064 /* Frameworks */ = { + 08D5DEC763216EFC1714B04D /* 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 */, + 9D547612C029D152FB04C251 /* Foundation.framework in Frameworks */, + 1CD23F61AA300C404E3EDF16 /* Ice.framework in Frameworks */, + D4A1C9D30C746269BFA9A55B /* PromiseKit.xcframework in Frameworks */, + 0DF8356374955C9B994ED912 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 171C4A90BA726A75547AF7FE /* Frameworks */ = { + 0B2EA7B0E2BF1399F90BE3D3 /* 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 */, + E3AE7D6BB6F62823F1F29326 /* Cocoa.framework in Frameworks */, + B6A9C7628EAFE90B4E3A712C /* Ice.framework in Frameworks */, + 995CFAC19FD43A7F67F2805C /* PromiseKit.xcframework in Frameworks */, + A08EA856B344D8B4281F2EA9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1A7F3764046C3DBAE17928D9 /* Frameworks */ = { + 175CCCC5FCB49F902F463E46 /* 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 */, + D05E6544BA2CB7987F563B1F /* Cocoa.framework in Frameworks */, + 892E2CEDBBCFBCA1F9E5E748 /* Ice.framework in Frameworks */, + F6D94346785E7673ABB2546C /* PromiseKit.xcframework in Frameworks */, + A51F2D0C28544E74C78FF985 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1E292281FE72E31B659889D0 /* Frameworks */ = { + 178A5969AEF5E652580EBB8E /* 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 */, + A0E4EE3E2A26F93DD54B7C0E /* Foundation.framework in Frameworks */, + 9A2CF04ECC8D5D4C2D846B51 /* Ice.framework in Frameworks */, + 71E7FD03D2194AEEBD0238D4 /* PromiseKit.xcframework in Frameworks */, + 3E74B978028C2095E79EB6F2 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 22E96229AAC022EFCED7CE61 /* Frameworks */ = { + 1E65DBE7DC8A2E40F2C43394 /* 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 */, + 032CDFAF5171057955003F6F /* Cocoa.framework in Frameworks */, + CF06DF1CD1F897F0B4FC9334 /* Ice.framework in Frameworks */, + 1679AD08C0C9C2C1F16F34D5 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 257358A49EDC4DD950BE92C9 /* Frameworks */ = { + 2082B5F21E7931D8FA85345F /* 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 */, + 77A5A85603F8961F35C8AF6F /* Cocoa.framework in Frameworks */, + 6AB4C973B7D16E7747B38FA1 /* Ice.framework in Frameworks */, + 04A1DA6F0688902360376C8B /* PromiseKit.xcframework in Frameworks */, + A299361F94B7BFDD16C90C78 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2738A3546E0DDA4969F3016D /* Frameworks */ = { + 21510EAF7B78BB23AC67243D /* 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 */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2929744F90ED76DA401853BC /* Frameworks */ = { + 21C4C789E5F3EA71CD5CF519 /* 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 */, + F318F86CFB6818B759FC35CB /* Foundation.framework in Frameworks */, + 23B13295432D1028F187ACBB /* Ice.framework in Frameworks */, + 508534B8EF19FD5FEFDAB249 /* PromiseKit.xcframework in Frameworks */, + E3BED76CFEA93576EE34FA5D /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2D981833CC8FBEDFAEA491DA /* Frameworks */ = { + 2427D63A3B5F1BB78ECD9AF4 /* 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 */, + B51C69F89B80DA2E1B401184 /* Cocoa.framework in Frameworks */, + DFC84089EB6C7C3DDCD8C1DA /* Ice.framework in Frameworks */, + 012112A57534E1CE8702B653 /* PromiseKit.xcframework in Frameworks */, + 838BFA0588472EC15995940E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 30B7EF8233591FD7F4FC7DD6 /* Frameworks */ = { + 276DBE3784B7F1938128A4AA /* 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 */, + 5F4F659E54E72A3923BA7E05 /* Cocoa.framework in Frameworks */, + EAC6DC63B415344EA963D8EF /* Ice.framework in Frameworks */, + DA2350D29732E5C260DE2CA3 /* PromiseKit.xcframework in Frameworks */, + 097C6736BC34ABC39A8351DE /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 333B0F42C2DF1CA7DBAA70FA /* Frameworks */ = { + 29E7FE84EEFDD7AABA0F0BC6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 11FF1324D8EC75E9DB1420C3 /* IceImpl.framework in Frameworks */, - 3C67B902CEE9CE73ECF71EA6 /* PromiseKit.xcframework in Frameworks */, + 99691C23E18FA58A76148837 /* Foundation.framework in Frameworks */, + 2E45A5F32909E7742E003A3E /* Glacier2.framework in Frameworks */, + 6160F950A58B054D12D963B3 /* Ice.framework in Frameworks */, + 24764EDFE67BB619256DB8A1 /* IceGrid.framework in Frameworks */, + 53DBB4E9FCB30BF1603CDD09 /* IceImpl.framework in Frameworks */, + FF0B5151635EB14F6DD91125 /* IceStorm.framework in Frameworks */, + 14746EC5AA5E6852B4CF1A09 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 37DE080F347BD90B7BBF3015 /* Frameworks */ = { + 29F7D70D4B2EECA821F5FD18 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 820DD7926788B37D5A447D6C /* Glacier2.framework in Frameworks */, - E0C8BDEEF18485F39295CE9B /* Ice.framework in Frameworks */, - 96A76C5CB4A38EAF7FA8982A /* PromiseKit.xcframework in Frameworks */, + 1903737A0771106A96717857 /* Cocoa.framework in Frameworks */, + 2050EC34186FAE6CB7F93137 /* Glacier2.framework in Frameworks */, + BB5A13609DB215E6583AE660 /* Ice.framework in Frameworks */, + B751C81FEFAFDD39434EE7D0 /* IceGrid.framework in Frameworks */, + F380C17C1B690A521FF15647 /* IceImpl.framework in Frameworks */, + 7B32D189930B4349E8C9426A /* IceStorm.framework in Frameworks */, + E1C1934BB4D16C16FA11BF0F /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 389135B675237CD8C315291E /* Frameworks */ = { + 2A26AFD76C88C4ED00EC5A87 /* 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 */, + A61F4624E2918A651B93C920 /* Cocoa.framework in Frameworks */, + 11AC317527695E10D90CCF69 /* Ice.framework in Frameworks */, + 6C1F10D34E51D607BD0F87B3 /* PromiseKit.xcframework in Frameworks */, + 619741963C59007C6D22C8E3 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 38A30BF368587D5331801126 /* Frameworks */ = { + 2A44D1A66AB186DC218C9267 /* 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 */, + 45D97239DCB34F0BBA90095C /* Foundation.framework in Frameworks */, + 5F90BC3E8434F37052D21747 /* Ice.framework in Frameworks */, + ACB7DB01983490A9612C897F /* PromiseKit.xcframework in Frameworks */, + 83B35AF48C1D0E68EEA97C55 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 39695CF1EB348643B8ECC770 /* Frameworks */ = { + 2B00EBB47E4EAC248DDA3414 /* 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 */, + 312CC70877750CBB72C8F7E1 /* CFNetwork.framework in Frameworks */, + 9EEDE9281FF63C59FC1F4F61 /* ExternalAccessory.framework in Frameworks */, + A6A4F6000E0E0B56DE6090AD /* Foundation.framework in Frameworks */, + 73BA33E3EFB8A6AA4EA8370A /* libIce C++11 iOS.a in Frameworks */, + 693E823DD3F152A5CADF56ED /* libIceDiscovery C++11 iOS.a in Frameworks */, + BC10A8AD3F1353F4DE35FE57 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */, + EBB341E040CC4BB228CA4D2A /* Security.framework in Frameworks */, + D73AB114429EB5C8F292E4DC /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 399D208837EDCF48AC2A4519 /* Frameworks */ = { + 2CE99FB7116C174046BE3325 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 7D9A72846D731A74B0073C3F /* Foundation.framework in Frameworks */, + 42A86FABE59B3FE293E609BD /* Ice.framework in Frameworks */, + 871F735E7EAB7F895E82DC66 /* PromiseKit.xcframework in Frameworks */, + FAED9875AA5B9E82F4A02F8C /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3BDA4E445ACB0AD365C74687 /* Frameworks */ = { + 2D9A966D2716D3CFC47D3599 /* 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 */, + 555CB23B8C24752C88C5B6EA /* Ice.framework in Frameworks */, + 320718ACEB70681D16ED8ECD /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3C0007CD6741A74F1A7A48D7 /* Frameworks */ = { + 302D051B046B3E092DA99465 /* 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 */, + 8038411DFDFD19DB768C7556 /* Foundation.framework in Frameworks */, + 2D871DDE4EE8354CDB49D4DD /* Ice.framework in Frameworks */, + 29756C9388DCC609F53AA0EE /* PromiseKit.xcframework in Frameworks */, + E40F05BA8489AAB761152686 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3FE56539D5B16E4CF3A7A6CA /* Frameworks */ = { + 3084CA5812893FCE6D836435 /* 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 */, + 4FF9C92D07C52E796BDDAB09 /* Cocoa.framework in Frameworks */, + 763D4BF738EB436A2FBA4012 /* Ice.framework in Frameworks */, + 3022D517E87995A09D4BC94B /* PromiseKit.xcframework in Frameworks */, + 2663574BFC2BBB885AD1EB71 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4225DE0ABFAFD6A5B629A73F /* Frameworks */ = { + 34E048EEB77B533379B37619 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 2428C45CF7F8C77251D81519 /* Cocoa.framework in Frameworks */, + 46D59D884D1C0E7DC99CDD01 /* Ice.framework in Frameworks */, + 223A3C463C46FFB1A1C7A729 /* PromiseKit.xcframework in Frameworks */, + D857103C966CAC42C206AD91 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 42B5B51628781D8D580FCCA9 /* Frameworks */ = { + 35CB773F3DD0BA966844D75D /* 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 */, + B57E0BFEFD3ADCAA3672C527 /* Foundation.framework in Frameworks */, + 1B7FB8AA326578FE9F3B8CB6 /* Ice.framework in Frameworks */, + FC9A18D11F913E0934D5A0B1 /* PromiseKit.xcframework in Frameworks */, + 25ED7008DC9D4BCB5FB028A6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4338F70855D84CB1D837309C /* Frameworks */ = { + 388E9580B94953505195FEBE /* 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 */, + C64011C9443A5988B170EEFA /* Foundation.framework in Frameworks */, + FD4D122A3A32EFED9A1AD109 /* Ice.framework in Frameworks */, + F4ECCD3D34061B012E0217C9 /* PromiseKit.xcframework in Frameworks */, + 61CE9D15ACE85029660C1E95 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4344970BC2EDC456530C36A1 /* Frameworks */ = { + 3D7A25D1EE4C9E48E88051CC /* 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 */, + 14364F4CC32A010ABCF07B23 /* Foundation.framework in Frameworks */, + 1A4A097C8ADF70A2A325F054 /* Ice.framework in Frameworks */, + 646707A36F91F0631B887A31 /* PromiseKit.xcframework in Frameworks */, + A4BA56050938ECDC2307189C /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 47996774354869BDD5E2817F /* Frameworks */ = { + 40F7429554A2A9A4849030D6 /* 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 */, + 8ED527CE33CD5E98D4395F3B /* Foundation.framework in Frameworks */, + ADF818ED72CA48CD036E5C7A /* Ice.framework in Frameworks */, + 0CD0FD273978A1755A6B4970 /* PromiseKit.xcframework in Frameworks */, + 88252DBE558C77A619038DA4 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4912B80B1313E741407D866F /* Frameworks */ = { + 411BC2E979F16D9840188D82 /* 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 */, + 69D52BE18FAD6179243A7A8D /* Glacier2.framework in Frameworks */, + EA6F9A7E36D0151F968863D5 /* Ice.framework in Frameworks */, + 9CF2EC8A140F3674CD8B4181 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A9B2B0185CCAA7FD7FAA466 /* Frameworks */ = { + 420529DB53BBF371DAE6E507 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 224D05F8A42170C8A0D3E680 /* Foundation.framework in Frameworks */, + AB8E4E81E5F4E854A6C82F46 /* Glacier2.framework in Frameworks */, + 21B635C52B34460B49A820BF /* Ice.framework in Frameworks */, + 820CF3DC6B93BFB98EFF91A7 /* IceGrid.framework in Frameworks */, + C614BDC1295291BDCF41EC71 /* IceStorm.framework in Frameworks */, + D55538B35122E4FB0FB98280 /* PromiseKit.xcframework in Frameworks */, + EB89F1F6CBD6E83E06BB9DBB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5074C8710F531749B559D654 /* Frameworks */ = { + 4C3C29F984E93E0100AB7AFE /* 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 */, ); runOnlyForDeploymentPostprocessing = 0; }; - 52160D59C60F78DCB817F32A /* Frameworks */ = { + 4EC993DF9E8B39A33AE23F57 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 9A9846D0A51010D3639834DC /* Ice.framework in Frameworks */, + 54393BFF1D83F3E981FC1B7F /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5307656E1CA96839A50B1D38 /* Frameworks */ = { + 5343EC8E9CB2335071D16552 /* 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 */, + DB6297628D1095BCA0E76407 /* Foundation.framework in Frameworks */, + C93FBD32CB01DCF0DD912B6B /* Ice.framework in Frameworks */, + 577DA2B9A1B14718E505178F /* PromiseKit.xcframework in Frameworks */, + 35EB6B845246A5713F9BBFD7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58ACA75F58B30E2E8A2D79F0 /* Frameworks */ = { + 546F9C744238A6F9072920D3 /* 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 */, + 3C02A4508CD8276D0BC6AE3B /* Foundation.framework in Frameworks */, + 7073B348FF70E9085EB2A77D /* Ice.framework in Frameworks */, + 145F9CA921B6F461C83FCAF5 /* PromiseKit.xcframework in Frameworks */, + 65ECC0458CBF7904A506CDAE /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58D9E510A9859F1DF2FBC7E4 /* Frameworks */ = { + 54B7DC8576899174CD5F5E11 /* 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 */, + 6A2B255A91EC1F933473BFC4 /* Cocoa.framework in Frameworks */, + 8044DF34E086E9207057E6AC /* Ice.framework in Frameworks */, + 3F0A65C9CFB288F98E19799B /* PromiseKit.xcframework in Frameworks */, + 6A2E71B1352408738F0F77AB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5AA0C6FD48872CDC5D3C72DC /* Frameworks */ = { + 58A231E3D638B9E194D10CE9 /* 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 */, + 218C0D1499948F72482D3D56 /* Cocoa.framework in Frameworks */, + 147A63836AD5956D3ECEC6AC /* Ice.framework in Frameworks */, + 8DA3A5C96FF54B27DA669C22 /* PromiseKit.xcframework in Frameworks */, + 59EB77479D063ADC9B2D323B /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5D433EC02B004D382ACC5A6B /* Frameworks */ = { + 58E259C652EBBA9CD409A673 /* 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 */, + DAC9E92FDB209CC2D715EBEF /* Cocoa.framework in Frameworks */, + 908E05CD6BF7384E988465D4 /* Ice.framework in Frameworks */, + F2FB54DF4CFFC0C16DFC2A9A /* PromiseKit.xcframework in Frameworks */, + AA903940404A6CF2F522CABE /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 60CA31B074CDF4D99A3ED0B5 /* Frameworks */ = { + 5A4A7A62BEC7614262A688B0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E2A320E5CE0DF866CC81A6D4 /* Foundation.framework in Frameworks */, - D0364F3F425C395537197FD0 /* Ice.framework in Frameworks */, - CFF37FEB720497989956480C /* PromiseKit.xcframework in Frameworks */, + 3B719984FE998AA0FB6BBDA3 /* Cocoa.framework in Frameworks */, + 1D6832EE3EF206F282899D92 /* Ice.framework in Frameworks */, + 3DACF73B85EFF125789135F2 /* PromiseKit.xcframework in Frameworks */, + CBF3C2474A9C447BA9905F4E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 62526843A68A93AD8005A93C /* Frameworks */ = { + 5D3DFFC3743FCAF57F57CE46 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + B5B9BBB7EE1A047FC5216ECB /* Cocoa.framework in Frameworks */, + 79EE0B3F30DD627D8DAE8E41 /* Ice.framework in Frameworks */, + BD4486E46D3800D9836FEBBF /* PromiseKit.xcframework in Frameworks */, + 1D1E1580C280FCD5F7E083C5 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6274C70D4B655BDB6F78024A /* Frameworks */ = { + 5F05253C5A8A79C321DDCB72 /* 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 */, + 8B7711A7F655C504F16447D7 /* Cocoa.framework in Frameworks */, + 3C37A292CA67085CEE563AB3 /* Ice.framework in Frameworks */, + 6E9B566339D8E8339FD384F7 /* PromiseKit.xcframework in Frameworks */, + 07D1B834520C1898CBA51C6A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 65FE965E05FC83E506ED93B4 /* Frameworks */ = { + 661293AD0849287E44FB3DCA /* 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 */, + E7A7932B3C78022433B7A206 /* Foundation.framework in Frameworks */, + A3C813D0284A183F2C9013D2 /* Ice.framework in Frameworks */, + 139F52A98D1CCD15770A0116 /* PromiseKit.xcframework in Frameworks */, + 853CD8ABEAC9F6D9859387F1 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 67F08892C0AB4291F92513F7 /* Frameworks */ = { + 674D555CD654C7FBFE580E45 /* 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 */, + 52917832550139896AF4EB59 /* Foundation.framework in Frameworks */, + 31D90E02CD1D5F627995B0C4 /* Ice.framework in Frameworks */, + 24117E70E408C9928171B08E /* PromiseKit.xcframework in Frameworks */, + D2512B6E3C43F4F50507FD7A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6A3583740550C02B94108F7D /* Frameworks */ = { + 6BC6831B4A3610FAEB76BA80 /* 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 */, + 3CA9BFC67A994E2EB8C16368 /* Foundation.framework in Frameworks */, + 9B73A6F077FB75A43F7DAE02 /* Ice.framework in Frameworks */, + 0AACFC0CB4701C0AEC238865 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 74810A9ECEC424FFDD7A8EFE /* Frameworks */ = { + 6BE280D99DD511DCADE857EC /* 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 */, + 578E85F2ACBF6FE077558453 /* Foundation.framework in Frameworks */, + 267222EAE40D9DA3C9C180FC /* Ice.framework in Frameworks */, + 1162E9441073AA4F6A9DF60B /* PromiseKit.xcframework in Frameworks */, + 71B3704D98093EDE2A1731A9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 76C166581A47F871D5F800EF /* Frameworks */ = { + 6BECAD3E97375981EE3515ED /* 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 */, + 2380BC330BB2CA8F85F10D07 /* Foundation.framework in Frameworks */, + 9204A2F66BD793877C2C1FBF /* Ice.framework in Frameworks */, + D547B10B9B0582311BAAB31A /* PromiseKit.xcframework in Frameworks */, + 2C0BD819B021415A2B55D8EF /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7827187285BD2EBAF9F34A78 /* Frameworks */ = { + 6C415DBE0B9BAD7355AC1C82 /* 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 */, + 4EA6D84C757D5BE591C26638 /* Cocoa.framework in Frameworks */, + 16C00F03E881EF04CBC89C27 /* Ice.framework in Frameworks */, + E634E724E3309B5C4CD661DB /* PromiseKit.xcframework in Frameworks */, + DB75EB4EE7CE66C80C5EE26C /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 78BF00B37BB177564D54DB40 /* Frameworks */ = { + 6EE23CD5E6D19F5FB0EF8DD5 /* 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 */, + D2EFEB9E0E91C48FBDE17656 /* Foundation.framework in Frameworks */, + 17C7F68FAB5E3D3EFE5570B5 /* Ice.framework in Frameworks */, + 65982AA7C6095AD8475F8D4F /* PromiseKit.xcframework in Frameworks */, + E91FC07C9A154CE7C6F5689F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7CEEB150555D1A002F03561A /* Frameworks */ = { + 74AD6CC9618C6D38756D66C6 /* 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 */, + 190E4907D07E6FEA0FDAEA14 /* Foundation.framework in Frameworks */, + F72F1331B81005123FEB13DC /* Ice.framework in Frameworks */, + 5C953EC1A4D29E2D3FC233B1 /* PromiseKit.xcframework in Frameworks */, + 9D45C5E5D8433A8C25F178F7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 826CD0B7B0270DF0E8876A7C /* Frameworks */ = { + 7A628065EC2915DCE28B89DF /* 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 */, + 9990F28A57C58C7DED5AC285 /* Cocoa.framework in Frameworks */, + 1577BE946FF741D2C8024A12 /* Ice.framework in Frameworks */, + 1DDDC080F31CA429D204E8A6 /* PromiseKit.xcframework in Frameworks */, + A216308FFA7F4D18363061AB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 85E1224885777FE59B8588A0 /* Frameworks */ = { + 7E8D149538FE376E6FFABB85 /* 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 */, + A9A2C6A2EAABE0514D916CFA /* Foundation.framework in Frameworks */, + CF646D3A12CB83166392CEE6 /* Ice.framework in Frameworks */, + 62B29A312B8F55B653D9664A /* PromiseKit.xcframework in Frameworks */, + EC67DE80E989A1BBCA6D2E7A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8681D5A664086601EC157CD3 /* Frameworks */ = { + 806C0D38FBCA56C743153425 /* 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 */, + 3F118C82349E685F75AA3C92 /* Cocoa.framework in Frameworks */, + BF3495F443BA537B55E419BA /* Ice.framework in Frameworks */, + EF3919AD2952F7B3755AAF76 /* PromiseKit.xcframework in Frameworks */, + 73B3F11FA4E2E153E1EFCA77 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8865B8FABFE304C12A58F80E /* Frameworks */ = { + 81D5B9AC37AD06D7F36426CC /* 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 */, + 01586D48B85E01D0587A5BA2 /* Cocoa.framework in Frameworks */, + 307ADE8C6F9D5E0713B0F416 /* Ice.framework in Frameworks */, + 9619F8AA58E59D7BDE10E213 /* PromiseKit.xcframework in Frameworks */, + 99B0FE475C82FD4103A59330 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8928FC2CBFF06DB45BDB514E /* Frameworks */ = { + 8285ACBBC123F8FEB453E86C /* 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 */, + 40094C3EAB990523863BA5E8 /* Foundation.framework in Frameworks */, + 8AA0A446F9EF18611E79D8D1 /* Ice.framework in Frameworks */, + E9B6B5DD581F17C55F3746FB /* PromiseKit.xcframework in Frameworks */, + CEB1AE999611FBFA57C54C12 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 89D1C4C755D5BCDF9E70577E /* Frameworks */ = { + 8460563DABEDFA47B835BE67 /* 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 */, + FF32105E110C3C169B476D0C /* Cocoa.framework in Frameworks */, + 256B36A1C395209309ECDD5B /* Ice.framework in Frameworks */, + E3F3F343ED7740DD59F18110 /* PromiseKit.xcframework in Frameworks */, + 21DEE1870E95B360F902116A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8C65073F217D444C9804C18C /* Frameworks */ = { + 85697C9D74BC35EB0F16A4C5 /* 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 */, + 126C849738AF6323B384E086 /* Foundation.framework in Frameworks */, + 57DF162FC6CFAF34105C6347 /* Ice.framework in Frameworks */, + CC93901E1D8CB7948402ADFC /* PromiseKit.xcframework in Frameworks */, + 01808FC6BF917FA6CC60DA77 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8E638FBEA17B67241BF63E4A /* Frameworks */ = { + 8AEF83E0BFF4065824AF31D9 /* 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 */, + 69111FD172BDB8E174C7365A /* Cocoa.framework in Frameworks */, + F55F952FA802F099EB0C65AA /* Ice.framework in Frameworks */, + 3E092E58009E2A1614D58825 /* PromiseKit.xcframework in Frameworks */, + 34D7D317ECB499DB09F9F639 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9149500CC47C66691660B0BD /* Frameworks */ = { + 900CAB0C794A4C30D7148876 /* 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 */, + CA0F36142EBD4397EE7622CD /* Cocoa.framework in Frameworks */, + 545A7478618FA7277C12C6C7 /* Ice.framework in Frameworks */, + 29FB77B26D54802EBE61E134 /* PromiseKit.xcframework in Frameworks */, + 2F4C30CB0E62214A96149D20 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 91D1BE9803153FDBF6BF3114 /* Frameworks */ = { + 924D5876DD828924714EEF85 /* 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 */, + 7853F06192F28AF6AB408E41 /* Foundation.framework in Frameworks */, + 66EB6C5BEA8ABD459CD1C5DF /* Ice.framework in Frameworks */, + 4F3613958F9EE0BF75AB64C1 /* PromiseKit.xcframework in Frameworks */, + 259AFF67FB76BBAD098ABE7F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 94A5C40D5F58EC042120F57D /* Frameworks */ = { + 92905898A9681A2AAF2E77A7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BBBA7F8603B6F37E96D9D1D9 /* Ice.framework in Frameworks */, - 5DE99190F12D2FDFDA5155C2 /* PromiseKit.xcframework in Frameworks */, + 8FC01AE4D5A702BC8A31783E /* Foundation.framework in Frameworks */, + 8A7860F817320C324C588ACA /* Ice.framework in Frameworks */, + AF5A80243991E5AA16E0D227 /* PromiseKit.xcframework in Frameworks */, + 8B6404C0117C60D6BCFDA8CC /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 980E7859C7304340AFF182E5 /* Frameworks */ = { + 9749DBB85A01DF036830A5A8 /* 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 */, + E254C9DB9C32B839FB1ED073 /* Foundation.framework in Frameworks */, + 955C4B5851FC27BD076098AF /* Ice.framework in Frameworks */, + 7F871A8C8D80A4C9D8942B16 /* PromiseKit.xcframework in Frameworks */, + 97D40FCE27599C22E56DF214 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 98471EBD3C8B374440FCD0BD /* Frameworks */ = { + 9BD0369787C3CDCC832E8410 /* 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 */, + A627FA2E306B19A78BE077B5 /* Foundation.framework in Frameworks */, + 29DC460D1F6252227B4576F9 /* Ice.framework in Frameworks */, + 671C5DC6CF676112E82E6E28 /* PromiseKit.xcframework in Frameworks */, + 560834AD1A197083C8BE8942 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 99179EC419F7BE9D94FD7680 /* Frameworks */ = { + 9FDFDF965240137388DC5008 /* 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 */, + 3AAAC42656BCF859E342EF5C /* libIce C++11 macOS.a in Frameworks */, + C7AAC21D23FB9C7F4D7306AD /* libIceDiscovery C++11 macOS.a in Frameworks */, + 5A65AF9F96CF139CF41BECDD /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */, + F412B716233F6DC5B5F06E83 /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9F70203AB3C9FE1000CF9ADC /* Frameworks */ = { + A020276890DFF410B8A9A9D0 /* 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 */, + 35593D1DC9FD62BACFE5C054 /* Cocoa.framework in Frameworks */, + 4C654FF1266E98B906EDCCEC /* Ice.framework in Frameworks */, + 20CBBB3E58A156A8A7EE646C /* PromiseKit.xcframework in Frameworks */, + EAAB4C91C36CE3F2DE37D235 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A01C44ECAEFA068E8278FBA4 /* Frameworks */ = { + A69A460CEF11FDC219381533 /* 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 */, + 8FFF1D48A4993384E286D04A /* Cocoa.framework in Frameworks */, + C25732180D01695CFA011678 /* Ice.framework in Frameworks */, + 47E530BA383A469D57F3AD2B /* PromiseKit.xcframework in Frameworks */, + C99C0FAC4856145800CB6948 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A2E7C82065BE84DCB2D44F40 /* Frameworks */ = { + A70F167DF9A2BFDFA2F109FB /* 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 */, + 98DE3F717107A1F542CE0648 /* Cocoa.framework in Frameworks */, + 2158F7AEE895DE6CB59909EA /* Ice.framework in Frameworks */, + 85DEA81A55CB3E4104D24E29 /* PromiseKit.xcframework in Frameworks */, + E90DFA944181471958D118D0 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A3F0D705D910ED5C5DC4390B /* Frameworks */ = { + A76F18309B0B491F92E1A728 /* 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 */, + B6B30C6F69C46D9769464518 /* Foundation.framework in Frameworks */, + 2BFE2D6E0DC4F32FF78CFBF9 /* Ice.framework in Frameworks */, + 21886F50FD91B7CEBF441CBC /* PromiseKit.xcframework in Frameworks */, + BDDCE26BD7594406AF5A5A70 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A3FD6EC628483AFEFF0DABDC /* Frameworks */ = { + A7D83AF2396D9E893D2FA565 /* 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 */, + 5D20890C7DD2538AB7E70DB3 /* Cocoa.framework in Frameworks */, + B142EFD0673F101282671532 /* Ice.framework in Frameworks */, + 074A20086ECE8EA68179360C /* PromiseKit.xcframework in Frameworks */, + AC3C703D291DA979F3C915DA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A6FF3006FB5665C3C42E218A /* Frameworks */ = { + AD17D36FCAD1C1D0249C4216 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9E82B600E5E113537B22EBA3 /* Ice.framework in Frameworks */, - D088AC610C4A760618EFA0F8 /* PromiseKit.xcframework in Frameworks */, + 8FD7EB5AEC4912BEEEDAEED2 /* Foundation.framework in Frameworks */, + E3048FA6DCBF6AE977F880C9 /* Ice.framework in Frameworks */, + 9A4B7BDB0CF51BF38A70D353 /* PromiseKit.xcframework in Frameworks */, + A7B42343AC9E2951EC59C338 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A75D3924BD339CBD5D8F513E /* Frameworks */ = { + B667EB713F062D2AF378EDC0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C1F0CEC092A82CE3DF40BA61 /* Ice.framework in Frameworks */, - 23795425500F12168B65D9C4 /* PromiseKit.xcframework in Frameworks */, + 0EBFC940981F4AE361EEB597 /* Cocoa.framework in Frameworks */, + A554EF63FA4E6A5D761F981F /* Ice.framework in Frameworks */, + CCCDEE08F99C171111B5EB86 /* PromiseKit.xcframework in Frameworks */, + 3BFE460683D8559E6A8101AC /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A8BB4A1FD3E0B51E85DC7E4D /* Frameworks */ = { + B66E63AC3A61DC1C7818DE0D /* 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 */, ); runOnlyForDeploymentPostprocessing = 0; }; - AFC321E8DC9AA82D1F23BA2F /* Frameworks */ = { + BCA5BF6A710C8DDB182F84DF /* 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 */, + 55FF45BCE5599DE5C5C0A73B /* Foundation.framework in Frameworks */, + B24B1B3B4D615A89A141EE46 /* Ice.framework in Frameworks */, + 865A4A6FB3D81631DEDDA54D /* PromiseKit.xcframework in Frameworks */, + FAD4FFF37B2141B2899DF603 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B6AD14A6A89BC2F1ACE138BB /* Frameworks */ = { + BDDB8118BD2E41D589C48638 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F25FB49661C89B6DE658B9B5 /* Ice.framework in Frameworks */, - 767FEDB9DB388B148494966D /* PromiseKit.xcframework in Frameworks */, + 93E82A4FF25EBC7EDD3858D1 /* Foundation.framework in Frameworks */, + 2F65C8A9D24FB473F2B67BE6 /* Ice.framework in Frameworks */, + DDFFAA38F6E8DA644E395A20 /* PromiseKit.xcframework in Frameworks */, + 8329CA5C26C5132A2F162417 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B6BF6917EC2D7AE47DE7C6DA /* Frameworks */ = { + C0446FB501EFBD6035BCDFE1 /* 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 */, + AC543328F191EEF6FD7A8983 /* Cocoa.framework in Frameworks */, + DBB7F84496509ED6498EF3DA /* Ice.framework in Frameworks */, + 653850FF0CFE825110E58AA0 /* PromiseKit.xcframework in Frameworks */, + A1D0719594430445F69D5943 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B6D2D2F943D8B4EEED3B299A /* Frameworks */ = { + C5BE5834A1E5B9502F92849C /* 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 */, + 68F86A82194C13E7CCC45FF2 /* Cocoa.framework in Frameworks */, + 87224A54B03EFE9729904FFF /* Ice.framework in Frameworks */, + 9E9CB4E5940E527D09BC3F0B /* PromiseKit.xcframework in Frameworks */, + 04490F3CC1B2F69D1CF40F78 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B855C0B526D3E65C1B97B340 /* Frameworks */ = { + C639112EA1AD1B0B61A09EA2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8525CC22BDC944B6AA085EAF /* Glacier2.framework in Frameworks */, - 0F6CB533088A321015E50D0A /* Ice.framework in Frameworks */, - 7D26D53D80612BA8A62738F5 /* PromiseKit.xcframework in Frameworks */, + 732C986A3AE8629CAF57AC36 /* Cocoa.framework in Frameworks */, + 4786ECF6B6C742E04D341284 /* Ice.framework in Frameworks */, + D1A5973A5392B9F0A7D551FF /* PromiseKit.xcframework in Frameworks */, + 3FD5E94297204866ECEA47C2 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - BADFCC2D4AA7F3A177C681E0 /* Frameworks */ = { + C671EB95C66849845262E6F1 /* 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 */, + 135912851A957FF91A21D58C /* Cocoa.framework in Frameworks */, + 11157DE47B322BCA72356E25 /* Ice.framework in Frameworks */, + 1A9B2F9F146CEB43F63FAEE6 /* PromiseKit.xcframework in Frameworks */, + E22D1E64BBBE6C060473ED19 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C27CDD5D5FEA7255B77E1A92 /* Frameworks */ = { + C92627ADB79BCA30657E405C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BE0FE599DC2602A847CA17A7 /* Cocoa.framework in Frameworks */, - 98DCF70AD8E7B955DF9474E0 /* Ice.framework in Frameworks */, - 4DB713427F4D4A19C465E29F /* PromiseKit.xcframework in Frameworks */, + 9F9D995257C6956AC279FF3D /* Foundation.framework in Frameworks */, + 63469B17D875A7DAAF873C97 /* Ice.framework in Frameworks */, + 90396689FED2BE972C518274 /* PromiseKit.xcframework in Frameworks */, + 959931FF252BA4696D793D30 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C3DAEA1191A26EC1A664D6D6 /* Frameworks */ = { + D1922509B68585A46413BE2E /* 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 */, + 62572F0A0E64E238AE4041ED /* Foundation.framework in Frameworks */, + 470344329175105E480A6526 /* Ice.framework in Frameworks */, + CE718F0554CDFCF1ED39FB7A /* PromiseKit.xcframework in Frameworks */, + 5662E8863A145D1CA6D929B5 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C52DF0FB31041A0894EB2CB7 /* Frameworks */ = { + D675B054FD409E45A804E723 /* 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 */, + 29137332A16C86118EDA1E2C /* Foundation.framework in Frameworks */, + 175A82560F6DAFF08F73E180 /* Ice.framework in Frameworks */, + F7690849B01BF1B6ACD65602 /* PromiseKit.xcframework in Frameworks */, + 54D449931AD3D789593DEADC /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C676C4CCE2EAF9138EF0A402 /* Frameworks */ = { + D75B2EC24305B59D2E2BEE1D /* 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 */, + 8D4BD3FB0759473D2489E8BE /* Cocoa.framework in Frameworks */, + CBA2586558C473108D1842F5 /* Ice.framework in Frameworks */, + F9E490F4986A69522B970470 /* PromiseKit.xcframework in Frameworks */, + 59227CB2B5242F8633F368B4 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C8E3F5B2F0F283B0FA96EF8F /* Frameworks */ = { + DC40E825EE8F0BA639C29C8D /* 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 */, + 772CA57DE3BE1FE47025F228 /* Foundation.framework in Frameworks */, + FBD8E146BB674CE428406901 /* Ice.framework in Frameworks */, + 157BCF7102A1CE6EEDEF5F29 /* PromiseKit.xcframework in Frameworks */, + 525F9365A999DFAFDBB720B3 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C918A614C2340AAFACCEB349 /* Frameworks */ = { + DD384BAA07FF49EC8CDCEA71 /* 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 */, + AE32C55E7D9EE564F84EDB43 /* Cocoa.framework in Frameworks */, + B1D78D559C48248DEE45CE22 /* Ice.framework in Frameworks */, + 35C5A534D7AC3BB2AA85E2F3 /* PromiseKit.xcframework in Frameworks */, + 63A6AE967BECEE6E91432B91 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CA98DBD4C387687255A8FBCD /* Frameworks */ = { + DF829A4FCBF653D53EFA8ECA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 74B6D0915C42A96499E0191C /* Cocoa.framework in Frameworks */, + F79F0E9568D388C01B9EE3E3 /* Ice.framework in Frameworks */, + 0825802796D8ECBA83F8CD73 /* PromiseKit.xcframework in Frameworks */, + F918003040F10A93E73FA52F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CD736BC768782D15441D7285 /* Frameworks */ = { + E1227AEBECE21D1CC01C02B6 /* 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 */, + F9E1CF73FB5D607F2B0B496D /* Glacier2.framework in Frameworks */, + DBE6458D34651589E7720E78 /* Ice.framework in Frameworks */, + 74179549A179708EC1F30CF7 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D36BA87EFCF951121584B562 /* Frameworks */ = { + E13F2754E63755D244B6DFE9 /* 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 */, + 8FDA09F45B9AB6BD1E411872 /* Ice.framework in Frameworks */, + 6833FA2587B83E832DF0757A /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D38A7982F950B86FBDBB5556 /* Frameworks */ = { + E2174B22E1A853074D86D4D2 /* 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 */, + 49F7CDDFA1E4CEBE301FAD6E /* Cocoa.framework in Frameworks */, + 49301E54077F72EF4C17EF94 /* Glacier2.framework in Frameworks */, + 8A2FB80DAF4057C43165F948 /* Ice.framework in Frameworks */, + 0D6795ED5818F1BA7304C6D6 /* IceGrid.framework in Frameworks */, + 479CA0789624646DFAA32548 /* IceStorm.framework in Frameworks */, + 8E03445E92185967E8DD12C0 /* PromiseKit.xcframework in Frameworks */, + 4D6DE19AB3C8A36450960C2E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D70F361075F24E65D05F4D73 /* Frameworks */ = { + E2988144001FB558C7913EA1 /* 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 */, + 0464FD639B7E64C401CD0F66 /* Cocoa.framework in Frameworks */, + 17EE7DF3C192B5AAAA088776 /* Ice.framework in Frameworks */, + 67F343A920ECA0C6C8F798A2 /* PromiseKit.xcframework in Frameworks */, + C13E142A45648F7040E3EB1F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D9891DB1D6563977E1045D2D /* Frameworks */ = { + E769335C5E25A7AD50EF77D8 /* 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 */, ); runOnlyForDeploymentPostprocessing = 0; }; - ECE5C7CB1617D199246BDF6C /* Frameworks */ = { + E834D2A2201449AA539C8B3A /* 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 */, + EC28468FB6DCDBBB3A2F5939 /* IceImpl.framework in Frameworks */, + 8D18DC057A5D72091A6DFBE4 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - ECF89FCBC92B39B5D8F1C3B2 /* Frameworks */ = { + ECFC62CBBB3A9E4054304BCA /* 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 */, + 2EBDF9888333DC98CEC4904F /* Foundation.framework in Frameworks */, + 8D86DD29625A7FAC9080713B /* Ice.framework in Frameworks */, + 1277130DC1A6B2D74FC034FD /* PromiseKit.xcframework in Frameworks */, + 9ACBDB87668CADF95E2D9FC1 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EE16A89C5E0F293D4C340515 /* Frameworks */ = { + F05A9409CE78B39D983E8E79 /* 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 */, + 94F4CFFA6DB0A2C7508E550A /* Cocoa.framework in Frameworks */, + 6702C6BCF912D1445DFA5380 /* Ice.framework in Frameworks */, + D44E98F08362136B999A176A /* PromiseKit.xcframework in Frameworks */, + 7535D4607A3ECC358A421FEA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EEDEA6EC91B4BA3437E07BF0 /* Frameworks */ = { + F0D515AF7A5C27A881B2DA68 /* 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 */, + B6F50BA90185C68282A3573B /* IceImpl.framework in Frameworks */, + 834066F3E00F8A8149DDCA41 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - EFA2B6AB7748628FA398563F /* Frameworks */ = { + F3B97AAC1B79B680842B6D1B /* 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 */, + 56352A4EB5A199C170B61599 /* Cocoa.framework in Frameworks */, + D1750FB93060EF4C23FCA4CE /* Ice.framework in Frameworks */, + 28540770D6ED1942FA05F49C /* PromiseKit.xcframework in Frameworks */, + AEBFBD3E02A9FFBD8FFDBF3F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F0C18FC8F60F88F78807B80A /* Frameworks */ = { + F7386CB42707112CB1B8A967 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4E33F382E994614A0F164D0C /* IceImpl.framework in Frameworks */, - D25324AACE8C147D1A94A12D /* PromiseKit.xcframework in Frameworks */, + 0E18F54173D74AD248051490 /* Foundation.framework in Frameworks */, + 2AB59934F0DA4947BC3C7C07 /* Ice.framework in Frameworks */, + 1AB8E91259048E7AB1876ED5 /* PromiseKit.xcframework in Frameworks */, + 5FB5335AA0332FFE9F80D568 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F1EC417D238DBCC54E934CA1 /* Frameworks */ = { + F9F9B52103E8278DDAA8D1C8 /* 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 */, + F33FD946C46440BB04E2C977 /* Cocoa.framework in Frameworks */, + FDAD5D7CD773EC05A012585B /* Ice.framework in Frameworks */, + 14AF48A72280B8084D647D69 /* PromiseKit.xcframework in Frameworks */, + F3989FFBEA39D4B805F2A109 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F35D18FC2FF416D7E79FFB7A /* Frameworks */ = { + FC522ABDE41AE6BB07D375F9 /* 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 */, + 4954FD2AC663B8C418A39FEC /* Foundation.framework in Frameworks */, + EA7D0BAD39C7346EB632D6BE /* Ice.framework in Frameworks */, + 8237C181EE1CB5F17024B315 /* PromiseKit.xcframework in Frameworks */, + 60DE445CD9C49D62E8D5521A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F4F4BCC0ACD0684EC9228104 /* Frameworks */ = { + FC929A90BD1CA4E9A4C2FD74 /* 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 */, + EC281258A1E8C93527EE8192 /* Cocoa.framework in Frameworks */, + 7CC88F908182D3BC48437B75 /* Ice.framework in Frameworks */, + 51C24535F43ED7568BD3C4D8 /* PromiseKit.xcframework in Frameworks */, + D17C7CCF486CFFB13A7E4F8A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F798FF6A1825C3FBD0C31CB0 /* Frameworks */ = { + FCF71E3C27BBBE5D6E66044C /* 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 */, + 36C3EC4400DDA8402ACC6AD8 /* Ice.framework in Frameworks */, + 9DEC69361646694ADE128FE9 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 0076768C510885867AE1A4C9 /* exceptions */ = { + 070FD7523C6704FBF560C535 /* Slice */ = { 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 */, + 80C4ABEC9B3E3B9864D6E0B8 /* escape */, ); - name = exceptions; + name = Slice; sourceTree = ""; }; - 0835DEBEC4826CFCE50C4C30 /* slicing */ = { + 150C9EB5B4E9E968F7694734 /* IceDiscovery */ = { isa = PBXGroup; children = ( - 0FC31392C5A46897AF3671AE /* exceptions */, - 680084F4D8F0751662C4BC71 /* objects */, + 58A46161AB366B92156533D6 /* IceDiscovery.ice */, ); - name = slicing; + name = IceDiscovery; sourceTree = ""; }; - 0FC31392C5A46897AF3671AE /* exceptions */ = { + 18C53985A7A2615FF93D3A6E /* IceLocatorDiscovery */ = { 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 */, + DE0294898D1572E655754A5B /* IceLocatorDiscovery.ice */, ); - name = exceptions; + name = IceLocatorDiscovery; sourceTree = ""; }; - 1D9EDE94B796C06BC401F400 /* Frameworks */ = { + 19345B3939782A1CC51438EA /* Frameworks */ = { isa = PBXGroup; children = ( - 3DA9BA4F6912DE108F7C8F63 /* iOS */, - 608412CDB55DAB827867DD06 /* OS X */, + 22B76A2653FB333FADD15ECE /* iOS */, + 3EA0ABAEE71732BE6A9196C3 /* OS X */, ); name = Frameworks; sourceTree = ""; }; - 22B21896CD5F73CB268B5EDF /* location */ = { + 1B3D037730139C27FEAD7FE8 /* adapterDeactivation */ = { isa = PBXGroup; children = ( - EE3BA5B003AC1B18DE241794 /* AllTests.swift */, - DF005D4DB20602C4F3EF5AA8 /* Client.swift */, - FFAE60227D1047550CEBCDD7 /* Server.swift */, - C6062E695220FACFAE9E172A /* Test.ice */, - CBA3784B8DB45FE8C568F7D8 /* TestI.swift */, + 39B7FD86E7AAB2B74EA0F79A /* AllTests.swift */, + 37F91A4DE4998C11CD9FA265 /* Client.swift */, + 18CE168298CE80608E0B6DCD /* Collocated.swift */, + 3B8AD33CAF2513831F190948 /* Server.swift */, + 7E2F05661007A6DA5ACB1A9C /* Test.ice */, + 1599141F395131410355644A /* TestI.swift */, ); - name = location; + name = adapterDeactivation; sourceTree = ""; }; - 26B621CADB2EA17A3A4E64CE /* TestCommon */ = { + 22B76A2653FB333FADD15ECE /* iOS */ = { isa = PBXGroup; children = ( - 970CA66170893BFE76675169 /* Info.plist */, - D1355ECA7BE2A8D99B53FA4E /* TestCommon.swift */, + E67BFC86E01DD26387F81954 /* CFNetwork.framework */, + 182630D7EE2E9D527F3E7FC2 /* ExternalAccessory.framework */, + 74D6726513624795759A7851 /* Foundation.framework */, + F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */, + 23234EE76F12BDE06765390A /* Security.framework */, + E0417ABE38D6F16A1223B078 /* UIKit.framework */, ); - name = TestCommon; + name = iOS; sourceTree = ""; }; - 2A55C02CB23E08907CC59536 /* test */ = { + 25ACC671DDE1C0C6E7D18583 /* IceLocatorDiscovery */ = { isa = PBXGroup; children = ( - 3961A4222E38E708276B7FDE /* Ice */, - 76CD9CB718EA44E2F9213E26 /* IceSSL */, - 654E73A58D9B5231AE86F9AE /* Slice */, - 26B621CADB2EA17A3A4E64CE /* TestCommon */, - B930C18F08BA6B4A51B506DD /* TestDriver */, + 8BF3A34243EBCF0033484450 /* PluginI.cpp */, ); - name = test; + name = IceLocatorDiscovery; sourceTree = ""; }; - 2EF040BFB684E74CC67A27D2 /* iOS */ = { + 2C447E115DC5649C9E4D4790 /* 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 */, + 7771C966A95A75444CDD9607 /* AllTests.swift */, + 2A5AD5A8F56E90F0DF1C96F2 /* Client.swift */, + BC6EBC91E36FD1E5EEDDEA5F /* Collocated.swift */, + F8AC47855542E0FC1068E3A9 /* Server.swift */, + DD7C821443F5E0607D4DE6F8 /* Test.ice */, + 8BDD768C41EE98F60B1ADFD6 /* TestI.swift */, ); - name = iOS; + name = facets; sourceTree = ""; }; - 34341740F619D6D83C3E1D1C /* timeout */ = { + 2EDB59AC703C5D4269749C45 /* src */ = { isa = PBXGroup; children = ( - A51D3574B7582F500ECB8109 /* AllTests.swift */, - 8423266467D889E92F786035 /* Client.swift */, - 34B79084F15B3CCAE0CE07C7 /* Server.swift */, - EC71B2E86EF7591995578A75 /* Test.ice */, - 0D12263260B9BE0610DCD36A /* TestI.swift */, + 77129A7BEFEF32A94CD9E682 /* Ice */, + 9CE1B9AED2C23CF572B9E2F7 /* IceDiscovery */, + B291025306FBA05D0DEDE43E /* IceIAP */, + 25ACC671DDE1C0C6E7D18583 /* IceLocatorDiscovery */, + C87C78120FD959D6A4CF9536 /* IceSSL */, + 61F67305A7720F0E285A0E19 /* IceUtil */, ); - name = timeout; + name = src; sourceTree = ""; }; - 3961A4222E38E708276B7FDE /* Ice */ = { + 3059B08B6D77373D2E7E80FB /* Ice */ = { 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 */, + 20BCB9D60D449CB2F6D37702 /* AdminFacetFactory.swift */, + 4BA8D617819FF713F80CE4A0 /* Blobject.swift */, + 0D075D441DE8B7DA8AA330C5 /* BlobjectAsync.swift */, + 5124560E2C8D4CA6F32B121F /* ClassResolver.swift */, + 41F405B3502079EE7591BD56 /* Communicator.swift */, + F6CE4D7AF84FCCEB30AEE82D /* CommunicatorI.swift */, + 6CF5F747C703C2E26BCF3A54 /* Connection.swift */, + 79ABC993469B3E7832F12F25 /* ConnectionI.swift */, + 5400703129C16CEB55676316 /* ConnectionInfoFactory.swift */, + 5F8110A6A605EABCCC95B70C /* Current.swift */, + 3D62D9A3A91168A2CA52AAE8 /* Endpoint.swift */, + EA0E2961E11E1150BA971DB0 /* EndpointI.swift */, + E73324B4E2A13F9EFC446206 /* EndpointInfoFactory.swift */, + B68896EE6832BCFFC1CDEA85 /* EndpointSelectionType.swift */, + 42B9B7D2C864B2D316ADE535 /* Exception.swift */, + 614B4EEEE8D6EC764E4CB54B /* FacetMap.swift */, + 978FF0AEF23EE4E31F7CB0BE /* FormatType.swift */, + 5CF2439A128695F8D08C60D1 /* IAPConnectionInfo.swift */, + F94A73A9390A0C781AE4A324 /* IAPEndpointInfo.swift */, + 925C43BB0C5ED12BA8492EA3 /* IceSwift.h */, + BD917785198D9351B3909F60 /* ImplicitContext.swift */, + B1D68FCE2A561F7EC2ACDCAA /* ImplicitContextI.swift */, + 7C38FF5F290399FD2A575BC5 /* Incoming.swift */, + 87172D22D512BAFF0B704A27 /* Info.plist */, + 2424727B01DAAE130B238EF7 /* InitializationData.swift */, + C5E35C99046C1F715F4B4E5F /* Initialize.swift */, + 10E29D53CB33DDBF93C9D34C /* InputStream.swift */, + FDF3426F5F604EA6AD6D67FF /* Instrumentation.swift */, + FC93FDF7BB0162F351F94E98 /* LocalException.swift */, + 2437C8A597A1CE438BEDEC3D /* LocalExceptionDescription.swift */, + 18F600B75D092C22922DC97C /* LocalExceptionFactory.swift */, + 990C9617CC26B0961E520996 /* LocalObject.swift */, + 5B0C61085F906AE19C4D73ED /* Logger.swift */, + 52B6920962BB40484351B828 /* LoggerWrapper.swift */, + 3B986932C2925F4F85570A5B /* Mutex.swift */, + 3240EAAE31EEEE2C1A979DF8 /* NativePropertiesAdmin.swift */, + D7FCFB7E350304BE48F9AB70 /* Object.swift */, + DEC08CE6FC9829FC76970ABF /* ObjectAdapter.swift */, + 0542741E3D6987968EDC3A03 /* ObjectAdapterI.swift */, + 203BF667EB7502A11DAAD293 /* OptionalFormat.swift */, + 6C14840E2D26E13A7C5D6AC9 /* OutputStream.swift */, + 6ACA341F8D22FF154D2C3631 /* Plugin.swift */, + 48FF8C7FFEC75A3D1F598354 /* ProcessI.swift */, + 27196B5B3415DF6ED7D4A3A5 /* Properties.swift */, + 4F546DCC7DF65F50BED56636 /* PropertiesAdminI.swift */, + BC33F4F1A32F4DFE8EBB12A9 /* PropertiesI.swift */, + 1D652FBDA58B2A88C9EE9351 /* Proxy.swift */, + 44D64D7DE7F59927CC720908 /* ServantLocator.swift */, + 688574A0631176251901C5D7 /* ServantManager.swift */, + 92E658D78C379EAA3ED57897 /* SlicedData.swift */, + A3DCD2329D6CC0E7D1A67304 /* SliceFlags.swift */, + 79F3ED290282BD409F3522BE /* SliceInfo.swift */, + 68FE5BEC43DB70CE488BA78C /* SSLConnectionInfo.swift */, + 0DB36F16689B898D5396DE89 /* SSLEndpointInfo.swift */, + A7987BEF538197F4846537BC /* UnknownSlicedValue.swift */, + DC2321024BC76972FDBEF190 /* Util.swift */, + 8B6B06FDB50B258D64C0C1B5 /* Value.swift */, + C4477AA6B5501589EC90C4F2 /* ValueFactory.swift */, + 09A12C7A25EC939F04AC6CB8 /* ValueFactoryManagerI.swift */, ); name = Ice; sourceTree = ""; }; - 3AC12A96C0EAA6A2A0E1F40B /* admin */ = { + 30A1D1B75747D15AEFA8F50E /* IceSSL */ = { isa = PBXGroup; children = ( - 66B7E30EC0ADE6667DB0718E /* AllTests.swift */, - 9FDC86559C3FF6250119D8C3 /* Client.swift */, - 978BC6A012115CFED653D3D0 /* Server.swift */, - 32FB2DD7866F089F20373B22 /* Test.ice */, - 10A974FBBC3239FDDEAF0562 /* TestI.swift */, + 6E3DB7120D2ED76B7DCD7EE1 /* configuration */, ); - name = admin; + name = IceSSL; sourceTree = ""; }; - 3DA9BA4F6912DE108F7C8F63 /* iOS */ = { + 3C77010308AE53DCFB2CD5D5 /* timeout */ = { isa = PBXGroup; children = ( - 8204B0FCE0AB6F68921A3D62 /* CFNetwork.framework */, - 05B1434794EE607DEF633B3A /* ExternalAccessory.framework */, - 46220B1A861EDFDAF19989ED /* Foundation.framework */, - 2C57EFB1EEDFD3D6B470A593 /* PromiseKit.xcframework */, - C63D63D5D753960C536720E5 /* Security.framework */, - 32BD4AEBE95CA55CB24D7A3D /* UIKit.framework */, + A5B27506E526D876D902739A /* AllTests.swift */, + 278EEAB3360C6F45AF0BA345 /* Client.swift */, + 6AB42DA37A87829961E185A1 /* Server.swift */, + 3E80F236FF9CC3D3ABDABC94 /* Test.ice */, + A321E613C2308FD17E0C2E6D /* TestI.swift */, ); - name = iOS; + name = timeout; sourceTree = ""; }; - 411FA658D03F31E668106E47 /* IceGrid */ = { + 3CF527CC27DEFAFEF5D02745 /* 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 */, + 7AD25AF9E04E7237D00DA079 /* Metrics.ice */, + A8697F5EF8C512BDD2D230A1 /* PermissionsVerifier.ice */, + 9D50C3279384F2AA6BA994E0 /* Router.ice */, + 99BB692606D808F7F66B6446 /* Session.ice */, + 00909CBA5C2223CED4ED9381 /* SSLInfo.ice */, ); - name = IceGrid; + name = Glacier2; sourceTree = ""; }; - 44AFCE0A6A5A7C5622A182B4 /* operations */ = { + 3EA0ABAEE71732BE6A9196C3 /* OS X */ = { 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 */, + 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */, + 9F84FD475359A48442829A39 /* PromiseKit.xcframework */, + 855BA3CF130D0F9747BDA673 /* Security.framework */, ); - name = operations; + name = "OS X"; sourceTree = ""; }; - 4626C75C7E4EC2E7A6812887 /* services */ = { + 3EA8A8BE7C5292233BD37025 /* retry */ = { isa = PBXGroup; children = ( - 54C9E37E3AF9656347BFE470 /* Client.swift */, + 8AC23262A7AC04461F4A4BFD /* AllTests.swift */, + F2CC389E3BAC5C77C6DFC3B2 /* Client.swift */, + 401D314CEA8878CFB3F1674F /* Collocated.swift */, + 2591D7770A25B731A7D961B0 /* Server.swift */, + 5D75F8E6BDE3707D84F90250 /* Test.ice */, + 7E2557828DF2EF804720B5DF /* TestI.swift */, ); - name = services; + name = retry; sourceTree = ""; }; - 463E6BA0691C4DE352EEED99 /* cpp */ = { + 3F68898273D3C9EF5CB10054 /* scope */ = { isa = PBXGroup; children = ( - F5787C141D9EAB10CAD77F86 /* src */, + 6C6D0DC6E65F5AE88EB1701F /* AllTests.swift */, + AADAF4F2A9298B55860DC8AB /* Client.swift */, + EDA15621A632772E70EF9DE9 /* Server.swift */, + D08B05FD08F60E1D3870BBF2 /* Test.ice */, + 879BBBB407F7C87AA23FEFB0 /* TestI.swift */, ); - name = cpp; + name = scope; sourceTree = ""; }; - 47001A855DF6B013B31CC977 /* IceLocatorDiscovery */ = { + 4263DB43DF2F54C6E7B1E329 /* stream */ = { isa = PBXGroup; children = ( - 2F0C21A4264BC5D193BE88D2 /* IceLocatorDiscovery.ice */, + B40AB91DB677ED424B70FA69 /* Client.swift */, + 71C219D846F1B5B1FDD3578E /* Test.ice */, ); - name = IceLocatorDiscovery; + name = stream; sourceTree = ""; }; - 476BBC488BCBBCAE959C8C18 /* IceStorm */ = { + 429727EF2CE74E889DD9C9C3 /* Products */ = { isa = PBXGroup; children = ( - 47BCCEE21EF0C5C1C57D0197 /* IceStormSwift.h */, - 8496845BA1CB2961BCB4696C /* Info.plist */, + 77EC8521AFDAD69584F76199 /* Glacier2.framework */, + E00667716A1C103FAC5F4862 /* Glacier2.framework */, + FB64C1942DFC8ACD03DC7591 /* Ice.framework */, + 1C1A5C984E086E684382E966 /* Ice.framework */, + C7529E7D6E0CE82CABE0D45B /* IceAcm.bundle */, + DE81698975B33852370169B0 /* IceAcm.bundle */, + 4CF51F5BA92DBCFB19276E79 /* IceAdapterDeactivation.bundle */, + 7E5BC150A7E6BE558ECEA251 /* IceAdapterDeactivation.bundle */, + 61F67EA48B40D8217803F572 /* IceAdmin.bundle */, + ACB9AA204E947072B6089FC4 /* IceAdmin.bundle */, + 2110B3C9B21AE73C0BD6ECBD /* IceAmi.bundle */, + B324F3F918968083524C839F /* IceAmi.bundle */, + FEB045E2BE5B2791729997F6 /* IceBinding.bundle */, + 1FD8BF102CBDEA4AE9A1BEF0 /* IceBinding.bundle */, + C291B1D3FF41716E62FE1B66 /* IceDefaultServant.bundle */, + A84471908266098F39B2D842 /* IceDefaultServant.bundle */, + 6232FC65AC888C2919A29D4A /* IceDefaultValue.bundle */, + A9E418725A7536BFB1BF5F9E /* IceDefaultValue.bundle */, + 4487959432B7C792830C5266 /* IceEnums.bundle */, + 1B71BDB8210B42A2FC5F0C82 /* IceEnums.bundle */, + C4920C3131DE43086740705E /* IceExceptions.bundle */, + DF969510683D898EFE4084C0 /* IceExceptions.bundle */, + F15FB749EF455BD7CA108204 /* IceExceptionsAMD.bundle */, + CE3EFB47219D60018ECBCE1B /* IceExceptionsAMD.bundle */, + 7009D84B5EA234435C031C1D /* IceFacets.bundle */, + 5FC1B1B7E470DA1817C0EEA4 /* IceFacets.bundle */, + C0AF15B4EEC648C875D97939 /* IceGrid.framework */, + 3D98CE77652346A9B41B4831 /* IceGrid.framework */, + F7CA3B0771AAB23FD2BBAB32 /* IceHold.bundle */, + D8766C6DCAB7BABFE071D77E /* IceHold.bundle */, + 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */, + E580B9D9CC76D53B7B18272C /* IceImpl.framework */, + 7F6624BB6F4570C1B15B7C59 /* IceInfo.bundle */, + 197DFA765AE77FC51AEF8CC3 /* IceInfo.bundle */, + 79E564BB39566F3CAD8B878F /* IceInheritance.bundle */, + B2C1876280F446CCE7B816D9 /* IceInheritance.bundle */, + 698CE5506A44CD12B6835C88 /* IceInterceptor.bundle */, + 5F9757AB402E520F6A127C8D /* IceInterceptor.bundle */, + 82BA2AD0516BDC1B952A1A16 /* IceInvoke.bundle */, + C19ED6991B81D0F741D8B390 /* IceInvoke.bundle */, + 5CA31F719AC415E991FB8790 /* IceLocation.bundle */, + 53A5BF7BE1E27774AE055437 /* IceLocation.bundle */, + A8AFF8F311501C1902F407B9 /* IceObjects.bundle */, + 73E30F6985B146225B2F0177 /* IceObjects.bundle */, + D238D915AA7B2C9AAA51674C /* IceOperations.bundle */, + F97826A9DCAFE51593E3E836 /* IceOperations.bundle */, + A590A314799E84457E6B723C /* IceOperationsAMD.bundle */, + 79B44ECCFF08BDD9E83A886B /* IceOperationsAMD.bundle */, + A7F4197C8123883ABAF8C85D /* IceOptional.bundle */, + 6C1CDE26751507399301F945 /* IceOptional.bundle */, + BF3F7C97E46FF31D7DBAFF42 /* IceOptionalAMD.bundle */, + 977C1FE11405DDDBFB5775A2 /* IceOptionalAMD.bundle */, + ADE78EC4CCE93F2E0C1D0DD3 /* IceProperties.bundle */, + 1C48DE3037CF4AE7BFD44F84 /* IceProperties.bundle */, + 7A0A8197B967AFCB434D4FE1 /* IceProxy.bundle */, + 99F9D2D3C733AFDB4D23EB00 /* IceProxy.bundle */, + 2A2E598EF61DF473F6F1896D /* IceProxyAMD.bundle */, + 95E105439BA21E7D9534BAA3 /* IceProxyAMD.bundle */, + CABAAA81FDF2158619AA51BB /* IceRetry.bundle */, + 3A90857F1CD31FC2193C9C89 /* IceRetry.bundle */, + 0AF49C110C762F572C744977 /* IceScope.bundle */, + 294AC4A94D492076FFDEF664 /* IceScope.bundle */, + 2D63C2A77F018D37B047CFA9 /* IceServantLocator.bundle */, + 9F93205A8C96574AF482B2AB /* IceServantLocator.bundle */, + B33CD6B53C345AC42929BAAC /* IceServantLocatorAMD.bundle */, + DF1CA6ABA240EB1DCE0DCA9E /* IceServantLocatorAMD.bundle */, + 77413C0CE48FA70D463B327C /* IceServices.bundle */, + 64826F8AA2F1B443C0AEFD5C /* IceServices.bundle */, + 99CDD3BEF9831A379194BA9E /* IceSlicingExceptions.bundle */, + E39E0C1B10E19B51E2A7B2E4 /* IceSlicingExceptions.bundle */, + 2967E04C4326091B1910DB93 /* IceSlicingExceptionsAMD.bundle */, + 5A6BCE84AFC62FA7351297E6 /* IceSlicingExceptionsAMD.bundle */, + 6E0FC8B916544739F08DBD2A /* IceSlicingObjects.bundle */, + 0F77C35360BC168A8EE3C849 /* IceSlicingObjects.bundle */, + 09486704DD4EBAC0DD6677C8 /* IceSlicingObjectsAMD.bundle */, + E7B4AD1931A23E635750A562 /* IceSlicingObjectsAMD.bundle */, + 0F25A5B87F1D6D4DE443C3F7 /* IceSSLConfiguration.bundle */, + 397D6E5EA9E00485DEEDF569 /* IceSSLConfiguration.bundle */, + 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */, + 102C8EBB7B156230C64E8D84 /* IceStorm.framework */, + 63DF48DC6AC320881942F9D2 /* IceStream.bundle */, + CE5EF72F93C8A48F13699E40 /* IceStream.bundle */, + 25C7F6C8A9023BB604FCC8C6 /* IceTimeout.bundle */, + 1B2E875251FF8233F5415E48 /* IceTimeout.bundle */, + CA06581C1F468D6DFACFA9C2 /* IceUdp.bundle */, + 85B515A196F89D779308CAD1 /* IceUdp.bundle */, + EB11AE63135A23028AE12F90 /* libIce C++11 iOS.a */, + 9CD9C4FF6B42F14CAB807960 /* libIce C++11 macOS.a */, + F20CF9182023E2AB477F4A39 /* libIceDiscovery C++11 iOS.a */, + FF2875AE0E0680CDB9C9B1B8 /* libIceDiscovery C++11 macOS.a */, + 4F365747574374068F56B9FD /* libIceLocatorDiscovery C++11 iOS.a */, + AE623D75A48D156E4410F1AD /* libIceLocatorDiscovery C++11 macOS.a */, + C4B3812EC86A075A591325CD /* SliceEscape.bundle */, + A6D9088DAAB107784DA16DE0 /* SliceEscape.bundle */, + 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */, + 6F01F4D0DA57D647E4189538 /* TestCommon.framework */, + BCCD7A2776EFD0C816828644 /* TestDriver.app */, + 2DA8717C158AFF4CF60E6E87 /* TestDriver.app */, ); - name = IceStorm; + name = Products; sourceTree = ""; }; - 505CDA137FA8E0D6E44D95B8 /* ios */ = { + 4B9D52C9C16D81092D2393AE /* TestCommon */ = { isa = PBXGroup; children = ( - 267C42793494C2AAB39ACB4C /* Notifications.mm */, - 654F7807429CD84D1849133C /* StreamAcceptor.cpp */, - 0307582B11F0A01BAC6732B7 /* StreamConnector.cpp */, - AD1A7FC63C9D08DB4F5D1072 /* StreamEndpointI.cpp */, - 58E70EA4C8E27D76F40CE7E8 /* StreamTransceiver.cpp */, + 1B54FF32B84CD34A3EAA00EE /* Info.plist */, + 29114B3DD6DE83F72CE4BEF6 /* TestCommon.swift */, ); - name = ios; + name = TestCommon; sourceTree = ""; }; - 50FA1B5FC2D8608E7F3E0176 /* escape */ = { + 51D0369BE4C6DCD07D91371E /* exceptions */ = { isa = PBXGroup; children = ( - 314795999886E271CB9DB2EB /* Clash.ice */, - 14C28AE318E4928F506C915E /* Client.swift */, - 6A8EFB4A80C533DBBE27643B /* Key.ice */, + 2EEC8F950880BA5D14A58ACE /* AllTests.swift */, + F32E0BF2C8C888EC8ADD08A9 /* Client.swift */, + 31807FCC8B102E3BA2E0BBC5 /* ClientPrivate.ice */, + A09BB09CBD110F5A9A95C3BC /* Server.swift */, + FD8ABC24EC401B3963964DB0 /* ServerAMD.swift */, + 748EE12499322EB81A8498E8 /* ServerPrivate.ice */, + 0F2C3F356F0573D576A925FB /* ServerPrivateAMD.ice */, + 99B5902E632A1305ED246DA8 /* Test.ice */, + B07EBD95BDC4C8F2D8598B89 /* TestAMD.ice */, + 770F579715615C54D53ABF72 /* TestAMDI.swift */, + 4DF443F93429C08880793844 /* TestI.swift */, ); - name = escape; + name = exceptions; sourceTree = ""; }; - 51899DE1FEE5EFB1B2546434 /* slice */ = { + 5BCC0E1D6E249668BE9174EC /* exceptions */ = { isa = PBXGroup; children = ( - D1EC47AFED2B219DDF33DE6E /* Glacier2 */, - B24D8A817AD3EFE92CDCE132 /* Ice */, - A71C15587ABD149863402737 /* IceDiscovery */, - 411FA658D03F31E668106E47 /* IceGrid */, - 47001A855DF6B013B31CC977 /* IceLocatorDiscovery */, - 6FDF522C514765E690E807F5 /* IceStorm */, + 2EB971FEE56EA31F7716F3AD /* AllTests.swift */, + CB330C24F7E1E7F765F5B40D /* Client.swift */, + E78C7100074203EDD9A86A1A /* Collocated.swift */, + 77242285508C579CC5B0D48D /* Server.swift */, + F8EC734E3ABEC1B9F8ED7E1C /* ServerAMD.swift */, + 74C18BC9905EB667A2B8518D /* Test.ice */, + 4219AE5EE1189E920E1A77AA /* TestAMD.ice */, + 346EA4E8BF5EBE984DAF0872 /* TestAMDI.swift */, + 714EC172B42055EC5BF98E11 /* TestI.swift */, ); - name = slice; + name = exceptions; sourceTree = ""; }; - 55C0ADFAC325409D3DCC8070 /* defaultValue */ = { + 61F67305A7720F0E285A0E19 /* IceUtil */ = { isa = PBXGroup; children = ( - 3C0E20E45D9B95CE8D5BAD4F /* AllTests.swift */, - CCFC8BF05E482D90214B7A88 /* Client.swift */, - C83F4865F188690FA0ECA48C /* Test.ice */, + 08F114BAF6B711459E6438F1 /* ConsoleUtil.cpp */, + 27B24624FBC0D46B2E71D96A /* CtrlCHandler.cpp */, + 07391C2F2F17BEF451562D52 /* FileUtil.cpp */, + 6EC196F1092D9A40472D0F1A /* InputUtil.cpp */, + 540A7B3104F684B945E4E393 /* MutexProtocol.cpp */, + 85A919E5EEB0EC42C4BAF17A /* Options.cpp */, + A896AB8FC799C78576276217 /* OutputUtil.cpp */, + 54E9AF62DC5520A54B0CF2AA /* Random.cpp */, + DF38F1C85E466EEC07C46EE0 /* RecMutex.cpp */, + B17B4B38AC0363CAFA24A9E4 /* Shared.cpp */, + C4077CF4E039DFF0D6A22D3D /* StringConverter.cpp */, + 3F98C3CA8C685D2666897D25 /* StringUtil.cpp */, + DEE6C673CF16E6CD4116CC12 /* ThreadException.cpp */, + A26B127504B1411F9A44E917 /* Time.cpp */, + B38EBAF76FAFE72C64335C5B /* UtilException.cpp */, + CA44AC521456FBE35AC0D96D /* UUID.cpp */, ); - name = defaultValue; + name = IceUtil; sourceTree = ""; }; - 608412CDB55DAB827867DD06 /* OS X */ = { + 63CE36F0AB08662967C4BC46 /* objects */ = { isa = PBXGroup; children = ( - EB9432E5ED0F08FFC069FA65 /* Cocoa.framework */, - 7F3619615028457B13D22FBD /* PromiseKit.xcframework */, - 225F1A44C56068BBE7A7C5AC /* Security.framework */, + C536B3A8A8CD276788EE5A1A /* AllTests.swift */, + EA6C41DF9E4B34FCEDC9493A /* Client.swift */, + ECB41582845B643446FFF5A0 /* Collocated.swift */, + 27D7B1673A591C9B7CAF8808 /* Forward.ice */, + 848049457E74A1C8BA343A1D /* Server.swift */, + 7896AFF2A6A7C311E7C0DBBA /* Test.ice */, + 99B9776ADB255F1973621C98 /* TestI.swift */, ); - name = "OS X"; + name = objects; sourceTree = ""; }; - 630E28857EDEA8737E5229A1 /* Ice */ = { + 6AD95367B827A55159714221 /* slice */ = { 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 */, + 3CF527CC27DEFAFEF5D02745 /* Glacier2 */, + F25F7B518DF4936568B7412C /* Ice */, + 150C9EB5B4E9E968F7694734 /* IceDiscovery */, + 9187E24BB9B9CCA5703B3856 /* IceGrid */, + 18C53985A7A2615FF93D3A6E /* IceLocatorDiscovery */, + DDDE350E1C387AC0F98C3AB0 /* IceStorm */, ); - name = Ice; + name = slice; sourceTree = ""; }; - 654E73A58D9B5231AE86F9AE /* Slice */ = { + 6E3DB7120D2ED76B7DCD7EE1 /* configuration */ = { isa = PBXGroup; children = ( - 50FA1B5FC2D8608E7F3E0176 /* escape */, + 9668122A663485B283D6E354 /* AllTests.swift */, + 0841109EAF658FE8F75F1D35 /* certs */, + B3089717B2724FA70B62A07E /* Client.swift */, + 80BDC773852878159B385AA8 /* Server.swift */, + 88E0874AAF62BEBDEAA903B2 /* Test.ice */, + D90B76046F6620FA39EB66FA /* TestI.swift */, ); - name = Slice; + name = configuration; sourceTree = ""; }; - 680084F4D8F0751662C4BC71 /* objects */ = { + 6F519C736E6753D8E08C91F5 /* IceGrid */ = { 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 */, + 5A500C7A9434EE6B7B6007E2 /* IceGridSwift.h */, + EB4A88B7EE541CB6AEC177AB /* Info.plist */, ); - name = objects; + name = IceGrid; sourceTree = ""; }; - 689B29ECB5E92DE29E918548 /* Glacier2 */ = { + 72ED0109EF12476876941EF2 /* ios */ = { isa = PBXGroup; children = ( - 49CACF5578779D192C643FD8 /* Glacier2Swift.h */, - 6EC3ACF5E7675DBCB1D86958 /* Info.plist */, + BECB73EA046F28161933053C /* Notifications.mm */, + 25D7EE2BD98457D481B8B3BC /* StreamAcceptor.cpp */, + E9082BACB853874884EA0C9C /* StreamConnector.cpp */, + C91F21E0EC4A9AB95D7E569A /* StreamEndpointI.cpp */, + CA94963DA4E9C2C6BC9D3A1C /* StreamTransceiver.cpp */, ); - name = Glacier2; + name = ios; sourceTree = ""; }; - 6FDF522C514765E690E807F5 /* IceStorm */ = { + 7343D7D871AB263A312DF5F0 /* defaultValue */ = { isa = PBXGroup; children = ( - 5FA5B650BE7B3E7E2911DFEF /* IceStorm.ice */, - E4C4327A478904CF26F0F2F3 /* Metrics.ice */, + C32566337C1211D2262DE5B8 /* AllTests.swift */, + 4AB7DEF69D88E4196C6C38C6 /* Client.swift */, + 4E2510934C92262E6420D091 /* Test.ice */, ); - name = IceStorm; + name = defaultValue; sourceTree = ""; }; - 729475B3576BB933EFF4AD93 /* info */ = { + 75969B1735EBFD35BE628D57 /* inheritance */ = { isa = PBXGroup; children = ( - 4067439731844BE6F7E4526E /* AllTests.swift */, - 111B44D212156B847EA01C54 /* Client.swift */, - BA2F00AB997753AF815C6D1E /* Server.swift */, - 7956EECD3C94FF8CFA4E7EF5 /* Test.ice */, - AB6A7AF6D1EC2B8A12F9B498 /* TestI.swift */, + CC8C2F843887BE982892CC85 /* AllTests.swift */, + A558073E4D0060993986E950 /* Client.swift */, + 90C90B96D25DD719CC60E168 /* Collocated.swift */, + 8131692BCB1B7FD451C01F8B /* Server.swift */, + A19D8983C8F5E4BF02AA82C4 /* Test.ice */, + 0367F5C787891BBE1B298343 /* TestI.swift */, ); - name = info; + name = inheritance; sourceTree = ""; }; - 767AB163095FF035CA1AE85B /* invoke */ = { + 77129A7BEFEF32A94CD9E682 /* Ice */ = { isa = PBXGroup; children = ( - F7D0E1E196E9F210FC9000AD /* AllTests.swift */, - 146B256974FB51DD1265678F /* Client.swift */, - 70DC389A13F881E48EBCA25C /* Server.swift */, - AE2BBFDFF12EDF36B9AF8B2B /* Test.ice */, - 3DA45D6310FBF8AD14941A35 /* TestI.swift */, + 72ED0109EF12476876941EF2 /* ios */, + E4387BB8D14955178CF59D4F /* Acceptor.cpp */, + 685C908500567FED302500C2 /* ACM.cpp */, + FC6572D6D1B9BB5AD0EBFF57 /* ArgVector.cpp */, + 3159C7F956674DA8F082423D /* Base64.cpp */, + 511AD3135337E08B90F9C34B /* BatchRequestQueue.cpp */, + B972748A398232A92FC108CB /* Buffer.cpp */, + 7A542194ED490F2D450FBE00 /* CollocatedRequestHandler.cpp */, + B4E7A74CCB2DED35DB6A1B93 /* Communicator.cpp */, + AEAA1F26027433EC0170129E /* CommunicatorF.cpp */, + 59FC3375D6E90AE4E3134B50 /* CommunicatorI.cpp */, + 38D102721EA6D00E46DBB85E /* Cond.cpp */, + AE017E010C3B64228A0758B7 /* Connection.cpp */, + F95B39360BF7A5A8F3336C02 /* ConnectionF.cpp */, + 6297BCCEF80EEAA0E5BB22A7 /* ConnectionFactory.cpp */, + 8C4AA43D47071643F9248425 /* ConnectionI.cpp */, + DD9A6F271F1D24C181329DEC /* ConnectionRequestHandler.cpp */, + C4321B1EC69E230431008038 /* Connector.cpp */, + 6C9EE6928D91D3DD502B5B8C /* ConnectRequestHandler.cpp */, + 259E1CFC2597003F39AF9275 /* CountDownLatch.cpp */, + 4D9F47C5F7E714936213E615 /* Current.cpp */, + 82B698D2AA00D8433E829B6C /* DefaultsAndOverrides.cpp */, + 31CCAAEF9A0D8BD94D02FADD /* DispatchInterceptor.cpp */, + D51058046137C699E489643B /* DynamicLibrary.cpp */, + 08397788AB99AF6585C187A4 /* Endpoint.cpp */, + 1026DA33ACD08DBDEFF45AC4 /* EndpointF.cpp */, + 31C92631DA6DA4BADFE8C59F /* EndpointFactory.cpp */, + B99A0FA92B5EA56DCB41FC92 /* EndpointFactoryManager.cpp */, + 4A7049303E4CC0D79196E584 /* EndpointI.cpp */, + C3665BE59BB614AAE0CDF2FE /* EventHandler.cpp */, + A28E723AB3710F4B62B6B303 /* Exception.cpp */, + D1F8FE1A0E059D0118539988 /* FactoryTable.cpp */, + 8C321C7D5D3EEBFF6B77950C /* FactoryTableInit.cpp */, + 700EF0543089A6F52A51D7E7 /* HttpParser.cpp */, + 248A46E1415A6C79670BA017 /* IconvStringConverter.cpp */, + 43931C1667BC9E1EB9EBE642 /* ImplicitContext.cpp */, + F07B1686893281A6AD084966 /* ImplicitContextF.cpp */, + D92A55DB4A2264AEEDC97D5D /* ImplicitContextI.cpp */, + BFF0ED34748664151B72A1D2 /* Incoming.cpp */, + 238D7DBD94628C8E32119E5B /* IncomingAsync.cpp */, + 02C7023576B21B0B085453B7 /* Initialize.cpp */, + 65ADD8278D737094AD85D73B /* InputStream.cpp */, + 681AABFFA977FBCD95B43311 /* Instance.cpp */, + E70AFD8DC408D542FD307AB5 /* Instrumentation.cpp */, + AB841745F334BE569AAC2791 /* InstrumentationF.cpp */, + 04CC49DCD0D4C30286DEACE3 /* InstrumentationI.cpp */, + D8C536D312B9304B2D44C277 /* IPEndpointI.cpp */, + 5042D96FAC79ED86972DEF0A /* LocalException.cpp */, + A5DB117E9F7CD97246E362D0 /* LocalObject.cpp */, + 7FC1B02BF28CB20BA8607932 /* LocatorInfo.cpp */, + 8A35C4E163EB55AE186B1AF8 /* Logger.cpp */, + 4E7FD5CE013170C15DA09A31 /* LoggerAdminI.cpp */, + 5052AC8588F0B21D8BE3AD20 /* LoggerF.cpp */, + 62BD73733BF5EF5838784676 /* LoggerI.cpp */, + 6FBE489334E0ED23D774B550 /* LoggerUtil.cpp */, + B3D95F9289578400C8DD7B0E /* MetricsAdminI.cpp */, + 40F0848AD5E921D3D29D8E5F /* MetricsObserverI.cpp */, + EFBB16D3C8E2986C4EB8D12D /* Network.cpp */, + 08733FFC27D163E7A610C567 /* NetworkProxy.cpp */, + 78B6F5E512D86BC4BDC8026B /* Object.cpp */, + C7342B8BA9FB0E6A989E0B06 /* ObjectAdapter.cpp */, + 50E98EEC1CF21AF6E6D15DE7 /* ObjectAdapterF.cpp */, + 4307C8F5994221221EAA83D5 /* ObjectAdapterFactory.cpp */, + 9B722E075AEEBEA3D471A855 /* ObjectAdapterI.cpp */, + 28F6EBEDD7E3BB7D5EA9FBD4 /* ObserverHelper.cpp */, + 3C54DFAFDC0223F71EBCA048 /* OpaqueEndpointI.cpp */, + B05047B0A67FBB7433C356E2 /* OSLogLoggerI.cpp */, + 5DAC9DE9BB0E7BD3C95B7C6D /* OutgoingAsync.cpp */, + 31917CC0A13FF7C85862B2F0 /* OutputStream.cpp */, + D8DED3CCF7ABF57CB61A22DE /* Plugin.cpp */, + 1A303F7D2349A2BAAF06FBA7 /* PluginF.cpp */, + 3E18A66D20FAB52A8017CFEC /* PluginManagerI.cpp */, + 6F0E8376C2AD9B7DDE63D13E /* Properties.cpp */, + 814042ADB97F55EAA8E0BEE4 /* PropertiesAdminI.cpp */, + 737C8B48855EE4342128C161 /* PropertiesF.cpp */, + D097943C4BAC00D7111D073F /* PropertiesI.cpp */, + 59F4F79624A15326B17E88ED /* PropertyNames.cpp */, + 1BC454AFBA15995FFFE08DBA /* Protocol.cpp */, + B570B45B289F7B6C00BF559D /* ProtocolInstance.cpp */, + 7A38C5090BFC9479B5774794 /* ProtocolPluginFacade.cpp */, + 94FDF54850CD30639F5F2A76 /* Proxy.cpp */, + A2028B9FE566140E37F6A80E /* ProxyFactory.cpp */, + 1DAF6712CD8911F10A5971E9 /* Reference.cpp */, + A53A47B49B4866AB8EE69620 /* ReferenceFactory.cpp */, + 206401F7B7D85C2E662248F5 /* RegisterPluginsInit.cpp */, + 292810AEFEB4C7B5B49D1C98 /* RequestHandler.cpp */, + D8E86E1134A0E4313F11F025 /* RequestHandlerFactory.cpp */, + 000611DF33CB4304F42A33BE /* RetryQueue.cpp */, + 006CF4F54F5E4A89A3C663B0 /* RouterInfo.cpp */, + F18DA127CFF3E191C1169914 /* Selector.cpp */, + B80DE963F4B8A8CE7A086F4B /* ServantLocator.cpp */, + 11AEDF0E03E10480338D6773 /* ServantLocatorF.cpp */, + 585EAAAD1DD963A893315BD6 /* ServantManager.cpp */, + 7966445621B396BC50FEFDAF /* Service.cpp */, + 876D9FFC7CC704C0504BCB91 /* SHA1.cpp */, + B3D9E5A1FEF7356081B23255 /* SlicedData.cpp */, + 5BEA81A87699651060DB2E4A /* StreamSocket.cpp */, + 21D15D6C8E3919123C989D88 /* StringConverterPlugin.cpp */, + 246925D469B0CD3F19FC5EF4 /* SysLoggerI.cpp */, + 4EDA8B46CA1A0F1CFC1E283B /* SystemdJournalI.cpp */, + F562D9D8A7515B35C2F58350 /* TcpAcceptor.cpp */, + A72C73AF071E66FC94B9C561 /* TcpConnector.cpp */, + 5A9928AEF2ED41ECB96691AF /* TcpEndpointI.cpp */, + 41D003139C78BDCDD6F24440 /* TcpTransceiver.cpp */, + CF2604CFDFD9F02C2548D7C4 /* Thread.cpp */, + 80C813147DFCDC62BE24AD6F /* ThreadPool.cpp */, + BE284562963BDD32CEEF2902 /* Timer.cpp */, + BA03B082E40C34B986B183E0 /* TraceLevels.cpp */, + 63EFA6A9F175C4F63D612486 /* TraceUtil.cpp */, + FE732A9CB17BA09E4B52F143 /* Transceiver.cpp */, + CF5C1DB557360C9F09A15BB8 /* UdpConnector.cpp */, + 7101B26D06079EE4319D8BB4 /* UdpEndpointI.cpp */, + 8A51F31391447E13718ECF7F /* UdpTransceiver.cpp */, + 9ED8B6B4E62F9D71D312B66F /* Value.cpp */, + E9490D97D26F54E2DE96FE5E /* ValueFactory.cpp */, + A8B3B91893CDE2FCE46DB8C3 /* ValueFactoryManagerI.cpp */, + F5D80A2F30612934EEB5E8AA /* WSAcceptor.cpp */, + BB5D02829AEAB23FFABB5B4F /* WSConnector.cpp */, + 8288E572CC1605192A1F1696 /* WSEndpoint.cpp */, + 66EBE19FA36E23B906766A85 /* WSTransceiver.cpp */, ); - name = invoke; + name = Ice; sourceTree = ""; }; - 76CD9CB718EA44E2F9213E26 /* IceSSL */ = { + 79313AEDDA8144D1D722A86A /* udp */ = { isa = PBXGroup; children = ( - A29499781462110F9F525708 /* configuration */, + 4F294A7B72FAF1011CB416FA /* AllTests.swift */, + 6C2B5BBCC468EFCF6C706DDF /* Client.swift */, + DDCD573A768D574A4F55647D /* Server.swift */, + 10FBAC0DE50DD8520BF0D494 /* Test.ice */, + BA38B6705BC845C06AFE3CD7 /* TestI.swift */, ); - name = IceSSL; + name = udp; sourceTree = ""; }; - 7A85518B77514701F40A8B29 /* facets */ = { + 7B16D63FB17588444E6D0451 /* IceStorm */ = { isa = PBXGroup; children = ( - 9A3682E61FA973F15D18272C /* AllTests.swift */, - 0FF2A72A70FF62EAC4F4C3D0 /* Client.swift */, - 9366A44467F809D54376FC77 /* Collocated.swift */, - 1B3CD69D0F2518B0505945D1 /* Server.swift */, - 7C2D6095118702AF4F895B01 /* Test.ice */, - BC8C1D2215CE75FCBF715EF9 /* TestI.swift */, + D26101A37129FDCC7F02DE6A /* IceStormSwift.h */, + ABB7C1A5CA7A5D473338E96D /* Info.plist */, ); - name = facets; + name = IceStorm; sourceTree = ""; }; - 88A015C194A50B8DE5341407 /* ami */ = { + 7CD914FA573AC8EDDE346B4F /* TestDriver */ = { isa = PBXGroup; children = ( - 28A5057E4450E7A59C9901CC /* AllTests.swift */, - C6A409D5F984C8F0BE68A557 /* Client.swift */, - 097513BEF3C0FEF963ECFE13 /* Collocated.swift */, - 16670BEFB50A823C040927F7 /* Server.swift */, - 7DDAC5988149325C9F48EAC1 /* Test.ice */, - 0C479C4447657FF60E68C8D4 /* TestI.swift */, + FFE06286B4212B46A3E4856F /* iOS */, + AE3566BF1090461EF03F6DBA /* macOS */, ); - name = ami; + name = TestDriver; sourceTree = ""; }; - 93F87AFA44EBFB4B7D4E527F /* proxy */ = { + 80C4ABEC9B3E3B9864D6E0B8 /* escape */ = { 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 */, + 5507FC7D9307D1B742D67CE8 /* Clash.ice */, + 50727E8340FCAC13BECEC831 /* Client.swift */, + 87EF303B4F48EAFE426CB832 /* Key.ice */, ); - name = proxy; + name = escape; sourceTree = ""; }; - 9548A1F162AA67AF56FB069F /* scope */ = { + 87FEB6D04AB77AC9246B643A /* location */ = { isa = PBXGroup; children = ( - F1C374862263D78134D3A2AD /* AllTests.swift */, - B057B033C9D2ED8D38A3D014 /* Client.swift */, - 7B67A4218F8C7CF2FC0CF13A /* Server.swift */, - 3EB97D29C79CEB3038E5C4D7 /* Test.ice */, - 038169BDD15B56BE2FDA00AB /* TestI.swift */, + D82A4CA54A5484DD964DFE39 /* AllTests.swift */, + F0F1E9B04036C7A1BB7003EF /* Client.swift */, + BE4880C3857E46FDB8466BDA /* Server.swift */, + C4E36FFCFD779F3349E0B808 /* Test.ice */, + EFE318F6CB3960BD10185486 /* TestI.swift */, ); - name = scope; + name = location; sourceTree = ""; }; - 9810E379CD8BCC43A32C2B12 /* IceUtil */ = { + 88E0363534D885191070016D /* properties */ = { 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 */, + BCF77AA38122CC9F97CA697A /* Client.swift */, ); - name = IceUtil; + name = properties; sourceTree = ""; }; - 992AEF6E3846A59BC019B87A /* defaultServant */ = { + 8DFBD2BD78EDD947284B6334 = { isa = PBXGroup; children = ( - 83915D8BA4859BF0DBD7B548 /* AllTests.swift */, - 1B96E6391FBDC6A572CE2CA8 /* Client.swift */, - 167F66F4D885478055ED967C /* Test.ice */, + F3637F151137C19CCD19F0E1 /* cpp */, + 19345B3939782A1CC51438EA /* Frameworks */, + 429727EF2CE74E889DD9C9C3 /* Products */, + 6AD95367B827A55159714221 /* slice */, + E282D3FB172515DF0B754A63 /* src */, + CB8FB8046987FBD5F15CF5C5 /* test */, ); - name = defaultServant; sourceTree = ""; }; - A29499781462110F9F525708 /* configuration */ = { + 8EF9206F0D3FEE4B01C0BFB4 /* acm */ = { isa = PBXGroup; children = ( - F74B28F3482CE65CFFC31D5E /* AllTests.swift */, - EA3623F9F4A1CA94B541C05C /* certs */, - 5F6AAC9E3757E6E91347477B /* Client.swift */, - D19C24D6D98060F5D3DC767F /* Server.swift */, - AE6DD4490D2D6A6C80BA2B03 /* Test.ice */, - 9359C59FEC8D1829DE6D27FA /* TestI.swift */, + 5B643EA2D961B5A046DA618B /* AllTests.swift */, + AB4A17E1D7AFC814618AE832 /* Client.swift */, + B1925D4741CC08B26DFD1621 /* Server.swift */, + 89430DABC966D657CAA11785 /* Test.ice */, + CA2F862F15E33C84D1C777E3 /* TestI.swift */, ); - name = configuration; + name = acm; sourceTree = ""; }; - A71C15587ABD149863402737 /* IceDiscovery */ = { + 8FF23095B6767A81DC69E30F /* operations */ = { isa = PBXGroup; children = ( - BEA90AA9491C68F453CC2B76 /* IceDiscovery.ice */, + CD76D50BBE665C06B63D8EA0 /* AllTests.swift */, + 4804F5E00E5C966AE7D9FD34 /* BatchOneways.swift */, + 87C7BBC6F22A9A903F1FB5A4 /* BatchOnewaysAMI.swift */, + 1962FCE8C13AAA1EDB246D78 /* Client.swift */, + 89C8AEE905086856134C860E /* Collocated.swift */, + FC48F3FEB7298E0C6FB9C9BD /* Oneways.swift */, + 873DDDDA9C1B2827C2427670 /* OnewaysAMI.swift */, + 069D6D873DB12806A4A9705F /* Server.swift */, + F1096EF87824C8D901CB7EB0 /* ServerAMD.swift */, + 4DF3479CC49100449C494653 /* Test.ice */, + 01CD17E5927E812D8DD3EAC1 /* TestAMD.ice */, + E5F90D823F008079DDF85638 /* TestAMDI.swift */, + 17E2F182F3B77EE5965C3F59 /* TestI.swift */, + E22C0DF633DFF1F13E530965 /* Twoways.swift */, + C50755E3F26CA6D9CC706FDC /* TwowaysAMI.swift */, ); - name = IceDiscovery; + name = operations; sourceTree = ""; }; - ACF55F422858B8E5D541155F /* enums */ = { + 904F85755AECCD0E0D72739D /* hold */ = { isa = PBXGroup; children = ( - CCD0FE357CCF946FEC6A719F /* AllTests.swift */, - 6EDB0B02B3ED8BEB70182162 /* Client.swift */, - EC8EB4350103B673F2C8492C /* Server.swift */, - 6E437B10CC2A98D494235858 /* Test.ice */, - D584721E70A4A59344385873 /* TestI.swift */, + 1570CABD05CE88D0D442FBAA /* AllTests.swift */, + 1E498B9EBD907E4FAD93351F /* Client.swift */, + BDA44D2D537AF18875B1AF6E /* Server.swift */, + F47009097AD17B454D6780A7 /* Test.ice */, + 0EF3EED5D49B0E829BC0E03A /* TestI.swift */, ); - name = enums; + name = hold; sourceTree = ""; }; - B24D8A817AD3EFE92CDCE132 /* Ice */ = { + 91204724DE7E555597CCD63D /* enums */ = { 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 */, + 61B80662080CB423CE83029C /* AllTests.swift */, + E00AE826AA0B6D12DE8A593B /* Client.swift */, + C9DAF4E6A6A0734D36C7039E /* Server.swift */, + C0093783F41BC3D488E98600 /* Test.ice */, + A47964EE995DCCF12193A7C8 /* TestI.swift */, ); - name = Ice; + name = enums; sourceTree = ""; }; - B3E074842B36A8DC3E0C6613 /* retry */ = { + 9187E24BB9B9CCA5703B3856 /* IceGrid */ = { isa = PBXGroup; children = ( - 7EE2506792F31CBED83E4851 /* AllTests.swift */, - 589870D40ED0745158B279A2 /* Client.swift */, - D0D8E0D429D160FEABB28CA0 /* Collocated.swift */, - 1F04BEF80E053F20F7E0FAD9 /* Server.swift */, - 5263C3738C3EF761B5202141 /* Test.ice */, - E7D20169169F829071B5057F /* TestI.swift */, + 7AAAA99233AA95D5E2D8623D /* Admin.ice */, + E58B32872CC6A0C1048F6248 /* Descriptor.ice */, + FFD565105BC4E6A56DCB1853 /* Exception.ice */, + 5DABF3352FC370E8C8424646 /* FileParser.ice */, + 065B949882E18BDEB1485FC1 /* Registry.ice */, + D447784B77B4412B60FCFC03 /* Session.ice */, + FFC58AB4E1C5B5964CD9F8D3 /* UserAccountMapper.ice */, ); - name = retry; + name = IceGrid; sourceTree = ""; }; - B7BF652928970190AC67ADB8 /* IceDiscovery */ = { + 91C8925DADC22B82524EF085 /* services */ = { isa = PBXGroup; children = ( - FB3C826EC5ED81E33C86DFFB /* LocatorI.cpp */, - 75B0E1B932B09C64904B3E75 /* LookupI.cpp */, - FC73C4C73D34B73CEC2085EB /* PluginI.cpp */, + 5F8D90EA61D510888A922C76 /* Client.swift */, ); - name = IceDiscovery; + name = services; sourceTree = ""; }; - B930C18F08BA6B4A51B506DD /* TestDriver */ = { + 9376FEFF580E9B1396D0B10D /* ami */ = { isa = PBXGroup; children = ( - 2EF040BFB684E74CC67A27D2 /* iOS */, - FDEE0305EA36CD2B21DBED3F /* macOS */, + DE7F0BCED1A80C49DD69EED5 /* AllTests.swift */, + 014D0EE5D267E432DA21670A /* Client.swift */, + 8B7F6F6014A25D3EA8088D4D /* Collocated.swift */, + 57CF891C000E31222368C816 /* Server.swift */, + 17D15FE0C359907D9E73E508 /* Test.ice */, + 5AA45CDF58CA91E2E635F08A /* TestI.swift */, ); - name = TestDriver; + name = ami; sourceTree = ""; }; - BF68810F9F6E9F0E5E50E686 /* IceSSL */ = { + 9CE1B9AED2C23CF572B9E2F7 /* IceDiscovery */ = { 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 */, + CBAE1ADE6A6A3C9DACBF2C68 /* LocatorI.cpp */, + C520CFEA9E7F6ABF0BB8DEFE /* LookupI.cpp */, + D7A933D36328C77B1C03028B /* PluginI.cpp */, ); - name = IceSSL; + name = IceDiscovery; sourceTree = ""; }; - C0917F12C17273DC361CE27A /* adapterDeactivation */ = { + A3E727DFCD4EE22B8B14992B /* invoke */ = { isa = PBXGroup; children = ( - 4A0946E63B4A232965ABDC8F /* AllTests.swift */, - 23BA4FD4F07A1F312BB3804B /* Client.swift */, - 7A6DE490CAA151058A7A77AE /* Collocated.swift */, - 965052459EF66532D1A53DAC /* Server.swift */, - 11EE85F933402720B1EF6CF7 /* Test.ice */, - E24E0E30BCEE526832CFF2C0 /* TestI.swift */, + AF5E56D13752DB41032C1BAB /* AllTests.swift */, + B306F3D24CD60364FAF42DBD /* Client.swift */, + FD7C6AB26C45ABFC92DDB247 /* Server.swift */, + ADA2F94E4EDD0ADEEE713717 /* Test.ice */, + B0C70BDF91875EC6706AE12C /* TestI.swift */, ); - name = adapterDeactivation; + name = invoke; sourceTree = ""; }; - C4B9FBD376A1113679514F16 /* Products */ = { + AE3566BF1090461EF03F6DBA /* macOS */ = { 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 */, + 1515A9EBA05A025707FA0A5B /* main.swift */, ); - name = Products; + name = macOS; sourceTree = ""; }; - C6D99228F97446551EA2EB25 /* IceGrid */ = { + B291025306FBA05D0DEDE43E /* IceIAP */ = { isa = PBXGroup; children = ( - 88FF1FF8A94040F7F602F0C0 /* IceGridSwift.h */, - 28D89931781D7CD21FCC7CCB /* Info.plist */, + 358B68004AEA4DEE9CC643DF /* ConnectionInfo.cpp */, + 97E37D3215AA9BB8DD87E7B4 /* Connector.mm */, + 7EB7AAB041B597E34A71548A /* EndpointI.mm */, + 8960D717D9673447C68F61D7 /* EndpointInfo.cpp */, + DE0FE67A381FD4FD9F7DD015 /* Transceiver.mm */, ); - name = IceGrid; + name = IceIAP; sourceTree = ""; }; - C7EF7738F348B2900CE9C6DD /* interceptor */ = { + B43A4AF48E3DADB82EB08E42 /* servantLocator */ = { isa = PBXGroup; children = ( - 43EA623C9F4C7F919225D487 /* Client.swift */, - A0E69CF15D312799D1B24169 /* Test.ice */, + 0205F3DB3D2A802285F11C8B /* AllTests.swift */, + 5DEE9BBFD65F9CC3DD2E91F5 /* Client.swift */, + 0EF9EA920CDA248C30B741E3 /* Collocated.swift */, + 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */, + 753E12D3EE11FCE2B8E3B8F9 /* Server.swift */, + BB2A63494B776FCB8C2A0BCF /* ServerAMD.swift */, + 5292AB6BD873695825E1758E /* Test.ice */, + CA042305E180817575383DD8 /* TestAMD.ice */, + D7847B096AC0D34F6A6A83F0 /* TestAMDI.swift */, + 45C8F6FB616A194C3B2F51F4 /* TestI.swift */, ); - name = interceptor; + name = servantLocator; sourceTree = ""; }; - C84C9887453A3AC9C96AC570 /* properties */ = { + B893B5C1C8E5CD542B6780CC /* slicing */ = { isa = PBXGroup; children = ( - 7C33F6088CA51225D531E88F /* Client.swift */, + 51D0369BE4C6DCD07D91371E /* exceptions */, + C8726FC03A86D3632DA427A9 /* objects */, ); - name = properties; + name = slicing; sourceTree = ""; }; - C9CC85BF8BC4BB8716340680 /* IceLocatorDiscovery */ = { + B89DA4DB670B0778EB5C59A0 /* info */ = { isa = PBXGroup; children = ( - CDD050FB49289A8E9B2D9942 /* PluginI.cpp */, + 5784A651E1A32B4749128DE1 /* AllTests.swift */, + 66677779E376C6BC1CB257CB /* Client.swift */, + 5923FFFFBE73677A77330996 /* Server.swift */, + C6DE61C2A91224378F513C93 /* Test.ice */, + 3A18E1A90F712D013DEBAD12 /* TestI.swift */, ); - name = IceLocatorDiscovery; + name = info; sourceTree = ""; }; - CBA9BA80D35487FB48989A16 /* IceImpl */ = { + C0061A2A3B2D4CEB5BE46F81 /* proxy */ = { 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 */, + 8A14118D0E57AF0A5F37755A /* AllTests.swift */, + 3C30A1A1C29802757EAC98B0 /* Client.swift */, + 1BEC5A912505A2D0739F41AE /* Collocated.swift */, + 323B42FB5AD8FC12D8AE7CDE /* Server.swift */, + 59C46080488C352EA3B5E078 /* ServerAMD.swift */, + 24511A349B3AC892968F3C7E /* Test.ice */, + C42E3590E041824F3DCB8EB0 /* TestAMD.ice */, + 2B0A74331F696DA324EE12AF /* TestAMDI.swift */, + C1D0DCF81BE7E3A82E4C8306 /* TestI.swift */, ); - name = IceImpl; + name = proxy; sourceTree = ""; }; - D1EC47AFED2B219DDF33DE6E /* Glacier2 */ = { + C03B58530F11CA06E7100BC0 /* Glacier2 */ = { isa = PBXGroup; children = ( - 3F1911BAB92A957302833169 /* Metrics.ice */, - 769101BD07C4F85CBCF6EC73 /* PermissionsVerifier.ice */, - D9F8D61F43A53ADB59E8570F /* Router.ice */, - 12D5D56C338B4BC5F6CA83FD /* Session.ice */, - B995EA78E5B5397A8BF50B54 /* SSLInfo.ice */, + BE336D44832D3B066ECDDB06 /* Glacier2Swift.h */, + BDF027FA6FECE2B7A5046271 /* Info.plist */, ); name = Glacier2; sourceTree = ""; }; - DD2E44A180FD4333D0012449 /* servantLocator */ = { + C2D26382DA52F7AFC063D7EE /* optional */ = { 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 */, + 187ED1A448C608EC15DF698C /* AllTests.swift */, + C5242AA08870B9E96219670E /* Client.swift */, + 043AB17C4C069B93FA1E7D41 /* Server.swift */, + E597DC759086A689098B811C /* ServerAMD.swift */, + B396B2BC10CC618A54890177 /* Test.ice */, + A1D1560CEE1155BFFA1F9B22 /* TestAMD.ice */, + A7E3DA05928304B5AC220E13 /* TestAMDI.swift */, + 5E7A0432DEA9466221C423F5 /* TestI.swift */, ); - name = servantLocator; + name = optional; sourceTree = ""; }; - E33A843FF97946D59286BF55 /* optional */ = { + C82761281338FE866BCEDCEF /* Ice */ = { 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 */, + 8EF9206F0D3FEE4B01C0BFB4 /* acm */, + 1B3D037730139C27FEAD7FE8 /* adapterDeactivation */, + F23133703881318CE32C0417 /* admin */, + 9376FEFF580E9B1396D0B10D /* ami */, + FCE3DDBE91B3A81F21B820FB /* binding */, + E5D48610FD885F500EEB5617 /* defaultServant */, + 7343D7D871AB263A312DF5F0 /* defaultValue */, + 91204724DE7E555597CCD63D /* enums */, + 5BCC0E1D6E249668BE9174EC /* exceptions */, + 2C447E115DC5649C9E4D4790 /* facets */, + 904F85755AECCD0E0D72739D /* hold */, + B89DA4DB670B0778EB5C59A0 /* info */, + 75969B1735EBFD35BE628D57 /* inheritance */, + D5AAF4BCAE5A5A123839FFDF /* interceptor */, + A3E727DFCD4EE22B8B14992B /* invoke */, + 87FEB6D04AB77AC9246B643A /* location */, + 63CE36F0AB08662967C4BC46 /* objects */, + 8FF23095B6767A81DC69E30F /* operations */, + C2D26382DA52F7AFC063D7EE /* optional */, + 88E0363534D885191070016D /* properties */, + C0061A2A3B2D4CEB5BE46F81 /* proxy */, + 3EA8A8BE7C5292233BD37025 /* retry */, + 3F68898273D3C9EF5CB10054 /* scope */, + B43A4AF48E3DADB82EB08E42 /* servantLocator */, + 91C8925DADC22B82524EF085 /* services */, + B893B5C1C8E5CD542B6780CC /* slicing */, + 4263DB43DF2F54C6E7B1E329 /* stream */, + 3C77010308AE53DCFB2CD5D5 /* timeout */, + 79313AEDDA8144D1D722A86A /* udp */, ); - name = optional; + name = Ice; sourceTree = ""; }; - E8261DF757B888C3FABB4DAC /* src */ = { + C8726FC03A86D3632DA427A9 /* objects */ = { isa = PBXGroup; children = ( - 689B29ECB5E92DE29E918548 /* Glacier2 */, - F15C3BD7C2A83DC618EF97D0 /* Ice */, - C6D99228F97446551EA2EB25 /* IceGrid */, - CBA9BA80D35487FB48989A16 /* IceImpl */, - 476BBC488BCBBCAE959C8C18 /* IceStorm */, + 5248E12595EE33145909A5D9 /* AllTests.swift */, + 0F7401C2CE09807582FF593E /* Client.swift */, + 24EEF303A9F8E4869A064E55 /* ClientPrivate.ice */, + C37E81FE388B9D7FAB3C7C2C /* Server.swift */, + 68A1DF0813FCFD98C103C20D /* ServerAMD.swift */, + 19AA73005971E2B69755A399 /* ServerPrivate.ice */, + 1D731F95822FEE54CA546BF4 /* ServerPrivateAMD.ice */, + 11093968C1A0F59042CD7D5B /* Test.ice */, + 07B40D097E062D485AF3F394 /* TestAMD.ice */, + 0AE548BE00DBF796605CE418 /* TestAMDI.swift */, + 65E69FAE81A29C4237DF3017 /* TestI.swift */, ); - name = src; + name = objects; sourceTree = ""; }; - E977D9A3178A4B1DCB07E849 /* udp */ = { + C87C78120FD959D6A4CF9536 /* IceSSL */ = { isa = PBXGroup; children = ( - ECC72E0F8FB0FAFD7B7C988B /* AllTests.swift */, - A415328DFBFF6A7A21BF4E81 /* Client.swift */, - 80A836681C0AEC83887E925E /* Server.swift */, - 95851E43D0C4D60F6E643BAE /* Test.ice */, - 1C41EDECF5F3943979928068 /* TestI.swift */, + C0CBBD39BB0BC5077AC80C4D /* AcceptorI.cpp */, + B1BD6C158D137668766182C6 /* CertificateI.cpp */, + 02CB2CD05CEE1E2166255186 /* ConnectionInfo.cpp */, + 2AB45D97CBDA0FAEFF65A6AE /* ConnectionInfoF.cpp */, + 4749A84AF39751728F692314 /* ConnectorI.cpp */, + 615E8464EAAEA906EF0953DE /* EndpointI.cpp */, + 4E829B55DFE27094ED4A1790 /* EndpointInfo.cpp */, + F844C21E5E941FB173DD616C /* Instance.cpp */, + 7DEDA8D23AD6801409BD6D10 /* PluginI.cpp */, + FC8043E62037681FA6B23AE1 /* RFC2253.cpp */, + 59DDE7B5BC8DF0F3AD836E76 /* SecureTransportCertificateI.cpp */, + 83F50C58BF53491B5A2519D6 /* SecureTransportEngine.cpp */, + 2981BE0BA9E535D4E8738D6C /* SecureTransportPluginI.cpp */, + EC2D223A5415E0568A67FC72 /* SecureTransportTransceiverI.cpp */, + 533D65B77DD79A97AE2A1A8F /* SecureTransportUtil.cpp */, + 08422DB9B8A6F7BEF0B9659B /* SSLEngine.cpp */, + D2DB1A2EBE508ADA82D566B4 /* TrustManager.cpp */, + 36A3DD415DB5D47F3DD67986 /* Util.cpp */, ); - name = udp; + name = IceSSL; sourceTree = ""; }; - EBA8D056F4BCCB84D9F89878 /* stream */ = { + CB8FB8046987FBD5F15CF5C5 /* test */ = { isa = PBXGroup; children = ( - 5139077FB7FF05473C48016A /* Client.swift */, - 1E60734E3E837C813043195B /* Test.ice */, + C82761281338FE866BCEDCEF /* Ice */, + 30A1D1B75747D15AEFA8F50E /* IceSSL */, + 070FD7523C6704FBF560C535 /* Slice */, + 4B9D52C9C16D81092D2393AE /* TestCommon */, + 7CD914FA573AC8EDDE346B4F /* TestDriver */, ); - name = stream; + name = test; sourceTree = ""; }; - EC55BF468418479529109C96 /* hold */ = { + D5AAF4BCAE5A5A123839FFDF /* interceptor */ = { isa = PBXGroup; children = ( - 7A007F6524CA33A118530563 /* AllTests.swift */, - B884A1F2FB9A50957E45CD4B /* Client.swift */, - 5D711F8F37F1A2CC99B3F53F /* Server.swift */, - 6D2DD09C36EF45CDA56DB948 /* Test.ice */, - AB1D1063C3987F97CD262B32 /* TestI.swift */, + 2725188194A8D2470DBF46F5 /* Client.swift */, + 5206DD21F8DF743B9A61B14B /* Test.ice */, ); - name = hold; + name = interceptor; sourceTree = ""; }; - F0C85AEFAEDDF58E830F63AB /* objects */ = { + DDDE350E1C387AC0F98C3AB0 /* IceStorm */ = { isa = PBXGroup; children = ( - EC358D83F29EA095AE7953F4 /* AllTests.swift */, - 34E29AA242C9C15C1FE20DF0 /* Client.swift */, - 9BB5410444BF6B374021801D /* Collocated.swift */, - CDAAA865B397968BFD6A854A /* Forward.ice */, - B6D3E94140669587BFA14843 /* Server.swift */, - E0EBA030768D756CAB63E5C5 /* Test.ice */, - 23F1A85D0FB546A7190E150D /* TestI.swift */, + AFF94B5C18B237C5BCC2586A /* IceStorm.ice */, + 5AE3DC5C68BCF7B63AA95F6F /* Metrics.ice */, ); - name = objects; + name = IceStorm; sourceTree = ""; }; - F15C3BD7C2A83DC618EF97D0 /* Ice */ = { + E282D3FB172515DF0B754A63 /* src */ = { 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 */, + C03B58530F11CA06E7100BC0 /* Glacier2 */, + 3059B08B6D77373D2E7E80FB /* Ice */, + 6F519C736E6753D8E08C91F5 /* IceGrid */, + F75AA830EE00920BA99099C7 /* IceImpl */, + 7B16D63FB17588444E6D0451 /* IceStorm */, ); - name = Ice; + name = src; sourceTree = ""; }; - F1815AADDEFD6FCF493B9897 /* inheritance */ = { + E5D48610FD885F500EEB5617 /* defaultServant */ = { isa = PBXGroup; children = ( - FA4A6F897448CBBFD0BD60EE /* AllTests.swift */, - 9F3434C8A073AA109B5C31EA /* Client.swift */, - EF613DCAD6834FD2362A04D5 /* Collocated.swift */, - BDDD6119D93F5A4C9BA2C1A5 /* Server.swift */, - 4869F95A4F0E2F0EB4A21C9F /* Test.ice */, - 76B982881849592FB664DF9C /* TestI.swift */, + 97E99C2AEE0BD9BF770175D4 /* AllTests.swift */, + 5C265F58DECCDAB36E4CD6A6 /* Client.swift */, + B848104E80383628C5A2CF73 /* Test.ice */, ); - name = inheritance; + name = defaultServant; sourceTree = ""; }; - F32F843625F719F7D14C5713 /* acm */ = { + F23133703881318CE32C0417 /* admin */ = { isa = PBXGroup; children = ( - 195A241E0300852E69AADB88 /* AllTests.swift */, - 3635819F6819934528B2BA8B /* Client.swift */, - 06BC492F3CD439079FA4A3A3 /* Server.swift */, - 9E3EE46F30618B8E0211F6C4 /* Test.ice */, - D32E144F81EE10297B9F1C55 /* TestI.swift */, + 8188FC2EE67FAC79B3DDD184 /* AllTests.swift */, + DF00A0B8905692CA5CB21851 /* Client.swift */, + 5721BA6A8AE743A4B2FF95A5 /* Server.swift */, + 746535D89AE46CEA581E57AF /* Test.ice */, + A4E73A61A877F2E6823B7907 /* TestI.swift */, ); - name = acm; + name = admin; sourceTree = ""; }; - F5787C141D9EAB10CAD77F86 /* src */ = { + F25F7B518DF4936568B7412C /* Ice */ = { isa = PBXGroup; children = ( - 630E28857EDEA8737E5229A1 /* Ice */, - B7BF652928970190AC67ADB8 /* IceDiscovery */, - FAD8993251EA85A855B7D53A /* IceIAP */, - C9CC85BF8BC4BB8716340680 /* IceLocatorDiscovery */, - BF68810F9F6E9F0E5E50E686 /* IceSSL */, - 9810E379CD8BCC43A32C2B12 /* IceUtil */, + 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */, + F0DB50962CCFE3F777DFA679 /* Context.ice */, + 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */, + 35AE9823C665F00939098688 /* Identity.ice */, + 6F38DD25FC0B9CF9834644C9 /* Locator.ice */, + 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */, + 60C72DE758D50EEE330E214C /* Metrics.ice */, + DC52095091A14C3F13099644 /* OperationMode.ice */, + EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */, + 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */, + AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */, + 96057073F871C88A9A437E6C /* RemoteLogger.ice */, + 7490F0360E314E9C5FF89F3C /* Router.ice */, + 654CCEC599E0A9552262BFF6 /* RouterF.ice */, + FDD74C1D5D68EB2943068DA2 /* Version.ice */, ); - name = src; + name = Ice; sourceTree = ""; }; - F6445D7F6837A9E5721B6DE1 = { + F3637F151137C19CCD19F0E1 /* cpp */ = { isa = PBXGroup; children = ( - 463E6BA0691C4DE352EEED99 /* cpp */, - 1D9EDE94B796C06BC401F400 /* Frameworks */, - C4B9FBD376A1113679514F16 /* Products */, - 51899DE1FEE5EFB1B2546434 /* slice */, - E8261DF757B888C3FABB4DAC /* src */, - 2A55C02CB23E08907CC59536 /* test */, + 2EDB59AC703C5D4269749C45 /* src */, ); + name = cpp; sourceTree = ""; }; - FAD8993251EA85A855B7D53A /* IceIAP */ = { + F75AA830EE00920BA99099C7 /* IceImpl */ = { isa = PBXGroup; children = ( - 29CCBA8E43B636B9DDCC8A12 /* ConnectionInfo.cpp */, - DFD8B204368D01D576A6D7BB /* Connector.mm */, - 78F16843E2BBB78CF5ECC73E /* EndpointI.mm */, - 189BE24954425D454F4EF9FB /* EndpointInfo.cpp */, - BB42DEB40EEAEA9E39A059D7 /* Transceiver.mm */, + EE56A762315F2E6B866D2172 /* AdminFacetFactory.h */, + 63086CCB688E11EB58FA8847 /* BlobjectFacade.h */, + C0F99C57D798B822698572DE /* BlobjectFacade.mm */, + 042B09E718B4AF7FEC08C931 /* Communicator.h */, + EE85799B50D901E7EE91B724 /* Communicator.mm */, + 135C5232085BDE2604DFEE21 /* Config.h */, + 164143EB3C130B0FA5630E59 /* Connection.h */, + 953B936F6C84AD4413F0837A /* Connection.mm */, + D16C752C89102255A084815B /* Convert.h */, + CB2C9FFB0BA6BBA3E848504F /* Convert.mm */, + A8F5945F8AFC7C9F3E86F3D4 /* Endpoint.h */, + AF698C2D5D97DCCFC7D85451 /* Endpoint.mm */, + 273E5195A6D681AF9C343F47 /* Exception.h */, + 77A833C278A8A075161EBAA8 /* Exception.mm */, + 60EDA02B0B44B95EBB2841F9 /* IceImpl.h */, + A0E153E7D44172EC94A37022 /* IceUtil.h */, + BA23EE95BEDA285AEE6F8A0D /* IceUtil.mm */, + 5C37059709E53268E7C14372 /* ImplicitContext.h */, + E3077BF706F4E5C8BA2500DA /* ImplicitContext.mm */, + 3573CD4E6D9EB58A37C88DBF /* LocalObject.h */, + 053E3EA43764388B8A0304F1 /* LocalObject.mm */, + C9268509E17D41945A7D998E /* Logger.h */, + 8044616B12D739F37275B163 /* Logger.mm */, + F8AFAAB080FEF12A06662C69 /* LoggerWrapperI.h */, + DFCE210A780A814AEE2A57AC /* ObjectAdapter.h */, + 145489AECBBABC46B13BBD6F /* ObjectAdapter.mm */, + 7FCC0E3729F4A0124693C97A /* ObjectPrx.h */, + 1D30AE0D95CE0B8136368F33 /* ObjectPrx.mm */, + ADEE63F9B0ACFD0462CA86EB /* OutputStream.h */, + EDC332916E29C4DB70EDDC09 /* Process.h */, + E400CBFEEB7A5C82AA30E765 /* Process.mm */, + 3D23950CABD458FD84101A42 /* Properties.h */, + EFDF1AFD3FE00EFB8D0F40DF /* Properties.mm */, + 7F0F1C0C87F3118B4B5673E1 /* PropertiesAdmin.h */, + A2BADF2E71C4E31C2545EBD7 /* PropertiesAdmin.mm */, + CF60B8793F769C8446821BF9 /* TraceUtil.h */, + 94750ED6B82F0F0C0E7243D1 /* TraceUtil.mm */, + D8F7B24CE59A1F99506ABFA9 /* UnsupportedAdminFacet.h */, + EC56C57F4AF048D4B7528E44 /* UnsupportedAdminFacet.mm */, ); - name = IceIAP; + name = IceImpl; sourceTree = ""; }; - FDEE0305EA36CD2B21DBED3F /* macOS */ = { + FCE3DDBE91B3A81F21B820FB /* binding */ = { isa = PBXGroup; children = ( - C3D39FB9794A458E44672EE2 /* main.swift */, + 543206D99800E30AAB5B257D /* AllTests.swift */, + D3548229461616CC182BCEBD /* Client.swift */, + DD976A623B36B1B8928E4F84 /* Server.swift */, + 44B4CA994280A6DA16BE5B80 /* Test.ice */, + 3979D5422F89387622D2651D /* TestI.swift */, ); - name = macOS; + name = binding; sourceTree = ""; }; - FFBB91B8B43735262EB442F0 /* binding */ = { + FFE06286B4212B46A3E4856F /* iOS */ = { isa = PBXGroup; children = ( - D9FD3392522AC4868A78AD1D /* AllTests.swift */, - 643804113C7CACB4A7EB180E /* Client.swift */, - 3C84040AFCBFD4AAE0B519DB /* Server.swift */, - 0CB402D9967B00BE923C2D03 /* Test.ice */, - A02666D7734DCBD68E093E74 /* TestI.swift */, + B183D8B5CE1435DBB960167D /* AppDelegate.swift */, + 101D000CFC727409838DEE04 /* Assets.xcassets */, + F84548B73653D4C1742C2AD9 /* certs */, + 8E07F2808B7ABBDDF36A6614 /* Controller.ice */, + E12D95BAB303CB972B193B0D /* ControllerI.swift */, + C045207B0CFBEA2826456197 /* LaunchScreen.storyboard */, + 7EA959FB1AE1C0215813F162 /* Main.storyboard */, + D53779F0A96B303BCCEAEFCD /* ViewController.swift */, ); - name = binding; + name = iOS; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 068352613F3C040788D83E6C /* Headers */ = { + 0DFF078867C28CFA4D7954D7 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 9801A9293D5D8E5A5097B580 /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0D3CDD20FB2E828DFE6459C5 /* Headers */ = { + 2B9C8382E410BB2D42CA9879 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 24AEC3C23E7C27E16EB9B508 /* IceGridSwift.h in Headers */, + 7506819774CF24B7691C32E7 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1B60567B354A71B70D9F17FA /* Headers */ = { + 4376B61CBA3F46BFEBE94273 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - AAB6DF67986B8C40494AEE5F /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 270C88AB742B9A18218C3A9D /* Headers */ = { + 45A6356BECF527E2FD61BBE9 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 2F61CAFC8944727E15EE9E24 /* Headers */ = { + 77129808429C81C2AB037481 /* AdminFacetFactory.h in Headers */, + F97CFDA8CB8A23C6E8BA3976 /* BlobjectFacade.h in Headers */, + 891AB334019BB7E8BEE85BA2 /* Communicator.h in Headers */, + ECE047163CB55F0E700743B6 /* Config.h in Headers */, + 67877EA20DA6A2E11F52B79D /* Connection.h in Headers */, + 73AFC54F4D4336070DC87303 /* Convert.h in Headers */, + 02D6E05A0B88B1E5AC7AA938 /* Endpoint.h in Headers */, + E39D0BAF24DE0513CB5CFE63 /* Exception.h in Headers */, + 4E52A5C6A682AD06A560D8B8 /* IceImpl.h in Headers */, + F98D3E533343BAF313BB0467 /* IceUtil.h in Headers */, + D2BD83724E67D0BF55280D93 /* ImplicitContext.h in Headers */, + 8A3155B3F4C4D042241E2AA8 /* LocalObject.h in Headers */, + 3C28C8DA74A1C7BBB8E86B74 /* Logger.h in Headers */, + AF76E41B539190348EA3B4E7 /* LoggerWrapperI.h in Headers */, + 876B53FB4F46CE95E08476AF /* ObjectAdapter.h in Headers */, + 476EC843AE77537D626FB504 /* ObjectPrx.h in Headers */, + 2F84AF1FAB750DE9223E27A1 /* OutputStream.h in Headers */, + 992670B71CA3CA542C9A7D54 /* Process.h in Headers */, + BABC32201225A91C5A25EA93 /* Properties.h in Headers */, + BCF08A16C4619922A60B7811 /* PropertiesAdmin.h in Headers */, + 84AF4F009CF9E16EBEDCAC3F /* TraceUtil.h in Headers */, + A05A10B6FBD0AB0DA5F06517 /* UnsupportedAdminFacet.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 558B4EC93D7C78C03C354DB2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 349379033E27FFB71B80F96C /* IceSwift.h in Headers */, + 4714CE6112C1E40B9171D952 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6103BE0C1BA576488160D922 /* Headers */ = { + 58EA7ADDF13023AC26BAD850 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D846FDFFD9D51F06B4BDF1F6 /* Glacier2Swift.h in Headers */, + EF5BF0ADF4AADCAD20D976BD /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6A98037C6324B3A1488130FF /* Headers */ = { + 65B941C107B5D926BC9DAE4E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 6A0314BAAAB1E1D5321D0E26 /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6C4B8D4B387E1BC59293EAEF /* Headers */ = { + 69965D996B7933965D78AF39 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8126C6AFA4C819E3C321558C /* Headers */ = { + 7B13C7BEB4B84507D058731C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8323A7E88064AE338418B26B /* Headers */ = { + 7B69B42DFF503DFC784A79D2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 1F093643851476294E4DF1C8 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 862D91464BD6C32DACC110CD /* Headers */ = { + 7F00EE9249F8973A302CB92C /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 95A52FF4E720C126DE092E83 /* Headers */ = { + E085CF894D47FF6C9A3CD5B0 /* AdminFacetFactory.h in Headers */, + 7B418B8458096FB5EF4C5D1E /* BlobjectFacade.h in Headers */, + FC54082ACCBB1B3E3B7227C2 /* Communicator.h in Headers */, + 1689503B258341EFDDE5BE0B /* Config.h in Headers */, + 1E48B791A1865EB55D9284DA /* Connection.h in Headers */, + 0E7E65D715D1EE6037D10809 /* Convert.h in Headers */, + F873A044FA20C143145F4AB4 /* Endpoint.h in Headers */, + BB0627CE5A909DB8B89570F2 /* Exception.h in Headers */, + 1E44E9A0E1B2863ED614F14C /* IceImpl.h in Headers */, + 967DACE1B78C42A031FA8623 /* IceUtil.h in Headers */, + 641C43C2F02D34F279B4CEFF /* ImplicitContext.h in Headers */, + 8AA8293CDB629E0E92F460B3 /* LocalObject.h in Headers */, + 5359708A14D3FF5119AFCC16 /* Logger.h in Headers */, + 60EACE4E3104FF8141E4212C /* LoggerWrapperI.h in Headers */, + D053C9626C8F6B692897D6AA /* ObjectAdapter.h in Headers */, + 4FE9ACBEB15A45D193EF97D2 /* ObjectPrx.h in Headers */, + 34F29F31D596DF12B4205EE6 /* OutputStream.h in Headers */, + 495A47AEE0C8881638302999 /* Process.h in Headers */, + 06C7FA26056AC4243C624FE1 /* Properties.h in Headers */, + 399B3AE9CD7D52AA3D974DF7 /* PropertiesAdmin.h in Headers */, + 5607DD25299446F07752A306 /* TraceUtil.h in Headers */, + 1FA9E9F00108DE8B22E3C509 /* UnsupportedAdminFacet.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 9FEE05592AE8324AF9E79454 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0C347CE8ECF5359625657A8D /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A08B15AFFA3944C7821C1B10 /* Headers */ = { + A38E08479830289204BF8B25 /* 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 */ = { + ); + runOnlyForDeploymentPostprocessing = 0; + }; + AD941286EF374900A28FB073 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 101D930E1A7C0CEB2DEA102C /* IceStormSwift.h in Headers */, + C8877B3C819990B6BC7A690D /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C0163E91CDC9FFCAB5153307 /* Headers */ = { + B3C4707A58EB85EFE586EA8D /* 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 */ = { + 1E7FC6A3FCC753DC5AC50711 /* Glacier2Swift.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B928A3C1C8C85243F11116AE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D253C1F407233ACF50F5774F /* Headers */ = { + DF467E18F4E5D6A05EE41E21 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EC3A953B46501F7CE882BAF8 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - F82DA7A1C51117B4CA705540 /* Headers */ = { + E7B95495F3F9FAA4C144754E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 20F5F1E6B7E664860383BA12 /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */ = { + 0210DABE4A3F8E46162FC09A /* IceFacets macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 37C3F9ED3466456577D5EA1E /* Build configuration list for PBXNativeTarget "TestCommon iOS" */; + buildConfigurationList = CDCDD4A7D4900CC95A64A7D0 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */; buildPhases = ( - C333F8FB29799EEF1651CEC5 /* Headers */, - F643D4D9720F7126ED408D82 /* Sources */, - 60CA31B074CDF4D99A3ED0B5 /* Frameworks */, - 1C7AE443B82A3F9D218FF429 /* Resources */, + 1C37E763A2EF713D8ACE1C17 /* Sources */, + A69A460CEF11FDC219381533 /* Frameworks */, + 6622AA71B0D61E2BBD5F81CF /* Resources */, ); buildRules = ( - 1C375202C956F2D48BA3ED28 /* PBXBuildRule */, + CC080E7B675EE59A2EBB5267 /* PBXBuildRule */, ); dependencies = ( + 566680A0045B5FC0A2FBB40E /* PBXTargetDependency */, + E68C4D1E19DC1BD7420EA436 /* PBXTargetDependency */, ); - name = "TestCommon iOS"; - productName = TestCommon; - productReference = 2EA069A716E434C038F0318F /* TestCommon.framework */; - productType = "com.apple.product-type.framework"; + name = "IceFacets macOS"; + productName = IceFacets; + productReference = 7009D84B5EA234435C031C1D /* IceFacets.bundle */; + productType = "com.apple.product-type.bundle"; }; - 08063B79E151583B4BCA64E2 /* IceSlicingExceptionsAMD iOS */ = { + 02E12A01B24B3B3E6927EAD6 /* IceStorm iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AE6610CCC8687AE5744A53F6 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */; + buildConfigurationList = B097866F7C9739FE146CBADC /* Build configuration list for PBXNativeTarget "IceStorm iOS" */; buildPhases = ( - D1B441C4A5BCB25875982891 /* Sources */, - 0B40E563316A44A6683EA42E /* Frameworks */, - D3024D65B43BE097AC35B277 /* Resources */, + 2B9C8382E410BB2D42CA9879 /* Headers */, + 0B4840C77677AEF89D0AF797 /* Sources */, + 2D9A966D2716D3CFC47D3599 /* Frameworks */, + A467A25D14A61D0C3C8243A2 /* Resources */, ); buildRules = ( - 3A33010CA67242C2D53EB955 /* PBXBuildRule */, + 0DCF0D46E3E230305834ECF7 /* PBXBuildRule */, ); dependencies = ( + 53A0109717E72F079E06AE34 /* PBXTargetDependency */, ); - name = "IceSlicingExceptionsAMD iOS"; - productName = IceSlicingExceptionsAMD; - productReference = 3CC388484314A4D11DA2CEA8 /* IceSlicingExceptionsAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceStorm iOS"; + productName = IceStorm; + productReference = 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */; + productType = "com.apple.product-type.framework"; }; - 086D7EFAFD5B99B06915E82A /* IceStorm iOS */ = { + 032E51349714AC140B16B6B4 /* IceOptionalAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BFB94717F4ED2D23EF213F86 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */; + buildConfigurationList = 5220219DB0289DD3A3F01180 /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */; buildPhases = ( - B3C3AC5BC61ACC051E40A9DA /* Headers */, - B0F22D921EF6432E4BB4E571 /* Sources */, - A75D3924BD339CBD5D8F513E /* Frameworks */, - 2B6D42C2F6ECF0E16FFD13A1 /* Resources */, + ED09550AE8FA94ADE0975A42 /* Sources */, + AD17D36FCAD1C1D0249C4216 /* Frameworks */, + A3517EBE1153EBFFA40E1EDB /* Resources */, ); buildRules = ( - 61C6F8B373F05C401E109411 /* PBXBuildRule */, + 29E4309E99D7B07919B4D720 /* PBXBuildRule */, ); dependencies = ( - 6C9FB4EE32EF3B1523B6F351 /* PBXTargetDependency */, ); - name = "IceStorm iOS"; - productName = IceStorm; - productReference = F7687536A74185F0859012B6 /* IceStorm.framework */; - productType = "com.apple.product-type.framework"; + name = "IceOptionalAMD iOS"; + productName = IceOptionalAMD; + productReference = 977C1FE11405DDDBFB5775A2 /* IceOptionalAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - 0A512D4AD4749C7C7490FAC3 /* TestDriver macOS */ = { + 0520084212F98FC56E36026A /* IceLocation macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C417073A078CD94D7E1005A8 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */; + buildConfigurationList = 3693852902D60EDEB5D8B27F /* Build configuration list for PBXNativeTarget "IceLocation macOS" */; buildPhases = ( - 4F4F1E94D663663849203055 /* Sources */, - 1E292281FE72E31B659889D0 /* Frameworks */, - AF3BB72482297F0E1B6BC422 /* Resources */, - FE2A2E12EADD764C6E1249C9 /* Copy Frameworks */, - 87798ACFBEEF1C10BC811D29 /* Copy Symbols */, + 3489D071F380B1656A917FE2 /* Sources */, + 806C0D38FBCA56C743153425 /* Frameworks */, + 5EE01CAADBEB7A0A53E33276 /* Resources */, ); buildRules = ( - E9F0B8E6967BCBEEBDE3820E /* PBXBuildRule */, + ECA001EC16338B375200B5F6 /* 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 */, + 0FBE96A84BC1484537A5FD45 /* PBXTargetDependency */, + 7CFB1EAE4986B09E929407BC /* PBXTargetDependency */, ); - name = "TestDriver macOS"; - productName = TestDriver; - productReference = A6243D389694D099C0184BCF /* TestDriver.app */; - productType = "com.apple.product-type.application"; + name = "IceLocation macOS"; + productName = IceLocation; + productReference = 5CA31F719AC415E991FB8790 /* IceLocation.bundle */; + productType = "com.apple.product-type.bundle"; }; - 11C4703EE1A20D4D647A2951 /* IceDefaultValue macOS */ = { + 065FE0308F8C069FEF18896D /* IceServices macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3D3AF29DF96C8805B78B7E6E /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */; + buildConfigurationList = C0BAC8D2F2BDDC628B47F70C /* Build configuration list for PBXNativeTarget "IceServices macOS" */; buildPhases = ( - 53B88EA48DF75A01F277AAE1 /* Sources */, - 42B5B51628781D8D580FCCA9 /* Frameworks */, - 11DE8E3AFC096D98FAE6C731 /* Resources */, + 792BDCA9FBE22AB30651FA77 /* Sources */, + E2174B22E1A853074D86D4D2 /* Frameworks */, + DCD01EBCC135470D053D910A /* Resources */, ); buildRules = ( - C803868AD619AB7FA87719EA /* PBXBuildRule */, + 0F9586CF2348081A43AE65D0 /* PBXBuildRule */, ); dependencies = ( - 9E17DD7FFF15EFAF825726DD /* PBXTargetDependency */, - D37F5AE837E34553E9A91018 /* PBXTargetDependency */, + 77EC7D9DEE34A6B7F04BCD70 /* PBXTargetDependency */, + A497425BB144004D91B3A24C /* PBXTargetDependency */, + 7542658B1836A7406DA10C95 /* PBXTargetDependency */, + B32A054F28A69988E16FDE93 /* PBXTargetDependency */, + 6C652077FC7503CFC40710A8 /* PBXTargetDependency */, ); - name = "IceDefaultValue macOS"; - productName = IceDefaultValue; - productReference = B85B17A8DB3D78F163220271 /* IceDefaultValue.bundle */; + name = "IceServices macOS"; + productName = IceServices; + productReference = 64826F8AA2F1B443C0AEFD5C /* IceServices.bundle */; productType = "com.apple.product-type.bundle"; }; - 1461134F8E13923F515F804D /* IceImpl iOS */ = { + 0763ED05481F11F83E2EE767 /* IceStorm macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 09AB6F8D633729C8866C99B4 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */; + buildConfigurationList = 311CC0626756F8DC8C37E0C0 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */; buildPhases = ( - C0163E91CDC9FFCAB5153307 /* Headers */, - 1FE3BCBFBD382776A51C1AC0 /* Sources */, - 1054FB4FA1C7CF26A6A0D064 /* Frameworks */, - 8830916F0B9E04B4ECF78DB5 /* Resources */, + AD941286EF374900A28FB073 /* Headers */, + 8184C195194F6FB5999C1A34 /* Sources */, + E13F2754E63755D244B6DFE9 /* Frameworks */, + 41AFD2D8C8E2742DEE69B459 /* Resources */, ); buildRules = ( + 004224CFB509E7C1FC39428F /* PBXBuildRule */, ); dependencies = ( - 8E7C7D84D79C288BB564C397 /* PBXTargetDependency */, - 850E3B2E3F2688C9FA8F1679 /* PBXTargetDependency */, - 243F7F3833E86D05FF757D65 /* PBXTargetDependency */, + 784F589616673E41E6E10577 /* PBXTargetDependency */, ); - name = "IceImpl iOS"; - productName = IceImpl; - productReference = 297ABB350A7C637780C074E9 /* IceImpl.framework */; + name = "IceStorm macOS"; + productName = IceStorm; + productReference = 102C8EBB7B156230C64E8D84 /* IceStorm.framework */; productType = "com.apple.product-type.framework"; }; - 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */ = { + 0A1278D024EC2ADD3E42D968 /* IceExceptions iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3A444FA93CDBF94FECF32EF7 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */; + buildConfigurationList = 260FA577E2C3E38F2A27CF02 /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */; buildPhases = ( - F82DA7A1C51117B4CA705540 /* Headers */, - 2390D8B4F7C3CBB00255E8C6 /* Sources */, - 62526843A68A93AD8005A93C /* Frameworks */, + D9321E417D66FDC352F91E8A /* Sources */, + 6EE23CD5E6D19F5FB0EF8DD5 /* Frameworks */, + 55AAF8555FBD4EEEAC6CF25A /* Resources */, ); buildRules = ( - DEF7AB418DFE189C238F7B8D /* PBXBuildRule */, + 763D1ED0B8332881198D49B8 /* PBXBuildRule */, ); dependencies = ( + B250A10EA0C9DECC08C517CE /* PBXTargetDependency */, + 8372F8B77792626C7161922D /* 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 = "IceExceptions iOS"; + productName = IceExceptions; + productReference = DF969510683D898EFE4084C0 /* IceExceptions.bundle */; + productType = "com.apple.product-type.bundle"; }; - 1D8E308F3BB453AE7F0F43D1 /* IceLocatorDiscovery C++11 iOS */ = { + 0FE313AA3347701853A8ACC2 /* IceScope iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3F28405D195B02F119A124AA /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */; + buildConfigurationList = 67954058AE74D657CE73E879 /* Build configuration list for PBXNativeTarget "IceScope iOS" */; buildPhases = ( - 8323A7E88064AE338418B26B /* Headers */, - D64890E98A72ADBFDFA02D73 /* Sources */, - CA98DBD4C387687255A8FBCD /* Frameworks */, + 13267D0E93EC0E98F66BB8E8 /* Sources */, + BDDB8118BD2E41D589C48638 /* Frameworks */, + 65A1D9F4C1DE7EC581D22A5B /* Resources */, ); buildRules = ( - 2D97F5D2FA163CCE8AC3B7D6 /* PBXBuildRule */, + 44AAB332860E31A022811D8C /* PBXBuildRule */, ); dependencies = ( - 3546E3EA54642322837E9CC2 /* PBXTargetDependency */, + 9BE01873452B4CDE2505E761 /* PBXTargetDependency */, + B1EA7490102A614CD39BDA79 /* PBXTargetDependency */, ); - name = "IceLocatorDiscovery C++11 iOS"; - productName = "IceLocatorDiscovery C++11 iOS"; - productReference = 95C4777E39FA8DD4FBD09FD6 /* libIceLocatorDiscovery C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceScope iOS"; + productName = IceScope; + productReference = 0AF49C110C762F572C744977 /* IceScope.bundle */; + productType = "com.apple.product-type.bundle"; }; - 224A65D1A8B6FBED3FA62D9D /* TestDriver iOS */ = { + 1351B844542309876A23C297 /* TestDriver macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6620D36133716E2A0E3BC9AD /* Build configuration list for PBXNativeTarget "TestDriver iOS" */; + buildConfigurationList = 23EB73EBAAF47155243FEAF5 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */; buildPhases = ( - 33F8FA552E0D09D5BD6A7974 /* Sources */, - C3DAEA1191A26EC1A664D6D6 /* Frameworks */, - 40269C15DD5D60F285915626 /* Resources */, - CDD63FFC164A91851939E3AA /* Copy Frameworks */, - CFE22D2D567F96EB6E32E3F3 /* Copy Symbols */, + C85E6EAE3323C931667E87A4 /* Sources */, + 29F7D70D4B2EECA821F5FD18 /* Frameworks */, + 4ECFD74C1B3163DA11B8470D /* Resources */, + 440CDC3992F6F8DEDC8FF875 /* Copy Frameworks */, + B8CBC486347FCEEA7EEA81CD /* Copy Symbols */, ); buildRules = ( - 79065FBA33ECBF04C1CEA5C3 /* PBXBuildRule */, + DF94B80C79B35D09316699A7 /* 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 */, + CD026E743E238B67FB126CF4 /* PBXTargetDependency */, + 2BAAD90F90C6A90A021E6A76 /* PBXTargetDependency */, + 8424FEE4E9D597D4BA072BEC /* PBXTargetDependency */, + E7D0BCA7B6CE9083E6FDA175 /* PBXTargetDependency */, + ED059F1D27D335B3B3C32D68 /* PBXTargetDependency */, + 5A0FCC92D3699768A160D6D6 /* PBXTargetDependency */, + 35B27061E8112FA1B6B66318 /* PBXTargetDependency */, + EB267888323925AD46EE8F50 /* PBXTargetDependency */, + 02823461962BC2A525DCCF4E /* PBXTargetDependency */, + 376ABE64AF659ECA8C22D231 /* PBXTargetDependency */, + 3DE284C4F6FCB5781D328A55 /* PBXTargetDependency */, + 410FDF4952B010B0945C3C8C /* PBXTargetDependency */, + 555EAEE8DFFC8D4D221B2BB2 /* PBXTargetDependency */, + 56513DA127D1C68ACCBA0B8C /* PBXTargetDependency */, + 5E712366BD04AB698D4EEE87 /* PBXTargetDependency */, + 7A7758F7AE666F1EBFDF5EB3 /* PBXTargetDependency */, + 158203B2E8EA9B27230C32E6 /* PBXTargetDependency */, + 21EFE1CC52F99DA8714377F4 /* PBXTargetDependency */, + 80EF4016774DA399DD1B1987 /* PBXTargetDependency */, + A88ACEF96D50D5914BD3DC92 /* PBXTargetDependency */, + BD7815CE5D3ED4B6360BA769 /* PBXTargetDependency */, + 384D047B6C9F2863BFB31590 /* PBXTargetDependency */, + A62FEAA4E469B98C82503827 /* PBXTargetDependency */, + CDA9FFCA9232FD60A26F7D22 /* PBXTargetDependency */, + B4972BED37D4C4FAF0372BC3 /* PBXTargetDependency */, + F688DECE8B107A49A6AD8DCF /* PBXTargetDependency */, + 3DBE085DFD2E881FF58E52E9 /* PBXTargetDependency */, + 000557CC81C9632BB5D26D8B /* PBXTargetDependency */, + 74A57853F75F6CDA4348E446 /* PBXTargetDependency */, + AF533C8405620F251028A4E9 /* PBXTargetDependency */, + D2B93A66D1C5BFB26864EE66 /* PBXTargetDependency */, + C81E1EEBD11F06A34298A694 /* PBXTargetDependency */, + 7FB3F0BD3A0991E0CAF69DFA /* PBXTargetDependency */, + 89C9ED5DBA335F17B96A0507 /* PBXTargetDependency */, + 07F76D4D9005A939736B6911 /* PBXTargetDependency */, + C3138A5B1B62555F56113792 /* PBXTargetDependency */, + 45FF4770D67E760A94627B7F /* PBXTargetDependency */, + B140730A523448E31C4552CE /* PBXTargetDependency */, + F84CB7D8874C47223236E6E2 /* PBXTargetDependency */, + 191F2DF8F559B727A0B9A104 /* PBXTargetDependency */, + 71CCF13118C59068AE4C30A4 /* PBXTargetDependency */, + 4E2B168180317E2A65AFB156 /* PBXTargetDependency */, + 193BA6ED5F91A3E91A7987F7 /* PBXTargetDependency */, + D0866759E0F64B5A3BDE27E1 /* PBXTargetDependency */, ); - name = "TestDriver iOS"; + name = "TestDriver macOS"; productName = TestDriver; - productReference = CAAE15001A3C252F22A5E566 /* TestDriver.app */; + productReference = BCCD7A2776EFD0C816828644 /* TestDriver.app */; productType = "com.apple.product-type.application"; }; - 246FEE224D85BEE24C2D1581 /* IceServantLocator iOS */ = { + 137A22811E93D82B716007C8 /* Glacier2 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C11BB948A633390FEA571628 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */; + buildConfigurationList = 6F15C88FC57ADE62FA48D631 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */; buildPhases = ( - 91631103ED35069287E4C528 /* Sources */, - 8E638FBEA17B67241BF63E4A /* Frameworks */, - 4EF3FEB29DCD03F143853A03 /* Resources */, + B3C4707A58EB85EFE586EA8D /* Headers */, + 1FFD8FD2EA3186FD2989F8CE /* Sources */, + FCF71E3C27BBBE5D6E66044C /* Frameworks */, + 3E34C18B5CF5991309F8C2E7 /* Resources */, ); buildRules = ( - 7A406C9507E9F0183666FACE /* PBXBuildRule */, + 68C2715B73A2D8D20ADB2DA5 /* PBXBuildRule */, ); dependencies = ( - A473622614263821F53C3D47 /* PBXTargetDependency */, - 8ABF02C70DC6AFC5C4BEB93A /* PBXTargetDependency */, + 461396EE57D51DE72FBAB3CE /* PBXTargetDependency */, ); - name = "IceServantLocator iOS"; - productName = IceServantLocator; - productReference = 715E4D917D550570FD3CFF6A /* IceServantLocator.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Glacier2 macOS"; + productName = Glacier2; + productReference = E00667716A1C103FAC5F4862 /* Glacier2.framework */; + productType = "com.apple.product-type.framework"; }; - 25D99E456ADFE5745483AC23 /* IceExceptions macOS */ = { + 1714972356F07102A679833E /* IceInterceptor macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 8CE6DA8DD65F344C44C20ECF /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */; + buildConfigurationList = 2D984BDC022D5237A7868BA4 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */; buildPhases = ( - F42BAD6D9D3F6B9853BC13E8 /* Sources */, - F4F4BCC0ACD0684EC9228104 /* Frameworks */, - 81BD0E9F6E7BDA7AD85D038B /* Resources */, + EBA356C27D4FAF52E2FB0AAB /* Sources */, + 81D5B9AC37AD06D7F36426CC /* Frameworks */, + 1A47BFF86DBE1D7DC11C0867 /* Resources */, ); buildRules = ( - E2598B04DB03DCEAC4D8DCD7 /* PBXBuildRule */, + 865847DA2C67708B4CFE870A /* PBXBuildRule */, ); dependencies = ( - A7BC4711D90476B21C97247A /* PBXTargetDependency */, - DFA3E5B85E1F8F2CC25C85A3 /* PBXTargetDependency */, + 9836538E8EA0AF80582F8BC0 /* PBXTargetDependency */, + D9661EC214A87FEC6F26326F /* PBXTargetDependency */, ); - name = "IceExceptions macOS"; - productName = IceExceptions; - productReference = 2215FA4DF66DE6FD987EDA9A /* IceExceptions.bundle */; + name = "IceInterceptor macOS"; + productName = IceInterceptor; + productReference = 698CE5506A44CD12B6835C88 /* IceInterceptor.bundle */; productType = "com.apple.product-type.bundle"; }; - 263FF8D1D5EF5BA8F4E3FDFA /* IceOptional iOS */ = { + 182B60B239B1CC9AAF97C3ED /* IceSSLConfiguration macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 544620CA4E7FECF228A7C8A6 /* Build configuration list for PBXNativeTarget "IceOptional iOS" */; + buildConfigurationList = EA5565BC88E3B4CF63433B39 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */; buildPhases = ( - 11EEF36BD08AA248E8542312 /* Sources */, - 8681D5A664086601EC157CD3 /* Frameworks */, - 681BA32B0A7BB400CB929FAF /* Resources */, + 99007BBB653F6A4522FC1EB6 /* Sources */, + E2988144001FB558C7913EA1 /* Frameworks */, + FBDF8399AC587C86B17BBFDC /* Resources */, ); buildRules = ( - 2F376C8322F16F151615FE07 /* PBXBuildRule */, + CBC1E6F17724241F37D0F5E5 /* PBXBuildRule */, ); dependencies = ( - 8281FF63885EA22DAC514FC6 /* PBXTargetDependency */, - B772D4413BDE6F23CFE5AB9A /* PBXTargetDependency */, + A54A8023DAA2646B9E387228 /* PBXTargetDependency */, + 8469BC8DE06514C0EC4415B2 /* PBXTargetDependency */, ); - name = "IceOptional iOS"; - productName = IceOptional; - productReference = 27341FF2E126E6E82D9FAE9B /* IceOptional.bundle */; + name = "IceSSLConfiguration macOS"; + productName = IceSSLConfiguration; + productReference = 397D6E5EA9E00485DEEDF569 /* IceSSLConfiguration.bundle */; productType = "com.apple.product-type.bundle"; }; - 2AD01C6A244838BF6DABEF5C /* IceLocation iOS */ = { + 1849F40335AEAFEAB939B520 /* IceServantLocatorAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 72783896962E4BC50A3C078C /* Build configuration list for PBXNativeTarget "IceLocation iOS" */; + buildConfigurationList = C13AEC2E435E896E8FBD5649 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */; buildPhases = ( - 8A88D1A62B1848F7C88FC3C7 /* Sources */, - EEDEA6EC91B4BA3437E07BF0 /* Frameworks */, - 1F945391D69F33A9E57CC7AE /* Resources */, + C95E4F45F7796D2824F91CFD /* Sources */, + 276DBE3784B7F1938128A4AA /* Frameworks */, + 56E232529AC0563BD6BB03DB /* Resources */, ); buildRules = ( - 0466AC2D98B8B1797376E136 /* PBXBuildRule */, + FEB3111859F1906BC9DD77BA /* PBXBuildRule */, ); dependencies = ( - A758FEB00F45F43548A58C3E /* PBXTargetDependency */, - 7F60111AC7F5F12B6F78594E /* PBXTargetDependency */, ); - name = "IceLocation iOS"; - productName = IceLocation; - productReference = BB964A860C92F7275D083A26 /* IceLocation.bundle */; + name = "IceServantLocatorAMD macOS"; + productName = IceServantLocatorAMD; + productReference = DF1CA6ABA240EB1DCE0DCA9E /* IceServantLocatorAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 2C9432880D461B94B2829F4D /* IceAmi iOS */ = { + 1AAB45470D9803BF85F70BF0 /* IceBinding iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 927086629D95F4C65DC7D986 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */; + buildConfigurationList = 7AF911822DEE95ED274B0A63 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */; buildPhases = ( - 6FD2D17AE02290CDDAF7189F /* Sources */, - D38A7982F950B86FBDBB5556 /* Frameworks */, - 54D05D33A232F0FB772E8DBA /* Resources */, + B0C83D7E31A8D4A8EBF9E33B /* Sources */, + 388E9580B94953505195FEBE /* Frameworks */, + 251A43C91E2D94E01B5F65AC /* Resources */, ); buildRules = ( - 0C5CEDF0AEA0C1E49A457740 /* PBXBuildRule */, + C7B22BC973A3D0530889FDC4 /* PBXBuildRule */, ); dependencies = ( - C79F9A84C9780954C4B2A2D7 /* PBXTargetDependency */, - 28E1AC7D63064F6EED56D35E /* PBXTargetDependency */, + B31CA61BAECA3671B98FC954 /* PBXTargetDependency */, + 87D911C3E22577CF86C47968 /* PBXTargetDependency */, ); - name = "IceAmi iOS"; - productName = IceAmi; - productReference = 5A68B6650365588738DD6CA4 /* IceAmi.bundle */; + name = "IceBinding iOS"; + productName = IceBinding; + productReference = FEB045E2BE5B2791729997F6 /* IceBinding.bundle */; productType = "com.apple.product-type.bundle"; }; - 2D69E78989BA05C0A499A44D /* IceHold iOS */ = { + 1B61C6EBFA17380F9C3CC36E /* Ice macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D3EE323899CFE50C8FF01A4C /* Build configuration list for PBXNativeTarget "IceHold iOS" */; + buildConfigurationList = B2B98177DDD46EE593305650 /* Build configuration list for PBXNativeTarget "Ice macOS" */; buildPhases = ( - 82D127E91FF466629629CAB0 /* Sources */, - A2E7C82065BE84DCB2D44F40 /* Frameworks */, - 918C367420551112E63DF3BF /* Resources */, + E7B95495F3F9FAA4C144754E /* Headers */, + DC9F71DD24521C3C5FCF9509 /* Sources */, + E834D2A2201449AA539C8B3A /* Frameworks */, + 77D43E15944D6D68CD63D3AC /* Resources */, ); buildRules = ( - 63D573DC53F83A59A80709FB /* PBXBuildRule */, + EEDA6000FD40D396D43D25FC /* PBXBuildRule */, ); dependencies = ( - 3BD980643A11F94F555DE698 /* PBXTargetDependency */, - 624562FE9AF40419990B7DE9 /* PBXTargetDependency */, + B48AB98E8E8805BCBEC6BA31 /* PBXTargetDependency */, ); - name = "IceHold iOS"; - productName = IceHold; - productReference = 5C22AA8771C989C5BBD131D5 /* IceHold.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice macOS"; + productName = Ice; + productReference = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; + productType = "com.apple.product-type.framework"; }; - 32B8209C4A20C3D8A8496A49 /* IceServices macOS */ = { + 1F921787D1BBEBC84AF46F5D /* IceSlicingObjectsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6B93B8C9D017B7D0B3CDCD23 /* Build configuration list for PBXNativeTarget "IceServices macOS" */; + buildConfigurationList = 082B20DA5873A1E188F2B846 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */; buildPhases = ( - BCEB796595D0483CD00AFFFF /* Sources */, - 58D9E510A9859F1DF2FBC7E4 /* Frameworks */, - 06F0772BDA7723CA21DCF0BA /* Resources */, + ACB7C5609B10FAB2A178F1A0 /* Sources */, + BCA5BF6A710C8DDB182F84DF /* Frameworks */, + 84ACD97B1C481AE94F144C5B /* Resources */, ); buildRules = ( - 7C90749B9EADCC92591D2928 /* PBXBuildRule */, + 8B137D938FD033910546D033 /* PBXBuildRule */, ); dependencies = ( - 6FD74D84EEB6D1522D4BDE79 /* PBXTargetDependency */, - D66CEB67000C3EB8E6EDDBAD /* PBXTargetDependency */, - B02A518685B8288E303542CC /* PBXTargetDependency */, - 20D0E9047A43F154E11D5E6F /* PBXTargetDependency */, - 4124CC268695417E739EC1F7 /* PBXTargetDependency */, ); - name = "IceServices macOS"; - productName = IceServices; - productReference = 824FC6BA5BCE19588DEC2AD8 /* IceServices.bundle */; + name = "IceSlicingObjectsAMD iOS"; + productName = IceSlicingObjectsAMD; + productReference = E7B4AD1931A23E635750A562 /* IceSlicingObjectsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 33115CA925E128B5715AB93A /* IceExceptionsAMD iOS */ = { + 204D17961BE241E9AA6931C4 /* IceSlicingExceptionsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D071476039D59E60FB986A4E /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */; + buildConfigurationList = 65DA3EE375E8CE4A5E2FCF3F /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */; buildPhases = ( - EB3E64B349C3B416A390C7C4 /* Sources */, - 1A7F3764046C3DBAE17928D9 /* Frameworks */, - AA1B909021714E00B440AD52 /* Resources */, + 0B28994B972EEAB0CFB67C3E /* Sources */, + 8460563DABEDFA47B835BE67 /* Frameworks */, + E7080BC54D8C04FAED0C3C9F /* Resources */, ); buildRules = ( - 4190A7D7231109E37C9C3FB6 /* PBXBuildRule */, + B72BE837295DF17DDFD40108 /* PBXBuildRule */, ); dependencies = ( ); - name = "IceExceptionsAMD iOS"; - productName = IceExceptionsAMD; - productReference = 33C7DBD13018E9D53A2497D4 /* IceExceptionsAMD.bundle */; + name = "IceSlicingExceptionsAMD macOS"; + productName = IceSlicingExceptionsAMD; + productReference = 2967E04C4326091B1910DB93 /* IceSlicingExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 3C65AA8108580E3668BDBC3F /* IceOptionalAMD macOS */ = { + 205D8173670283F9A6ADDECA /* IceOptionalAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EC4DBEF8FA6B0A7A7177F50B /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */; + buildConfigurationList = 7A305DD21906A670D3F6D12C /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */; buildPhases = ( - F8DF0C296DD163C4546CE134 /* Sources */, - 85E1224885777FE59B8588A0 /* Frameworks */, - BAA4CEF76B1734DBEA8A30BB /* Resources */, + 837412A9BCB1C7BC61B63653 /* Sources */, + C5BE5834A1E5B9502F92849C /* Frameworks */, + EE7DEDECFCEDD205693251F2 /* Resources */, ); buildRules = ( - E033A20E7D64CF05863C7D83 /* PBXBuildRule */, + F65ADC4709B3D7098379FDB4 /* PBXBuildRule */, ); dependencies = ( ); name = "IceOptionalAMD macOS"; productName = IceOptionalAMD; - productReference = A36EC0AEC31627FD61F14E27 /* IceOptionalAMD.bundle */; + productReference = BF3F7C97E46FF31D7DBAFF42 /* IceOptionalAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 3C66C239BBA518B87D48C1C3 /* IceSSLConfiguration macOS */ = { + 214682343A5CDC54C07B1A1B /* IceHold macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BCAEC8A06C1D19270BDAC8E0 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */; + buildConfigurationList = 7DD80A81A453D2724906B5D5 /* Build configuration list for PBXNativeTarget "IceHold macOS" */; buildPhases = ( - 98EC66C7A6A09AD7A89D0FB1 /* Sources */, - 5D433EC02B004D382ACC5A6B /* Frameworks */, - D15A327509A465D555D2A85A /* Resources */, + 349D51B9EDBE11F8743E7CBC /* Sources */, + 175CCCC5FCB49F902F463E46 /* Frameworks */, + 50B468D44F74C3900D93241E /* Resources */, ); buildRules = ( - 9857D4A53D3975A39E217C0C /* PBXBuildRule */, + 23DBFE117A0213EDA0978F3C /* PBXBuildRule */, ); dependencies = ( - 33BB3C3D618E4D1F283E6C99 /* PBXTargetDependency */, - D9EC6B5F6D429EFE5A7478CD /* PBXTargetDependency */, + C8B015F8C20EF516FDB222EC /* PBXTargetDependency */, + 9026F726E66782655ECF0627 /* PBXTargetDependency */, ); - name = "IceSSLConfiguration macOS"; - productName = IceSSLConfiguration; - productReference = E2DB3B0D04B959637ABED20A /* IceSSLConfiguration.bundle */; + name = "IceHold macOS"; + productName = IceHold; + productReference = D8766C6DCAB7BABFE071D77E /* IceHold.bundle */; productType = "com.apple.product-type.bundle"; }; - 3C8F64BC2EB740FC26540C5A /* IceEnums macOS */ = { + 26B6DCD78B127AE4BDB35209 /* IceRetry iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5E374F0988577EC8EA81AB28 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */; + buildConfigurationList = 12D84B08BD2E17377429CD9A /* Build configuration list for PBXNativeTarget "IceRetry iOS" */; buildPhases = ( - 403C21BBA17FF2D6F20B6928 /* Sources */, - 257358A49EDC4DD950BE92C9 /* Frameworks */, - ABEF760012041C70AC8B5376 /* Resources */, + F6DF1DCD51C0EA0E25420646 /* Sources */, + 08D5DEC763216EFC1714B04D /* Frameworks */, + 0A6F59B190567DCB370BCFD8 /* Resources */, ); buildRules = ( - 30D86CB9DA45178F1428181C /* PBXBuildRule */, + AF2534F44B95A47ADDFDF67B /* PBXBuildRule */, ); dependencies = ( - DB96A96ABB3660110A211A39 /* PBXTargetDependency */, - 82F725F66AF7963DA643F37F /* PBXTargetDependency */, + AF013F8FEADD5AA87CB921C4 /* PBXTargetDependency */, + 8DEE39D33DB085CA080A643B /* PBXTargetDependency */, ); - name = "IceEnums macOS"; - productName = IceEnums; - productReference = C4D7B1A0626DB0DDFD4BD4B7 /* IceEnums.bundle */; + name = "IceRetry iOS"; + productName = IceRetry; + productReference = 3A90857F1CD31FC2193C9C89 /* IceRetry.bundle */; productType = "com.apple.product-type.bundle"; }; - 3CC923BA7EC9201D602FFE65 /* IceAcm iOS */ = { + 287E9414F6A74860FF1188EE /* IceExceptionsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 48F7A82136382EBE8DC0D1A4 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */; + buildConfigurationList = D589334357FA183D27798AED /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */; buildPhases = ( - D84617619F7C20813FF9C29A /* Sources */, - 0EA9E0BBBDCDB4A805183653 /* Frameworks */, - B10D055A09A82B6E5BC9DEF4 /* Resources */, + 8139460A05987B21367408BF /* Sources */, + 92905898A9681A2AAF2E77A7 /* Frameworks */, + 6891FD0DDF35516059510105 /* Resources */, ); buildRules = ( - 8E3847FCC2ACB7BD84BF09A9 /* PBXBuildRule */, + FD27D7E107BB01688F427A34 /* PBXBuildRule */, ); dependencies = ( - B69512CDB44121E19AC47267 /* PBXTargetDependency */, - FA345447FEE4B8C36525199C /* PBXTargetDependency */, ); - name = "IceAcm iOS"; - productName = IceAcm; - productReference = 4926C66009891C6BE3389C72 /* IceAcm.bundle */; + name = "IceExceptionsAMD iOS"; + productName = IceExceptionsAMD; + productReference = CE3EFB47219D60018ECBCE1B /* IceExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 3D1F7E6A7317D6CB8877A0D5 /* IceAdapterDeactivation iOS */ = { + 30CD23A6E9655B858C148892 /* IceAdapterDeactivation macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 147822705D6DB451BE3F544B /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */; + buildConfigurationList = 6BEA27ACF920A238C41BE6D8 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */; buildPhases = ( - 1F90CA3B0F633C9D8D546A84 /* Sources */, - A3FD6EC628483AFEFF0DABDC /* Frameworks */, - 935627C9FAD3A217949C9CD4 /* Resources */, + 9A7C513770B097DD6F2762A8 /* Sources */, + 0B2EA7B0E2BF1399F90BE3D3 /* Frameworks */, + F3EDBCFD3A7A38ABC66567B7 /* Resources */, ); buildRules = ( - CE4D5081162D827202AB5888 /* PBXBuildRule */, + 0DDD9C52FD49098F8B3785BD /* PBXBuildRule */, ); dependencies = ( - 11959A96FE4C532C895E63D2 /* PBXTargetDependency */, - 6253E9AD66F800E28D095533 /* PBXTargetDependency */, + E5B1D04C114B228AAE5931FF /* PBXTargetDependency */, + BF1240667740DFEF9BA536F9 /* PBXTargetDependency */, ); - name = "IceAdapterDeactivation iOS"; + name = "IceAdapterDeactivation macOS"; productName = IceAdapterDeactivation; - productReference = 6A000A916E9BBC2F74F97B21 /* IceAdapterDeactivation.bundle */; + productReference = 7E5BC150A7E6BE558ECEA251 /* IceAdapterDeactivation.bundle */; productType = "com.apple.product-type.bundle"; }; - 4426F98834307DB6D023DE51 /* IceInheritance iOS */ = { + 330758B0C9821D7E1E2243D3 /* IceProxyAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D071E6E67415B1084B7FB2B0 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */; + buildConfigurationList = F5C049476C15902282285C7B /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */; buildPhases = ( - D504994ED86C0EE6327A898B /* Sources */, - AFC321E8DC9AA82D1F23BA2F /* Frameworks */, - 6FCC36506110E88C9381D32E /* Resources */, + 0458B90EEA65443D46CDA233 /* Sources */, + 7E8D149538FE376E6FFABB85 /* Frameworks */, + DC0BBC4BA56D82D8B5F1D138 /* Resources */, ); buildRules = ( - 2BA1008CDE69BB9420622248 /* PBXBuildRule */, + 7A8AC688B641270820DEEF2B /* PBXBuildRule */, ); dependencies = ( - 1B5D072CB3BA0A8077EEC657 /* PBXTargetDependency */, - C2336FE5661BC689D2781566 /* PBXTargetDependency */, ); - name = "IceInheritance iOS"; - productName = IceInheritance; - productReference = 35D9409C55AEE7FF99166B57 /* IceInheritance.bundle */; + name = "IceProxyAMD iOS"; + productName = IceProxyAMD; + productReference = 2A2E598EF61DF473F6F1896D /* IceProxyAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 44669E73C88B6F4F3038B679 /* SliceEscape macOS */ = { + 3922C5D52BCDB27B7A0BD1C2 /* IceExceptionsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AFABD3DE224C0B5C6940A5B7 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */; + buildConfigurationList = B19B12C0EA85D69FF9269DB2 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */; buildPhases = ( - DF2BAEAF833A6D766E15283A /* Sources */, - 03002C90EFE637815A0A72E5 /* Frameworks */, - 9F2219FF729B5FE64200F58E /* Resources */, + 9A2EF05C4152549F1757F5FD /* Sources */, + 5D3DFFC3743FCAF57F57CE46 /* Frameworks */, + 5BC976D4C34BCB3175841B9A /* Resources */, ); buildRules = ( - 66AADE9A203B6E92C0F1391B /* PBXBuildRule */, + 34112FA3CAB0CFDBAB99076A /* PBXBuildRule */, ); dependencies = ( - 877B4C1103BC1DBA5834A2F7 /* PBXTargetDependency */, - BEA47222DCFE0E79497C509D /* PBXTargetDependency */, ); - name = "SliceEscape macOS"; - productName = SliceEscape; - productReference = CA697889B116706378E57DA6 /* SliceEscape.bundle */; + name = "IceExceptionsAMD macOS"; + productName = IceExceptionsAMD; + productReference = F15FB749EF455BD7CA108204 /* IceExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 457BBB51C97A0228B53F703A /* IceExceptions iOS */ = { + 3C1B36794C4B3EFB2B618967 /* IceRetry macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 77D54A7D0B463F31230957CF /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */; + buildConfigurationList = E5F229C1A5B95628F5542D9B /* Build configuration list for PBXNativeTarget "IceRetry macOS" */; buildPhases = ( - 4F5BE157EA5F5E7CBE15AFFA /* Sources */, - F35D18FC2FF416D7E79FFB7A /* Frameworks */, - 602A87F27A8F4F8C32D06E9D /* Resources */, + C3F8C582C2352BF2FCC0F81A /* Sources */, + 5F05253C5A8A79C321DDCB72 /* Frameworks */, + 1B108CE5FAF58D62083D14B5 /* Resources */, ); buildRules = ( - F713BCB2DE19D0204969C4C3 /* PBXBuildRule */, + 1DD5AA8184DF6DA93A755326 /* PBXBuildRule */, ); dependencies = ( - F1A84E7CFB79C5A2022D547F /* PBXTargetDependency */, - F20D5C5EA88A15EF6715202D /* PBXTargetDependency */, + 3CFDC36ED886B57BC4C00866 /* PBXTargetDependency */, + 4200DF6902C6C3AF1A0FE39F /* PBXTargetDependency */, ); - name = "IceExceptions iOS"; - productName = IceExceptions; - productReference = 36C71BAF8FD41F9650AE8686 /* IceExceptions.bundle */; + name = "IceRetry macOS"; + productName = IceRetry; + productReference = CABAAA81FDF2158619AA51BB /* IceRetry.bundle */; productType = "com.apple.product-type.bundle"; }; - 45B627654A6C6E672B177B58 /* IceSlicingObjectsAMD macOS */ = { + 408FAEC665C8C38D7A2248A7 /* IceDefaultServant iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F8010370F463A7F2210C530C /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */; + buildConfigurationList = 304C8B1D7F902B92FF4F7FD7 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */; buildPhases = ( - C8477A0FED449B4755E04676 /* Sources */, - A8BB4A1FD3E0B51E85DC7E4D /* Frameworks */, - 7F58FD2056AE8441930B01D6 /* Resources */, + 5205454E600CF041B66BE774 /* Sources */, + 2A44D1A66AB186DC218C9267 /* Frameworks */, + 093C5CD6E55478880A44AA9D /* Resources */, ); buildRules = ( - 74A132106B8ED6BDC6AD0A55 /* PBXBuildRule */, + 4CD37FEA4E1356B16598939F /* PBXBuildRule */, ); dependencies = ( + 3BC969C7F2AFAD0E3A038D2B /* PBXTargetDependency */, + 999DBEC3129B500169220DB6 /* PBXTargetDependency */, ); - name = "IceSlicingObjectsAMD macOS"; - productName = IceSlicingObjectsAMD; - productReference = C9B36D91B9D68383E5F105B3 /* IceSlicingObjectsAMD.bundle */; + name = "IceDefaultServant iOS"; + productName = IceDefaultServant; + productReference = A84471908266098F39B2D842 /* IceDefaultServant.bundle */; productType = "com.apple.product-type.bundle"; }; - 47118015D4FFF9159FC93434 /* IceAdmin iOS */ = { + 45F2051058E66C596838C08E /* IceAdmin iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0644D9F4813142CF5BD9EDA7 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */; + buildConfigurationList = A5032BE58483039660530CEB /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */; buildPhases = ( - 2ED85B69DBB7BCB74B245580 /* Sources */, - 389135B675237CD8C315291E /* Frameworks */, - BBB6600CFFD8BC939400A241 /* Resources */, + F19017E1D9F12DA2663861F9 /* Sources */, + 2CE99FB7116C174046BE3325 /* Frameworks */, + DCCB743A54EDB138F1A65AD0 /* Resources */, ); buildRules = ( - 20EF03E694DD62EB32DDF0E9 /* PBXBuildRule */, + 28DD4EFFB1C9520539DE741D /* PBXBuildRule */, ); dependencies = ( - 705C9FBEAE168297C58BDA0B /* PBXTargetDependency */, - 29EB864A205D17CBE4C922D8 /* PBXTargetDependency */, + 70BA3A6EAE132BF56B919C33 /* PBXTargetDependency */, + 35357E9E1A4B5309DE819116 /* PBXTargetDependency */, ); name = "IceAdmin iOS"; productName = IceAdmin; - productReference = DF53E5C9769D0305AAB42633 /* IceAdmin.bundle */; + productReference = ACB9AA204E947072B6089FC4 /* IceAdmin.bundle */; productType = "com.apple.product-type.bundle"; }; - 4CA64E4D7C1BECF901572919 /* IceDiscovery C++11 macOS */ = { + 4A4450AB007BDD9E08CDC48B /* IceOperationsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A1A08AD4C010082331DCE136 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */; + buildConfigurationList = D88854720B46BA2754326BFC /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */; buildPhases = ( - 270C88AB742B9A18218C3A9D /* Headers */, - 0512149C8627A81D83BF4C04 /* Sources */, - 4225DE0ABFAFD6A5B629A73F /* Frameworks */, + 96447815E9D4871B57962CBE /* Sources */, + 54B7DC8576899174CD5F5E11 /* Frameworks */, + 904E0E21C02D58FB52ABC27A /* Resources */, ); buildRules = ( - 1B736E4E7FFE3533A30B274E /* PBXBuildRule */, + BE80EF3BB4E02CA5EE251A84 /* 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 = "IceOperationsAMD macOS"; + productName = IceOperationsAMD; + productReference = A590A314799E84457E6B723C /* IceOperationsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - 4CD1512C8E4830F6FAC5E6E4 /* IceSSLConfiguration iOS */ = { + 4E4074DFF5890EB17098C624 /* SliceEscape iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 75D718488E61EC96444BA1F8 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */; + buildConfigurationList = 96024CD2A213A56EA0CDB0C6 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */; buildPhases = ( - 1A3F8E5A8925E89245153CEF /* Sources */, - 171C4A90BA726A75547AF7FE /* Frameworks */, - 73AA1E9492C685AF941C8182 /* Resources */, + FAD4ECED8BEEB141B2709A27 /* Sources */, + 9749DBB85A01DF036830A5A8 /* Frameworks */, + 458A41546A21BEF1A15CE2EA /* Resources */, ); buildRules = ( - 97E3158E2FE22E029A177CE1 /* PBXBuildRule */, + 7B991C6CCABC0AA2E9FB8B02 /* PBXBuildRule */, ); dependencies = ( - D671E2A6668680F0E63DC50C /* PBXTargetDependency */, - C7DA671101B48AA98B65B28E /* PBXTargetDependency */, + 07CE505BF5648B30269F4DC9 /* PBXTargetDependency */, + 5284D32BE16809CC3BF4C3F8 /* PBXTargetDependency */, ); - name = "IceSSLConfiguration iOS"; - productName = IceSSLConfiguration; - productReference = BD7F723468E384E171830EC1 /* IceSSLConfiguration.bundle */; + name = "SliceEscape iOS"; + productName = SliceEscape; + productReference = A6D9088DAAB107784DA16DE0 /* SliceEscape.bundle */; productType = "com.apple.product-type.bundle"; }; - 4F13DB1C06A1425528829C6C /* SliceEscape iOS */ = { + 53EC7722C4E553C8B5189060 /* IceInfo iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1024A86757B4CF06E68A54FF /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */; + buildConfigurationList = A2ED652B8ACFE2E5D1830069 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */; buildPhases = ( - 3660E90F1064A9AF0A193D19 /* Sources */, - C8E3F5B2F0F283B0FA96EF8F /* Frameworks */, - 0C4BBA7FB603E0E94999D1AE /* Resources */, + D34F40178ACFC211A11C58B9 /* Sources */, + D675B054FD409E45A804E723 /* Frameworks */, + 0B1DEE39080B2B5E8A7CAC24 /* Resources */, ); buildRules = ( - 77EE3BF67D50E86264F906AD /* PBXBuildRule */, + C523A5A2902F545CFF1BC083 /* PBXBuildRule */, ); dependencies = ( - F3DB30A9F87EA17DC5AC72C1 /* PBXTargetDependency */, - F9363A4E198BA521DC35D2AC /* PBXTargetDependency */, + DF851CD15E175B9CF10F503A /* PBXTargetDependency */, + 76EBAA25C0E89FC850447018 /* PBXTargetDependency */, ); - name = "SliceEscape iOS"; - productName = SliceEscape; - productReference = F29465792F99C245D88FAB64 /* SliceEscape.bundle */; + name = "IceInfo iOS"; + productName = IceInfo; + productReference = 7F6624BB6F4570C1B15B7C59 /* IceInfo.bundle */; productType = "com.apple.product-type.bundle"; }; - 4FDA69908F50F24A52FA5554 /* IceScope iOS */ = { + 57641F57B5FDCF62AD0FCD45 /* IceFacets iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F5FC90624E257893850F4F24 /* Build configuration list for PBXNativeTarget "IceScope iOS" */; + buildConfigurationList = F2A31FCBF6D5223BA39DC957 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */; buildPhases = ( - EB32919E1E6A8B4A3FAC122C /* Sources */, - 99179EC419F7BE9D94FD7680 /* Frameworks */, - 0AFA071613CDCB0CAFB8ACB0 /* Resources */, + 6C8C84C974D39140120406C1 /* Sources */, + C92627ADB79BCA30657E405C /* Frameworks */, + 2A940B992AA90EF2453DFED1 /* Resources */, ); buildRules = ( - D19E3CA19E1AB471788912B0 /* PBXBuildRule */, + 9CDAD8CE99953C5570CB5E41 /* PBXBuildRule */, ); dependencies = ( - 6F281B7C738EF48FDD11BCC3 /* PBXTargetDependency */, - D770DB7F97FBAA7FF9BB8B80 /* PBXTargetDependency */, + B3D96F5FB71D69F5D938AC3C /* PBXTargetDependency */, + CD7274BC30E2C97E3C21B93C /* PBXTargetDependency */, ); - name = "IceScope iOS"; - productName = IceScope; - productReference = CDD4B038FAF18C50CBAD7DEA /* IceScope.bundle */; + name = "IceFacets iOS"; + productName = IceFacets; + productReference = 5FC1B1B7E470DA1817C0EEA4 /* IceFacets.bundle */; productType = "com.apple.product-type.bundle"; }; - 54C05D7A1468FBA7EB02A914 /* IceInheritance macOS */ = { + 595CBA41E37503369DC5E136 /* IceEnums iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BD8D95737AFD80C1CA704BCA /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */; + buildConfigurationList = FDB4D6BFB37F88D5E6A16C48 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */; buildPhases = ( - 83A76164440CDE56D3480DBB /* Sources */, - 38A30BF368587D5331801126 /* Frameworks */, - 04D722540C7568F760C18BD6 /* Resources */, + 4C93A6C97A1E449CFB81717A /* Sources */, + 03969FEBBB361D750052E277 /* Frameworks */, + 3850C5F25BBD667F9D57BB07 /* Resources */, ); buildRules = ( - 89AB5A64D2F7BAEFD84AE805 /* PBXBuildRule */, + D777AFCE3F658CA3EABD87DB /* PBXBuildRule */, ); dependencies = ( - 3C3EA5ADFF87F85CA7571E11 /* PBXTargetDependency */, - 7CF5BA9F11877E8DE8CC0B1F /* PBXTargetDependency */, + 516DC0CF307323B0D5D88662 /* PBXTargetDependency */, + 3C07DD43F02337996CE7092B /* PBXTargetDependency */, ); - name = "IceInheritance macOS"; - productName = IceInheritance; - productReference = D62655BDE99F0EFB5029C764 /* IceInheritance.bundle */; + name = "IceEnums iOS"; + productName = IceEnums; + productReference = 4487959432B7C792830C5266 /* IceEnums.bundle */; productType = "com.apple.product-type.bundle"; }; - 563E7C5E9BFDDAD9AEB54CD4 /* IceDiscovery C++11 iOS */ = { + 600F66FEB1C8FA05B0D86986 /* IceBinding macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 4B6F73A21159504E16B57A1B /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */; + buildConfigurationList = BF17C6FB528CF9EC0E545D1B /* Build configuration list for PBXNativeTarget "IceBinding macOS" */; buildPhases = ( - 6C4B8D4B387E1BC59293EAEF /* Headers */, - B268825D883706611F09F50E /* Sources */, - 4A9B2B0185CCAA7FD7FAA466 /* Frameworks */, + 719DA637A24B37A1CE54D834 /* Sources */, + 7A628065EC2915DCE28B89DF /* Frameworks */, + 28EEA04A2E4723D77C819796 /* Resources */, ); buildRules = ( - 34327A9F640F9F0DDD852DD3 /* PBXBuildRule */, + C728E6AA53372B98CCCC75A1 /* PBXBuildRule */, ); dependencies = ( - C3373DFD4195B262BD339BE9 /* PBXTargetDependency */, + CDD8B021773917AC568C6F04 /* PBXTargetDependency */, + 485AD32FFF655BD454B30F80 /* 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 = "IceBinding macOS"; + productName = IceBinding; + productReference = 1FD8BF102CBDEA4AE9A1BEF0 /* IceBinding.bundle */; + productType = "com.apple.product-type.bundle"; }; - 568C96C03F49810104EE6CD1 /* IceSlicingObjects iOS */ = { + 61321B12DA134239ABC63556 /* IceAdapterDeactivation iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C2CB26111BF3C955550C4B72 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */; + buildConfigurationList = B6024535BA37B28DFB01C3FC /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */; buildPhases = ( - 8868F5599B3F411802B63FAB /* Sources */, - F798FF6A1825C3FBD0C31CB0 /* Frameworks */, - 99425B07DFD4B5355EAD4456 /* Resources */, + 231728936D1C55FE04EB4BF6 /* Sources */, + 85697C9D74BC35EB0F16A4C5 /* Frameworks */, + A5D08DF0FACCE964193081FB /* Resources */, ); buildRules = ( - 94E5D10C50E22678B4070CAB /* PBXBuildRule */, + B7499AD05BA236E3286AE115 /* PBXBuildRule */, ); dependencies = ( - 55C211531B74B920D3BA5856 /* PBXTargetDependency */, - 26877FF8F0BCD2FA80E42C7F /* PBXTargetDependency */, + 090C3209AF384F8B6108121C /* PBXTargetDependency */, + CD9514560682743BF11656FF /* PBXTargetDependency */, ); - name = "IceSlicingObjects iOS"; - productName = IceSlicingObjects; - productReference = E06F35E158588B7C1D8BA3F6 /* IceSlicingObjects.bundle */; + name = "IceAdapterDeactivation iOS"; + productName = IceAdapterDeactivation; + productReference = 4CF51F5BA92DBCFB19276E79 /* IceAdapterDeactivation.bundle */; productType = "com.apple.product-type.bundle"; }; - 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */ = { + 6204C55F63CC62BE2A2B08C9 /* IceProperties iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D0008B9280EA8DD418237763 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */; + buildConfigurationList = 92D3B5C3ABFC9059F3CB410E /* Build configuration list for PBXNativeTarget "IceProperties iOS" */; buildPhases = ( - 862D91464BD6C32DACC110CD /* Headers */, - FC322E7E585B59E4DD6BE436 /* Sources */, - 399D208837EDCF48AC2A4519 /* Frameworks */, + FAE41A6D65E6771F4FD09FCF /* Sources */, + 35CB773F3DD0BA966844D75D /* Frameworks */, + 41420A7A5FFABE64AF8D8FAE /* Resources */, ); buildRules = ( - 31D6D32086AF25ED463453D1 /* PBXBuildRule */, + 0FBF8A09C0F0EDCB96B6EAB6 /* PBXBuildRule */, ); dependencies = ( + 9E6E69F1F02510C56CDA7615 /* PBXTargetDependency */, + 01B16A341EAF3CA681B853AA /* 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 = "IceProperties iOS"; + productName = IceProperties; + productReference = 1C48DE3037CF4AE7BFD44F84 /* IceProperties.bundle */; + productType = "com.apple.product-type.bundle"; }; - 60091C7C300D5092A8E52149 /* IceExceptionsAMD macOS */ = { + 68767C0FE145D39DE4D88779 /* IceAmi macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 25BB18B00994010278262887 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */; + buildConfigurationList = 90700B4EF9DB322D4479A91D /* Build configuration list for PBXNativeTarget "IceAmi macOS" */; buildPhases = ( - 740467C4B57784289FE5A4E5 /* Sources */, - D70F361075F24E65D05F4D73 /* Frameworks */, - E059A4C28BA4B01EA131632E /* Resources */, + 8B45AD9152CA20EE9FB12029 /* Sources */, + C639112EA1AD1B0B61A09EA2 /* Frameworks */, + 7868B6B9117C3BA8980EEEC8 /* Resources */, ); buildRules = ( - 107BD6620EE608E35A022969 /* PBXBuildRule */, + 162A1E09280CE82F4A264925 /* PBXBuildRule */, ); dependencies = ( + 7B086A6685E226D7555642CE /* PBXTargetDependency */, + ADD406C16E8B6E9D5DAB1A80 /* PBXTargetDependency */, ); - name = "IceExceptionsAMD macOS"; - productName = IceExceptionsAMD; - productReference = B06E3E53A88EBCFBC944B38B /* IceExceptionsAMD.bundle */; + name = "IceAmi macOS"; + productName = IceAmi; + productReference = 2110B3C9B21AE73C0BD6ECBD /* IceAmi.bundle */; productType = "com.apple.product-type.bundle"; }; - 653844725C6B533AEBD3977F /* IceProxyAMD macOS */ = { + 6C9760FEBCAAE6CE0FA2DC30 /* IceHold iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AD603A92D4BD1B979C351ECC /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */; + buildConfigurationList = 11498C7C982D7FA44A2E3AB9 /* Build configuration list for PBXNativeTarget "IceHold iOS" */; buildPhases = ( - 871ABD25B86BB8501C338AF8 /* Sources */, - 9149500CC47C66691660B0BD /* Frameworks */, - 5413918C6E0519ED17CACF4B /* Resources */, + 033CE6712C625CA7671D3FE7 /* Sources */, + ECFC62CBBB3A9E4054304BCA /* Frameworks */, + 448528794B6535C7A09BF80F /* Resources */, ); buildRules = ( - AC68646374FB44918F0B8881 /* PBXBuildRule */, + E05145B97E66726EE7A63085 /* PBXBuildRule */, ); dependencies = ( + 6EA80965AC7EBF95F050A721 /* PBXTargetDependency */, + 020A0AC03AB445E15CDBC364 /* PBXTargetDependency */, ); - name = "IceProxyAMD macOS"; - productName = IceProxyAMD; - productReference = 336A43E8BEB51DFB4DA5FC77 /* IceProxyAMD.bundle */; + name = "IceHold iOS"; + productName = IceHold; + productReference = F7CA3B0771AAB23FD2BBAB32 /* IceHold.bundle */; productType = "com.apple.product-type.bundle"; }; - 65B4CEBE6BC37BE3E80C822B /* IceInvoke macOS */ = { + 6D2A74C3BC8748EAD4AF10CA /* IceInvoke macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E776FBA795F89D6CCE02CD6A /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */; + buildConfigurationList = D87EB862D7C1FAA82D04034A /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */; buildPhases = ( - A7EC5A246B84DB7C6747EE40 /* Sources */, - 58ACA75F58B30E2E8A2D79F0 /* Frameworks */, - 725B26BCA7ECAC123E816C71 /* Resources */, + EE31D1023E6B2D6849A9FDCA /* Sources */, + DD384BAA07FF49EC8CDCEA71 /* Frameworks */, + EA1FD40EF9B321E769A74269 /* Resources */, ); buildRules = ( - 37E7964C9FFFE14C60B44E2D /* PBXBuildRule */, + E3FF2A65AF816E8EBDF4617D /* PBXBuildRule */, ); dependencies = ( - EB0FA6754AB0B1A91DE9664C /* PBXTargetDependency */, - DDF5CF580877DF6E551B2F36 /* PBXTargetDependency */, + 580FC8590D7564D6621587CA /* PBXTargetDependency */, + 4DF062ECC947761147A8B958 /* PBXTargetDependency */, ); name = "IceInvoke macOS"; productName = IceInvoke; - productReference = 9DAAF34F8A69EEDC87F889E7 /* IceInvoke.bundle */; + productReference = 82BA2AD0516BDC1B952A1A16 /* IceInvoke.bundle */; productType = "com.apple.product-type.bundle"; }; - 66766A219D36565BAA8D85DB /* Glacier2 iOS */ = { + 74391EA658CAB520F6080EFB /* IceDiscovery C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 94178A4111559DBDC1193429 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */; + buildConfigurationList = 033036AB57A2BC13CF9B6D90 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */; buildPhases = ( - 068352613F3C040788D83E6C /* Headers */, - C0C732FC4178000245364070 /* Sources */, - 94A5C40D5F58EC042120F57D /* Frameworks */, - 4C3BA84D0F0F493B0D8D0686 /* Resources */, + 4376B61CBA3F46BFEBE94273 /* Headers */, + 1D21F6B77AEE0DE4923B446D /* Sources */, + 02145A4BA1F1929F98277F3F /* Frameworks */, ); buildRules = ( - 3DBD640E2BEB04526B028A5A /* PBXBuildRule */, + D8A4713D3A7254EAA8C5E194 /* PBXBuildRule */, ); dependencies = ( - D153B0F232624C7685DD931A /* PBXTargetDependency */, + 58EAF68E11B46086E0F06344 /* PBXTargetDependency */, ); - name = "Glacier2 iOS"; - productName = Glacier2; - productReference = 534A5F8BE7C459A933D4054F /* Glacier2.framework */; - productType = "com.apple.product-type.framework"; + name = "IceDiscovery C++11 macOS"; + productName = "IceDiscovery C++11 macOS"; + productReference = FF2875AE0E0680CDB9C9B1B8 /* libIceDiscovery C++11 macOS.a */; + productType = "com.apple.product-type.library.static"; }; - 6B689E233D18BEC5377ECFE9 /* IceProxyAMD iOS */ = { + 7E8564022216773735645574 /* SliceEscape macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A6D0F9F122B7EC98A09C98DE /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */; + buildConfigurationList = ED8B8EFE415F9FA463B0A59E /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */; buildPhases = ( - FAF5BCCB34907687AD05FF20 /* Sources */, - B6BF6917EC2D7AE47DE7C6DA /* Frameworks */, - 3FED894319B3D97A9FE8969D /* Resources */, + 9DD41E3742F99BA20DEB4AF8 /* Sources */, + 2A26AFD76C88C4ED00EC5A87 /* Frameworks */, + D797E379CCCD680A0B9D3B9B /* Resources */, ); buildRules = ( - 9F0AE24E71BB2E0F5FB12231 /* PBXBuildRule */, + 07CE6980CA9698C633E0290B /* PBXBuildRule */, ); dependencies = ( + FD14DE722F05C3B574DE1635 /* PBXTargetDependency */, + BB157A6DEBF88388B1D602FD /* PBXTargetDependency */, ); - name = "IceProxyAMD iOS"; - productName = IceProxyAMD; - productReference = E3CDD73D8E2EF9035ABD5D8E /* IceProxyAMD.bundle */; + name = "SliceEscape macOS"; + productName = SliceEscape; + productReference = C4B3812EC86A075A591325CD /* SliceEscape.bundle */; productType = "com.apple.product-type.bundle"; }; - 6C6B3F2AAE2C93C3A2670E5E /* IceHold macOS */ = { + 81EBCBBD81DAA61D4581DF4A /* IceTimeout iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9C3C3747AFC874E570EB571F /* Build configuration list for PBXNativeTarget "IceHold macOS" */; + buildConfigurationList = D186B9D2354DEEF650F4EFBB /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */; buildPhases = ( - 762F8D943DAB33489D9F1722 /* Sources */, - 67F08892C0AB4291F92513F7 /* Frameworks */, - E22AFD2ABFAB3FD5CD5B8185 /* Resources */, + B3AA78E727CE5C7CE7840AB9 /* Sources */, + 087369FE5CBF4571DF972817 /* Frameworks */, + F28C0DE11803903930866619 /* Resources */, ); buildRules = ( - C68807B7098C4D7CE2F9B8E8 /* PBXBuildRule */, + 840549D991E1A4FD227C6758 /* PBXBuildRule */, ); dependencies = ( - 7C6F9386F7A18DE4B273E36C /* PBXTargetDependency */, - 17BF9FB5DD888796E8094B00 /* PBXTargetDependency */, + 5BF9522711D21979665731D0 /* PBXTargetDependency */, + E97C2275EAEF1641202D323F /* PBXTargetDependency */, ); - name = "IceHold macOS"; - productName = IceHold; - productReference = 93B5CBAE0C70CA58A1C2C165 /* IceHold.bundle */; + name = "IceTimeout iOS"; + productName = IceTimeout; + productReference = 1B2E875251FF8233F5415E48 /* IceTimeout.bundle */; productType = "com.apple.product-type.bundle"; }; - 6FD780B3B0F51D50A0233C81 /* IceInterceptor macOS */ = { + 836D0AD1DCC62D99CC1CB8EA /* IceExceptions macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AD19E78B54CB935962D28D3B /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */; + buildConfigurationList = 40905CDE358A5972012DE4E9 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */; buildPhases = ( - 97D4C1B5577CD439FF1A875F /* Sources */, - 826CD0B7B0270DF0E8876A7C /* Frameworks */, - A90906DA111BA5A6DBCFECDE /* Resources */, + E5EAF4410D62B1919A140B78 /* Sources */, + DF829A4FCBF653D53EFA8ECA /* Frameworks */, + 322582DBE8E93D0697C15495 /* Resources */, ); buildRules = ( - 4BDEECBB026BEFDBD29E459B /* PBXBuildRule */, + 4C469FA3F0E5AD08A4D9A4AF /* PBXBuildRule */, ); dependencies = ( - 6B1F0117A09B57FFF2B9CD65 /* PBXTargetDependency */, - 34086D5FD64F54313B547FEF /* PBXTargetDependency */, + 17FD8ED3B2D7E1AE7C5625E0 /* PBXTargetDependency */, + 21E0947C7662A94A1C869D84 /* PBXTargetDependency */, ); - name = "IceInterceptor macOS"; - productName = IceInterceptor; - productReference = E03E5416C65A53BFBA1435CB /* IceInterceptor.bundle */; + name = "IceExceptions macOS"; + productName = IceExceptions; + productReference = C4920C3131DE43086740705E /* IceExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 736E7E0279329997566B6CBD /* IceInterceptor iOS */ = { + 85AD9F1A782BBCA078D72ECA /* IceDefaultServant macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7EA6F034D3A1A444D2CD8398 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */; + buildConfigurationList = B759C973487A012F6C373F82 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */; buildPhases = ( - 408664F57072120C427C03B9 /* Sources */, - 3C0007CD6741A74F1A7A48D7 /* Frameworks */, - 1DC48819EA533916598D2E42 /* Resources */, + 626208109A2B352E0C953538 /* Sources */, + A70F167DF9A2BFDFA2F109FB /* Frameworks */, + 313690911AD7304C7D02EB21 /* Resources */, ); buildRules = ( - EAF2BF97C81C44268C1B9295 /* PBXBuildRule */, + 62BDB959D414B8733A130CA5 /* PBXBuildRule */, ); dependencies = ( - EE4B312D8942912E66A435E6 /* PBXTargetDependency */, - 4E770DBE2E4380524BC74E0B /* PBXTargetDependency */, + 94714092693980C3E9AB8A38 /* PBXTargetDependency */, + 2F691D4411C45234858C1983 /* PBXTargetDependency */, ); - name = "IceInterceptor iOS"; - productName = IceInterceptor; - productReference = 623289333D18DFA2108F0CE7 /* IceInterceptor.bundle */; + name = "IceDefaultServant macOS"; + productName = IceDefaultServant; + productReference = C291B1D3FF41716E62FE1B66 /* IceDefaultServant.bundle */; productType = "com.apple.product-type.bundle"; }; - 73B0FB7CB263578EA908E6BF /* IceProperties iOS */ = { + 85DA963BEF597DDF5EBD28D4 /* IceDiscovery C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CF71943CB3679B30EDCADDBB /* Build configuration list for PBXNativeTarget "IceProperties iOS" */; + buildConfigurationList = 753BACEB2F3CD6948FC5A58E /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */; buildPhases = ( - 459A708FDE23BED83F05CEBB /* Sources */, - 08C55A113D26874EB5C02B30 /* Frameworks */, - AF1018F3DFDD7F0EE6CE1CA3 /* Resources */, + B928A3C1C8C85243F11116AE /* Headers */, + 1D20F3CCD1B72D1D4592C58D /* Sources */, + E769335C5E25A7AD50EF77D8 /* Frameworks */, ); buildRules = ( - EDB0F7ED19C5B183A3246E2F /* PBXBuildRule */, + E04915D736AB4D5D74C64119 /* PBXBuildRule */, ); dependencies = ( - 6FF69033A22E023626CBC999 /* PBXTargetDependency */, - C275009890F7AEBE56B7BFBC /* PBXTargetDependency */, + 6CB0A7D9CEBAB7FEDE893965 /* PBXTargetDependency */, ); - name = "IceProperties iOS"; - productName = IceProperties; - productReference = E90675902D436ECB7A6A3254 /* IceProperties.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceDiscovery C++11 iOS"; + productName = "IceDiscovery C++11 iOS"; + productReference = F20CF9182023E2AB477F4A39 /* libIceDiscovery C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - 7649B8B4D36C63D3D167ED11 /* IceSlicingExceptions macOS */ = { + 866E8F0547A584631426B2A5 /* IceProxyAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1F180A72D47E938736B12E02 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */; + buildConfigurationList = AA9E2FD9844A0304BAEED206 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */; buildPhases = ( - 0FE1781453D118B21A0C2E91 /* Sources */, - 5307656E1CA96839A50B1D38 /* Frameworks */, - 8B6CFF3A4FE820D6D185F306 /* Resources */, + 9F4D72E50D3BEA7C97557374 /* Sources */, + 8AEF83E0BFF4065824AF31D9 /* Frameworks */, + 7CDE16ED3C590B0B05317F77 /* Resources */, ); buildRules = ( - 4D5C7C24A9AF0B7A37EAD28F /* PBXBuildRule */, + 52CB70ACF18A2ADFDACECC20 /* PBXBuildRule */, ); dependencies = ( - 06FBECBAE5F3DA0ABCDFC859 /* PBXTargetDependency */, - 18EE0B5F4F06D5E85788B6CF /* PBXTargetDependency */, ); - name = "IceSlicingExceptions macOS"; - productName = IceSlicingExceptions; - productReference = 826C0C52CAC6A5F22BF6ACE9 /* IceSlicingExceptions.bundle */; + name = "IceProxyAMD macOS"; + productName = IceProxyAMD; + productReference = 95E105439BA21E7D9534BAA3 /* IceProxyAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 7862E459B18BD8751A67923F /* IceProxy macOS */ = { + 86D99596C3AC52CDD7C6A937 /* IceServantLocatorAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9D55DF3FBBE3BFA20172573A /* Build configuration list for PBXNativeTarget "IceProxy macOS" */; + buildConfigurationList = 3AF2DB398FBE9F5CE8512D28 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */; buildPhases = ( - B8032E351A2CAFE627A0F284 /* Sources */, - C918A614C2340AAFACCEB349 /* Frameworks */, - EDBBAF9A26563417C334E1E0 /* Resources */, + 2078456C95C04424AE8A0B7A /* Sources */, + 302D051B046B3E092DA99465 /* Frameworks */, + 6CDD22C7664DAA8DE402E90E /* Resources */, ); buildRules = ( - E1324200244312457CEC651B /* PBXBuildRule */, + 9E0AF5CFAC8166721B3CF714 /* PBXBuildRule */, ); dependencies = ( - EAC8D8B54AB4CB8156264D1B /* PBXTargetDependency */, - F890F59FBE62FC50282FCC0D /* PBXTargetDependency */, ); - name = "IceProxy macOS"; - productName = IceProxy; - productReference = BF0DC95EBCEEF58EE186A10F /* IceProxy.bundle */; + name = "IceServantLocatorAMD iOS"; + productName = IceServantLocatorAMD; + productReference = B33CD6B53C345AC42929BAAC /* IceServantLocatorAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 7AC3B103C3B879479057C283 /* IceDefaultServant iOS */ = { + 8716086DA12B2BDD0A0AB020 /* IceTimeout macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C323C8A30EC76BB9F1EDA4CF /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */; + buildConfigurationList = B5B25621875C8E1002F9A022 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */; buildPhases = ( - E6BD7AF4534163901A16C006 /* Sources */, - 980E7859C7304340AFF182E5 /* Frameworks */, - 13CC967E3E466CFA2F68D8F7 /* Resources */, + C81FD95798F618B58E1B0D22 /* Sources */, + F3B97AAC1B79B680842B6D1B /* Frameworks */, + 07982C434D1B0158C133F1D3 /* Resources */, ); buildRules = ( - 8A4F2CD3250B81F8C0666116 /* PBXBuildRule */, + 0C497AE78CB318C9D8E80C6B /* PBXBuildRule */, ); dependencies = ( - B16E8FE24046274907F97681 /* PBXTargetDependency */, - 13176BB7C32C2E481A9B11DB /* PBXTargetDependency */, + 816C173A31F9452ADAF16BD9 /* PBXTargetDependency */, + D39800CA0A56949337A5D33D /* PBXTargetDependency */, ); - name = "IceDefaultServant iOS"; - productName = IceDefaultServant; - productReference = BAC520FFA73DABE04C898130 /* IceDefaultServant.bundle */; + name = "IceTimeout macOS"; + productName = IceTimeout; + productReference = 25C7F6C8A9023BB604FCC8C6 /* IceTimeout.bundle */; productType = "com.apple.product-type.bundle"; }; - 7B09AAAF71F5D5AB2F8C1B78 /* IceUdp macOS */ = { + 8B673B53CF2890202D016783 /* IceInfo macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B29B72E12FD45954EF853156 /* Build configuration list for PBXNativeTarget "IceUdp macOS" */; + buildConfigurationList = 90DED0A5E5C3E9810A4D086C /* Build configuration list for PBXNativeTarget "IceInfo macOS" */; buildPhases = ( - E348665D2E7B54767A723942 /* Sources */, - D9891DB1D6563977E1045D2D /* Frameworks */, - 97FCB5631C1A70FF35B56342 /* Resources */, + 7C0AC4525A575C6705EF7727 /* Sources */, + A020276890DFF410B8A9A9D0 /* Frameworks */, + 65231E0E0BD7A9E3BD797910 /* Resources */, ); buildRules = ( - 218A39931936B7DB8D4146F1 /* PBXBuildRule */, + 9913D482606672073EF9884B /* PBXBuildRule */, ); dependencies = ( - 355050F8ABB8B02A4A57AC93 /* PBXTargetDependency */, - C57F2E966A56D427BD3B9A86 /* PBXTargetDependency */, + D844D0ECF798FA08E00F62AE /* PBXTargetDependency */, + EEE8DEA7998BB725A223FFDD /* PBXTargetDependency */, ); - name = "IceUdp macOS"; - productName = IceUdp; - productReference = 6862C6DF1F03FD3BC6D46040 /* IceUdp.bundle */; + name = "IceInfo macOS"; + productName = IceInfo; + productReference = 197DFA765AE77FC51AEF8CC3 /* IceInfo.bundle */; productType = "com.apple.product-type.bundle"; }; - 7BD0591E1B5ABBDFE982E6E8 /* IceServantLocatorAMD iOS */ = { + 8D692CC4BED85D90455B3611 /* IceLocatorDiscovery C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 075918B1BEC8CE4CF04958F2 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */; + buildConfigurationList = 8179BCC8FF14781E23BB396E /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */; buildPhases = ( - 117ECB46AFC1115A572AB2F3 /* Sources */, - 2738A3546E0DDA4969F3016D /* Frameworks */, - 4B2195D05EA13E32F7AE7CE9 /* Resources */, + 7B13C7BEB4B84507D058731C /* Headers */, + 08C3CB6FC7342680D131BBAF /* Sources */, + 21510EAF7B78BB23AC67243D /* Frameworks */, ); buildRules = ( - 863F5538D25F019305A64FC8 /* PBXBuildRule */, + D24C1EFB9554C738FBBFF4A4 /* PBXBuildRule */, ); dependencies = ( + B010D26E681F43AB12A9D221 /* PBXTargetDependency */, ); - name = "IceServantLocatorAMD iOS"; - productName = IceServantLocatorAMD; - productReference = 05286265BA8BCB8D08B75476 /* IceServantLocatorAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceLocatorDiscovery C++11 macOS"; + productName = "IceLocatorDiscovery C++11 macOS"; + productReference = AE623D75A48D156E4410F1AD /* libIceLocatorDiscovery C++11 macOS.a */; + productType = "com.apple.product-type.library.static"; }; - 7C4454250BFF2F744DA15043 /* IceProxy iOS */ = { + 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5B6FA092C0E02733610C7B59 /* Build configuration list for PBXNativeTarget "IceProxy iOS" */; + buildConfigurationList = E8FA4A91F8A3AABCF0C62675 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */; buildPhases = ( - 271D6194962FFBBF88D3CE7C /* Sources */, - 5074C8710F531749B559D654 /* Frameworks */, - 713701E51289C5BFF63C9C56 /* Resources */, + A38E08479830289204BF8B25 /* Headers */, + BBDAE5B3B61B591AAD19589D /* Sources */, + B66E63AC3A61DC1C7818DE0D /* Frameworks */, ); buildRules = ( - 2858747B6861DE83819511E8 /* PBXBuildRule */, + E6FA2856755390788BB6DAA2 /* PBXBuildRule */, ); dependencies = ( - 3416113DF237AFC35587414F /* PBXTargetDependency */, - 50FDAC5AA1B8E6C9513D1991 /* PBXTargetDependency */, ); - name = "IceProxy iOS"; - productName = IceProxy; - productReference = 7E18CC57E815D2169B082AD3 /* IceProxy.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice C++11 iOS"; + productName = "Ice C++11 iOS"; + productReference = EB11AE63135A23028AE12F90 /* libIce C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - 7C4ECB5C2679ED962EFAEA71 /* IceServices iOS */ = { + 8FBA8150AB11D2A819C1D2EA /* IceAmi iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A6ECFF0AE6F72868FD73E772 /* Build configuration list for PBXNativeTarget "IceServices iOS" */; + buildConfigurationList = 6F84589747125E7DC5257ACC /* Build configuration list for PBXNativeTarget "IceAmi iOS" */; buildPhases = ( - 039C348E43D424045B8585C3 /* Sources */, - 6274C70D4B655BDB6F78024A /* Frameworks */, - 73312FC0E54C54320A5F7CFB /* Resources */, + 2BDEA68897FC29D006B4D31F /* Sources */, + 74AD6CC9618C6D38756D66C6 /* Frameworks */, + A9DD5346B648F7C295338FF6 /* Resources */, ); buildRules = ( - 2818FB10B0AF0B6EBCB24E60 /* PBXBuildRule */, + D6040EDFC55D213BAA794052 /* PBXBuildRule */, ); dependencies = ( - 099F632E3F13CC42232ECD1F /* PBXTargetDependency */, - F28D0C090A072B647F2CFF3F /* PBXTargetDependency */, - EFDE4A65F0F1315D26D73B2B /* PBXTargetDependency */, - 4C89F031189B582A00303766 /* PBXTargetDependency */, - 338FDEDE2C7912EC1B86D293 /* PBXTargetDependency */, + 40EEF1DCFF711E9F2594E63D /* PBXTargetDependency */, + B68D70820828D10DDE6DEFDC /* PBXTargetDependency */, ); - name = "IceServices iOS"; - productName = IceServices; - productReference = 93221F7A8289C9024F246985 /* IceServices.bundle */; + name = "IceAmi iOS"; + productName = IceAmi; + productReference = B324F3F918968083524C839F /* IceAmi.bundle */; productType = "com.apple.product-type.bundle"; }; - 80D1931BE1B80501D33167DD /* IceTimeout macOS */ = { + 90FA36CD9B0F6F2C3BC99401 /* IceOperations iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AFC2FC4DD16F87884A40D512 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */; + buildConfigurationList = C404B8DF51F2446BE3BB6BD9 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */; buildPhases = ( - AE95AA04979FB137DCE17259 /* Sources */, - BADFCC2D4AA7F3A177C681E0 /* Frameworks */, - 0C540CD21E9442E1A4A480FF /* Resources */, + 2B45A27DB6D5B212B0D5BE68 /* Sources */, + 8285ACBBC123F8FEB453E86C /* Frameworks */, + 1D782344FFA038F83CDAC3AD /* Resources */, ); buildRules = ( - 7AE86571FE663DFD312D016F /* PBXBuildRule */, + BC64AA56465C8FBE08B7179A /* PBXBuildRule */, ); dependencies = ( - B4A261B73714974D9F3D44AD /* PBXTargetDependency */, - 3644B35FF0613A9194C9AFF1 /* PBXTargetDependency */, + 805D664C3733E17B045CD956 /* PBXTargetDependency */, + EE47DB68A54BFBE2BB606463 /* PBXTargetDependency */, ); - name = "IceTimeout macOS"; - productName = IceTimeout; - productReference = 2786B7490F83497D5B9DC916 /* IceTimeout.bundle */; + name = "IceOperations iOS"; + productName = IceOperations; + productReference = D238D915AA7B2C9AAA51674C /* IceOperations.bundle */; productType = "com.apple.product-type.bundle"; }; - 82C53B88275C4981212133CC /* IceSlicingExceptionsAMD macOS */ = { + 94D926D5469FBD751BF9B740 /* IceScope macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6E5AC7F89D188D7DCAFE657B /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */; + buildConfigurationList = 5B338167339629249D8AC3DB /* Build configuration list for PBXNativeTarget "IceScope macOS" */; buildPhases = ( - 4A3298D987F5090CCEEA582C /* Sources */, - 9F70203AB3C9FE1000CF9ADC /* Frameworks */, - 9788602434A89360EA198EDF /* Resources */, + AE8534E1C05D72CB06E30E66 /* Sources */, + 58E259C652EBBA9CD409A673 /* Frameworks */, + 68604C27B7CC42117BA51932 /* Resources */, ); buildRules = ( - BE2E1AE0DE697D063BC3791D /* PBXBuildRule */, + 0688C0CD4406817FA01FF0FD /* PBXBuildRule */, ); dependencies = ( + 04F7CA6C3F10A96A96850E6F /* PBXTargetDependency */, + CF430178ACC315250CE4C1B2 /* PBXTargetDependency */, ); - name = "IceSlicingExceptionsAMD macOS"; - productName = IceSlicingExceptionsAMD; - productReference = AD895AEC9101644623712329 /* IceSlicingExceptionsAMD.bundle */; + name = "IceScope macOS"; + productName = IceScope; + productReference = 294AC4A94D492076FFDEF664 /* IceScope.bundle */; productType = "com.apple.product-type.bundle"; }; - 836518381BE3202105EFCC03 /* Ice macOS */ = { + 96F2227A2D1F58BCEA8ED0F6 /* IceUdp macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 94BF99686336765D665E1962 /* Build configuration list for PBXNativeTarget "Ice macOS" */; + buildConfigurationList = A9397B603612590159730228 /* Build configuration list for PBXNativeTarget "IceUdp macOS" */; buildPhases = ( - 95A52FF4E720C126DE092E83 /* Headers */, - B3D4B6138BDE984791F96BD9 /* Sources */, - F0C18FC8F60F88F78807B80A /* Frameworks */, - 9B4AD62E33CE21EF74E9A11F /* Resources */, + 2BB16390B18571552455B8FB /* Sources */, + 5A4A7A62BEC7614262A688B0 /* Frameworks */, + 17160302BAA0E75F9A0B527B /* Resources */, ); buildRules = ( - 72F35AAC1EF89B2124E08DCB /* PBXBuildRule */, + E67B7E81577CA0548EDC58B7 /* PBXBuildRule */, ); dependencies = ( - 25E8B3B464AC1EE5B8AAC54D /* PBXTargetDependency */, + B6A8FC2A6C0C716CE1C1573A /* PBXTargetDependency */, + 1310DBFEFF36C9AB05FE1342 /* PBXTargetDependency */, ); - name = "Ice macOS"; - productName = Ice; - productReference = D8BC5C768D15A8A8C296597B /* Ice.framework */; - productType = "com.apple.product-type.framework"; + name = "IceUdp macOS"; + productName = IceUdp; + productReference = CA06581C1F468D6DFACFA9C2 /* IceUdp.bundle */; + productType = "com.apple.product-type.bundle"; }; - 87E9A0678200BC32DF77CC22 /* IceRetry iOS */ = { + 9938DD491B5B4A54DB0A80E3 /* IceDefaultValue macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5F4A2D7656A289DA657F237B /* Build configuration list for PBXNativeTarget "IceRetry iOS" */; + buildConfigurationList = 75CED96DA2C86B269A2B872E /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */; buildPhases = ( - 31CB6A9CADF229B63F0F01CA /* Sources */, - C52DF0FB31041A0894EB2CB7 /* Frameworks */, - DF0BFE93146FE33B3FFDCBAF /* Resources */, + B7F74FA0EB42B9F35DD6B480 /* Sources */, + F9F9B52103E8278DDAA8D1C8 /* Frameworks */, + 71B6CF1E060EC863D6054971 /* Resources */, ); buildRules = ( - 813C0725B93686899604C1FA /* PBXBuildRule */, + 189AEA277312C4FDE4F0E0E0 /* PBXBuildRule */, ); dependencies = ( - 381ED48226681FECD2174188 /* PBXTargetDependency */, - CDCB3DA8CE04AF7351B19BD5 /* PBXTargetDependency */, + 452CA0172D244CBC9D248302 /* PBXTargetDependency */, + CECFC659A6279C6A70417574 /* PBXTargetDependency */, ); - name = "IceRetry iOS"; - productName = IceRetry; - productReference = 6B08215B9CC0C2ED40F9DF81 /* IceRetry.bundle */; + name = "IceDefaultValue macOS"; + productName = IceDefaultValue; + productReference = 6232FC65AC888C2919A29D4A /* IceDefaultValue.bundle */; productType = "com.apple.product-type.bundle"; }; - 8DB5F9E207CEEFAD3CA28266 /* IceDefaultServant macOS */ = { + 9A800192291D16A52BC00EB5 /* TestDriver iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5B3BF42F755322A2D685E036 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */; + buildConfigurationList = 718469A340DB715B2D705711 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */; buildPhases = ( - 0D39274DE7A2C44AD60A7F14 /* Sources */, - A01C44ECAEFA068E8278FBA4 /* Frameworks */, - D2E824B85F3932C40C468C34 /* Resources */, + 9E882D250C2052D1241A3477 /* Sources */, + 29E7FE84EEFDD7AABA0F0BC6 /* Frameworks */, + E9191CB3D8B98AD5528146EF /* Resources */, + 0635600956BBB7B4E2F71046 /* Copy Frameworks */, + DF80F5FE8BC3363CBD19BE84 /* Copy Symbols */, ); buildRules = ( - A32CF8285A6B053AF2C4DC9C /* PBXBuildRule */, + 8C8CC733E29C006823557D53 /* PBXBuildRule */, ); dependencies = ( - CEEE543114F060E7C4726B96 /* PBXTargetDependency */, - 1460A5644FA231F28D5F7C08 /* PBXTargetDependency */, + 61CBA0870CF5AE106D507737 /* PBXTargetDependency */, + 087A9C1989AAA843B5590366 /* PBXTargetDependency */, + 25163588E7567C9DC2B926F3 /* PBXTargetDependency */, + 574BB9348375C75E94B6FA23 /* PBXTargetDependency */, + 9265E9934EFD9A6F846D47E9 /* PBXTargetDependency */, + B0F2306AD9E2F343B9691960 /* PBXTargetDependency */, + 8D1A106E21F2556EE5A310A1 /* PBXTargetDependency */, + 8F3F465FF11C1D1348CB1EAA /* PBXTargetDependency */, + 11E7921B9E8504ED04C4DD20 /* PBXTargetDependency */, + 92DCAC9E6B410FA728DDC0CB /* PBXTargetDependency */, + 1898625C798054237255D989 /* PBXTargetDependency */, + 75BCB4C7CF48F12841EC9185 /* PBXTargetDependency */, + 4F22349D73BE3FB82942A9F8 /* PBXTargetDependency */, + 279A73BF587F532B1ED47130 /* PBXTargetDependency */, + 1655AE07C3C927D529A01CB9 /* PBXTargetDependency */, + 1EBCCDD716930DF08A115916 /* PBXTargetDependency */, + E759A25BEB16FB95D4BFA75F /* PBXTargetDependency */, + 7DE539FEE90D1986BF41DDAF /* PBXTargetDependency */, + 17D78C3590AD3341EAD750B1 /* PBXTargetDependency */, + DCD68B47F3B0FFB5D08298E3 /* PBXTargetDependency */, + 4FBF9E4A9DF99D3F75579BFA /* PBXTargetDependency */, + 1A088D4452F3C164E5E671F3 /* PBXTargetDependency */, + 7537F99FF2EC0F183328E38A /* PBXTargetDependency */, + EE8E0BD703C15E23C439CB28 /* PBXTargetDependency */, + 6E5028C1155E6A2A4C4C4E98 /* PBXTargetDependency */, + 9D2DD32A0256D385ACB54808 /* PBXTargetDependency */, + EE69B54FDCFCC9142CDAB66C /* PBXTargetDependency */, + 1331283ADDCD92BE4D72F968 /* PBXTargetDependency */, + 76F827D5F22741F0DE0112CB /* PBXTargetDependency */, + ACEDD98247F376B68E088EB8 /* PBXTargetDependency */, + 4B8BC5B7F645DE838ACA6606 /* PBXTargetDependency */, + 77F8492EF73ECDDC1787218E /* PBXTargetDependency */, + BBEC5248251B42CD5A5C7BBD /* PBXTargetDependency */, + 994A88656CBB1B53490E2472 /* PBXTargetDependency */, + 2073171DA6488766240C73C4 /* PBXTargetDependency */, + 7E7A154541DD3F5526DA6955 /* PBXTargetDependency */, + 6BB1369014EC7A395354080A /* PBXTargetDependency */, + E7807E710FE56F54258C3529 /* PBXTargetDependency */, + 7AEC5A1458DB23B92EEB3D31 /* PBXTargetDependency */, + 9B05D1352749078F9A4F050F /* PBXTargetDependency */, + 3F1836C3085B01562B38C2EE /* PBXTargetDependency */, + D127CB2E754E2DEFE38A24CE /* PBXTargetDependency */, + 7ED6FE2BE0D824FEFE6F2BAD /* PBXTargetDependency */, + 72E0A24D82A3611248E7A55E /* PBXTargetDependency */, ); - name = "IceDefaultServant macOS"; - productName = IceDefaultServant; - productReference = 5258134D3A215F2466435990 /* IceDefaultServant.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestDriver iOS"; + productName = TestDriver; + productReference = 2DA8717C158AFF4CF60E6E87 /* TestDriver.app */; + productType = "com.apple.product-type.application"; }; - 8E23FF66CFB6287919E99A31 /* IceLocatorDiscovery C++11 macOS */ = { + 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 091C5CE007148B44FDF05281 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */; + buildConfigurationList = EEEEA9D05A20FB2C43336CD7 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */; buildPhases = ( - 8126C6AFA4C819E3C321558C /* Headers */, - B0AABBBE14BE23E960D12458 /* Sources */, - 52160D59C60F78DCB817F32A /* Frameworks */, + 0DFF078867C28CFA4D7954D7 /* Headers */, + 70DAACF467A2AC80B181D4AE /* Sources */, + 4C3C29F984E93E0100AB7AFE /* Frameworks */, ); buildRules = ( - 128FAF301C269413416FAA54 /* PBXBuildRule */, + 24EFF29543366B1888A17736 /* PBXBuildRule */, ); dependencies = ( - 5F218459B2D081FD4D276F0E /* PBXTargetDependency */, ); - name = "IceLocatorDiscovery C++11 macOS"; - productName = "IceLocatorDiscovery C++11 macOS"; - productReference = 253491E3FEF80ACD0B5781B2 /* libIceLocatorDiscovery C++11 macOS.a */; + name = "Ice C++11 macOS"; + productName = "Ice C++11 macOS"; + productReference = 9CD9C4FF6B42F14CAB807960 /* libIce C++11 macOS.a */; productType = "com.apple.product-type.library.static"; }; - 92DFD90832239D72108865B4 /* IceUdp iOS */ = { + 9FAA9797D207A26125233020 /* IceProperties macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BACA0E371176684F2AA8A14A /* Build configuration list for PBXNativeTarget "IceUdp iOS" */; + buildConfigurationList = 29F615027D13C4A96FA1E765 /* Build configuration list for PBXNativeTarget "IceProperties macOS" */; buildPhases = ( - 153CF5944F5CBB5C377261CB /* Sources */, - 89D1C4C755D5BCDF9E70577E /* Frameworks */, - 95F6F7503C7EC6EDE758DC14 /* Resources */, + 566CC439F7260E4ED534FD2F /* Sources */, + 2427D63A3B5F1BB78ECD9AF4 /* Frameworks */, + 17F93E36FE79CCD8FDB9F758 /* Resources */, ); buildRules = ( - 39EFC04AD52EB3D38ACEC29B /* PBXBuildRule */, + C5736C2941BE781DDE64631D /* PBXBuildRule */, ); dependencies = ( - AA2FB66424D53E53649A862B /* PBXTargetDependency */, - A478F9404FB7C31EEAC472BB /* PBXTargetDependency */, + 54F09B88FD7F3FE9236B23FD /* PBXTargetDependency */, + 6DB6D2BE6BA8F692AF940220 /* PBXTargetDependency */, ); - name = "IceUdp iOS"; - productName = IceUdp; - productReference = 50A2B975515FD9EEB3223999 /* IceUdp.bundle */; + name = "IceProperties macOS"; + productName = IceProperties; + productReference = ADE78EC4CCE93F2E0C1D0DD3 /* IceProperties.bundle */; productType = "com.apple.product-type.bundle"; }; - 938EB0FB3FB9C74695580EBE /* IceServantLocator macOS */ = { + 9FEDBE2BC73385F81D251350 /* IceImpl macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 044EEF23E04F8A00E36E0E33 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */; + buildConfigurationList = D4BBF305714A95BEF18C3D36 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */; buildPhases = ( - 61E63AF08093C78F1362AA7E /* Sources */, - 3FE56539D5B16E4CF3A7A6CA /* Frameworks */, - 64A256B848383F94800EBA0D /* Resources */, + 45A6356BECF527E2FD61BBE9 /* Headers */, + 1FCEC3817747D363E95AA1A6 /* Sources */, + 9FDFDF965240137388DC5008 /* Frameworks */, + 6DD932AA2A6B92A01B4D5040 /* Resources */, ); buildRules = ( - B1D07C5FDE5DEACA2FDE19DC /* PBXBuildRule */, ); dependencies = ( - 0E15162FE9DC53DD6CD4527E /* PBXTargetDependency */, - A454DF0D8814AA796AC3A34E /* PBXTargetDependency */, + D5D1116879BBBD478325357A /* PBXTargetDependency */, + D514AB5DCED2A6361B7E6E9F /* PBXTargetDependency */, + 31493DABA42FD09F7DFECB41 /* PBXTargetDependency */, ); - name = "IceServantLocator macOS"; - productName = IceServantLocator; - productReference = 11A152F03A7151A37E5BCA0B /* IceServantLocator.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceImpl macOS"; + productName = IceImpl; + productReference = 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */; + productType = "com.apple.product-type.framework"; }; - 953A9306D1F74C3E46325E82 /* IceGrid macOS */ = { + A06E150DA767B6FC743BAF10 /* TestCommon iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 8B5D0F2B1B3E65AA37E96F66 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */; + buildConfigurationList = F2AC5AC49AC37FEC3087A7A1 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */; buildPhases = ( - 0D3CDD20FB2E828DFE6459C5 /* Headers */, - F1FC8508CB62D756F44B4DA3 /* Sources */, - 37DE080F347BD90B7BBF3015 /* Frameworks */, - 3222B0FC6C61C494E02E614D /* Resources */, + 69965D996B7933965D78AF39 /* Headers */, + 9F9350C956E6764F2417D41E /* Sources */, + 6BC6831B4A3610FAEB76BA80 /* Frameworks */, + FDAB822C43EBDD5C9D09BBCC /* Resources */, ); buildRules = ( - 534EC6EEB3FEA55F9D73125B /* PBXBuildRule */, + A95C953B51B380A17FA926CB /* PBXBuildRule */, ); dependencies = ( - 1F89FE69F95A11F92CC290E8 /* PBXTargetDependency */, - 2EE91FF0137EA0C56A9866A8 /* PBXTargetDependency */, ); - name = "IceGrid macOS"; - productName = IceGrid; - productReference = CA3048781DE1F85C3C98A17C /* IceGrid.framework */; + name = "TestCommon iOS"; + productName = TestCommon; + productReference = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; productType = "com.apple.product-type.framework"; }; - 95D4F0B99BDEE21096E1027E /* IceInfo iOS */ = { + A292FEFD4AC0C53DF83589BE /* IceProxy macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C664B931CC45B69DA172BA64 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */; + buildConfigurationList = 6369F01292BFF3B59B2B41C7 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */; buildPhases = ( - 727EB0AD0FFD41F286E09D4D /* Sources */, - 7827187285BD2EBAF9F34A78 /* Frameworks */, - 9DB6664F3B09B28CC1EB1372 /* Resources */, + 205FFC81ED4601E1B49AE89C /* Sources */, + 3084CA5812893FCE6D836435 /* Frameworks */, + E89A01DD0189EAA1841B2047 /* Resources */, ); buildRules = ( - E2BF9E65FA70259DC67BBB19 /* PBXBuildRule */, + 7B1BAF201633E1738A131BFA /* PBXBuildRule */, ); dependencies = ( - 47D2840760CDAC67169AEB7A /* PBXTargetDependency */, - CC58057DA07A3455AB2A6207 /* PBXTargetDependency */, + 4965F928F33AA93E7729C0D6 /* PBXTargetDependency */, + 07393B7DA0FDE71929409356 /* PBXTargetDependency */, ); - name = "IceInfo iOS"; - productName = IceInfo; - productReference = FBDE5E179DE0FFBEFE10819F /* IceInfo.bundle */; + name = "IceProxy macOS"; + productName = IceProxy; + productReference = 7A0A8197B967AFCB434D4FE1 /* IceProxy.bundle */; productType = "com.apple.product-type.bundle"; }; - 961580353429DCE0D0B109CB /* IceScope macOS */ = { + A2BA1134828B7EE3273C5D13 /* IceObjects macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = DD88214AAC13298E250CAFE5 /* Build configuration list for PBXNativeTarget "IceScope macOS" */; + buildConfigurationList = 97E387EACA6AEBEE98FA605C /* Build configuration list for PBXNativeTarget "IceObjects macOS" */; buildPhases = ( - 550CDCC399E02FF9AD55D03C /* Sources */, - EE16A89C5E0F293D4C340515 /* Frameworks */, - 7DFA74BD5376C0FC3E116EAE /* Resources */, + 7433C652AEC8941A21B9B39B /* Sources */, + 900CAB0C794A4C30D7148876 /* Frameworks */, + 53F8D1EF617F7249622B903B /* Resources */, ); buildRules = ( - A9309FB45F908E127E08BE15 /* PBXBuildRule */, + BECC26E3DBBF204B7E5927F4 /* PBXBuildRule */, ); dependencies = ( - D5B0DF682589A7C2400DBF3C /* PBXTargetDependency */, - 6BB02CD18FF76573BC460FC4 /* PBXTargetDependency */, + FD67C0C61277F39D5551F292 /* PBXTargetDependency */, + 3D9D49B469AA2053E8E30785 /* PBXTargetDependency */, ); - name = "IceScope macOS"; - productName = IceScope; - productReference = 0C6AA868B958A4B62ED7C5D5 /* IceScope.bundle */; + name = "IceObjects macOS"; + productName = IceObjects; + productReference = A8AFF8F311501C1902F407B9 /* IceObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - 984F9509A61A9677BDD2B1E7 /* IceBinding iOS */ = { + A5A118B8D38A8DF773729D3E /* IceEnums macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1D8C3D695D1CC0DF208561CF /* Build configuration list for PBXNativeTarget "IceBinding iOS" */; + buildConfigurationList = 3FD629EDBC13AE102B167FDA /* Build configuration list for PBXNativeTarget "IceEnums macOS" */; buildPhases = ( - 16E6E2C0A27C806CAFFF8253 /* Sources */, - EFA2B6AB7748628FA398563F /* Frameworks */, - B60097319C90BC1A9ED6ADE3 /* Resources */, + 77C324B2DDC186E954C3C4CD /* Sources */, + FC929A90BD1CA4E9A4C2FD74 /* Frameworks */, + 395F58B3FE86E498486F7898 /* Resources */, ); buildRules = ( - 63DDCC4D5FD71F078F7E4F48 /* PBXBuildRule */, + 7E9BC15F46E89E69FF3C48E5 /* PBXBuildRule */, ); dependencies = ( - 583F8667E5F7C17D868F5978 /* PBXTargetDependency */, - D23660E156677E97449E839C /* PBXTargetDependency */, + 4CF1CCC42365A82C633CD504 /* PBXTargetDependency */, + 56F6B03F04DC7DD5F2FB148A /* PBXTargetDependency */, ); - name = "IceBinding iOS"; - productName = IceBinding; - productReference = 877C028D182B31A7DA65893F /* IceBinding.bundle */; + name = "IceEnums macOS"; + productName = IceEnums; + productReference = 1B71BDB8210B42A2FC5F0C82 /* IceEnums.bundle */; productType = "com.apple.product-type.bundle"; }; - 9C08369D07430A8AFB9F41A3 /* Ice iOS */ = { + A9149583C7CA34903D80B3C4 /* IceImpl iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F2C0C2C72D017FA1BC6C221C /* Build configuration list for PBXNativeTarget "Ice iOS" */; + buildConfigurationList = CFEEBC29960A3220CBC34132 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */; buildPhases = ( - 2F61CAFC8944727E15EE9E24 /* Headers */, - EF833938FAC76D1C5ABAC549 /* Sources */, - 333B0F42C2DF1CA7DBAA70FA /* Frameworks */, - 51BD47AFB0F5EA300C2832E8 /* Resources */, + 7F00EE9249F8973A302CB92C /* Headers */, + A5F8B288ACE2AA4F07185457 /* Sources */, + 2B00EBB47E4EAC248DDA3414 /* Frameworks */, + 0526F95A9936BD82D24EE562 /* Resources */, ); buildRules = ( - BA0F22F6A09A012085A064E5 /* PBXBuildRule */, ); dependencies = ( - 5377289F050FDD926FD56639 /* PBXTargetDependency */, + 4330C12D8249B9BBC55614A2 /* PBXTargetDependency */, + 891470D2A3E36C5CA342397C /* PBXTargetDependency */, + 0A6AB4A2EDAB4DD0C9F9C4F7 /* PBXTargetDependency */, ); - name = "Ice iOS"; - productName = Ice; - productReference = 1959BEAAF7268C8B0022D948 /* Ice.framework */; + name = "IceImpl iOS"; + productName = IceImpl; + productReference = E580B9D9CC76D53B7B18272C /* IceImpl.framework */; productType = "com.apple.product-type.framework"; }; - 9D8A9741B7D4BD64D5B31B88 /* IceLocation macOS */ = { + AA9DCC224B96540517FC8217 /* IceSSLConfiguration iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 45F05FDA4B01F011A50096E9 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */; + buildConfigurationList = 1DBCCE68ABE336FDD111EB69 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */; buildPhases = ( - 505670AA9E66974D30664769 /* Sources */, - 91D1BE9803153FDBF6BF3114 /* Frameworks */, - 766436C0850D45E049F4BCAA /* Resources */, + DFD24470B0E45F19AEDF55E6 /* Sources */, + 546F9C744238A6F9072920D3 /* Frameworks */, + 42A4C132E10B3B8A7300B9A6 /* Resources */, ); buildRules = ( - FBB889AD2F071521250001D5 /* PBXBuildRule */, + E556D4E668AC214B1FF3412D /* PBXBuildRule */, ); dependencies = ( - 6EDAB68D98F4B3CC280C6101 /* PBXTargetDependency */, - 5C767ABE5537E8E771F1FBD9 /* PBXTargetDependency */, + 7B7193622EFEA69428F66DE9 /* PBXTargetDependency */, + 7ABF6AB7E9FC1E0443C5DF9E /* PBXTargetDependency */, ); - name = "IceLocation macOS"; - productName = IceLocation; - productReference = DDBA009CB8D3B5A0846CFA61 /* IceLocation.bundle */; + name = "IceSSLConfiguration iOS"; + productName = IceSSLConfiguration; + productReference = 0F25A5B87F1D6D4DE443C3F7 /* IceSSLConfiguration.bundle */; productType = "com.apple.product-type.bundle"; }; - A2837C7BEC47E856E536F9B3 /* IceFacets iOS */ = { + AD0E7F89F478FE77514A8842 /* IceServices iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7C06159D0366ECE2FC26FCE9 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */; + buildConfigurationList = 2670006D13340F29628611E7 /* Build configuration list for PBXNativeTarget "IceServices iOS" */; buildPhases = ( - C3D6F51913CB22B1F54DF445 /* Sources */, - ECF89FCBC92B39B5D8F1C3B2 /* Frameworks */, - 3585C5CF3DD731FF6E30813D /* Resources */, + 9EE920B777162881752C3D96 /* Sources */, + 420529DB53BBF371DAE6E507 /* Frameworks */, + 664CDAB3A67305FA59E02F7A /* Resources */, ); buildRules = ( - F2E7BBE6049D4FB5B98F07F0 /* PBXBuildRule */, + 7BAA2CDB7FE6CFAB268E6F37 /* PBXBuildRule */, ); dependencies = ( - 04A4BA1474AE052F3146911A /* PBXTargetDependency */, - EFF68B9A64C668D93F38020B /* PBXTargetDependency */, + 59FC8466F9EA87D242A3BBA2 /* PBXTargetDependency */, + 71C2564C0663504A3DF487CF /* PBXTargetDependency */, + 9C7E6B2770EB36DB2C4A986C /* PBXTargetDependency */, + 46CB383F272BEC717AFCE66E /* PBXTargetDependency */, + 01A23ACF74F5CD97CDD78FA1 /* PBXTargetDependency */, ); - name = "IceFacets iOS"; - productName = IceFacets; - productReference = CBB1409BA01AD2ADEC3BD9D4 /* IceFacets.bundle */; + name = "IceServices iOS"; + productName = IceServices; + productReference = 77413C0CE48FA70D463B327C /* IceServices.bundle */; productType = "com.apple.product-type.bundle"; }; - B06DD43CC98E177E5491959D /* Glacier2 macOS */ = { + AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EE183CAB742B1360694466DD /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */; + buildConfigurationList = 3A6C21E6CCF11A3B56CDE33C /* Build configuration list for PBXNativeTarget "TestCommon macOS" */; buildPhases = ( - 6103BE0C1BA576488160D922 /* Headers */, - 73AEBDA73275A371B93C271E /* Sources */, - B6AD14A6A89BC2F1ACE138BB /* Frameworks */, - B9C4494B192EF983299B6C7F /* Resources */, + DF467E18F4E5D6A05EE41E21 /* Headers */, + E1A96FD5802396C607420A5E /* Sources */, + 1E65DBE7DC8A2E40F2C43394 /* Frameworks */, + 825B353A9CA1FA2525C1C98D /* Resources */, ); buildRules = ( - CA7A3B7BE443511788BBDE35 /* PBXBuildRule */, + 54945514B316D0C5BE8F1BD7 /* PBXBuildRule */, ); dependencies = ( - 5F2AE40A7B6B38809C886901 /* PBXTargetDependency */, ); - name = "Glacier2 macOS"; - productName = Glacier2; - productReference = 1B79277683CA9B3529AC906D /* Glacier2.framework */; + name = "TestCommon macOS"; + productName = TestCommon; + productReference = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; productType = "com.apple.product-type.framework"; }; - B1154CF85BB46C6CCA916ABD /* IceRetry macOS */ = { + AD5C495F17B512B2D13CC822 /* IceInvoke iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AE7B39681266EE4045B4EF75 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */; + buildConfigurationList = 45862DFB6380EC9C50A9DC9B /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */; buildPhases = ( - F60F2139A7B992FC349C6BE5 /* Sources */, - C676C4CCE2EAF9138EF0A402 /* Frameworks */, - 66E3CD4A5C361E88EDE9D7BE /* Resources */, + 99348C10095E9E5F3C0F5F56 /* Sources */, + 924D5876DD828924714EEF85 /* Frameworks */, + 676F98D72603326333704309 /* Resources */, ); buildRules = ( - 36DE15588AC64891A9D439C5 /* PBXBuildRule */, + 5CD295F2AB4F6ED4E7481CD4 /* PBXBuildRule */, ); dependencies = ( - 654CB17F160D7E8E2AD477E8 /* PBXTargetDependency */, - 4791F01C73505D5C5746CA2F /* PBXTargetDependency */, + 9B5B74685DA573133A1206AE /* PBXTargetDependency */, + 99C57F8B7836AB8A160E5CE0 /* PBXTargetDependency */, ); - name = "IceRetry macOS"; - productName = IceRetry; - productReference = 5EEB85F7C36B02C635BBFDB7 /* IceRetry.bundle */; + name = "IceInvoke iOS"; + productName = IceInvoke; + productReference = C19ED6991B81D0F741D8B390 /* IceInvoke.bundle */; productType = "com.apple.product-type.bundle"; }; - B3FAC186802EC7B160722234 /* IceAdapterDeactivation macOS */ = { + AE646D18FFEFFFB65901B9D9 /* IceLocation iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 10D2E4823E17F7AA81502243 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */; + buildConfigurationList = C375060CFF20E4DE39D6CFF3 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */; buildPhases = ( - 80EF5348B1A88B2937E0CE91 /* Sources */, - 98471EBD3C8B374440FCD0BD /* Frameworks */, - 360F50F3916E9E3F27D94B60 /* Resources */, + C42941CAE7C44F652D3A5CC4 /* Sources */, + 5343EC8E9CB2335071D16552 /* Frameworks */, + 3B3C4972011E42A0EB3C223B /* Resources */, ); buildRules = ( - C57FC8986B378D208F20BAE0 /* PBXBuildRule */, + 524158F422632D370591A3C8 /* PBXBuildRule */, ); dependencies = ( - 4D24BB84B7B720B1609DE82B /* PBXTargetDependency */, - 8AA33C1034B93523BA5B140B /* PBXTargetDependency */, + AC8A20FB7CE10C7C4352C472 /* PBXTargetDependency */, + FC70EE54AE34A09FE39B3613 /* PBXTargetDependency */, ); - name = "IceAdapterDeactivation macOS"; - productName = IceAdapterDeactivation; - productReference = CB082E75D7E8687246CC10D9 /* IceAdapterDeactivation.bundle */; + name = "IceLocation iOS"; + productName = IceLocation; + productReference = 53A5BF7BE1E27774AE055437 /* IceLocation.bundle */; productType = "com.apple.product-type.bundle"; }; - B49EEDD01A8C36F24785F1E7 /* IceAdmin macOS */ = { + AF397ABBF2A5A4C1FCF90790 /* IceServantLocator iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5228F898A71174D634D43378 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */; + buildConfigurationList = 45336E8FD09E7C44847CE073 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */; buildPhases = ( - 59557C09F67164DD5842F5C7 /* Sources */, - CD736BC768782D15441D7285 /* Frameworks */, - D5A10FB0AA06C1C3795E0A33 /* Resources */, + 3A88480A773E8DCB3E678008 /* Sources */, + 6BE280D99DD511DCADE857EC /* Frameworks */, + E517096323BC53F76013658D /* Resources */, ); buildRules = ( - 38AC950A4251F435221EFAC1 /* PBXBuildRule */, + 1C73735EFAD37D1CFA1D669A /* PBXBuildRule */, ); dependencies = ( - 5DC2C74A75DCC82D8EB76065 /* PBXTargetDependency */, - 321CA458874D936AADF90B86 /* PBXTargetDependency */, + 4B11CDADF3FB598BD15FDD82 /* PBXTargetDependency */, + 098D84548F556CCEB5C69F11 /* PBXTargetDependency */, ); - name = "IceAdmin macOS"; - productName = IceAdmin; - productReference = 0D30BA12F527E21D48DFD791 /* IceAdmin.bundle */; + name = "IceServantLocator iOS"; + productName = IceServantLocator; + productReference = 9F93205A8C96574AF482B2AB /* IceServantLocator.bundle */; productType = "com.apple.product-type.bundle"; }; - B4C54B94A72325BA4250EB2E /* IceServantLocatorAMD macOS */ = { + AFBF627FDB9280859A796E95 /* IceStream iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3D26670110605ADB8439EA1A /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */; + buildConfigurationList = BAA00BA6A0C39AAC123B5915 /* Build configuration list for PBXNativeTarget "IceStream iOS" */; buildPhases = ( - E97E53155473702F3D0C698D /* Sources */, - 2929744F90ED76DA401853BC /* Frameworks */, - 84AA8D01E0CCE7EF92F6B13B /* Resources */, + ECA8E9D076A7FEA89EF29A0B /* Sources */, + 40F7429554A2A9A4849030D6 /* Frameworks */, + FE75C2B98313D6F50B2857EB /* Resources */, ); buildRules = ( - 0C0617F153A415C074261882 /* PBXBuildRule */, + 39718FDCC97D2AF791C4FF7B /* PBXBuildRule */, ); dependencies = ( + F693659B4A21E81E462246B8 /* PBXTargetDependency */, + A02E59E12B944AD9B146C4D4 /* PBXTargetDependency */, ); - name = "IceServantLocatorAMD macOS"; - productName = IceServantLocatorAMD; - productReference = EE844510C2D8711298D5FC31 /* IceServantLocatorAMD.bundle */; + name = "IceStream iOS"; + productName = IceStream; + productReference = 63DF48DC6AC320881942F9D2 /* IceStream.bundle */; productType = "com.apple.product-type.bundle"; }; - B51FD7FF275A85DCE665AB96 /* IceObjects macOS */ = { + B0A77BB6DFBFBE8B44E34482 /* IceOptional iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A1FB629F3DB8F5537ACC46F2 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */; + buildConfigurationList = 492CD0CF5E358D907F90FEEE /* Build configuration list for PBXNativeTarget "IceOptional iOS" */; buildPhases = ( - BA68633733EA8DC078472E17 /* Sources */, - 2D981833CC8FBEDFAEA491DA /* Frameworks */, - 6D8261EFF49DCF557D226AEF /* Resources */, + 81D0BB56AF1F3B4577276BE8 /* Sources */, + 674D555CD654C7FBFE580E45 /* Frameworks */, + 823B51C54FC435F6A03D3EAF /* Resources */, ); buildRules = ( - 3DA7D46CB7FDC1044780F802 /* PBXBuildRule */, + 6118D9947998D75D49CC2D58 /* PBXBuildRule */, ); dependencies = ( - C03007A48FA27BE30F925426 /* PBXTargetDependency */, - 9865DFFD138C74155281BD35 /* PBXTargetDependency */, + 4F565C91BA73514F2E9B1EC9 /* PBXTargetDependency */, + EBF1E054AF40F03178AEB36E /* PBXTargetDependency */, ); - name = "IceObjects macOS"; - productName = IceObjects; - productReference = 3D99E4B9F11AB36F978CF616 /* IceObjects.bundle */; + name = "IceOptional iOS"; + productName = IceOptional; + productReference = 6C1CDE26751507399301F945 /* IceOptional.bundle */; productType = "com.apple.product-type.bundle"; }; - BB148EB91DBAAACC5D08F10B /* IceImpl macOS */ = { + B502D4DB10FAD01329293155 /* IceOperations macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = FCB71AFE893E7171705D4364 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */; + buildConfigurationList = 9A898F97439A84719F1671CF /* Build configuration list for PBXNativeTarget "IceOperations macOS" */; buildPhases = ( - A08B15AFFA3944C7821C1B10 /* Headers */, - 0A7D7E38BBE672E18539B0C5 /* Sources */, - F1EC417D238DBCC54E934CA1 /* Frameworks */, - 9B8C89FE8B67D411CFC41AC9 /* Resources */, + AC5BC499C01824104D8ED5F2 /* Sources */, + 6C415DBE0B9BAD7355AC1C82 /* Frameworks */, + BBB57A940BEC85757BF33C45 /* Resources */, ); buildRules = ( + C258307974147646482ED430 /* PBXBuildRule */, ); dependencies = ( - A1AEA60AA98C9CAF76FD32A0 /* PBXTargetDependency */, - 578FC1E0F3F13E5DE1507FDC /* PBXTargetDependency */, - 923B443A3DFBA414FFB0EE60 /* PBXTargetDependency */, + C1FB66DD25250EB4BEFADE97 /* PBXTargetDependency */, + ADFAB75E29386469C7988912 /* PBXTargetDependency */, ); - name = "IceImpl macOS"; - productName = IceImpl; - productReference = 24DF17C88033201714B50ED2 /* IceImpl.framework */; - productType = "com.apple.product-type.framework"; + name = "IceOperations macOS"; + productName = IceOperations; + productReference = F97826A9DCAFE51593E3E836 /* IceOperations.bundle */; + productType = "com.apple.product-type.bundle"; }; - BBEFD25BD9A130DE61D90238 /* IceOperationsAMD iOS */ = { + BA6B1EBD97713F7883F4CA94 /* IceSlicingExceptions macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1811E364A2F015F0AFD24FC8 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */; + buildConfigurationList = 3DECEE29BBC1B56CC203D718 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */; buildPhases = ( - 2D06B4E157A77EA66C4C2023 /* Sources */, - 78BF00B37BB177564D54DB40 /* Frameworks */, - 4575FE0BC6D54D36F19D7C32 /* Resources */, + 160A24AE04A5D9DF51464E8A /* Sources */, + C671EB95C66849845262E6F1 /* Frameworks */, + 70FA52C9BE4D5CA04E01B10D /* Resources */, ); buildRules = ( - 6980DA7D553A970823D703F5 /* PBXBuildRule */, + F5B0EDABA2B7DE5B601FD5F2 /* PBXBuildRule */, ); dependencies = ( + 680C8D1C94B4328EEB837B9A /* PBXTargetDependency */, + 4ADC78295866FB7F4959DDFA /* PBXTargetDependency */, ); - name = "IceOperationsAMD iOS"; - productName = IceOperationsAMD; - productReference = F711FC1FF1A09C9363807725 /* IceOperationsAMD.bundle */; + name = "IceSlicingExceptions macOS"; + productName = IceSlicingExceptions; + productReference = 99CDD3BEF9831A379194BA9E /* IceSlicingExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - BCEAC60BF9D3DB0E6BB1DD33 /* IceSlicingObjects macOS */ = { + BAD99ED95E14E2F53810245D /* IceObjects iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 98058983671A49B9B9D12694 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */; + buildConfigurationList = E0EBE04152FF4ED31AD30380 /* Build configuration list for PBXNativeTarget "IceObjects iOS" */; buildPhases = ( - 3C34A9ACF10543E5C6538191 /* Sources */, - 8928FC2CBFF06DB45BDB514E /* Frameworks */, - 6893EFB4D00C8F27564A174C /* Resources */, + 6831E3CD4222C55A8F044111 /* Sources */, + 178A5969AEF5E652580EBB8E /* Frameworks */, + 1EC14E8FEB51499775F64FE2 /* Resources */, ); buildRules = ( - 6D5FC6B24A46269E13F729E4 /* PBXBuildRule */, + 0958E402CF051D4C22CB38E7 /* PBXBuildRule */, ); dependencies = ( - C7C2D9F88338B9890CA07314 /* PBXTargetDependency */, - 3C58BDC60502522C978B9A0A /* PBXTargetDependency */, + F09E6328CE01286C6ADD95F9 /* PBXTargetDependency */, + 00C7366750C45A1A322C6CF3 /* PBXTargetDependency */, ); - name = "IceSlicingObjects macOS"; - productName = IceSlicingObjects; - productReference = 57A4D45FAFD10790DA8D9A1F /* IceSlicingObjects.bundle */; + name = "IceObjects iOS"; + productName = IceObjects; + productReference = 73E30F6985B146225B2F0177 /* IceObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - BD615D3AE7C4D142D2D859B8 /* IceBinding macOS */ = { + BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2DAF4D2986351CC42ECADCFB /* Build configuration list for PBXNativeTarget "IceBinding macOS" */; + buildConfigurationList = E9C9BFDEA2ED16B4476CCF6D /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */; buildPhases = ( - C8A227DBD6A7A872CBC5FDBB /* Sources */, - 6A3583740550C02B94108F7D /* Frameworks */, - ED8CAF21F5852AE4FDC002DC /* Resources */, + 65B941C107B5D926BC9DAE4E /* Headers */, + 150B84A0024A0B21EECC417A /* Sources */, + 4EC993DF9E8B39A33AE23F57 /* Frameworks */, + 6E1BE16EDCDE9D779118BF95 /* Resources */, ); buildRules = ( - 9ACD1AEFAB14C0CB524D3F92 /* PBXBuildRule */, + F4FF19C8B36BC51E28C1D10F /* PBXBuildRule */, ); dependencies = ( - 0EFD452CA523BEB73D0F8635 /* PBXTargetDependency */, - 70183B95CD8F66FB82DB74EE /* PBXTargetDependency */, + 5115402FB20281796EBBF688 /* PBXTargetDependency */, ); - name = "IceBinding macOS"; - productName = IceBinding; - productReference = 2B30F4B19AFB12FA54B16AED /* IceBinding.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Glacier2 iOS"; + productName = Glacier2; + productReference = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; + productType = "com.apple.product-type.framework"; }; - BF6E058050842A50604055C2 /* IceOptionalAMD iOS */ = { + BC8247889BA776D5F194850C /* IceSlicingObjects iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6583C70856630D705890F9AB /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */; + buildConfigurationList = EA59AF9ED6271FF30295A838 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */; buildPhases = ( - 8E451D196306CE7679BA9EDC /* Sources */, - 74810A9ECEC424FFDD7A8EFE /* Frameworks */, - 5C3341388333CD70DE2C03C5 /* Resources */, + E57FB46C09E60C578673E07F /* Sources */, + FC522ABDE41AE6BB07D375F9 /* Frameworks */, + 9106DF14C082197A5E9FBDD0 /* Resources */, ); buildRules = ( - 742E56F2651A2BE95B6B6B3B /* PBXBuildRule */, + F53C7359C7688256ADE30010 /* PBXBuildRule */, ); dependencies = ( + B2F371E275144C1F37C08D65 /* PBXTargetDependency */, + 9C64C861ED970F6040F57C2D /* PBXTargetDependency */, ); - name = "IceOptionalAMD iOS"; - productName = IceOptionalAMD; - productReference = 3D29EC47A6324333C0CB11E6 /* IceOptionalAMD.bundle */; + name = "IceSlicingObjects iOS"; + productName = IceSlicingObjects; + productReference = 6E0FC8B916544739F08DBD2A /* IceSlicingObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - CC8E2C60DE859F3875C1A578 /* IceOperationsAMD macOS */ = { + BC8AD08D72ABA5BDCF4A07E3 /* IceStream macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = DD3460088DD573F25718BB50 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */; + buildConfigurationList = D6D26BFF9C8DBDB634F93FAA /* Build configuration list for PBXNativeTarget "IceStream macOS" */; buildPhases = ( - F0ADC1CF2E2EFF316D774616 /* Sources */, - 5AA0C6FD48872CDC5D3C72DC /* Frameworks */, - 85CEFAB6611C94479DBCF5CA /* Resources */, + 701AECBCD0845BFB1876E088 /* Sources */, + A7D83AF2396D9E893D2FA565 /* Frameworks */, + 057E77D63FD84FF82DF4BF52 /* Resources */, ); buildRules = ( - 6BE1B308FBCD4A40D2BC9295 /* PBXBuildRule */, + 6EA612880E2BD61FA55791F1 /* PBXBuildRule */, ); dependencies = ( + 847597A48877E6EEE06837B9 /* PBXTargetDependency */, + 643721BE480E516C3780AD4C /* PBXTargetDependency */, ); - name = "IceOperationsAMD macOS"; - productName = IceOperationsAMD; - productReference = 1E68540A1B43B1CBC5942095 /* IceOperationsAMD.bundle */; + name = "IceStream macOS"; + productName = IceStream; + productReference = CE5EF72F93C8A48F13699E40 /* IceStream.bundle */; productType = "com.apple.product-type.bundle"; }; - CE79EFA5A2D0EEBD42B1DC53 /* IceAcm macOS */ = { + BDB1F608C841B14238DB67CF /* Ice iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = DF89BAA77340F0D9A91B5B70 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */; + buildConfigurationList = A1E02F41A3A6C1296EC1ED1E /* Build configuration list for PBXNativeTarget "Ice iOS" */; buildPhases = ( - 8786DA1F033412225FCCC882 /* Sources */, - 22E96229AAC022EFCED7CE61 /* Frameworks */, - 93217E56202C0645C308F7D9 /* Resources */, + 58EA7ADDF13023AC26BAD850 /* Headers */, + 0480CB6E3A8E8A31A337C25A /* Sources */, + F0D515AF7A5C27A881B2DA68 /* Frameworks */, + BE2A873654C3B10200C519DB /* Resources */, ); buildRules = ( - 7AF73AB9C64F083D9C05305D /* PBXBuildRule */, + 55EAA30E2F1BC82BF4F771D5 /* PBXBuildRule */, ); dependencies = ( - 19F93C717AF196D1EED43CDF /* PBXTargetDependency */, - 8BD920016F095A02FFC1A98E /* PBXTargetDependency */, + F05327602CDFF152C5D841C4 /* PBXTargetDependency */, ); - name = "IceAcm macOS"; - productName = IceAcm; - productReference = 5856D3133582D30B6424B442 /* IceAcm.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice iOS"; + productName = Ice; + productReference = 1C1A5C984E086E684382E966 /* Ice.framework */; + productType = "com.apple.product-type.framework"; }; - CF2C35C710236049C9C60B79 /* IceProperties macOS */ = { + C11F92A0F52BB78CE42B609D /* IceInheritance iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A7B12C54A68B5F3BB09BB60C /* Build configuration list for PBXNativeTarget "IceProperties macOS" */; + buildConfigurationList = 31E91A99438DF7CF294196DC /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */; buildPhases = ( - DE9EB00E333E4DD3BCF925D3 /* Sources */, - D36BA87EFCF951121584B562 /* Frameworks */, - 6B28328D014A1158D8B61503 /* Resources */, + 24FC934D8BBC273401D4B94C /* Sources */, + DC40E825EE8F0BA639C29C8D /* Frameworks */, + A0B5B9C75F274382DE12D10F /* Resources */, ); buildRules = ( - EF9EDAEAEEAF00D419FAFC48 /* PBXBuildRule */, + EE1B96369E945536DFA93DC8 /* PBXBuildRule */, ); dependencies = ( - A93B5EB4B3BDD5605367C99B /* PBXTargetDependency */, - 2219D2B745BBE8D752027A8B /* PBXTargetDependency */, + 2917EA502B354A6494B8FF02 /* PBXTargetDependency */, + EF8D9D52D26DEE70F42BF3C6 /* PBXTargetDependency */, ); - name = "IceProperties macOS"; - productName = IceProperties; - productReference = DBE10FD0363BDE5EDFF0F511 /* IceProperties.bundle */; + name = "IceInheritance iOS"; + productName = IceInheritance; + productReference = B2C1876280F446CCE7B816D9 /* IceInheritance.bundle */; productType = "com.apple.product-type.bundle"; }; - D166D330DEC6674B8372A98E /* IceStorm macOS */ = { + C353EC6DD74EF040A9869F1A /* IceSlicingExceptions iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CD1A13B6321D7957542DE130 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */; + buildConfigurationList = CDABCC82729DB49FD47FFE3D /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */; buildPhases = ( - D253C1F407233ACF50F5774F /* Headers */, - 948D9EBD83F8962FC6B57605 /* Sources */, - A6FF3006FB5665C3C42E218A /* Frameworks */, - F2C71A3BD9FE8A5FABF3FFED /* Resources */, + 69B40FFD87789CF391A5BC46 /* Sources */, + 9BD0369787C3CDCC832E8410 /* Frameworks */, + D478AD3490A3606865766038 /* Resources */, ); buildRules = ( - 25A1A910EA6C8AFDEF7BFD8B /* PBXBuildRule */, + F0FB78ABEAFADCDA0762CC8E /* PBXBuildRule */, ); dependencies = ( - 0966619ED7FE1158115320AA /* PBXTargetDependency */, + 46275F2AE1F5949678E5B7E6 /* PBXTargetDependency */, + 5DFC199C350523CFAA6A5ED9 /* PBXTargetDependency */, ); - name = "IceStorm macOS"; - productName = IceStorm; - productReference = A7A335019D6FC3FE103657A6 /* IceStorm.framework */; - productType = "com.apple.product-type.framework"; + name = "IceSlicingExceptions iOS"; + productName = IceSlicingExceptions; + productReference = E39E0C1B10E19B51E2A7B2E4 /* IceSlicingExceptions.bundle */; + productType = "com.apple.product-type.bundle"; }; - D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */ = { + C386F0ADF5BCB591C41D4FFD /* IceOperationsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D77B6EAF252C5E522EF824EB /* Build configuration list for PBXNativeTarget "TestCommon macOS" */; + buildConfigurationList = 49D01C61AD8758D2B471AA02 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */; buildPhases = ( - 6A98037C6324B3A1488130FF /* Headers */, - A8407965EDF0FA13A64D9087 /* Sources */, - C27CDD5D5FEA7255B77E1A92 /* Frameworks */, - 4D2E27DB3EA5207711F8614D /* Resources */, + 89DC88D3768C291C5BE46F0D /* Sources */, + 3D7A25D1EE4C9E48E88051CC /* Frameworks */, + C20901B71BDCAD06E9FD9794 /* Resources */, ); buildRules = ( - 0967805BCE1E6813D3222CB3 /* PBXBuildRule */, + BFAC9385AF5B1C62CB304049 /* PBXBuildRule */, ); dependencies = ( ); - name = "TestCommon macOS"; - productName = TestCommon; - productReference = 5A6F283B4FB52D9B8D73D6AC /* TestCommon.framework */; - productType = "com.apple.product-type.framework"; + name = "IceOperationsAMD iOS"; + productName = IceOperationsAMD; + productReference = 79B44ECCFF08BDD9E83A886B /* IceOperationsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - D2EB13A2B3406D37FA2754E9 /* IceSlicingObjectsAMD iOS */ = { + CEE926A8FFE81634B9CBA64C /* IceProxy iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 13F2899914E358256D593220 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */; + buildConfigurationList = AD161EDD9CF2D67496627B0D /* Build configuration list for PBXNativeTarget "IceProxy iOS" */; buildPhases = ( - B76C94C29C765526C68FF280 /* Sources */, - B6D2D2F943D8B4EEED3B299A /* Frameworks */, - 5D02B29E855CA143354373EA /* Resources */, + 4F8FB5F5C3B0AA072EBE86C3 /* Sources */, + 21C4C789E5F3EA71CD5CF519 /* Frameworks */, + 0F4892E621165051767C5160 /* Resources */, ); buildRules = ( - 78A8306481EAD2AF63BA0088 /* PBXBuildRule */, + 5D5176301B17E939F7D3BA96 /* PBXBuildRule */, ); dependencies = ( + F828F317335931B5298DF358 /* PBXTargetDependency */, + 889161D8D617DAE3FB899EFE /* PBXTargetDependency */, ); - name = "IceSlicingObjectsAMD iOS"; - productName = IceSlicingObjectsAMD; - productReference = 14BBB915E0507F5D160ACEFA /* IceSlicingObjectsAMD.bundle */; + name = "IceProxy iOS"; + productName = IceProxy; + productReference = 99F9D2D3C733AFDB4D23EB00 /* IceProxy.bundle */; productType = "com.apple.product-type.bundle"; }; - D4D6FEE0BB4641B83FAB188E /* IceAmi macOS */ = { + CFA7C016ADBDBC9AE9AB0FF7 /* IceGrid macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 46BDA3159CE9E1C75E6623B8 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */; + buildConfigurationList = 26A5B6B0FCBC7609F683D25F /* Build configuration list for PBXNativeTarget "IceGrid macOS" */; buildPhases = ( - 480CF4808523A5E69EB7D407 /* Sources */, - 65FE965E05FC83E506ED93B4 /* Frameworks */, - DC2303946D501B2E77C3BB57 /* Resources */, + 558B4EC93D7C78C03C354DB2 /* Headers */, + 6A86E20C61F27E3286476095 /* Sources */, + E1227AEBECE21D1CC01C02B6 /* Frameworks */, + 9F71CAD79F5FA4492A98DA81 /* Resources */, ); buildRules = ( - 9DA1377CA4018EE85FEDBCFC /* PBXBuildRule */, + 605A5E76A3A4E8E932681992 /* PBXBuildRule */, ); dependencies = ( - 6812589996B832C9A0609F36 /* PBXTargetDependency */, - 9BBC14B6DEB9CC469A18760D /* PBXTargetDependency */, + 4276032127E7F02B88B45E29 /* PBXTargetDependency */, + DBB9E5A459AABFB341F95ECE /* PBXTargetDependency */, ); - name = "IceAmi macOS"; - productName = IceAmi; - productReference = F1D304290414990EF0C45B8F /* IceAmi.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceGrid macOS"; + productName = IceGrid; + productReference = C0AF15B4EEC648C875D97939 /* IceGrid.framework */; + productType = "com.apple.product-type.framework"; }; - D660697C6325570C429F2BC9 /* IceOptional macOS */ = { + D0CB5D7E1779A34D43B5B89E /* IceUdp iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E28ADFC31AAB0E465B4AEA32 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */; + buildConfigurationList = 3E24D4F20919277433AEDC55 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */; buildPhases = ( - BB65F0DCE4801282D4A53128 /* Sources */, - 47996774354869BDD5E2817F /* Frameworks */, - C85925BD20AFC044CC666C17 /* Resources */, + F6AAC081A93E2757B8F6E9AC /* Sources */, + 6BECAD3E97375981EE3515ED /* Frameworks */, + 8485992CF05DC1021A09D8A7 /* Resources */, ); buildRules = ( - AFEAB7B27D528834C61D6D46 /* PBXBuildRule */, + 72406AFBCC3F4300CD164514 /* PBXBuildRule */, ); dependencies = ( - DD9250B27E497A58C6F0D38B /* PBXTargetDependency */, - F0C7D1078E97BA2768BFAC7B /* PBXTargetDependency */, + A0E3D4AC198A6DC6808F2DEC /* PBXTargetDependency */, + F1BA5260866BD4B2D46B9437 /* PBXTargetDependency */, ); - name = "IceOptional macOS"; - productName = IceOptional; - productReference = 7D09811ABF1129D166FBECD8 /* IceOptional.bundle */; + name = "IceUdp iOS"; + productName = IceUdp; + productReference = 85B515A196F89D779308CAD1 /* IceUdp.bundle */; productType = "com.apple.product-type.bundle"; }; - D6C19C2ACCB1CB3FB3B25FA9 /* IceGrid iOS */ = { + D52144324A93F3717DC3A4BB /* IceInheritance macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C7F80BA4C97C8D21B793DE17 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */; + buildConfigurationList = 4CE4778CBD0A4E6FC82775E9 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */; buildPhases = ( - 1B60567B354A71B70D9F17FA /* Headers */, - A36774ACC8F2668986006B82 /* Sources */, - B855C0B526D3E65C1B97B340 /* Frameworks */, - C84D4C652D2DC0B0666706CF /* Resources */, + 6F55FD163BA096C512C916E3 /* Sources */, + D75B2EC24305B59D2E2BEE1D /* Frameworks */, + C0C847052EA494D75F3D93EB /* Resources */, ); buildRules = ( - 4C421FC35B245A38A2DC32DC /* PBXBuildRule */, + 605130A9C132997054E51A39 /* PBXBuildRule */, ); dependencies = ( - F821EBE4ED521270E804D413 /* PBXTargetDependency */, - F4FC3B9A79B2DBB879690C17 /* PBXTargetDependency */, + FECA0D68F9BE92C797C3726F /* PBXTargetDependency */, + 970D63C1D4A4BF15FA93EC58 /* PBXTargetDependency */, ); - name = "IceGrid iOS"; - productName = IceGrid; - productReference = 421D20F7517BB9BEE5FAA9EC /* IceGrid.framework */; - productType = "com.apple.product-type.framework"; + name = "IceInheritance macOS"; + productName = IceInheritance; + productReference = 79E564BB39566F3CAD8B878F /* IceInheritance.bundle */; + productType = "com.apple.product-type.bundle"; }; - D7E804643FF0F11F9B5B0EA8 /* IceOperations macOS */ = { + D62438E4F1A3CC9836A8E287 /* IceSlicingExceptionsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1980BC3BCFEBE70279CF9895 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */; + buildConfigurationList = 60E1781E3558EB9101081746 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */; buildPhases = ( - C76332C341D31121F8357DEF /* Sources */, - 4338F70855D84CB1D837309C /* Frameworks */, - 18BCA3C34842B488FF8C467A /* Resources */, + 997D31D827F6C4B852418113 /* Sources */, + A76F18309B0B491F92E1A728 /* Frameworks */, + BC1856CE66B12B7D468AF98E /* Resources */, ); buildRules = ( - B60A4504342022B2D5D5D7ED /* PBXBuildRule */, + 911BD070DE8A35466F16B31E /* PBXBuildRule */, ); dependencies = ( - 40B944B83C8139F2BC8078A3 /* PBXTargetDependency */, - E05E02BCC9304E16F3B38E71 /* PBXTargetDependency */, ); - name = "IceOperations macOS"; - productName = IceOperations; - productReference = FF80542C911241FAB9075178 /* IceOperations.bundle */; + name = "IceSlicingExceptionsAMD iOS"; + productName = IceSlicingExceptionsAMD; + productReference = 5A6BCE84AFC62FA7351297E6 /* IceSlicingExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - D8E57767C0E6E25C9171CD94 /* IceEnums iOS */ = { + D7CF9E2B46E63FC31B7A1F92 /* IceAcm macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 62E64D3926FBD2D1F48DA25D /* Build configuration list for PBXNativeTarget "IceEnums iOS" */; + buildConfigurationList = 6BB1BA7FF0A2AA43C1D29C03 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */; buildPhases = ( - 222DD1AE7415C31D17A3D169 /* Sources */, - 76C166581A47F871D5F800EF /* Frameworks */, - 7DB8A9A8207D90817E5CCABC /* Resources */, + BF00BE8B9F09076ECFB79A05 /* Sources */, + 2082B5F21E7931D8FA85345F /* Frameworks */, + 9ABD7D918E0EB40B70D7D70B /* Resources */, ); buildRules = ( - C3283B881010BB1CC95A6603 /* PBXBuildRule */, + 49AE49184984F4BC11E7A190 /* PBXBuildRule */, ); dependencies = ( - 177DD53FA83D4C906941D23B /* PBXTargetDependency */, - 14C96416FF965CF99EA8DF85 /* PBXTargetDependency */, + 5EC0BF68CBF859070F7C60E0 /* PBXTargetDependency */, + 644D2CB48445102AD4EB961F /* PBXTargetDependency */, ); - name = "IceEnums iOS"; - productName = IceEnums; - productReference = 574A31600701185E9FDEC087 /* IceEnums.bundle */; + name = "IceAcm macOS"; + productName = IceAcm; + productReference = C7529E7D6E0CE82CABE0D45B /* IceAcm.bundle */; productType = "com.apple.product-type.bundle"; }; - DD3F4218F00B8F03628CFF85 /* IceStream iOS */ = { + E2CC2C0A9253A8A9567DA40C /* IceOptional macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 00236410B7878815C9462DB6 /* Build configuration list for PBXNativeTarget "IceStream iOS" */; + buildConfigurationList = A369A5BC026AEE26F64C934F /* Build configuration list for PBXNativeTarget "IceOptional macOS" */; buildPhases = ( - 246253152A8A494FF5540BD5 /* Sources */, - 4344970BC2EDC456530C36A1 /* Frameworks */, - BCD9FC26DEEA75170E10F5D5 /* Resources */, + A6E11EF3B3E17130A401AA5F /* Sources */, + C0446FB501EFBD6035BCDFE1 /* Frameworks */, + 991D3F773FE2F497EA2A7F7C /* Resources */, ); buildRules = ( - E9FBB1B4891957CADFB0648B /* PBXBuildRule */, + 47076ACD2D5E157833A7069A /* PBXBuildRule */, ); dependencies = ( - F7A4C5F2CE8E25677A20701C /* PBXTargetDependency */, - D2ABB6907F687A1634C727D3 /* PBXTargetDependency */, + B56ACA4EB35E8DF442950B00 /* PBXTargetDependency */, + 747C6EDCFF53A92C7918E498 /* PBXTargetDependency */, ); - name = "IceStream iOS"; - productName = IceStream; - productReference = C4D7BABAB3FF83E286B743F7 /* IceStream.bundle */; + name = "IceOptional macOS"; + productName = IceOptional; + productReference = A7F4197C8123883ABAF8C85D /* IceOptional.bundle */; productType = "com.apple.product-type.bundle"; }; - DE7C3CE12D76528ED6571BB0 /* IceTimeout iOS */ = { + E3479E14717F19236E306587 /* IceSlicingObjectsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 235EAE8BF84A08E14162D089 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */; + buildConfigurationList = 7504876954989971B7E0484C /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */; buildPhases = ( - 5157643376FA82B89EEB08D8 /* Sources */, - 3BDA4E445ACB0AD365C74687 /* Frameworks */, - 26AFEAD1874E9C55EFB3D8E1 /* Resources */, + F3B366D49E6B2BFF8728E083 /* Sources */, + F05A9409CE78B39D983E8E79 /* Frameworks */, + 097778F25DB7DB463E4B3C49 /* Resources */, ); buildRules = ( - E685247FAC72008244FF4F4D /* PBXBuildRule */, + 5068FEA3DC1C1093B8937B89 /* PBXBuildRule */, ); dependencies = ( - 8590BF2D92F5E519CCE6E0B7 /* PBXTargetDependency */, - D5766540D82324E628841392 /* PBXTargetDependency */, ); - name = "IceTimeout iOS"; - productName = IceTimeout; - productReference = 84129524C4F70B842B955026 /* IceTimeout.bundle */; + name = "IceSlicingObjectsAMD macOS"; + productName = IceSlicingObjectsAMD; + productReference = 09486704DD4EBAC0DD6677C8 /* IceSlicingObjectsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - DE8F7D3EE9F4909908CB3923 /* IceStream macOS */ = { + E84AD21BA9DB06F21E2D3BB3 /* IceLocatorDiscovery C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BBE03B18CF52DBF06CD120E4 /* Build configuration list for PBXNativeTarget "IceStream macOS" */; + buildConfigurationList = B351BA953215FB9837A9C550 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */; buildPhases = ( - 58CEE4BDE08B849270A398E7 /* Sources */, - 7CEEB150555D1A002F03561A /* Frameworks */, - A18DBCDA92B8B689D424C417 /* Resources */, + 9FEE05592AE8324AF9E79454 /* Headers */, + E12248A19E1B790525CD23AB /* Sources */, + 064811FE756C489F622F4CD2 /* Frameworks */, ); buildRules = ( - 5BDB3FD3DD1E27619DCF5343 /* PBXBuildRule */, + 620197F8BBA2706B29E42E10 /* PBXBuildRule */, ); dependencies = ( - 1BB5E632D9FB3E508B468DD5 /* PBXTargetDependency */, - 3B4546B1387E723D2C297F52 /* PBXTargetDependency */, + 97B000A6252B61239F60D7A4 /* PBXTargetDependency */, ); - name = "IceStream macOS"; - productName = IceStream; - productReference = 3621866FB3468BC2E48FB9B7 /* IceStream.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceLocatorDiscovery C++11 iOS"; + productName = "IceLocatorDiscovery C++11 iOS"; + productReference = 4F365747574374068F56B9FD /* libIceLocatorDiscovery C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - E1DFDE719731E7D4A7FEF6E0 /* IceDefaultValue iOS */ = { + EA1D2D4417E34B61AC64FEE1 /* IceInterceptor iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3C8F0B13468176E203388188 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */; + buildConfigurationList = CAB0B77B83FB59AC0194739E /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */; buildPhases = ( - 3728EFBD094185E9090EA0FB /* Sources */, - A3F0D705D910ED5C5DC4390B /* Frameworks */, - 046A1EFBBEA27B2996D4FE18 /* Resources */, + 754369F2E5DE796468C3C840 /* Sources */, + F7386CB42707112CB1B8A967 /* Frameworks */, + D556934DE5670057A35038C4 /* Resources */, ); buildRules = ( - 41F9BA501264430B049ACCBF /* PBXBuildRule */, + 2C73273142987B7C6C0DC25D /* PBXBuildRule */, ); dependencies = ( - 39F809683F85B4CDF4344C88 /* PBXTargetDependency */, - 09D176AFEE3692AD309D6562 /* PBXTargetDependency */, + F5AD26B150EBC63B14C7C1A5 /* PBXTargetDependency */, + 7B9A2F265DC3ACF93454979F /* PBXTargetDependency */, ); - name = "IceDefaultValue iOS"; - productName = IceDefaultValue; - productReference = 9A3965D141BF41DF1F0C551B /* IceDefaultValue.bundle */; + name = "IceInterceptor iOS"; + productName = IceInterceptor; + productReference = 5F9757AB402E520F6A127C8D /* IceInterceptor.bundle */; productType = "com.apple.product-type.bundle"; }; - E51388D0936150349DB47717 /* IceInfo macOS */ = { + EACA18083EFA62557FBB6215 /* IceGrid iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EC2ED350B4BE06E124AF4315 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */; + buildConfigurationList = CBEB8379016775C75645A394 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */; buildPhases = ( - 9A4ED064FE6E42598FD6425F /* Sources */, - 4912B80B1313E741407D866F /* Frameworks */, - BCF0CB79501EBE7A8DB9BD7A /* Resources */, + 7B69B42DFF503DFC784A79D2 /* Headers */, + 8080F840DC63835F3A414E77 /* Sources */, + 411BC2E979F16D9840188D82 /* Frameworks */, + B0A6A93B074143CE8B3932F4 /* Resources */, ); buildRules = ( - 39F14EA9557A024F28CE6D27 /* PBXBuildRule */, + 7970F3E9D6D694AE79CECD41 /* PBXBuildRule */, ); dependencies = ( - 8702C18A0C77263511D9EEDE /* PBXTargetDependency */, - D2B534DF7C495616B61D9DAA /* PBXTargetDependency */, + 7A0D34B2D177C32128C645D0 /* PBXTargetDependency */, + D22A61F81811EA2A3879F9EF /* PBXTargetDependency */, ); - name = "IceInfo macOS"; - productName = IceInfo; - productReference = A9FEE9EA5FF7D393AB623659 /* IceInfo.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceGrid iOS"; + productName = IceGrid; + productReference = 3D98CE77652346A9B41B4831 /* IceGrid.framework */; + productType = "com.apple.product-type.framework"; }; - EBB34A2FBFB19A98854A90B2 /* IceObjects iOS */ = { + EC69EEBE9D64F07481829BFA /* IceAdmin macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2950D67411DBCABCE2C185DA /* Build configuration list for PBXNativeTarget "IceObjects iOS" */; + buildConfigurationList = ED8E7E82B168D7EB16E5E342 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */; buildPhases = ( - 824E592A3AB65CEE426FAE6A /* Sources */, - 8C65073F217D444C9804C18C /* Frameworks */, - DF75B44EB38A432C7758EC45 /* Resources */, + 6878B564B0F2D92DB5EB28B0 /* Sources */, + 34E048EEB77B533379B37619 /* Frameworks */, + A3372331135643B14D21DE75 /* Resources */, ); buildRules = ( - EE7E4F4B1C7CE544A204C4B2 /* PBXBuildRule */, + 4160F97C6DD6AB072C8E1471 /* PBXBuildRule */, ); dependencies = ( - 40377970465B2425DFCAFC4C /* PBXTargetDependency */, - 1ED1295A515AB5137D83B3FD /* PBXTargetDependency */, + 053F3A49FFF23311FAC44489 /* PBXTargetDependency */, + 9AE0565ECFF368D791619365 /* PBXTargetDependency */, ); - name = "IceObjects iOS"; - productName = IceObjects; - productReference = 26333E41B14F786F1F2AE7BD /* IceObjects.bundle */; + name = "IceAdmin macOS"; + productName = IceAdmin; + productReference = 61F67EA48B40D8217803F572 /* IceAdmin.bundle */; productType = "com.apple.product-type.bundle"; }; - ED67C4392ADE53C242195C57 /* IceSlicingExceptions iOS */ = { + EFD2EA453C644DB2E82BF9B6 /* IceSlicingObjects macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E99F518660F9AB06ACE667CD /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */; + buildConfigurationList = 9AC9195AE48E71CB74E51857 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */; buildPhases = ( - 0A9A250939D7BE45351C33DF /* Sources */, - ECE5C7CB1617D199246BDF6C /* Frameworks */, - CA5490605351AF966B2614CC /* Resources */, + B2FD5E0DDD2D8BCA6C586831 /* Sources */, + 58A231E3D638B9E194D10CE9 /* Frameworks */, + D3A54ACF0DD989B854E98C67 /* Resources */, ); buildRules = ( - 66EC3CDC1436D5FC248ABDE2 /* PBXBuildRule */, + 80947A2FF18E06E5B940ACA0 /* PBXBuildRule */, ); dependencies = ( - BD6F61806126F8B4876AAB15 /* PBXTargetDependency */, - F306659467A44A1EF1506B0B /* PBXTargetDependency */, + 03AE68141B2EDA6CE6C43620 /* PBXTargetDependency */, + 2929AD35171753BFA602F48D /* PBXTargetDependency */, ); - name = "IceSlicingExceptions iOS"; - productName = IceSlicingExceptions; - productReference = A6EA1C8C1024620CA648E9E4 /* IceSlicingExceptions.bundle */; + name = "IceSlicingObjects macOS"; + productName = IceSlicingObjects; + productReference = 0F77C35360BC168A8EE3C849 /* IceSlicingObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - EEC6F479C65DCAAB4950D96F /* IceFacets macOS */ = { + F18532A4F881321CB6AE2614 /* IceDefaultValue iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6AD12FA7448CD620F06F4544 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */; + buildConfigurationList = AAA4B5634CFAF599D5CF0A53 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */; buildPhases = ( - 10A73AB36EC16092DAA544D9 /* Sources */, - 30B7EF8233591FD7F4FC7DD6 /* Frameworks */, - 4996ABC3740EA5B4E3ECFCD5 /* Resources */, + 592AA7ADB9244CF7838DFAF0 /* Sources */, + 661293AD0849287E44FB3DCA /* Frameworks */, + E5D2FAAB4A858AF1EF79BB44 /* Resources */, ); buildRules = ( - 3965EDB8CE72829F3D9DCB62 /* PBXBuildRule */, + 8511F95A239D531035420376 /* PBXBuildRule */, ); dependencies = ( - D14791AFE1C9C2B74C497278 /* PBXTargetDependency */, - 99977B77422172889E2505B2 /* PBXTargetDependency */, + 6E7CA6DF8E06C7F5DF811FA7 /* PBXTargetDependency */, + 51F741133673DEAA1459FE79 /* PBXTargetDependency */, ); - name = "IceFacets macOS"; - productName = IceFacets; - productReference = 86FF409A4D607F7C3F700F8B /* IceFacets.bundle */; + name = "IceDefaultValue iOS"; + productName = IceDefaultValue; + productReference = A9E418725A7536BFB1BF5F9E /* IceDefaultValue.bundle */; productType = "com.apple.product-type.bundle"; }; - F9DF2DD34D62DDCA59B08490 /* IceInvoke iOS */ = { + F41AE083FE7A390670B538F9 /* IceServantLocator macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CE38CF5CBBFBC1E58056332B /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */; + buildConfigurationList = 49B609DA78AD14FEB7B6AC6E /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */; buildPhases = ( - E7F343821E76B5BEA92307B7 /* Sources */, - 8865B8FABFE304C12A58F80E /* Frameworks */, - 29975D1740F039C626922310 /* Resources */, + E9DCD5998A1AFE37F795A360 /* Sources */, + B667EB713F062D2AF378EDC0 /* Frameworks */, + 363122340AFFB2E22FEFBE58 /* Resources */, ); buildRules = ( - 9A27AD256C05C172E1AE72B0 /* PBXBuildRule */, + CF38C0C5FCA88D918D126407 /* PBXBuildRule */, ); dependencies = ( - D262A9D4C5A1AA7DE691620A /* PBXTargetDependency */, - C25C82B8BD02AE39C9029153 /* PBXTargetDependency */, + 677D8EB8A364B50453E41043 /* PBXTargetDependency */, + 4A4786C4294D9D9EB04A12A1 /* PBXTargetDependency */, ); - name = "IceInvoke iOS"; - productName = IceInvoke; - productReference = 49A523EF80AE64499CA309E4 /* IceInvoke.bundle */; + name = "IceServantLocator macOS"; + productName = IceServantLocator; + productReference = 2D63C2A77F018D37B047CFA9 /* IceServantLocator.bundle */; productType = "com.apple.product-type.bundle"; }; - FC5FC6ACD26B2D242E65DDEF /* IceOperations iOS */ = { + FF7948EAFE0A62518B685629 /* IceAcm iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B79C877815ABF505B942A900 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */; + buildConfigurationList = 98EC32A5E954BB63900D8FCE /* Build configuration list for PBXNativeTarget "IceAcm iOS" */; buildPhases = ( - 7C9C563222656FA461391883 /* Sources */, - 39695CF1EB348643B8ECC770 /* Frameworks */, - 61FBB2DAD43F55A46E6F63E8 /* Resources */, + 24C0731916FBB4F1F7F83264 /* Sources */, + D1922509B68585A46413BE2E /* Frameworks */, + 4239E45DF35F3B6D01F6854F /* Resources */, ); buildRules = ( - 93291BDDE80CD363ABC4F3A8 /* PBXBuildRule */, + AC517155B65FC1204E85F8CC /* PBXBuildRule */, ); dependencies = ( - 8033BC3863F4B27A60180BA6 /* PBXTargetDependency */, - B2287847456C443450046F4F /* PBXTargetDependency */, + 40D1956EA1F9DD10651A5E14 /* PBXTargetDependency */, + A54FA4CF9616CE1B19F5865B /* PBXTargetDependency */, ); - name = "IceOperations iOS"; - productName = IceOperations; - productReference = 01CB046806C40FF9E09F98EC /* IceOperations.bundle */; + name = "IceAcm iOS"; + productName = IceAcm; + productReference = DE81698975B33852370169B0 /* IceAcm.bundle */; productType = "com.apple.product-type.bundle"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 1EB94907D14CF0330FE8A8B4 /* Project object */ = { + 2FC1D43765A7F931D9DC5184 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 1500; LastUpgradeCheck = 1500; TargetAttributes = { - 000899F4C56AEFCFE1B77B0B = { + 0210DABE4A3F8E46162FC09A = { ProvisioningStyle = Automatic; }; - 08063B79E151583B4BCA64E2 = { + 02E12A01B24B3B3E6927EAD6 = { ProvisioningStyle = Automatic; }; - 086D7EFAFD5B99B06915E82A = { + 032E51349714AC140B16B6B4 = { ProvisioningStyle = Automatic; }; - 0A512D4AD4749C7C7490FAC3 = { + 0520084212F98FC56E36026A = { ProvisioningStyle = Automatic; }; - 11C4703EE1A20D4D647A2951 = { + 065FE0308F8C069FEF18896D = { ProvisioningStyle = Automatic; }; - 1461134F8E13923F515F804D = { + 0763ED05481F11F83E2EE767 = { ProvisioningStyle = Automatic; }; - 1B9A94B53B78BCA1F3F37DB5 = { + 0A1278D024EC2ADD3E42D968 = { ProvisioningStyle = Automatic; }; - 1D8E308F3BB453AE7F0F43D1 = { + 0FE313AA3347701853A8ACC2 = { ProvisioningStyle = Automatic; }; - 224A65D1A8B6FBED3FA62D9D = { + 1351B844542309876A23C297 = { ProvisioningStyle = Automatic; }; - 246FEE224D85BEE24C2D1581 = { + 137A22811E93D82B716007C8 = { ProvisioningStyle = Automatic; }; - 25D99E456ADFE5745483AC23 = { + 1714972356F07102A679833E = { ProvisioningStyle = Automatic; }; - 263FF8D1D5EF5BA8F4E3FDFA = { + 182B60B239B1CC9AAF97C3ED = { ProvisioningStyle = Automatic; }; - 2AD01C6A244838BF6DABEF5C = { + 1849F40335AEAFEAB939B520 = { ProvisioningStyle = Automatic; }; - 2C9432880D461B94B2829F4D = { + 1AAB45470D9803BF85F70BF0 = { ProvisioningStyle = Automatic; }; - 2D69E78989BA05C0A499A44D = { + 1B61C6EBFA17380F9C3CC36E = { ProvisioningStyle = Automatic; }; - 32B8209C4A20C3D8A8496A49 = { + 1F921787D1BBEBC84AF46F5D = { ProvisioningStyle = Automatic; }; - 33115CA925E128B5715AB93A = { + 204D17961BE241E9AA6931C4 = { ProvisioningStyle = Automatic; }; - 3C65AA8108580E3668BDBC3F = { + 205D8173670283F9A6ADDECA = { ProvisioningStyle = Automatic; }; - 3C66C239BBA518B87D48C1C3 = { + 214682343A5CDC54C07B1A1B = { ProvisioningStyle = Automatic; }; - 3C8F64BC2EB740FC26540C5A = { + 26B6DCD78B127AE4BDB35209 = { ProvisioningStyle = Automatic; }; - 3CC923BA7EC9201D602FFE65 = { + 287E9414F6A74860FF1188EE = { ProvisioningStyle = Automatic; }; - 3D1F7E6A7317D6CB8877A0D5 = { + 30CD23A6E9655B858C148892 = { ProvisioningStyle = Automatic; }; - 4426F98834307DB6D023DE51 = { + 330758B0C9821D7E1E2243D3 = { ProvisioningStyle = Automatic; }; - 44669E73C88B6F4F3038B679 = { + 3922C5D52BCDB27B7A0BD1C2 = { ProvisioningStyle = Automatic; }; - 457BBB51C97A0228B53F703A = { + 3C1B36794C4B3EFB2B618967 = { ProvisioningStyle = Automatic; }; - 45B627654A6C6E672B177B58 = { + 408FAEC665C8C38D7A2248A7 = { ProvisioningStyle = Automatic; }; - 47118015D4FFF9159FC93434 = { + 45F2051058E66C596838C08E = { ProvisioningStyle = Automatic; }; - 4CA64E4D7C1BECF901572919 = { + 4A4450AB007BDD9E08CDC48B = { ProvisioningStyle = Automatic; }; - 4CD1512C8E4830F6FAC5E6E4 = { + 4E4074DFF5890EB17098C624 = { ProvisioningStyle = Automatic; }; - 4F13DB1C06A1425528829C6C = { + 53EC7722C4E553C8B5189060 = { ProvisioningStyle = Automatic; }; - 4FDA69908F50F24A52FA5554 = { + 57641F57B5FDCF62AD0FCD45 = { ProvisioningStyle = Automatic; }; - 54C05D7A1468FBA7EB02A914 = { + 595CBA41E37503369DC5E136 = { ProvisioningStyle = Automatic; }; - 563E7C5E9BFDDAD9AEB54CD4 = { + 600F66FEB1C8FA05B0D86986 = { ProvisioningStyle = Automatic; }; - 568C96C03F49810104EE6CD1 = { + 61321B12DA134239ABC63556 = { ProvisioningStyle = Automatic; }; - 59678E1D5AFC460FA5D03A6B = { + 6204C55F63CC62BE2A2B08C9 = { ProvisioningStyle = Automatic; }; - 60091C7C300D5092A8E52149 = { + 68767C0FE145D39DE4D88779 = { ProvisioningStyle = Automatic; }; - 653844725C6B533AEBD3977F = { + 6C9760FEBCAAE6CE0FA2DC30 = { ProvisioningStyle = Automatic; }; - 65B4CEBE6BC37BE3E80C822B = { + 6D2A74C3BC8748EAD4AF10CA = { ProvisioningStyle = Automatic; }; - 66766A219D36565BAA8D85DB = { + 74391EA658CAB520F6080EFB = { ProvisioningStyle = Automatic; }; - 6B689E233D18BEC5377ECFE9 = { + 7E8564022216773735645574 = { ProvisioningStyle = Automatic; }; - 6C6B3F2AAE2C93C3A2670E5E = { + 81EBCBBD81DAA61D4581DF4A = { ProvisioningStyle = Automatic; }; - 6FD780B3B0F51D50A0233C81 = { + 836D0AD1DCC62D99CC1CB8EA = { ProvisioningStyle = Automatic; }; - 736E7E0279329997566B6CBD = { + 85AD9F1A782BBCA078D72ECA = { ProvisioningStyle = Automatic; }; - 73B0FB7CB263578EA908E6BF = { + 85DA963BEF597DDF5EBD28D4 = { ProvisioningStyle = Automatic; }; - 7649B8B4D36C63D3D167ED11 = { + 866E8F0547A584631426B2A5 = { ProvisioningStyle = Automatic; }; - 7862E459B18BD8751A67923F = { + 86D99596C3AC52CDD7C6A937 = { ProvisioningStyle = Automatic; }; - 7AC3B103C3B879479057C283 = { + 8716086DA12B2BDD0A0AB020 = { ProvisioningStyle = Automatic; }; - 7B09AAAF71F5D5AB2F8C1B78 = { + 8B673B53CF2890202D016783 = { ProvisioningStyle = Automatic; }; - 7BD0591E1B5ABBDFE982E6E8 = { + 8D692CC4BED85D90455B3611 = { ProvisioningStyle = Automatic; }; - 7C4454250BFF2F744DA15043 = { + 8F82ACAB074FFBE3B4D8F339 = { ProvisioningStyle = Automatic; }; - 7C4ECB5C2679ED962EFAEA71 = { + 8FBA8150AB11D2A819C1D2EA = { ProvisioningStyle = Automatic; }; - 80D1931BE1B80501D33167DD = { + 90FA36CD9B0F6F2C3BC99401 = { ProvisioningStyle = Automatic; }; - 82C53B88275C4981212133CC = { + 94D926D5469FBD751BF9B740 = { ProvisioningStyle = Automatic; }; - 836518381BE3202105EFCC03 = { + 96F2227A2D1F58BCEA8ED0F6 = { ProvisioningStyle = Automatic; }; - 87E9A0678200BC32DF77CC22 = { + 9938DD491B5B4A54DB0A80E3 = { ProvisioningStyle = Automatic; }; - 8DB5F9E207CEEFAD3CA28266 = { + 9A800192291D16A52BC00EB5 = { ProvisioningStyle = Automatic; }; - 8E23FF66CFB6287919E99A31 = { + 9F316F6F4FE88F030A110125 = { ProvisioningStyle = Automatic; }; - 92DFD90832239D72108865B4 = { + 9FAA9797D207A26125233020 = { ProvisioningStyle = Automatic; }; - 938EB0FB3FB9C74695580EBE = { + 9FEDBE2BC73385F81D251350 = { ProvisioningStyle = Automatic; }; - 953A9306D1F74C3E46325E82 = { + A06E150DA767B6FC743BAF10 = { ProvisioningStyle = Automatic; }; - 95D4F0B99BDEE21096E1027E = { + A292FEFD4AC0C53DF83589BE = { ProvisioningStyle = Automatic; }; - 961580353429DCE0D0B109CB = { + A2BA1134828B7EE3273C5D13 = { ProvisioningStyle = Automatic; }; - 984F9509A61A9677BDD2B1E7 = { + A5A118B8D38A8DF773729D3E = { ProvisioningStyle = Automatic; }; - 9C08369D07430A8AFB9F41A3 = { + A9149583C7CA34903D80B3C4 = { ProvisioningStyle = Automatic; }; - 9D8A9741B7D4BD64D5B31B88 = { + AA9DCC224B96540517FC8217 = { ProvisioningStyle = Automatic; }; - A2837C7BEC47E856E536F9B3 = { + AD0E7F89F478FE77514A8842 = { ProvisioningStyle = Automatic; }; - B06DD43CC98E177E5491959D = { + AD2702EF42AD7DDA05EC2083 = { ProvisioningStyle = Automatic; }; - B1154CF85BB46C6CCA916ABD = { + AD5C495F17B512B2D13CC822 = { ProvisioningStyle = Automatic; }; - B3FAC186802EC7B160722234 = { + AE646D18FFEFFFB65901B9D9 = { ProvisioningStyle = Automatic; }; - B49EEDD01A8C36F24785F1E7 = { + AF397ABBF2A5A4C1FCF90790 = { ProvisioningStyle = Automatic; }; - B4C54B94A72325BA4250EB2E = { + AFBF627FDB9280859A796E95 = { ProvisioningStyle = Automatic; }; - B51FD7FF275A85DCE665AB96 = { + B0A77BB6DFBFBE8B44E34482 = { ProvisioningStyle = Automatic; }; - BB148EB91DBAAACC5D08F10B = { + B502D4DB10FAD01329293155 = { ProvisioningStyle = Automatic; }; - BBEFD25BD9A130DE61D90238 = { + BA6B1EBD97713F7883F4CA94 = { ProvisioningStyle = Automatic; }; - BCEAC60BF9D3DB0E6BB1DD33 = { + BAD99ED95E14E2F53810245D = { ProvisioningStyle = Automatic; }; - BD615D3AE7C4D142D2D859B8 = { + BB40FADABEB7A74BCFAF8930 = { ProvisioningStyle = Automatic; }; - BF6E058050842A50604055C2 = { + BC8247889BA776D5F194850C = { ProvisioningStyle = Automatic; }; - CC8E2C60DE859F3875C1A578 = { + BC8AD08D72ABA5BDCF4A07E3 = { ProvisioningStyle = Automatic; }; - CE79EFA5A2D0EEBD42B1DC53 = { + BDB1F608C841B14238DB67CF = { ProvisioningStyle = Automatic; }; - CF2C35C710236049C9C60B79 = { + C11F92A0F52BB78CE42B609D = { ProvisioningStyle = Automatic; }; - D166D330DEC6674B8372A98E = { + C353EC6DD74EF040A9869F1A = { ProvisioningStyle = Automatic; }; - D24AF243F3E2AFCAA656BA3E = { + C386F0ADF5BCB591C41D4FFD = { ProvisioningStyle = Automatic; }; - D2EB13A2B3406D37FA2754E9 = { + CEE926A8FFE81634B9CBA64C = { ProvisioningStyle = Automatic; }; - D4D6FEE0BB4641B83FAB188E = { + CFA7C016ADBDBC9AE9AB0FF7 = { ProvisioningStyle = Automatic; }; - D660697C6325570C429F2BC9 = { + D0CB5D7E1779A34D43B5B89E = { ProvisioningStyle = Automatic; }; - D6C19C2ACCB1CB3FB3B25FA9 = { + D52144324A93F3717DC3A4BB = { ProvisioningStyle = Automatic; }; - D7E804643FF0F11F9B5B0EA8 = { + D62438E4F1A3CC9836A8E287 = { ProvisioningStyle = Automatic; }; - D8E57767C0E6E25C9171CD94 = { + D7CF9E2B46E63FC31B7A1F92 = { ProvisioningStyle = Automatic; }; - DD3F4218F00B8F03628CFF85 = { + E2CC2C0A9253A8A9567DA40C = { ProvisioningStyle = Automatic; }; - DE7C3CE12D76528ED6571BB0 = { + E3479E14717F19236E306587 = { ProvisioningStyle = Automatic; }; - DE8F7D3EE9F4909908CB3923 = { + E84AD21BA9DB06F21E2D3BB3 = { ProvisioningStyle = Automatic; }; - E1DFDE719731E7D4A7FEF6E0 = { + EA1D2D4417E34B61AC64FEE1 = { ProvisioningStyle = Automatic; }; - E51388D0936150349DB47717 = { + EACA18083EFA62557FBB6215 = { ProvisioningStyle = Automatic; }; - EBB34A2FBFB19A98854A90B2 = { + EC69EEBE9D64F07481829BFA = { ProvisioningStyle = Automatic; }; - ED67C4392ADE53C242195C57 = { + EFD2EA453C644DB2E82BF9B6 = { ProvisioningStyle = Automatic; }; - EEC6F479C65DCAAB4950D96F = { + F18532A4F881321CB6AE2614 = { ProvisioningStyle = Automatic; }; - F9DF2DD34D62DDCA59B08490 = { + F41AE083FE7A390670B538F9 = { ProvisioningStyle = Automatic; }; - FC5FC6ACD26B2D242E65DDEF = { + FF7948EAFE0A62518B685629 = { ProvisioningStyle = Automatic; }; }; }; - buildConfigurationList = 29718A28607A68FBD21FC3C5 /* Build configuration list for PBXProject "ice" */; + buildConfigurationList = 4E620899F914B71F71320AE8 /* 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 = 8DFBD2BD78EDD947284B6334; + productRefGroup = 429727EF2CE74E889DD9C9C3 /* 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 */, + BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */, + 137A22811E93D82B716007C8 /* Glacier2 macOS */, + 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */, + 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */, + BDB1F608C841B14238DB67CF /* Ice iOS */, + 1B61C6EBFA17380F9C3CC36E /* Ice macOS */, + FF7948EAFE0A62518B685629 /* IceAcm iOS */, + D7CF9E2B46E63FC31B7A1F92 /* IceAcm macOS */, + 61321B12DA134239ABC63556 /* IceAdapterDeactivation iOS */, + 30CD23A6E9655B858C148892 /* IceAdapterDeactivation macOS */, + 45F2051058E66C596838C08E /* IceAdmin iOS */, + EC69EEBE9D64F07481829BFA /* IceAdmin macOS */, + 8FBA8150AB11D2A819C1D2EA /* IceAmi iOS */, + 68767C0FE145D39DE4D88779 /* IceAmi macOS */, + 1AAB45470D9803BF85F70BF0 /* IceBinding iOS */, + 600F66FEB1C8FA05B0D86986 /* IceBinding macOS */, + 408FAEC665C8C38D7A2248A7 /* IceDefaultServant iOS */, + 85AD9F1A782BBCA078D72ECA /* IceDefaultServant macOS */, + F18532A4F881321CB6AE2614 /* IceDefaultValue iOS */, + 9938DD491B5B4A54DB0A80E3 /* IceDefaultValue macOS */, + 85DA963BEF597DDF5EBD28D4 /* IceDiscovery C++11 iOS */, + 74391EA658CAB520F6080EFB /* IceDiscovery C++11 macOS */, + 595CBA41E37503369DC5E136 /* IceEnums iOS */, + A5A118B8D38A8DF773729D3E /* IceEnums macOS */, + 0A1278D024EC2ADD3E42D968 /* IceExceptions iOS */, + 836D0AD1DCC62D99CC1CB8EA /* IceExceptions macOS */, + 287E9414F6A74860FF1188EE /* IceExceptionsAMD iOS */, + 3922C5D52BCDB27B7A0BD1C2 /* IceExceptionsAMD macOS */, + 57641F57B5FDCF62AD0FCD45 /* IceFacets iOS */, + 0210DABE4A3F8E46162FC09A /* IceFacets macOS */, + EACA18083EFA62557FBB6215 /* IceGrid iOS */, + CFA7C016ADBDBC9AE9AB0FF7 /* IceGrid macOS */, + 6C9760FEBCAAE6CE0FA2DC30 /* IceHold iOS */, + 214682343A5CDC54C07B1A1B /* IceHold macOS */, + A9149583C7CA34903D80B3C4 /* IceImpl iOS */, + 9FEDBE2BC73385F81D251350 /* IceImpl macOS */, + 53EC7722C4E553C8B5189060 /* IceInfo iOS */, + 8B673B53CF2890202D016783 /* IceInfo macOS */, + C11F92A0F52BB78CE42B609D /* IceInheritance iOS */, + D52144324A93F3717DC3A4BB /* IceInheritance macOS */, + EA1D2D4417E34B61AC64FEE1 /* IceInterceptor iOS */, + 1714972356F07102A679833E /* IceInterceptor macOS */, + AD5C495F17B512B2D13CC822 /* IceInvoke iOS */, + 6D2A74C3BC8748EAD4AF10CA /* IceInvoke macOS */, + AE646D18FFEFFFB65901B9D9 /* IceLocation iOS */, + 0520084212F98FC56E36026A /* IceLocation macOS */, + E84AD21BA9DB06F21E2D3BB3 /* IceLocatorDiscovery C++11 iOS */, + 8D692CC4BED85D90455B3611 /* IceLocatorDiscovery C++11 macOS */, + BAD99ED95E14E2F53810245D /* IceObjects iOS */, + A2BA1134828B7EE3273C5D13 /* IceObjects macOS */, + 90FA36CD9B0F6F2C3BC99401 /* IceOperations iOS */, + B502D4DB10FAD01329293155 /* IceOperations macOS */, + C386F0ADF5BCB591C41D4FFD /* IceOperationsAMD iOS */, + 4A4450AB007BDD9E08CDC48B /* IceOperationsAMD macOS */, + B0A77BB6DFBFBE8B44E34482 /* IceOptional iOS */, + E2CC2C0A9253A8A9567DA40C /* IceOptional macOS */, + 032E51349714AC140B16B6B4 /* IceOptionalAMD iOS */, + 205D8173670283F9A6ADDECA /* IceOptionalAMD macOS */, + 6204C55F63CC62BE2A2B08C9 /* IceProperties iOS */, + 9FAA9797D207A26125233020 /* IceProperties macOS */, + CEE926A8FFE81634B9CBA64C /* IceProxy iOS */, + A292FEFD4AC0C53DF83589BE /* IceProxy macOS */, + 330758B0C9821D7E1E2243D3 /* IceProxyAMD iOS */, + 866E8F0547A584631426B2A5 /* IceProxyAMD macOS */, + 26B6DCD78B127AE4BDB35209 /* IceRetry iOS */, + 3C1B36794C4B3EFB2B618967 /* IceRetry macOS */, + 0FE313AA3347701853A8ACC2 /* IceScope iOS */, + 94D926D5469FBD751BF9B740 /* IceScope macOS */, + AF397ABBF2A5A4C1FCF90790 /* IceServantLocator iOS */, + F41AE083FE7A390670B538F9 /* IceServantLocator macOS */, + 86D99596C3AC52CDD7C6A937 /* IceServantLocatorAMD iOS */, + 1849F40335AEAFEAB939B520 /* IceServantLocatorAMD macOS */, + AD0E7F89F478FE77514A8842 /* IceServices iOS */, + 065FE0308F8C069FEF18896D /* IceServices macOS */, + C353EC6DD74EF040A9869F1A /* IceSlicingExceptions iOS */, + BA6B1EBD97713F7883F4CA94 /* IceSlicingExceptions macOS */, + D62438E4F1A3CC9836A8E287 /* IceSlicingExceptionsAMD iOS */, + 204D17961BE241E9AA6931C4 /* IceSlicingExceptionsAMD macOS */, + BC8247889BA776D5F194850C /* IceSlicingObjects iOS */, + EFD2EA453C644DB2E82BF9B6 /* IceSlicingObjects macOS */, + 1F921787D1BBEBC84AF46F5D /* IceSlicingObjectsAMD iOS */, + E3479E14717F19236E306587 /* IceSlicingObjectsAMD macOS */, + AA9DCC224B96540517FC8217 /* IceSSLConfiguration iOS */, + 182B60B239B1CC9AAF97C3ED /* IceSSLConfiguration macOS */, + 02E12A01B24B3B3E6927EAD6 /* IceStorm iOS */, + 0763ED05481F11F83E2EE767 /* IceStorm macOS */, + AFBF627FDB9280859A796E95 /* IceStream iOS */, + BC8AD08D72ABA5BDCF4A07E3 /* IceStream macOS */, + 81EBCBBD81DAA61D4581DF4A /* IceTimeout iOS */, + 8716086DA12B2BDD0A0AB020 /* IceTimeout macOS */, + D0CB5D7E1779A34D43B5B89E /* IceUdp iOS */, + 96F2227A2D1F58BCEA8ED0F6 /* IceUdp macOS */, + 4E4074DFF5890EB17098C624 /* SliceEscape iOS */, + 7E8564022216773735645574 /* SliceEscape macOS */, + A06E150DA767B6FC743BAF10 /* TestCommon iOS */, + AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */, + 9A800192291D16A52BC00EB5 /* TestDriver iOS */, + 1351B844542309876A23C297 /* TestDriver macOS */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 046A1EFBBEA27B2996D4FE18 /* Resources */ = { + 0526F95A9936BD82D24EE562 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 04D722540C7568F760C18BD6 /* Resources */ = { + 057E77D63FD84FF82DF4BF52 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 06F0772BDA7723CA21DCF0BA /* Resources */ = { + 07982C434D1B0158C133F1D3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0AFA071613CDCB0CAFB8ACB0 /* Resources */ = { + 093C5CD6E55478880A44AA9D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0C4BBA7FB603E0E94999D1AE /* Resources */ = { + 097778F25DB7DB463E4B3C49 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0C540CD21E9442E1A4A480FF /* Resources */ = { + 0A6F59B190567DCB370BCFD8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 11DE8E3AFC096D98FAE6C731 /* Resources */ = { + 0B1DEE39080B2B5E8A7CAC24 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 13CC967E3E466CFA2F68D8F7 /* Resources */ = { + 0F4892E621165051767C5160 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 18BCA3C34842B488FF8C467A /* Resources */ = { + 17160302BAA0E75F9A0B527B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1C7AE443B82A3F9D218FF429 /* Resources */ = { + 17F93E36FE79CCD8FDB9F758 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1DC48819EA533916598D2E42 /* Resources */ = { + 1A47BFF86DBE1D7DC11C0867 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1F945391D69F33A9E57CC7AE /* Resources */ = { + 1B108CE5FAF58D62083D14B5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 26AFEAD1874E9C55EFB3D8E1 /* Resources */ = { + 1D782344FFA038F83CDAC3AD /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 29975D1740F039C626922310 /* Resources */ = { + 1EC14E8FEB51499775F64FE2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2B6D42C2F6ECF0E16FFD13A1 /* Resources */ = { + 251A43C91E2D94E01B5F65AC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3222B0FC6C61C494E02E614D /* Resources */ = { + 28EEA04A2E4723D77C819796 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3585C5CF3DD731FF6E30813D /* Resources */ = { + 2A940B992AA90EF2453DFED1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 360F50F3916E9E3F27D94B60 /* Resources */ = { + 313690911AD7304C7D02EB21 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3FED894319B3D97A9FE8969D /* Resources */ = { + 322582DBE8E93D0697C15495 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 40269C15DD5D60F285915626 /* Resources */ = { + 363122340AFFB2E22FEFBE58 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - A1BAF3C47BF99CC8438D4CD1 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4575FE0BC6D54D36F19D7C32 /* Resources */ = { + 3850C5F25BBD667F9D57BB07 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4996ABC3740EA5B4E3ECFCD5 /* Resources */ = { + 395F58B3FE86E498486F7898 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4B2195D05EA13E32F7AE7CE9 /* Resources */ = { + 3B3C4972011E42A0EB3C223B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4C3BA84D0F0F493B0D8D0686 /* Resources */ = { + 3E34C18B5CF5991309F8C2E7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4D2E27DB3EA5207711F8614D /* Resources */ = { + 41420A7A5FFABE64AF8D8FAE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4EF3FEB29DCD03F143853A03 /* Resources */ = { + 41AFD2D8C8E2742DEE69B459 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 51BD47AFB0F5EA300C2832E8 /* Resources */ = { + 4239E45DF35F3B6D01F6854F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5413918C6E0519ED17CACF4B /* Resources */ = { + 42A4C132E10B3B8A7300B9A6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 09CEE7F11F5525460EA4422E /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 54D05D33A232F0FB772E8DBA /* Resources */ = { + 448528794B6535C7A09BF80F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5C3341388333CD70DE2C03C5 /* Resources */ = { + 458A41546A21BEF1A15CE2EA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5D02B29E855CA143354373EA /* Resources */ = { + 4ECFD74C1B3163DA11B8470D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 602A87F27A8F4F8C32D06E9D /* Resources */ = { + 50B468D44F74C3900D93241E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 61FBB2DAD43F55A46E6F63E8 /* Resources */ = { + 53F8D1EF617F7249622B903B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 64A256B848383F94800EBA0D /* Resources */ = { + 55AAF8555FBD4EEEAC6CF25A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 66E3CD4A5C361E88EDE9D7BE /* Resources */ = { + 56E232529AC0563BD6BB03DB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 681BA32B0A7BB400CB929FAF /* Resources */ = { + 5BC976D4C34BCB3175841B9A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6893EFB4D00C8F27564A174C /* Resources */ = { + 5EE01CAADBEB7A0A53E33276 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6B28328D014A1158D8B61503 /* Resources */ = { + 65231E0E0BD7A9E3BD797910 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6D8261EFF49DCF557D226AEF /* Resources */ = { + 65A1D9F4C1DE7EC581D22A5B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6FCC36506110E88C9381D32E /* Resources */ = { + 6622AA71B0D61E2BBD5F81CF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 713701E51289C5BFF63C9C56 /* Resources */ = { + 664CDAB3A67305FA59E02F7A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 725B26BCA7ECAC123E816C71 /* Resources */ = { + 676F98D72603326333704309 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 73312FC0E54C54320A5F7CFB /* Resources */ = { + 68604C27B7CC42117BA51932 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 73AA1E9492C685AF941C8182 /* Resources */ = { + 6891FD0DDF35516059510105 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 939D9E30245AC2CDAB1D6803 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 766436C0850D45E049F4BCAA /* Resources */ = { + 6CDD22C7664DAA8DE402E90E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7DB8A9A8207D90817E5CCABC /* Resources */ = { + 6DD932AA2A6B92A01B4D5040 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7DFA74BD5376C0FC3E116EAE /* Resources */ = { + 6E1BE16EDCDE9D779118BF95 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7F58FD2056AE8441930B01D6 /* Resources */ = { + 70FA52C9BE4D5CA04E01B10D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 81BD0E9F6E7BDA7AD85D038B /* Resources */ = { + 71B6CF1E060EC863D6054971 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 84AA8D01E0CCE7EF92F6B13B /* Resources */ = { + 77D43E15944D6D68CD63D3AC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 85CEFAB6611C94479DBCF5CA /* Resources */ = { + 7868B6B9117C3BA8980EEEC8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8830916F0B9E04B4ECF78DB5 /* Resources */ = { + 7CDE16ED3C590B0B05317F77 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8B6CFF3A4FE820D6D185F306 /* Resources */ = { + 823B51C54FC435F6A03D3EAF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 918C367420551112E63DF3BF /* Resources */ = { + 825B353A9CA1FA2525C1C98D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 93217E56202C0645C308F7D9 /* Resources */ = { + 8485992CF05DC1021A09D8A7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 935627C9FAD3A217949C9CD4 /* Resources */ = { + 84ACD97B1C481AE94F144C5B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 95F6F7503C7EC6EDE758DC14 /* Resources */ = { + 904E0E21C02D58FB52ABC27A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9788602434A89360EA198EDF /* Resources */ = { + 9106DF14C082197A5E9FBDD0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 97FCB5631C1A70FF35B56342 /* Resources */ = { + 991D3F773FE2F497EA2A7F7C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 99425B07DFD4B5355EAD4456 /* Resources */ = { + 9ABD7D918E0EB40B70D7D70B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9B4AD62E33CE21EF74E9A11F /* Resources */ = { + 9F71CAD79F5FA4492A98DA81 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9B8C89FE8B67D411CFC41AC9 /* Resources */ = { + A0B5B9C75F274382DE12D10F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9DB6664F3B09B28CC1EB1372 /* Resources */ = { + A3372331135643B14D21DE75 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9F2219FF729B5FE64200F58E /* Resources */ = { + A3517EBE1153EBFFA40E1EDB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A18DBCDA92B8B689D424C417 /* Resources */ = { + A467A25D14A61D0C3C8243A2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A90906DA111BA5A6DBCFECDE /* Resources */ = { + A5D08DF0FACCE964193081FB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AA1B909021714E00B440AD52 /* Resources */ = { + A9DD5346B648F7C295338FF6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - ABEF760012041C70AC8B5376 /* Resources */ = { + B0A6A93B074143CE8B3932F4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AF1018F3DFDD7F0EE6CE1CA3 /* Resources */ = { + BBB57A940BEC85757BF33C45 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AF3BB72482297F0E1B6BC422 /* Resources */ = { + BC1856CE66B12B7D468AF98E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B10D055A09A82B6E5BC9DEF4 /* Resources */ = { + BE2A873654C3B10200C519DB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B60097319C90BC1A9ED6ADE3 /* Resources */ = { + C0C847052EA494D75F3D93EB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B9C4494B192EF983299B6C7F /* Resources */ = { + C20901B71BDCAD06E9FD9794 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BAA4CEF76B1734DBEA8A30BB /* Resources */ = { + D3A54ACF0DD989B854E98C67 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BBB6600CFFD8BC939400A241 /* Resources */ = { + D478AD3490A3606865766038 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BCD9FC26DEEA75170E10F5D5 /* Resources */ = { + D556934DE5670057A35038C4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BCF0CB79501EBE7A8DB9BD7A /* Resources */ = { + D797E379CCCD680A0B9D3B9B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C84D4C652D2DC0B0666706CF /* Resources */ = { + DC0BBC4BA56D82D8B5F1D138 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C85925BD20AFC044CC666C17 /* Resources */ = { + DCCB743A54EDB138F1A65AD0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CA5490605351AF966B2614CC /* Resources */ = { + DCD01EBCC135470D053D910A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D15A327509A465D555D2A85A /* Resources */ = { + E517096323BC53F76013658D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5E8C6BFCB387FBB78736292C /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D2E824B85F3932C40C468C34 /* Resources */ = { + E5D2FAAB4A858AF1EF79BB44 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D3024D65B43BE097AC35B277 /* Resources */ = { + E7080BC54D8C04FAED0C3C9F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D5A10FB0AA06C1C3795E0A33 /* Resources */ = { + E89A01DD0189EAA1841B2047 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DC2303946D501B2E77C3BB57 /* Resources */ = { + E9191CB3D8B98AD5528146EF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + B6B0AD61FEB0ABF698126781 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DF0BFE93146FE33B3FFDCBAF /* Resources */ = { + EA1FD40EF9B321E769A74269 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DF75B44EB38A432C7758EC45 /* Resources */ = { + EE7DEDECFCEDD205693251F2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E059A4C28BA4B01EA131632E /* Resources */ = { + F28C0DE11803903930866619 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E22AFD2ABFAB3FD5CD5B8185 /* Resources */ = { + F3EDBCFD3A7A38ABC66567B7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - ED8CAF21F5852AE4FDC002DC /* Resources */ = { + FBDF8399AC587C86B17BBFDC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + E31F8BD247F7EFF2BF88403C /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EDBBAF9A26563417C334E1E0 /* Resources */ = { + FDAB822C43EBDD5C9D09BBCC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F2C71A3BD9FE8A5FABF3FFED /* Resources */ = { + FE75C2B98313D6F50B2857EB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -11165,3095 +11161,3093 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 039C348E43D424045B8585C3 /* Sources */ = { + 033CE6712C625CA7671D3FE7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A527D506656BD2B71FE0732E /* Client.swift in Sources */, + 77FAF4CD8EBA344B63C2D87C /* AllTests.swift in Sources */, + 0BC46298F3258DEACAEB87D2 /* Client.swift in Sources */, + 62F5B617CB223589C7FFCE33 /* Server.swift in Sources */, + 11A6C2F6E64486155B43522C /* Test.ice in Sources */, + B5DB285F9C6EAD474FAA95BB /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0512149C8627A81D83BF4C04 /* Sources */ = { + 0458B90EEA65443D46CDA233 /* 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 */, + C42BE5C720B857B4DF47D736 /* ServerAMD.swift in Sources */, + 244925B2D61D7DD174403486 /* TestAMD.ice in Sources */, + 3F75A94E0EAFD519FF1BB253 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0A7D7E38BBE672E18539B0C5 /* Sources */ = { + 0480CB6E3A8E8A31A337C25A /* 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 */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0A9A250939D7BE45351C33DF /* Sources */ = { + 40F02DB514B3FFB0C0706912 /* AdminFacetFactory.swift in Sources */, + 98C3C4B071EF9C6F09322013 /* Blobject.swift in Sources */, + 614BE0D924BF4D86313559AD /* BlobjectAsync.swift in Sources */, + E4E52BB485AAE3F157C712D5 /* BuiltinSequences.ice in Sources */, + AAE4675B438542D382FABD79 /* ClassResolver.swift in Sources */, + 9E7E37B00D3C6813AFB984B9 /* Communicator.swift in Sources */, + DC80C2E33FB5AE127BEDF73F /* CommunicatorI.swift in Sources */, + 372F513478AE96A9B02E1E28 /* Connection.swift in Sources */, + E3F6799674E7EF82586899D9 /* ConnectionI.swift in Sources */, + A3F6F9A0E7D7425809679F12 /* ConnectionInfoFactory.swift in Sources */, + 672AFD89DDBD201DEB56D8D7 /* Context.ice in Sources */, + 9929944B6270F68EE990FCB9 /* Current.swift in Sources */, + F1F8BD03C1F0F501CEFD81AD /* Endpoint.swift in Sources */, + F64C59605860BD6C23A27155 /* EndpointI.swift in Sources */, + 5F133154CDDD2309623DBA4D /* EndpointInfoFactory.swift in Sources */, + 80295B329F47AD618475BF99 /* EndpointSelectionType.swift in Sources */, + 82F8761B8B726286ECCC2853 /* EndpointTypes.ice in Sources */, + 6736B7FCD6A2E3A641B0BEEE /* Exception.swift in Sources */, + 86DFE4BDC8937108E605E755 /* FacetMap.swift in Sources */, + 57457D4037025A4B24CDAB0D /* FormatType.swift in Sources */, + B5A1B9C863BD82ECEA0D0E3C /* IAPConnectionInfo.swift in Sources */, + 172ABB0861A43489EBDB94E5 /* IAPEndpointInfo.swift in Sources */, + 807F919519C4AEB2EBB5114E /* Identity.ice in Sources */, + 76E928740B0374061A0B2E4C /* ImplicitContext.swift in Sources */, + 61C4E04534B59B12AA56F750 /* ImplicitContextI.swift in Sources */, + 151FB7FCE5B2462B0BCF9275 /* Incoming.swift in Sources */, + A913E2AFE4FE7CA8D35BD76B /* InitializationData.swift in Sources */, + 648D8D01FBDDE620653F907A /* Initialize.swift in Sources */, + EF3F061F550183120C8B5456 /* InputStream.swift in Sources */, + A129D3B708FDC043C773555B /* Instrumentation.swift in Sources */, + DD7559B902076F85721A3BE5 /* LocalException.swift in Sources */, + B25A522ECC27DD8D012BBB38 /* LocalExceptionDescription.swift in Sources */, + 06C7C566D33AF10D3C441548 /* LocalExceptionFactory.swift in Sources */, + 8E000FA58A8BF9C987EDDF46 /* LocalObject.swift in Sources */, + A5173EC0F8ADAE747419B3D7 /* Locator.ice in Sources */, + B676889E0E4DAFC083A035ED /* LocatorF.ice in Sources */, + 3820134F1B35B1D1E92E600A /* Logger.swift in Sources */, + 66AC2567B6670DC2A83953FB /* LoggerWrapper.swift in Sources */, + BA8EDD5F400F44488ADEBCD1 /* Metrics.ice in Sources */, + CDF7F513816B48F9B04BCBA4 /* Mutex.swift in Sources */, + 57692E85AB50C3FA34A3DDB2 /* NativePropertiesAdmin.swift in Sources */, + 9FD686DE121AE997FC29EAC6 /* Object.swift in Sources */, + D6B102876B48EF4B4CA8F75D /* ObjectAdapter.swift in Sources */, + 59651F37E654C8823CEE0912 /* ObjectAdapterI.swift in Sources */, + F13A4AA1DA75AA9E62F116D6 /* OperationMode.ice in Sources */, + CD6C6398B754387A5CF5CA9A /* OptionalFormat.swift in Sources */, + 4CC927F5A9DB3DE178615D2E /* OutputStream.swift in Sources */, + C5C0ACB9917A6EBADBEE205C /* Plugin.swift in Sources */, + 21CE84AB07B159ED0708EA76 /* Process.ice in Sources */, + 90F8F55D353DAF6C27D22646 /* ProcessI.swift in Sources */, + 0C9758945EDA3658BA968BDF /* Properties.swift in Sources */, + 8669F90A254F560CED2D2D2D /* PropertiesAdmin.ice in Sources */, + 9A831E10A02D537C4F2F1236 /* PropertiesAdminI.swift in Sources */, + 369D5C2414ECF2E246C78737 /* PropertiesI.swift in Sources */, + C6D8C383B45A96F4637F5A3C /* PropertyDict.ice in Sources */, + 5385A9DD587796EAE5FC99FE /* Proxy.swift in Sources */, + E8FC55175649B5BC8777C9D1 /* RemoteLogger.ice in Sources */, + CFC195CB641909D037D0CCB8 /* Router.ice in Sources */, + 9941D28677EAC759FF252E04 /* RouterF.ice in Sources */, + 27BA709F3829857FAB6A5F06 /* ServantLocator.swift in Sources */, + 6377BC79AD4C6C18CB585F67 /* ServantManager.swift in Sources */, + A5C7AB16FC112BED82F89C05 /* SlicedData.swift in Sources */, + A5F2C50EFE98A0E24E47672E /* SliceFlags.swift in Sources */, + 663230989A239EDB681EBA7C /* SliceInfo.swift in Sources */, + A9E7C418A13AF88F95B56863 /* SSLConnectionInfo.swift in Sources */, + 1CA4763ACFDDB34614425869 /* SSLEndpointInfo.swift in Sources */, + 6E6B63060307B772C99F21B3 /* UnknownSlicedValue.swift in Sources */, + 29CCCB984235038F1C23DE36 /* Util.swift in Sources */, + CA9A8A3756ECC527753B1160 /* Value.swift in Sources */, + 92CC5C6998619BE603D750E5 /* ValueFactory.swift in Sources */, + 43219B5BB970F1B55CE454AA /* ValueFactoryManagerI.swift in Sources */, + 88C496A9001C639C933AC98B /* Version.ice in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 08C3CB6FC7342680D131BBAF /* 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 */, + 99EF11BE8BD4279EF6B81B34 /* IceLocatorDiscovery.ice in Sources */, + EAB83885C6B77A2D99A17F28 /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0D39274DE7A2C44AD60A7F14 /* Sources */ = { + 0B28994B972EEAB0CFB67C3E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A8AD9DF44BC94C8C2B9A23BB /* AllTests.swift in Sources */, - 93679A1204183B62EDBCC6B4 /* Client.swift in Sources */, - BC943670354AE7D6338D01A8 /* Test.ice in Sources */, + 61E7766D0ECA90A3969500B8 /* ServerAMD.swift in Sources */, + C480C3056D5D95CFE0D230EC /* ServerPrivateAMD.ice in Sources */, + 1D0E1556A7EBC4B9E8C96B54 /* TestAMD.ice in Sources */, + 6923B7F3B5833B17B1444A9F /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0FE1781453D118B21A0C2E91 /* Sources */ = { + 0B4840C77677AEF89D0AF797 /* 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 */, + 7B531C9230D86E2F61BCB0E8 /* IceStorm.ice in Sources */, + 288240CF1E01298A40C9E48D /* Metrics.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 10A73AB36EC16092DAA544D9 /* Sources */ = { + 13267D0E93EC0E98F66BB8E8 /* 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 */, + 32A5401BCBDC4CE0B1FF428B /* AllTests.swift in Sources */, + FDB0026B8DD58118D1FB23F7 /* Client.swift in Sources */, + 3F924E5914B4957FE3C5D13C /* Server.swift in Sources */, + D2960954B18EB5482D9C08AE /* Test.ice in Sources */, + 0E80A8FA036E42C8CEF55DFB /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 117ECB46AFC1115A572AB2F3 /* Sources */ = { + 150B84A0024A0B21EECC417A /* 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 */, + C5C2FECC4860219581389BAE /* Metrics.ice in Sources */, + A2E5F886FD4B23BC51B4292A /* PermissionsVerifier.ice in Sources */, + 7984763859B1132CEA8B6C17 /* Router.ice in Sources */, + BDEEEA8F75868D04E2763F08 /* Session.ice in Sources */, + EE6577FBED8C0450B3C6345A /* SSLInfo.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 11EEF36BD08AA248E8542312 /* Sources */ = { + 160A24AE04A5D9DF51464E8A /* 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 */, + 4DEC9591C46508E168F67B6D /* AllTests.swift in Sources */, + F7EDF8ED76FF8FBF6F3B68E2 /* Client.swift in Sources */, + 9CE0109A317A46F2409A18B5 /* ClientPrivate.ice in Sources */, + B55F456482188268D8FBE02E /* Server.swift in Sources */, + 7DE7F63B8B17B7DE9CC53DA8 /* ServerPrivate.ice in Sources */, + 9181A6BBA6FD673EA823A689 /* Test.ice in Sources */, + A12B9DACA618AAAFF07EFA06 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 153CF5944F5CBB5C377261CB /* Sources */ = { + 1C37E763A2EF713D8ACE1C17 /* 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 */, + 807A23F8A58BC92EDCAC7CAD /* AllTests.swift in Sources */, + 41E039270E0805499570605D /* Client.swift in Sources */, + 9F90174E943BDAB586C260A3 /* Collocated.swift in Sources */, + B25F38AB93AB1A3133696F00 /* Server.swift in Sources */, + 5600EC0B8A694C907D5E70D3 /* Test.ice in Sources */, + 3AB574C22427757199B86CE0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 16E6E2C0A27C806CAFFF8253 /* Sources */ = { + 1D20F3CCD1B72D1D4592C58D /* 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 */, + 7E1CEB886804B90A520C9F06 /* IceDiscovery.ice in Sources */, + A6E1C8F6BC77FEBA93DA9EC8 /* LocatorI.cpp in Sources */, + 8D0FF5C22DF55CE32D75CC84 /* LookupI.cpp in Sources */, + 306A67A7A82BE1F3FD206BAE /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1A3F8E5A8925E89245153CEF /* Sources */ = { + 1D21F6B77AEE0DE4923B446D /* 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 */, + 49FE39730C4806DFB684E9CF /* IceDiscovery.ice in Sources */, + B5631F7A1EA8676C88F7897D /* LocatorI.cpp in Sources */, + 460166E775382AF887D095F0 /* LookupI.cpp in Sources */, + 40645501AF8502F567C28FEE /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1F90CA3B0F633C9D8D546A84 /* Sources */ = { + 1FCEC3817747D363E95AA1A6 /* 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 */, + 2DA654F14912D79AB6E74AB1 /* BlobjectFacade.mm in Sources */, + 798F9ED73855A18315650195 /* Communicator.mm in Sources */, + 191571E443B658986B332140 /* Connection.mm in Sources */, + ED1AE7B4467B99CAE85A91B4 /* Convert.mm in Sources */, + 9FAD01E7A5A3E50F861682DA /* Endpoint.mm in Sources */, + C1ED60554A4D48729279D0D1 /* Exception.mm in Sources */, + C3A5F72AA3A7E6A2C5CF7160 /* IceUtil.mm in Sources */, + EB51EFFEB6762C02A0AB27E4 /* ImplicitContext.mm in Sources */, + E3763CF6D5C07A3D3ED6EC99 /* LocalObject.mm in Sources */, + 37BD728FB36E968AE9008EA9 /* Logger.mm in Sources */, + A2BDFD11C3155D23B684A5CA /* ObjectAdapter.mm in Sources */, + 338D3B703A9596B37A9234FA /* ObjectPrx.mm in Sources */, + F0A512F9DB88649C58FC9DDD /* Process.mm in Sources */, + F7BF505A4C89F1C269AFF18F /* Properties.mm in Sources */, + 358524F4B7865BB4AD77E7E7 /* PropertiesAdmin.mm in Sources */, + 2E5FECEFC67EFE074A3606FF /* TraceUtil.mm in Sources */, + DFA814FDD933EEA0C6018647 /* UnsupportedAdminFacet.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1FE3BCBFBD382776A51C1AC0 /* Sources */ = { + 1FFD8FD2EA3186FD2989F8CE /* 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 */, + A32A0537F40F21D10090A7FB /* Metrics.ice in Sources */, + A2E2212187162F926159A5CC /* PermissionsVerifier.ice in Sources */, + 55FA81E16C3E0400C3622932 /* Router.ice in Sources */, + B1BF10F883AC7BB3FB0A5548 /* Session.ice in Sources */, + 0CC5FB5A531BB50FD446CDCF /* SSLInfo.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 222DD1AE7415C31D17A3D169 /* Sources */ = { + 205FFC81ED4601E1B49AE89C /* 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 */, + BEA8A85E1A1521E5D7B7FBB0 /* AllTests.swift in Sources */, + 480A168967EF40F23CE23AFF /* Client.swift in Sources */, + C35678C287F8F9A637655A7A /* Collocated.swift in Sources */, + 411E513F993E091CB1E2AC4F /* Server.swift in Sources */, + A9F4F71B394900161CABCDDF /* Test.ice in Sources */, + 6835F2FEC5F2CD79B4938E7F /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2390D8B4F7C3CBB00255E8C6 /* 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 */ = { + 2078456C95C04424AE8A0B7A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1D960252846568A7D041FDEA /* Client.swift in Sources */, - 0F70BBE2A359C61B78141677 /* Test.ice in Sources */, + 07231DDD854AABD03305B283 /* ServantLocatorI.swift in Sources */, + 0E95472F96C3298CB4401BAE /* ServerAMD.swift in Sources */, + E9C5A9435BC9DF7C9F0896C5 /* TestAMD.ice in Sources */, + B3CC6F4D6DB25A45BCC1C24D /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 271D6194962FFBBF88D3CE7C /* Sources */ = { + 231728936D1C55FE04EB4BF6 /* 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 */, + CB6C7B09D11CFB55948EB796 /* AllTests.swift in Sources */, + B0A4BA7E87864E87F5BCF1CD /* Client.swift in Sources */, + 7960BAF96A0FD68992BA64D3 /* Collocated.swift in Sources */, + 7628B8E4495A90D8508C3459 /* Server.swift in Sources */, + 1CAB9532A1CC8144816E56CE /* Test.ice in Sources */, + FC1BA26D46512B4D4D2879BC /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2D06B4E157A77EA66C4C2023 /* Sources */ = { + 24C0731916FBB4F1F7F83264 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 08491AD9CE908E6E7462BBF4 /* ServerAMD.swift in Sources */, - 3F8D3E407A99D539E294D3C6 /* TestAMD.ice in Sources */, - 15B0DA4BFAAFF95427EA2576 /* TestAMDI.swift in Sources */, + 43A17B3FA08F9100FE050837 /* AllTests.swift in Sources */, + 6E0F4BA532FBA5A46F06B1E7 /* Client.swift in Sources */, + 10CDCA1AC74E706DE81268F6 /* Server.swift in Sources */, + 16EF4C28DFF84F79444B5AF0 /* Test.ice in Sources */, + 7A8FCFFFBDB5348A80FC9EBC /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2ED85B69DBB7BCB74B245580 /* Sources */ = { + 24FC934D8BBC273401D4B94C /* 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 */, + 308BD566EA908CF247563DBE /* AllTests.swift in Sources */, + 290964CF22C53C93CA53C304 /* Client.swift in Sources */, + 7C70271D70FE7C71CA4E6A2C /* Collocated.swift in Sources */, + 14B4462CA4B8DAC51CB9DFAB /* Server.swift in Sources */, + 477F9ABD3ADD138056741BCB /* Test.ice in Sources */, + D97BCDE42B2D775C8EF3AE38 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 31CB6A9CADF229B63F0F01CA /* Sources */ = { + 2B45A27DB6D5B212B0D5BE68 /* 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 */, + 5E8CB82E96183A00602D33F9 /* AllTests.swift in Sources */, + 036E303C13FCDA857E6CAC88 /* BatchOneways.swift in Sources */, + E8956EC59BBE5F86D680A905 /* BatchOnewaysAMI.swift in Sources */, + 282A071C3C1DFECCC4D2FBEC /* Client.swift in Sources */, + 9E36493AA2A1DB7E35F45A6E /* Collocated.swift in Sources */, + EE2D1BCE972F27CCCA9D475F /* Oneways.swift in Sources */, + 1FFF30D901F9DB44501ABBF2 /* OnewaysAMI.swift in Sources */, + 0DF6D85D4D268671B58316D9 /* Server.swift in Sources */, + D7398A853900B2D4C341BBE2 /* Test.ice in Sources */, + 1165E688A7E875307F3B84B5 /* TestI.swift in Sources */, + C8D3E461307EB4D460985F7C /* Twoways.swift in Sources */, + 769C4E885E7E13D63F5C9184 /* TwowaysAMI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 33F8FA552E0D09D5BD6A7974 /* Sources */ = { + 2BB16390B18571552455B8FB /* 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 */, + 7284EF59424060A58D2734D8 /* AllTests.swift in Sources */, + F41589B2D9BF5C39BD869A77 /* Client.swift in Sources */, + F52BD20B24695C7C57BE0E64 /* Server.swift in Sources */, + 9AD33D51C7075AF3070BA8B2 /* Test.ice in Sources */, + 858D29278C64E90B53093ADC /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3660E90F1064A9AF0A193D19 /* Sources */ = { + 2BDEA68897FC29D006B4D31F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F051C38E3059D93E39B0797D /* Clash.ice in Sources */, - 2CEF367BE0B97F2DDC273B9B /* Client.swift in Sources */, - 9B12B3ADD1C0205D1D8D5E71 /* Key.ice in Sources */, + 675820CF4F643F83204FFA1A /* AllTests.swift in Sources */, + 8655F3C92CD573B2D95AB505 /* Client.swift in Sources */, + 8FD0E948F857C79A381DD164 /* Collocated.swift in Sources */, + 0A468AC2E0650A5D5537871F /* Server.swift in Sources */, + 3CABC75D222B03775270DA8E /* Test.ice in Sources */, + B6D10C65D061D7D1D4EB5729 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3728EFBD094185E9090EA0FB /* Sources */ = { + 3489D071F380B1656A917FE2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 673123448558FCA3858EF864 /* AllTests.swift in Sources */, - 476EB781EF1558A848C00080 /* Client.swift in Sources */, - 8BCE0BFA7B4FC3E00677D32E /* Test.ice in Sources */, + 851FA14B9E98213ED8975304 /* AllTests.swift in Sources */, + 56AF104E15F9D407777CB4DD /* Client.swift in Sources */, + 561077E7B6A5882AF8646B61 /* Server.swift in Sources */, + 601AE55BEB7C928FFF774792 /* Test.ice in Sources */, + 217A42A3C9F0FB086E7DA7AE /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3C34A9ACF10543E5C6538191 /* Sources */ = { + 349D51B9EDBE11F8743E7CBC /* 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 */, + E3C19CCAA5625E5938BC62C9 /* AllTests.swift in Sources */, + 4B698F4BA047FF7356D9D7FE /* Client.swift in Sources */, + 4511CAA8C1392A439742B53B /* Server.swift in Sources */, + 7B3325A26D5CCE04158FB480 /* Test.ice in Sources */, + BF2ED6CBEE98AA49A9CC643E /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 403C21BBA17FF2D6F20B6928 /* Sources */ = { + 3A88480A773E8DCB3E678008 /* 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 */, + 34E74A2BBD7B7EF71BAE9A2F /* AllTests.swift in Sources */, + 2F63AB037755CC57F2AA51F0 /* Client.swift in Sources */, + 711B3416FAF9FFD66902D667 /* Collocated.swift in Sources */, + 60627F6BFDB33527B71F7172 /* ServantLocatorI.swift in Sources */, + B10BBA489EE9CE93542DF349 /* Server.swift in Sources */, + 2BFB4191B7AA1DBC081B52C7 /* Test.ice in Sources */, + D20B8F69CCF1E0A4C2B28CD4 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 408664F57072120C427C03B9 /* Sources */ = { + 4C93A6C97A1E449CFB81717A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6D6F4BD5950E3ACEDFF34418 /* Client.swift in Sources */, - D0355A4DBB5866600C927AC2 /* Test.ice in Sources */, + A214D71B7058ABD7775B79A5 /* AllTests.swift in Sources */, + 2D66BB6DC37B603C1EB91D29 /* Client.swift in Sources */, + 8D64EA1EAAFC0C7A0F94A5EC /* Server.swift in Sources */, + 5A0055A5ABBBB0D459E43E5B /* Test.ice in Sources */, + 6A40774D61D6CCC937C6AC31 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 459A708FDE23BED83F05CEBB /* Sources */ = { + 4F8FB5F5C3B0AA072EBE86C3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2A46FEABBA43C8111834A15D /* Client.swift in Sources */, + 8EE7680FBD0E3B74CBF47E27 /* AllTests.swift in Sources */, + 5D6852B070BF3BE58AC082F3 /* Client.swift in Sources */, + 4C49409A75762B82E4BE1007 /* Collocated.swift in Sources */, + DF06D92BA14A9549F58F07A9 /* Server.swift in Sources */, + B76A3686BEAF19E70AA5587F /* Test.ice in Sources */, + 6C3C0602B1B8FF69F18518DF /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 480CF4808523A5E69EB7D407 /* Sources */ = { + 5205454E600CF041B66BE774 /* 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 */, + 862F47193B485FAEA9801BB4 /* AllTests.swift in Sources */, + 87A06205244785BDD42529A1 /* Client.swift in Sources */, + B5C9AB5A11C9DC99931B8C57 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4A3298D987F5090CCEEA582C /* Sources */ = { + 566CC439F7260E4ED534FD2F /* 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 */, + 9C684B66E3E7AEBF591C1150 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4F4F1E94D663663849203055 /* Sources */ = { + 592AA7ADB9244CF7838DFAF0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3E72AD0D61EE2300DA565E6F /* main.swift in Sources */, + 0DF98737208C5FF562D1B8B7 /* AllTests.swift in Sources */, + 8E5245DB3069B0D996247CFF /* Client.swift in Sources */, + 2C9B5DB375D29D5992FC98E3 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4F5BE157EA5F5E7CBE15AFFA /* Sources */ = { + 626208109A2B352E0C953538 /* 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 */, + 13B99C54525FCB5D99763D7D /* AllTests.swift in Sources */, + 412F52164B8A9A3BAF19EBD1 /* Client.swift in Sources */, + 8CD7C7F8CD5CF7929BE18A81 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 505670AA9E66974D30664769 /* Sources */ = { + 6831E3CD4222C55A8F044111 /* 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 */, + 6EF44198D76492489EEA8B9D /* AllTests.swift in Sources */, + 611D1E8C0AC59BE838506D7A /* Client.swift in Sources */, + 8932803C962A9FC5FE8EB618 /* Collocated.swift in Sources */, + CA3767AF6A1D9C1A1A6EE7B4 /* Forward.ice in Sources */, + 4198D33F3732415C4D92222E /* Server.swift in Sources */, + B4F1A4E2CFCC9898C9B2E828 /* Test.ice in Sources */, + 8FF467A992F60AE6913EF8D6 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5157643376FA82B89EEB08D8 /* Sources */ = { + 6878B564B0F2D92DB5EB28B0 /* 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 */, + 9BFAE53486883E170688D76A /* AllTests.swift in Sources */, + 0616771E9DCC32A8954A64EE /* Client.swift in Sources */, + B9D7BFA85056512F43AB0701 /* Server.swift in Sources */, + 54BAC7C6B5C92629D6E4DEEF /* Test.ice in Sources */, + 716BA3AF8285604C0993408F /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 53B88EA48DF75A01F277AAE1 /* Sources */ = { + 69B40FFD87789CF391A5BC46 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A20D130322181E5C41D6CC13 /* AllTests.swift in Sources */, - 1F5946925F3D5E04151BEE83 /* Client.swift in Sources */, - 365D62FA38A1DAF0C40ACC23 /* Test.ice in Sources */, + 4C1FE5673C9DCFCC6C521681 /* AllTests.swift in Sources */, + 558AAB0D9EC1A2AE5831C99C /* Client.swift in Sources */, + 98F63C97A3560D1B7063BA2C /* ClientPrivate.ice in Sources */, + 68F668E656345A7D9F3D99A9 /* Server.swift in Sources */, + 25329B0342BB1E2B45C4589C /* ServerPrivate.ice in Sources */, + 7BE8AA23C233405C278A22A5 /* Test.ice in Sources */, + 6918229332F5D5BA6B82D7CD /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 550CDCC399E02FF9AD55D03C /* Sources */ = { + 6A86E20C61F27E3286476095 /* 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 */, + FD9CFF63A465FE5ECC4C7CA3 /* Admin.ice in Sources */, + CD9ACCBDE72090CEA1B5CDDF /* Descriptor.ice in Sources */, + D071A91812655939890551E8 /* Exception.ice in Sources */, + 0519C7E867DB374F149B1990 /* FileParser.ice in Sources */, + 2423BCF238AC6AD81B79A39C /* Registry.ice in Sources */, + AA3DF90F9F7AE7E41A7A9F89 /* Session.ice in Sources */, + 4D273679B85FF12E509E9C70 /* UserAccountMapper.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58CEE4BDE08B849270A398E7 /* Sources */ = { + 6C8C84C974D39140120406C1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A0D923B9AE28943985BA59B7 /* Client.swift in Sources */, - FC10275B5BF8C4A9064B853E /* Test.ice in Sources */, + BD34921C3C75DF924FDFF57A /* AllTests.swift in Sources */, + 8A00939F0CD533282212A9B2 /* Client.swift in Sources */, + 87B9C072C30E2DBED33BB8ED /* Collocated.swift in Sources */, + 92388EB12542F6B1292CE23F /* Server.swift in Sources */, + 9A06DAAA0B203CA2157102A0 /* Test.ice in Sources */, + FCE39C66D42EC30588470F9F /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 59557C09F67164DD5842F5C7 /* Sources */ = { + 6F55FD163BA096C512C916E3 /* 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 */, + 80D6A0F053834FE292E3DE0A /* AllTests.swift in Sources */, + 93DAFE2E582CAFB57622168C /* Client.swift in Sources */, + 931BE9080B44F58D559B8206 /* Collocated.swift in Sources */, + 3743992806B7567EE7D64284 /* Server.swift in Sources */, + BB836B5E8EB2F43BD9656753 /* Test.ice in Sources */, + 508E9C24CD856630898F556C /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 61E63AF08093C78F1362AA7E /* Sources */ = { + 701AECBCD0845BFB1876E088 /* 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 */, + F2F8E672D0B6448433C0F8B5 /* Client.swift in Sources */, + 4F9F8F0810481C81391D8CB5 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6FD2D17AE02290CDDAF7189F /* Sources */ = { + 70DAACF467A2AC80B181D4AE /* 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 */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 727EB0AD0FFD41F286E09D4D /* Sources */ = { + 9554BF43135121B7D65E2E7C /* Acceptor.cpp in Sources */, + 39A91BF44E483F22FC43BA29 /* AcceptorI.cpp in Sources */, + BA6136386C06CDE18915B249 /* ACM.cpp in Sources */, + B6FBDF0052EF47CE6B52F328 /* ArgVector.cpp in Sources */, + 5507F5352871DB46AA66235C /* Base64.cpp in Sources */, + 0A7EF887C9DAA79818FB599B /* BatchRequestQueue.cpp in Sources */, + 6361D79F77A9F19E3564564B /* Buffer.cpp in Sources */, + C60593303A3B702CBA40204D /* BuiltinSequences.ice in Sources */, + BB00A92C945030D3F7CB1108 /* CertificateI.cpp in Sources */, + D55FDB743E5A6E822F3AAF4A /* CollocatedRequestHandler.cpp in Sources */, + 5B30A1C7106D235EECD371A2 /* Communicator.cpp in Sources */, + 5B030C5AE731084E45F25138 /* CommunicatorF.cpp in Sources */, + E620BA872F0DE08AAF53BB43 /* CommunicatorI.cpp in Sources */, + 04CA57F572948DE12AF650F4 /* Cond.cpp in Sources */, + 89440AF05FA7CC8EB88BE86C /* Connection.cpp in Sources */, + ACDB50DB35A6779B56D47D82 /* ConnectionF.cpp in Sources */, + 8128D9ACC369D6F1247B8910 /* ConnectionFactory.cpp in Sources */, + 490A47684F9522DA0EB3B71D /* ConnectionI.cpp in Sources */, + 646D198397E749966DB40E3A /* ConnectionInfo.cpp in Sources */, + 34985EBE9C50CB06AA64D8BA /* ConnectionInfoF.cpp in Sources */, + 4963E6A2F3B94627BD3C2122 /* ConnectionRequestHandler.cpp in Sources */, + 9DCC3C21D3245727D4CCC405 /* Connector.cpp in Sources */, + C8F130C843CE329970CE6DF1 /* ConnectorI.cpp in Sources */, + C52A5C479A5C09FDFC29A368 /* ConnectRequestHandler.cpp in Sources */, + 88345F83E1301D2FF1C1D263 /* ConsoleUtil.cpp in Sources */, + 43A06A4A51A4558C24398F0D /* Context.ice in Sources */, + 8DCA1D0474EC0432EAC54AAA /* CountDownLatch.cpp in Sources */, + 4D90AA0165758DCA6F4E5573 /* CtrlCHandler.cpp in Sources */, + 845053DF8321A58CE6067BA5 /* Current.cpp in Sources */, + C971E7B0131BF13655D468B9 /* DefaultsAndOverrides.cpp in Sources */, + 324A50B00D435D4EF19DB035 /* DispatchInterceptor.cpp in Sources */, + B09C0508C2DBD6737E11665A /* DynamicLibrary.cpp in Sources */, + 89D3ACE4EC733E3DB21C14C3 /* Endpoint.cpp in Sources */, + D3A075A4E31396353AF654FC /* EndpointF.cpp in Sources */, + 54B208E550318720CF0886EC /* EndpointFactory.cpp in Sources */, + 6427196F2B0891F6524E55CF /* EndpointFactoryManager.cpp in Sources */, + 841BFE0613018387F3873E99 /* EndpointI.cpp in Sources */, + 303B30C955BE042B6D833660 /* EndpointI.cpp in Sources */, + 09402B549DA79E6153D5B1B5 /* EndpointInfo.cpp in Sources */, + 5B335989737F66B47BE61847 /* EndpointTypes.ice in Sources */, + DF841E9C81A9DD7D0D27B435 /* EventHandler.cpp in Sources */, + 27E037D96A065A7E61ED5B6A /* Exception.cpp in Sources */, + 9BC25E00F33F3AC0A0B7BAC2 /* FactoryTable.cpp in Sources */, + D7F868E56A6E9055EA7EE9B6 /* FactoryTableInit.cpp in Sources */, + A274AE19070174CC7E66E22C /* FileUtil.cpp in Sources */, + 3553F05E74B10F4A5FE9C0AB /* HttpParser.cpp in Sources */, + 3C02844A7DAA17DDECD68687 /* IconvStringConverter.cpp in Sources */, + 5A70341D32664BCC9FB6D922 /* Identity.ice in Sources */, + 360716F34BAC49A2B2B4B1B8 /* ImplicitContext.cpp in Sources */, + 68E284BBBE9AF0BDC7635E8B /* ImplicitContextF.cpp in Sources */, + 50E08BF2848339F9284E25ED /* ImplicitContextI.cpp in Sources */, + A4B79799AA177ECC2680F3E3 /* Incoming.cpp in Sources */, + B4B84F514376A4A8E4A6ED31 /* IncomingAsync.cpp in Sources */, + 31404AAF6DED540CAE1C7082 /* Initialize.cpp in Sources */, + 8D69DDFC431A064DC4647F12 /* InputStream.cpp in Sources */, + 238D6984DA57079300B269A2 /* InputUtil.cpp in Sources */, + 7374F6D453C0207902F43CFB /* Instance.cpp in Sources */, + 3697A9BB3D6A517328B6906D /* Instance.cpp in Sources */, + A230E5CB808BA0203AC69D4B /* Instrumentation.cpp in Sources */, + 52858702FE194D8B2F3FAF99 /* InstrumentationF.cpp in Sources */, + CB0EA922D4BEB16E6B68FFB6 /* InstrumentationI.cpp in Sources */, + 49071D3B86174CFAA05E7489 /* IPEndpointI.cpp in Sources */, + 521F04B4A86C343DF07CC55B /* LocalException.cpp in Sources */, + B904C69A68313FE87E876699 /* LocalObject.cpp in Sources */, + 99839C7C174F1AB6AE8344ED /* Locator.ice in Sources */, + 9C17134AC1DB656CA2F01C9E /* LocatorF.ice in Sources */, + A050D241D029DEDDB1DFC6E0 /* LocatorInfo.cpp in Sources */, + BD4668C593E2B731A449859D /* Logger.cpp in Sources */, + 73BA63A3CC9DCC9D20E64B64 /* LoggerAdminI.cpp in Sources */, + 972ADC32F17372B5C30532D0 /* LoggerF.cpp in Sources */, + DC744E01B81A89EEBEF1F1B5 /* LoggerI.cpp in Sources */, + 025FA88297B6C712DCAA8F25 /* LoggerUtil.cpp in Sources */, + 4446DF6E15D87AE4822DB2F3 /* Metrics.ice in Sources */, + 72BCBF10AB3B8FC119868A22 /* MetricsAdminI.cpp in Sources */, + B28964A958A1D4B9949032C5 /* MetricsObserverI.cpp in Sources */, + 4CF9B8FFCEC00582965D6CE3 /* MutexProtocol.cpp in Sources */, + CD1974E69E78E59EFB0451C3 /* Network.cpp in Sources */, + 25821E0287DE5D6CE40099AE /* NetworkProxy.cpp in Sources */, + 3EB9B210291BB7557E04374A /* Object.cpp in Sources */, + C48F676CD5319A8FCC64558F /* ObjectAdapter.cpp in Sources */, + 11023A79BA4F103EE71D9704 /* ObjectAdapterF.cpp in Sources */, + 392B692E590FF92F563A91BB /* ObjectAdapterFactory.cpp in Sources */, + 474229F67C964ECBC86FFE44 /* ObjectAdapterI.cpp in Sources */, + 51118B71D7D03F9E63CAAC8A /* ObserverHelper.cpp in Sources */, + 95C626F7F7EE5460E72969F6 /* OpaqueEndpointI.cpp in Sources */, + 40F08703FA8A937D09706386 /* OperationMode.ice in Sources */, + 60729C52D701EE8270A8BC44 /* Options.cpp in Sources */, + 33E46E944D89D0AECF0AEF10 /* OSLogLoggerI.cpp in Sources */, + 3995C27D07CB622FE667FC3E /* OutgoingAsync.cpp in Sources */, + 363083682BE458B2B4FBD36B /* OutputStream.cpp in Sources */, + E6D2CAE0C0295F5764C05900 /* OutputUtil.cpp in Sources */, + 5646AF5748468E8367A8B2B8 /* Plugin.cpp in Sources */, + 7735AFBC7F28D830774C507E /* PluginF.cpp in Sources */, + E2150CB6BA407CAEB82D3EA8 /* PluginI.cpp in Sources */, + 15FF52207BB3A882D4ACAD44 /* PluginManagerI.cpp in Sources */, + 33F02CA9F06C15FF0FB76A2A /* Process.ice in Sources */, + EB3DA38B8BFB0D4CB9619CC2 /* Properties.cpp in Sources */, + E434146673B4685DFAA0386E /* PropertiesAdmin.ice in Sources */, + F358B827B18187A436C6B807 /* PropertiesAdminI.cpp in Sources */, + 89A18A72BB4884C905C3D894 /* PropertiesF.cpp in Sources */, + 176FA0D9CAB57E17A1B6D457 /* PropertiesI.cpp in Sources */, + 623F35B1EE9BB8F4AEF24A81 /* PropertyDict.ice in Sources */, + DFDC8F8075A4114675F568FD /* PropertyNames.cpp in Sources */, + 53344552350017DCCC922BA5 /* Protocol.cpp in Sources */, + 7B4093DC56456EF617CD7CA9 /* ProtocolInstance.cpp in Sources */, + B2EEE757E6D5F3B2ABC5D2E1 /* ProtocolPluginFacade.cpp in Sources */, + 58731F415B7F60515B1023A4 /* Proxy.cpp in Sources */, + A6308AE13C3F31335293B164 /* ProxyFactory.cpp in Sources */, + F33F3FA8FDE07357527E668B /* Random.cpp in Sources */, + 38398D28689BE1AE27EFDB06 /* RecMutex.cpp in Sources */, + 2B5C13822C5D5F8528E32C06 /* Reference.cpp in Sources */, + 56DFADAF1768EA7556E0DDB6 /* ReferenceFactory.cpp in Sources */, + 0DA69726D275D0F638CCA647 /* RegisterPluginsInit.cpp in Sources */, + 595522F6099D05330116C450 /* RemoteLogger.ice in Sources */, + 4B35254B4B03D338C27D1448 /* RequestHandler.cpp in Sources */, + FDEE2605F7A6D5CEBFFE8454 /* RequestHandlerFactory.cpp in Sources */, + 97481AEC4000BC44F22F0712 /* RetryQueue.cpp in Sources */, + 721ABF1FCB1E91E0D979C9EE /* RFC2253.cpp in Sources */, + D5B136ECAE08DC357CBB0FC1 /* Router.ice in Sources */, + 0920F0B8C7B88597FBD511A0 /* RouterF.ice in Sources */, + 086044B8C7CD0025AC4D03D5 /* RouterInfo.cpp in Sources */, + 0FBBFD2A689370DD3A659CB4 /* SecureTransportCertificateI.cpp in Sources */, + D19EE30CA81B28E902F68A75 /* SecureTransportEngine.cpp in Sources */, + 6D66F60AD807A0D621B4FCDA /* SecureTransportPluginI.cpp in Sources */, + 6E3FD5DBDB9B448F1EDA89D7 /* SecureTransportTransceiverI.cpp in Sources */, + D54DD89128401A9E190A2CC4 /* SecureTransportUtil.cpp in Sources */, + 590B30F38A2DFC0CAEE33014 /* Selector.cpp in Sources */, + 681283AB3F4D3C57BA2DAD4E /* ServantLocator.cpp in Sources */, + 7B157DCB3C603A7EDAF35E77 /* ServantLocatorF.cpp in Sources */, + 308BEFAA1E891A3CD98EC312 /* ServantManager.cpp in Sources */, + 16C3FFA9C9C70E9616892007 /* Service.cpp in Sources */, + 79E24AF1F29BCC8EB16F5797 /* SHA1.cpp in Sources */, + 64FB14BBAB1B754BA393BF06 /* Shared.cpp in Sources */, + 63C4D368D4E7394F8C269507 /* SlicedData.cpp in Sources */, + 5FB0C48B0BB085684D1D05D6 /* SSLEngine.cpp in Sources */, + F7BCEDD8F080F78BF0C96B6F /* StreamSocket.cpp in Sources */, + 12E0C4C963DF5E2A484ED2B9 /* StringConverter.cpp in Sources */, + F560F6F9B086723C991AAF10 /* StringConverterPlugin.cpp in Sources */, + AAC4E4F6E9E71BB058B4ABF5 /* StringUtil.cpp in Sources */, + E1A31D3A169D4200F2F3F07A /* SysLoggerI.cpp in Sources */, + 0172BC3C5CA19454AA9B50D8 /* SystemdJournalI.cpp in Sources */, + AC45AA1D12ED92644FDFFE25 /* TcpAcceptor.cpp in Sources */, + 4C3E68F02B2C9BD2C28A4D7F /* TcpConnector.cpp in Sources */, + 1DB5F39372C7C1710966126C /* TcpEndpointI.cpp in Sources */, + F1E936862D17AF9C6D2B44D7 /* TcpTransceiver.cpp in Sources */, + C6B62EB8CD89E069E59ED384 /* Thread.cpp in Sources */, + FC9545FF8C73189660C16820 /* ThreadException.cpp in Sources */, + 498FC7DC4E527F8D28C5B260 /* ThreadPool.cpp in Sources */, + 8D780C8CBB06009CA2D3F5C7 /* Time.cpp in Sources */, + F9E6A31066990817284C9D29 /* Timer.cpp in Sources */, + CAA05AA07F9F217B0FD37667 /* TraceLevels.cpp in Sources */, + 3EB594D7B8B6AC35A80F6A4D /* TraceUtil.cpp in Sources */, + 4EC88C92AA0FC0A517F3C9FA /* Transceiver.cpp in Sources */, + 8FDB877BA52CA228C6CE9D88 /* TrustManager.cpp in Sources */, + E810AC28FA6CDF71929F2137 /* UdpConnector.cpp in Sources */, + 79503EB61471FE7225C2CD32 /* UdpEndpointI.cpp in Sources */, + 0E40C8BD89089A3DD6B11378 /* UdpTransceiver.cpp in Sources */, + BAE5D97C28D6B650ED4D4706 /* Util.cpp in Sources */, + 58F654A06BB0AEB3759FA754 /* UtilException.cpp in Sources */, + 4F4F9325271124005C734F42 /* UUID.cpp in Sources */, + CB3C7EE6E6D99CCCC6D9E51E /* Value.cpp in Sources */, + BA9A241562A265F29B588468 /* ValueFactory.cpp in Sources */, + BC7E4DBA7D73110E5CA447BA /* ValueFactoryManagerI.cpp in Sources */, + BCAD5735C893A46116E6A080 /* Version.ice in Sources */, + 7CEE74EF0FFA0AF462DDC54C /* WSAcceptor.cpp in Sources */, + 87072B81D09CA7998317AC57 /* WSConnector.cpp in Sources */, + 6897437304C4DFDB71F0B384 /* WSEndpoint.cpp in Sources */, + 89ECDC747A165854E1A4F971 /* WSTransceiver.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 719DA637A24B37A1CE54D834 /* 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 */, + 2B1DFFB2FE624C8BA6D79DB0 /* AllTests.swift in Sources */, + BFB497D499A0397F7FDD2369 /* Client.swift in Sources */, + 7D592EE68A7CD7F0B34884B7 /* Server.swift in Sources */, + 67958EBA770BFD3838254333 /* Test.ice in Sources */, + 97E15FB52037B16AC187CBD8 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 73AEBDA73275A371B93C271E /* Sources */ = { + 7433C652AEC8941A21B9B39B /* 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 */, + 44F660CF3E288CADA03C9E75 /* AllTests.swift in Sources */, + A6E9DDCB266F59F01E1D3E2A /* Client.swift in Sources */, + B966483371606869BB002249 /* Collocated.swift in Sources */, + A0BBE2FA8F876D16C2A73EB2 /* Forward.ice in Sources */, + 10202B13383E9F4B8247203E /* Server.swift in Sources */, + 7AE9BBD2B5985BA1C9A8A9DE /* Test.ice in Sources */, + 60BB3AE8CDE506001E498270 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 740467C4B57784289FE5A4E5 /* Sources */ = { + 754369F2E5DE796468C3C840 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6E95618E4E327AADC73DAA4B /* ServerAMD.swift in Sources */, - 3FA2678C6066014D24260B71 /* TestAMD.ice in Sources */, - BE54607B55BE1C617CCA7107 /* TestAMDI.swift in Sources */, + 9069580CEF0C50BC0D548024 /* Client.swift in Sources */, + A0CC746B46CF2A1808F7694B /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 762F8D943DAB33489D9F1722 /* Sources */ = { + 77C324B2DDC186E954C3C4CD /* 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 */, + 84D4C8F119C9EE1C09FD9884 /* AllTests.swift in Sources */, + 9E8DD612EA94C6AF073D2BE3 /* Client.swift in Sources */, + 1E143F0DD1082A6A97CF4F78 /* Server.swift in Sources */, + 3FD9D1D3C10723136813DBC7 /* Test.ice in Sources */, + D71B01B9823A114BA16DC5C2 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7C9C563222656FA461391883 /* Sources */ = { + 792BDCA9FBE22AB30651FA77 /* 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 */, + CF9EC652EE21A343A2685988 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 80EF5348B1A88B2937E0CE91 /* Sources */ = { + 7C0AC4525A575C6705EF7727 /* 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 */, + DA3CB710A71685FEC7F899BD /* AllTests.swift in Sources */, + 0479A525C9005DE348CDCAC7 /* Client.swift in Sources */, + 538B2C4025C32BF487869AE1 /* Server.swift in Sources */, + A1981A764085A99EEC5E4B4B /* Test.ice in Sources */, + 2113DB3454929A04F837BAD2 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 824E592A3AB65CEE426FAE6A /* Sources */ = { + 8080F840DC63835F3A414E77 /* 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 */, + B2645C7AC36F03C6118E59E0 /* Admin.ice in Sources */, + CB7FCDA8BBA9538914A9D6B5 /* Descriptor.ice in Sources */, + 035B3023FCAC87E5D59B95B7 /* Exception.ice in Sources */, + FF7889ABF8FAE68C77657C16 /* FileParser.ice in Sources */, + 0DDAE46D5AD5AFABB7E57CF4 /* Registry.ice in Sources */, + 2634FE2D98EAED5260B52D13 /* Session.ice in Sources */, + 65A8AF2CF8EE9372DA44FE37 /* UserAccountMapper.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 82D127E91FF466629629CAB0 /* Sources */ = { + 8139460A05987B21367408BF /* 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 */, + 76DF8DADFFAA355F53083DCB /* ServerAMD.swift in Sources */, + F4524A3A925EA566BCDC4B69 /* TestAMD.ice in Sources */, + 6A3DC36E88854D99A7DF1CCA /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 83A76164440CDE56D3480DBB /* Sources */ = { + 8184C195194F6FB5999C1A34 /* 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 */, + 8F5D7506EF6BCB3D883E0303 /* IceStorm.ice in Sources */, + D073DA318597A838C099688F /* Metrics.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 871ABD25B86BB8501C338AF8 /* Sources */ = { + 81D0BB56AF1F3B4577276BE8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CCBE583DD738AF012CBDE5A5 /* ServerAMD.swift in Sources */, - 53A573D74AE623E8CCC967D0 /* TestAMD.ice in Sources */, - FBE1C0AAD964A4492EA42559 /* TestAMDI.swift in Sources */, + D6F5990B7C76C78341F87B52 /* AllTests.swift in Sources */, + F08C001ECA218C73A5E4B48C /* Client.swift in Sources */, + 1551FC173CF39E02CDA0795A /* Server.swift in Sources */, + 63C6AC701FD2F02A5B60DFD8 /* Test.ice in Sources */, + 0C93CE252AE54609BE184AC6 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8786DA1F033412225FCCC882 /* Sources */ = { + 837412A9BCB1C7BC61B63653 /* 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 */, + 7A9DB38700D4C6ECE4AE53F8 /* ServerAMD.swift in Sources */, + 32F457506BE4112346FC25C2 /* TestAMD.ice in Sources */, + 15306E705C2B126FDFB5E91D /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8868F5599B3F411802B63FAB /* Sources */ = { + 89DC88D3768C291C5BE46F0D /* 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 */, + A2E3516A08D310BECD05E875 /* ServerAMD.swift in Sources */, + A0149DC58918685B9C5F2976 /* TestAMD.ice in Sources */, + 4E79D345C7D2A366F7D1715F /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8A88D1A62B1848F7C88FC3C7 /* Sources */ = { + 8B45AD9152CA20EE9FB12029 /* 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 */, + 7918C758E9FC4D94FAF9C75D /* AllTests.swift in Sources */, + 420559557CDAA1A07D378EA3 /* Client.swift in Sources */, + 48D6D2B0D802B078BA554DA9 /* Collocated.swift in Sources */, + 68BE71A6D1A2000E1CCF037E /* Server.swift in Sources */, + 21F24DFA62F1079EB03EF7A9 /* Test.ice in Sources */, + AAE75D6A127A5DDAFD75A272 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8E451D196306CE7679BA9EDC /* Sources */ = { + 96447815E9D4871B57962CBE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 41A26D7FE975DF3ADB28BF28 /* ServerAMD.swift in Sources */, - 3439C7231AEDF344324F4B27 /* TestAMD.ice in Sources */, - E27463AC1E8702DA25FA0BE6 /* TestAMDI.swift in Sources */, + AD358F37A777336A39C8B99A /* ServerAMD.swift in Sources */, + 3EF0398FCB4591E2CDEA2FFB /* TestAMD.ice in Sources */, + D48F8AD05FF8E64BCBF7D3D1 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 91631103ED35069287E4C528 /* Sources */ = { + 99007BBB653F6A4522FC1EB6 /* 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 */, + F4113CB3B13A1BE5DC7388F5 /* AllTests.swift in Sources */, + 191F66CD348B3CBE7EE7FC2A /* Client.swift in Sources */, + 8B6F0C3D7A777167E4FD4924 /* Server.swift in Sources */, + 81047873254ADAD8E58FEEC2 /* Test.ice in Sources */, + EC95DFA9D4A946EA82A21A69 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 948D9EBD83F8962FC6B57605 /* Sources */ = { + 99348C10095E9E5F3C0F5F56 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 32BACCCD1BB1CFBF4E8939A3 /* IceStorm.ice in Sources */, - 3A9B08A45864E5B5DA10EF84 /* Metrics.ice in Sources */, + BF563871B8C1710CB7C10DDE /* AllTests.swift in Sources */, + C82E8BEDDC20EC57EE94CCAB /* Client.swift in Sources */, + 067B6E6FA2EA192CDFCF9036 /* Server.swift in Sources */, + 9B62AC540356B46A318ABAFB /* Test.ice in Sources */, + A8E6141724C576A3EB73695C /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 97D4C1B5577CD439FF1A875F /* Sources */ = { + 997D31D827F6C4B852418113 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2809864F63C4627B01839595 /* Client.swift in Sources */, - 0C0EAFB8E3FF7C0648EF3B12 /* Test.ice in Sources */, + 747A63095FC03440BD795862 /* ServerAMD.swift in Sources */, + FB6A27A456FA8598F97A504C /* ServerPrivateAMD.ice in Sources */, + BAF3246BCB036F3FDD4BEC82 /* TestAMD.ice in Sources */, + D7401A165877E9EA69A0165F /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 98EC66C7A6A09AD7A89D0FB1 /* Sources */ = { + 9A2EF05C4152549F1757F5FD /* 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 */, + 04781CF1594EB616E0A82C3E /* ServerAMD.swift in Sources */, + 07D2C592286FA9396D82CC5B /* TestAMD.ice in Sources */, + B2B047120C9B97524D190BBB /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9A4ED064FE6E42598FD6425F /* Sources */ = { + 9A7C513770B097DD6F2762A8 /* 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 */, + CD646C6A94062A9D0A397244 /* AllTests.swift in Sources */, + 73D741CD871F61247D2012D1 /* Client.swift in Sources */, + 9B9542CCAFF468634E1B1672 /* Collocated.swift in Sources */, + C3D21BDC151A7C398E3CB974 /* Server.swift in Sources */, + 29BA36D3727D013D7AE3B759 /* Test.ice in Sources */, + A1F4ECEC16BD53589AC95BC7 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A36774ACC8F2668986006B82 /* Sources */ = { + 9DD41E3742F99BA20DEB4AF8 /* 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 */, + 7B311962159224E81FF3F6C9 /* Clash.ice in Sources */, + BA90DA40D414B0DB97A49CB5 /* Client.swift in Sources */, + 9541617B04428080C862F221 /* Key.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A7EC5A246B84DB7C6747EE40 /* Sources */ = { + 9E882D250C2052D1241A3477 /* 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 */, + A274B3590B5C38EA5AD85E9A /* AppDelegate.swift in Sources */, + 9D6A459545335A93DE35A937 /* Assets.xcassets in Sources */, + 471A21D3CAA2EC4182B2D2DA /* Controller.ice in Sources */, + FEF7D62704721832132771C2 /* ControllerI.swift in Sources */, + 73F09AB536E76818864ACC32 /* LaunchScreen.storyboard in Sources */, + B36A489853F82B2E57647BD7 /* Main.storyboard in Sources */, + BFD6E1E93E91C48E46BB3353 /* ViewController.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A8407965EDF0FA13A64D9087 /* Sources */ = { + 9EE920B777162881752C3D96 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1C2744955743DD4E62E80AD6 /* TestCommon.swift in Sources */, + E8BE4DFEE22FD1758897D7FE /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AE95AA04979FB137DCE17259 /* Sources */ = { + 9F4D72E50D3BEA7C97557374 /* 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 */, + 1846C4B6AA0740E353A22F81 /* ServerAMD.swift in Sources */, + 53DE8F7FBACDBB37D1DA9101 /* TestAMD.ice in Sources */, + 20CCF9BE9008173E34CA8E6F /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B0AABBBE14BE23E960D12458 /* Sources */ = { + 9F9350C956E6764F2417D41E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E1F7E0B85826E4C2D7425980 /* IceLocatorDiscovery.ice in Sources */, - 5840FAA7AE11007663733FA9 /* PluginI.cpp in Sources */, + 41C87D63EE0B4F7119F1AFED /* TestCommon.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B0F22D921EF6432E4BB4E571 /* Sources */ = { + A5F8B288ACE2AA4F07185457 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8DC0569BE9ADDB7CE6EB6738 /* IceStorm.ice in Sources */, - 3916A6C7913A2D1DE42BD5E9 /* Metrics.ice in Sources */, + D47E7EB5C8A2F63A302DF2AA /* BlobjectFacade.mm in Sources */, + 8CD7F5964EAE861660D6977A /* Communicator.mm in Sources */, + 387A307046DAE74D4B359D90 /* Connection.mm in Sources */, + EB31B1FBCB271396431126B1 /* Convert.mm in Sources */, + 7451CFE0B0DDF0536B287153 /* Endpoint.mm in Sources */, + E3CDD467EEBA8EAC5394CE7A /* Exception.mm in Sources */, + B2AD8E5819AF0F52E798EF1B /* IceUtil.mm in Sources */, + CB93D94A72ACB6460406106A /* ImplicitContext.mm in Sources */, + 553233BCC9A149A6061D671D /* LocalObject.mm in Sources */, + D0918E43C63B007F8787034D /* Logger.mm in Sources */, + 458EF9B014A0C7657AB8BD60 /* ObjectAdapter.mm in Sources */, + 9470D0DF053DE7012BF91D7D /* ObjectPrx.mm in Sources */, + 6DA0B9BB176F6BCCB270A5A4 /* Process.mm in Sources */, + 4E66421B983A52C43625EFF8 /* Properties.mm in Sources */, + C56F8DF28EE4E3EBBD329E91 /* PropertiesAdmin.mm in Sources */, + 583A5A675D444BA0B139780A /* TraceUtil.mm in Sources */, + C0F2252DBC9DF62F01802D0C /* UnsupportedAdminFacet.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B268825D883706611F09F50E /* Sources */ = { + A6E11EF3B3E17130A401AA5F /* 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 */, + 04BF5B027FC2EC31DFF1C3B4 /* AllTests.swift in Sources */, + 0774C7F1D02D5438905530E6 /* Client.swift in Sources */, + C53C9AD418AB700BC9B5B2CF /* Server.swift in Sources */, + 21A64A28833A269C102EAE91 /* Test.ice in Sources */, + AD62AF11D8BBC2CACC704697 /* 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 */ = { + AC5BC499C01824104D8ED5F2 /* 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 */, + F3AEBFD1C3D3CE06735E9D64 /* AllTests.swift in Sources */, + FC3F53F10FE9848D4097C765 /* BatchOneways.swift in Sources */, + DE4F221E7B43ECB85073A654 /* BatchOnewaysAMI.swift in Sources */, + 9C869A7A50B22DB555CC9004 /* Client.swift in Sources */, + 39E05A2E3433BFBB8D58681C /* Collocated.swift in Sources */, + 5DDF39A2B0E18D7BC0644CEF /* Oneways.swift in Sources */, + 95B55872D9D23F15BFB4A57B /* OnewaysAMI.swift in Sources */, + 1236014A00E4E01EB379A952 /* Server.swift in Sources */, + 82405BD150C77B92AE21D727 /* Test.ice in Sources */, + D8CCB30783ED0346C979E749 /* TestI.swift in Sources */, + 56FBF3A9AB42F50ABC6D9428 /* Twoways.swift in Sources */, + 1D0BF0BD29DB97D61C0675DA /* TwowaysAMI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B8032E351A2CAFE627A0F284 /* Sources */ = { + ACB7C5609B10FAB2A178F1A0 /* 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 */, + A824549EE2D79F19D9E96045 /* ServerAMD.swift in Sources */, + 3D040DD5FCF7504343A2EC3D /* ServerPrivateAMD.ice in Sources */, + 7257C43AB0E12E76E38DB6C2 /* TestAMD.ice in Sources */, + F5144F08CA8D806B2D8428D9 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BA68633733EA8DC078472E17 /* Sources */ = { + AE8534E1C05D72CB06E30E66 /* 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 */, + 41A357398D70D93257339E8B /* AllTests.swift in Sources */, + D493480967AAEB71801A0D46 /* Client.swift in Sources */, + 7726D14089BB24F5E567F6B6 /* Server.swift in Sources */, + B94C97890E9A5D64D52DCAEE /* Test.ice in Sources */, + 0B9335BFAA4E14EB94810181 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BB65F0DCE4801282D4A53128 /* Sources */ = { + B0C83D7E31A8D4A8EBF9E33B /* 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 */, + 1A0421740818EE069D0CBEC4 /* AllTests.swift in Sources */, + 56455B5C8BE6ECA559D703C8 /* Client.swift in Sources */, + 8116182CE642218EE0297F19 /* Server.swift in Sources */, + E3B6DDA346162ADE50B1864E /* Test.ice in Sources */, + 3739D48403F7B64A879F8FA2 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BCEB796595D0483CD00AFFFF /* Sources */ = { + B2FD5E0DDD2D8BCA6C586831 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 93A55E1B9AD305331FDA0BEF /* Client.swift in Sources */, + 8BBC231865D38CC433D929BF /* AllTests.swift in Sources */, + 8C3F661FBF62FDE58807D739 /* Client.swift in Sources */, + 487D841EE5B42671944AE28A /* ClientPrivate.ice in Sources */, + 80EC62E70535BB96C57F58F9 /* Server.swift in Sources */, + 7B6916A88A0A037EF164D18E /* ServerPrivate.ice in Sources */, + 3E3965C73F6867AEEA31C03E /* Test.ice in Sources */, + E63AF4D08B9EFB88EA47A758 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C0C732FC4178000245364070 /* Sources */ = { + B3AA78E727CE5C7CE7840AB9 /* 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 */, + BF44643792D19A3A6AF218FE /* AllTests.swift in Sources */, + B5FCC340B092B2D332433AA8 /* Client.swift in Sources */, + 58C83AB506FA69E086CBBC6A /* Server.swift in Sources */, + D7278E9D2A77063BE213C0E8 /* Test.ice in Sources */, + 4B3D0D86BFA72510F02B26BB /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C3D6F51913CB22B1F54DF445 /* Sources */ = { + B7F74FA0EB42B9F35DD6B480 /* 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 */, + 5ECCA1C3D4BF2684FA6E05D5 /* AllTests.swift in Sources */, + D918497C4CFF0B3FE6C8E9FF /* Client.swift in Sources */, + AD4272746FF4D38E8495E2E6 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C76332C341D31121F8357DEF /* Sources */ = { + BBDAE5B3B61B591AAD19589D /* 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 */, + F628A90221011F3D8A44697E /* Acceptor.cpp in Sources */, + D9A262313E99DF4F916ACEAB /* AcceptorI.cpp in Sources */, + 876BD275061F47E61178094E /* ACM.cpp in Sources */, + A9CF883E427C334ADD258E16 /* ArgVector.cpp in Sources */, + 50EB15A0D6DF626B6EE6F2B1 /* Base64.cpp in Sources */, + E0171B0F8F9AD0DB8A46CE03 /* BatchRequestQueue.cpp in Sources */, + 15F7DCC09D0084F0822E576C /* Buffer.cpp in Sources */, + A2E672B4B4434441205D8769 /* BuiltinSequences.ice in Sources */, + 951B9BEDF850E9E38C146377 /* CertificateI.cpp in Sources */, + 1C12F304FB3287DB86E42E86 /* CollocatedRequestHandler.cpp in Sources */, + F7AB684C3F174249370B021B /* Communicator.cpp in Sources */, + B2F8335DA50D91649AD4A803 /* CommunicatorF.cpp in Sources */, + 6CC623094D0967F02F04F651 /* CommunicatorI.cpp in Sources */, + 75069E7FC7D00B2A003CD5BD /* Cond.cpp in Sources */, + 7CB5BE628EB7893853BA789E /* Connection.cpp in Sources */, + E9C9012DDE95D30E68B720FE /* ConnectionF.cpp in Sources */, + 4D60D0B72D3DD34473145C7D /* ConnectionFactory.cpp in Sources */, + 6EF5810F0D6DB1CD94969C3A /* ConnectionI.cpp in Sources */, + 623015A7A85F5AD04050E7B2 /* ConnectionInfo.cpp in Sources */, + A277D08D79C49F784F3E6105 /* ConnectionInfo.cpp in Sources */, + 16A39D292B555A395D8043FA /* ConnectionInfoF.cpp in Sources */, + 7EFB948C8F71C0940154D850 /* ConnectionRequestHandler.cpp in Sources */, + 6B2E2425DCEABA5C1EA2DBAE /* Connector.cpp in Sources */, + 37969434CF573FE2E107DC30 /* Connector.mm in Sources */, + 0C59DF32C4B266890E39489B /* ConnectorI.cpp in Sources */, + A62F8477FA3CBC17475FB322 /* ConnectRequestHandler.cpp in Sources */, + 4D11B7270E733B4273E0FA5D /* ConsoleUtil.cpp in Sources */, + F0B987226D3972F934B8BDE0 /* Context.ice in Sources */, + D359A277456C1432D3D2713D /* CountDownLatch.cpp in Sources */, + 142C7687076AAC2C8C72C5DD /* CtrlCHandler.cpp in Sources */, + F2DC38D190A55A61548531BB /* Current.cpp in Sources */, + 78062257E13BE39337E96538 /* DefaultsAndOverrides.cpp in Sources */, + 94D96E1E93C00C303E419E88 /* DispatchInterceptor.cpp in Sources */, + E97CEF9CD19A46E9C4CE76EF /* DynamicLibrary.cpp in Sources */, + 3FD8F288D9C3AED2649CA04F /* Endpoint.cpp in Sources */, + 2755D9B24F7C3B1826BCB535 /* EndpointF.cpp in Sources */, + 45C087E01EE697577A42E469 /* EndpointFactory.cpp in Sources */, + 233CB26F06DE77C312AA14F2 /* EndpointFactoryManager.cpp in Sources */, + A815DDA39526FA93C2851FB5 /* EndpointI.cpp in Sources */, + E8B76651846F221ED65BED57 /* EndpointI.cpp in Sources */, + 00B613DAA9C2BF3F770470F4 /* EndpointI.mm in Sources */, + 00697F0CF3B2AF39EE080EF7 /* EndpointInfo.cpp in Sources */, + 8C3C0F4EF3C2B59801C65447 /* EndpointInfo.cpp in Sources */, + 260604829BC6EF368BC06F2D /* EndpointTypes.ice in Sources */, + C26282DA482B3A282EC20CAB /* EventHandler.cpp in Sources */, + 857674BAC5C3DFB88B3B4ABD /* Exception.cpp in Sources */, + 56B312059BBB28373C60ECE7 /* FactoryTable.cpp in Sources */, + C9A2AE33C23EEFB2099F749E /* FactoryTableInit.cpp in Sources */, + 120C3846DF526D2CC01C6BFB /* FileUtil.cpp in Sources */, + 2FE5B3C36CA225765D9553A0 /* HttpParser.cpp in Sources */, + 17C3F67246D0DA4164CDF041 /* IconvStringConverter.cpp in Sources */, + F5A588A2CB3E1874486FE65E /* Identity.ice in Sources */, + 59139E6E230A3382F1E3715C /* ImplicitContext.cpp in Sources */, + D6D05F5C607B332E0FE623C2 /* ImplicitContextF.cpp in Sources */, + 834246E0E89FF486CAC79A89 /* ImplicitContextI.cpp in Sources */, + EA81884A036C1B83E353172D /* Incoming.cpp in Sources */, + 273746EEACA57E9DB33DA124 /* IncomingAsync.cpp in Sources */, + 4E12B6B1E647A3BBD18FA3B6 /* Initialize.cpp in Sources */, + 2967E3FB8D599E3DACF4AB60 /* InputStream.cpp in Sources */, + 84226DD2E2F66765A7D0143C /* InputUtil.cpp in Sources */, + C1AEE0EAC78A383EC6D234B0 /* Instance.cpp in Sources */, + C5F9D85C25B7333CE3ED978A /* Instance.cpp in Sources */, + 4A1722F2B254F5A7C51DC5C7 /* Instrumentation.cpp in Sources */, + AD542D5B6992526391AD8D25 /* InstrumentationF.cpp in Sources */, + 9E67E9EE49147CF058353C43 /* InstrumentationI.cpp in Sources */, + C834907D047E9AA3E4540029 /* IPEndpointI.cpp in Sources */, + 036B7294EF6C85869D4D99D0 /* LocalException.cpp in Sources */, + A357FB84B5FAC4E07572BCE9 /* LocalObject.cpp in Sources */, + FE391B7557F38AC35E039414 /* Locator.ice in Sources */, + 6EB9599AA1A7328CB5EEC889 /* LocatorF.ice in Sources */, + B342CA44502DE774A8E79975 /* LocatorInfo.cpp in Sources */, + 97134D0F45385D17BB4AD8CE /* Logger.cpp in Sources */, + 9FBEC4A643CE38595A7CB226 /* LoggerAdminI.cpp in Sources */, + 39BFDC307D3D2D55B1FDFB50 /* LoggerF.cpp in Sources */, + 52C90CA2DDEC67D745293E34 /* LoggerI.cpp in Sources */, + 53CA31576F7B085963D38037 /* LoggerUtil.cpp in Sources */, + 03AE2B78C6E447D09D6B1B9E /* Metrics.ice in Sources */, + F449A7BB4CF9C07F8749F812 /* MetricsAdminI.cpp in Sources */, + CBF0EEA7678D3359CAE68078 /* MetricsObserverI.cpp in Sources */, + AFCB1192BA3F48442D920C1C /* MutexProtocol.cpp in Sources */, + 4E5F2B5F0189D7BFB17FD725 /* Network.cpp in Sources */, + C6DF378AF6E6653008466E9C /* NetworkProxy.cpp in Sources */, + 435A0B3E906B0A91CC244021 /* Notifications.mm in Sources */, + 4B333E3B2B1960B959792FF8 /* Object.cpp in Sources */, + 836ED348F8A9705B34D613FA /* ObjectAdapter.cpp in Sources */, + F623630184815B0DE4997E35 /* ObjectAdapterF.cpp in Sources */, + C1EF67608B9D20245C3B4903 /* ObjectAdapterFactory.cpp in Sources */, + E5CBEC389C711B5308FF9381 /* ObjectAdapterI.cpp in Sources */, + 9948A17DD52514E7C2F0074B /* ObserverHelper.cpp in Sources */, + C309FA89F6823F3F6618FDA5 /* OpaqueEndpointI.cpp in Sources */, + 76FEC9B75CEC89A42B71C16A /* OperationMode.ice in Sources */, + 4AD65AA33D07C3122665572B /* Options.cpp in Sources */, + 8E54196DDD5049D8DAC54C1E /* OSLogLoggerI.cpp in Sources */, + 1AB0C9E8A36E7177EB9A0B18 /* OutgoingAsync.cpp in Sources */, + 05CD8A6BBC6A23919D9474CF /* OutputStream.cpp in Sources */, + AD17C0A7220054AF2343A0E5 /* OutputUtil.cpp in Sources */, + E8D67F1B923E3B3C5B2ED0EE /* Plugin.cpp in Sources */, + C6AFDA64C688FF06B9310908 /* PluginF.cpp in Sources */, + 1E53540A9D41DF7E0577619C /* PluginI.cpp in Sources */, + FFE50E379B96CC7FE138393C /* PluginManagerI.cpp in Sources */, + EA1EDFC25BB45BDD2E4ED129 /* Process.ice in Sources */, + 45D397710D514A934510642C /* Properties.cpp in Sources */, + B7F221C5248CAB086EB64C67 /* PropertiesAdmin.ice in Sources */, + 98D4C1B1369325C1133BBE98 /* PropertiesAdminI.cpp in Sources */, + 9D73435873964679C928BB13 /* PropertiesF.cpp in Sources */, + 8B6DB53E884B0623F78F9B96 /* PropertiesI.cpp in Sources */, + FEF1F5854B457272592D1ADC /* PropertyDict.ice in Sources */, + ED5787262CD1986FC4D09E77 /* PropertyNames.cpp in Sources */, + 363EBEE0E3EA26AC3E81669F /* Protocol.cpp in Sources */, + 1850762506CBCC3C99978655 /* ProtocolInstance.cpp in Sources */, + 245F0A9E8E40E18DCE5687C4 /* ProtocolPluginFacade.cpp in Sources */, + A9414CB4BCDB9E09B40E1249 /* Proxy.cpp in Sources */, + A2278BA50113911A136EDD47 /* ProxyFactory.cpp in Sources */, + 0072C42A6D23F148DF459251 /* Random.cpp in Sources */, + 7ADD4BB8DBFDDB60947DB5A1 /* RecMutex.cpp in Sources */, + 8905F8A712324754F451DFFF /* Reference.cpp in Sources */, + 3BA7B0B434E5E02B9D750C0A /* ReferenceFactory.cpp in Sources */, + DA8B7FCFA35AA56A3EFD271D /* RegisterPluginsInit.cpp in Sources */, + 9100D670BD0902AD4FBEDA79 /* RemoteLogger.ice in Sources */, + 7794C7FD958B1B638FA39434 /* RequestHandler.cpp in Sources */, + 9221FBCFB03BF7DB8E80316C /* RequestHandlerFactory.cpp in Sources */, + 038F68BDDAA7D82C87A4E358 /* RetryQueue.cpp in Sources */, + 43BEC394D6019C242A1965FD /* RFC2253.cpp in Sources */, + D06F6FD95F3B3DD60298A587 /* Router.ice in Sources */, + 2A15060058139663E7821C80 /* RouterF.ice in Sources */, + EDE9713BC451CE5E12CA1F8F /* RouterInfo.cpp in Sources */, + 84CC6162A6BBE3FC8B845E15 /* SecureTransportCertificateI.cpp in Sources */, + 18EB373F03969A5726EFB480 /* SecureTransportEngine.cpp in Sources */, + B31FF29C712A0585DA2B16A8 /* SecureTransportPluginI.cpp in Sources */, + CFE5F1C21970D5D8ECD4FC54 /* SecureTransportTransceiverI.cpp in Sources */, + F5D8C4461601E5387C59C544 /* SecureTransportUtil.cpp in Sources */, + 9991831C1643E2E62BA18219 /* Selector.cpp in Sources */, + 40700CF27FB897708C8E3FC9 /* ServantLocator.cpp in Sources */, + 287C4F650BFB6E84F2D89401 /* ServantLocatorF.cpp in Sources */, + 93C4965EBD4F44FAB183C5F4 /* ServantManager.cpp in Sources */, + 2591DF29610555BC8F376399 /* Service.cpp in Sources */, + 10980ECEFA4EE39659C106A3 /* SHA1.cpp in Sources */, + DA5FD412CA303435EC0BD6A8 /* Shared.cpp in Sources */, + CD50B206BDF7F3B5AAC0FEFA /* SlicedData.cpp in Sources */, + 0643622519CDC658F54DEA21 /* SSLEngine.cpp in Sources */, + A20E3E83764CBC9CC7D035C1 /* StreamAcceptor.cpp in Sources */, + 19DEAFA41AC58B52F3270072 /* StreamConnector.cpp in Sources */, + 55F6F002E5AD62ED4950F9D0 /* StreamEndpointI.cpp in Sources */, + BABB95F2BCAA9B4C835466C4 /* StreamSocket.cpp in Sources */, + 05BA88CFDB0A1B982F7DCBCA /* StreamTransceiver.cpp in Sources */, + C222CC7EE9494ECFC5EC8D6F /* StringConverter.cpp in Sources */, + 433753C318BA6309627F8436 /* StringConverterPlugin.cpp in Sources */, + AD82A51F863258B191EEB488 /* StringUtil.cpp in Sources */, + F253CC5000807172EC6C807B /* SysLoggerI.cpp in Sources */, + 3198230FECD6917F1E54E9A5 /* SystemdJournalI.cpp in Sources */, + D84966B3582B40ECC94EE434 /* Thread.cpp in Sources */, + 0A945DF4D48C7CF37CF3FE37 /* ThreadException.cpp in Sources */, + 1464A58CDA48D7EDC7455275 /* ThreadPool.cpp in Sources */, + 6EB55CA35B0042F8907ABB71 /* Time.cpp in Sources */, + DA777C2519E5B4091CF7C54C /* Timer.cpp in Sources */, + 6C9FA9D2501970F08B561AE9 /* TraceLevels.cpp in Sources */, + 21350A5903CD4A412B2D52EC /* TraceUtil.cpp in Sources */, + 58F819BF5E32F0301C276167 /* Transceiver.cpp in Sources */, + 64133ED7B6EDF761D206478F /* Transceiver.mm in Sources */, + 0BF831C6A17EE4C209FFB07D /* TrustManager.cpp in Sources */, + 34DACF0F45A29B2FABF70BD3 /* UdpConnector.cpp in Sources */, + F66F71C7ADF724DFA67D30B0 /* UdpEndpointI.cpp in Sources */, + 1137853C143EFCA34A542E73 /* UdpTransceiver.cpp in Sources */, + 440AA05E3A9604C6442EEA39 /* Util.cpp in Sources */, + D4D63EFCA9639B1347B119D2 /* UtilException.cpp in Sources */, + 71F4D472DBAEE211AC348305 /* UUID.cpp in Sources */, + 1CA9F9E21052C7E3766D8BD5 /* Value.cpp in Sources */, + EE19CE8B034CFA0F59078B90 /* ValueFactory.cpp in Sources */, + 7A7A4C7A80706237CFE714DD /* ValueFactoryManagerI.cpp in Sources */, + 86480249061BFEBB3EF8D4AA /* Version.ice in Sources */, + 8B18A9E9A12346C8ED49B6A9 /* WSAcceptor.cpp in Sources */, + 0018341987DE28CA1CA741D3 /* WSConnector.cpp in Sources */, + 379AFB2D0C62F742312A463B /* WSEndpoint.cpp in Sources */, + 1C9A0B565CB0C871EE3CABAE /* WSTransceiver.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BF00BE8B9F09076ECFB79A05 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + D81AF7157AAAAD80CED907DF /* AllTests.swift in Sources */, + 42401834C114B2832139FF2E /* Client.swift in Sources */, + 7299858CC411A3BA51EA12CB /* Server.swift in Sources */, + 74629744424689F013519A6F /* Test.ice in Sources */, + 34A571D18E90FAE9D06B69EF /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C8477A0FED449B4755E04676 /* Sources */ = { + C3F8C582C2352BF2FCC0F81A /* 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 */, + 096D459BAE2FCF2E26D63288 /* AllTests.swift in Sources */, + 5A4FCB52A138384242EC41F2 /* Client.swift in Sources */, + 6AF5EB3E096847C86D409473 /* Collocated.swift in Sources */, + F13FBCE9EEA5B5820E2112C5 /* Server.swift in Sources */, + FF1C80A5D20366AB76CEA278 /* Test.ice in Sources */, + D53361B4E18F02F39AD71F7C /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C8A227DBD6A7A872CBC5FDBB /* Sources */ = { + C42941CAE7C44F652D3A5CC4 /* 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 */, + B9D79D3ECA42805AE43C28E6 /* AllTests.swift in Sources */, + E46F315B2FE959CC2492512E /* Client.swift in Sources */, + B89F95BBC741F229F326FBB9 /* Server.swift in Sources */, + A4D36C0FD19DE530887B370F /* Test.ice in Sources */, + A92EAC6E21F6504793754DB2 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D1B441C4A5BCB25875982891 /* Sources */ = { + C81FD95798F618B58E1B0D22 /* 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 */, + E37C083C51128D4F812DFECE /* AllTests.swift in Sources */, + 2167F438E88BB33B0802C78E /* Client.swift in Sources */, + CB08CC281534672927561D65 /* Server.swift in Sources */, + EDCFCF99DC5A895DF62E8929 /* Test.ice in Sources */, + 0431CDD713D70DDCBC01025B /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D504994ED86C0EE6327A898B /* Sources */ = { + C85E6EAE3323C931667E87A4 /* 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 */, + D0B68D28A36F25DBDEEEE0B0 /* main.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D64890E98A72ADBFDFA02D73 /* Sources */ = { + C95E4F45F7796D2824F91CFD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 45F431096243A6CCD447ADD0 /* IceLocatorDiscovery.ice in Sources */, - 2F50A90E920A49695AB20462 /* PluginI.cpp in Sources */, + FE70BFEF5C9234B3C7D50949 /* ServantLocatorI.swift in Sources */, + D3B2170996EE9D9A4178F087 /* ServerAMD.swift in Sources */, + A7EE2C1997021D64CF91787C /* TestAMD.ice in Sources */, + 68337CBF05C2DA45B34BCE3A /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D84617619F7C20813FF9C29A /* Sources */ = { + D34F40178ACFC211A11C58B9 /* 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 */, + F44CA32D2CDFDDE45F4E72D9 /* AllTests.swift in Sources */, + 7E3651954058DFC1CB0759F3 /* Client.swift in Sources */, + 8B86EBBE72B4D6104A5FCCCF /* Server.swift in Sources */, + 3419C76A03E29460F60A10A9 /* Test.ice in Sources */, + 3AE2B565314D08D3FF70C3B3 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DE9EB00E333E4DD3BCF925D3 /* Sources */ = { + D9321E417D66FDC352F91E8A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6BF8EFBD8F8BBFD6F0DA48DA /* Client.swift in Sources */, + 5AFA14CFA0D5B2602C25C72C /* AllTests.swift in Sources */, + 458A24FE79D3611E1E628182 /* Client.swift in Sources */, + B6F436312C61E057ECDECCD8 /* Collocated.swift in Sources */, + C03CEB6C13E93631A7A84FCD /* Server.swift in Sources */, + 257953F655C3275C12048FE4 /* Test.ice in Sources */, + E8FA35D450BF9D20E43A1B63 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DF2BAEAF833A6D766E15283A /* Sources */ = { + DC9F71DD24521C3C5FCF9509 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 4ADF224365C51AD0BE287779 /* AdminFacetFactory.swift in Sources */, + 52E1DED4E3F543049FAF6EDC /* Blobject.swift in Sources */, + 3D0B4C2019194618E9AE34F6 /* BlobjectAsync.swift in Sources */, + D442A5075C050714DD84E2C2 /* BuiltinSequences.ice in Sources */, + 51B543350C9BC2DEA824F676 /* ClassResolver.swift in Sources */, + 21D837952971440E5EB330DF /* Communicator.swift in Sources */, + 1220A09A233ADD19F5B63EE2 /* CommunicatorI.swift in Sources */, + 19F695F5B7F0E3C2C25376C9 /* Connection.swift in Sources */, + 229EC81397D523D3DF52FB8F /* ConnectionI.swift in Sources */, + 0D91C27BAD60BBECB3C0FDC7 /* ConnectionInfoFactory.swift in Sources */, + F6550E4045DCA75D9D253C74 /* Context.ice in Sources */, + 110C0E024EB6945CD5EF31ED /* Current.swift in Sources */, + 39CD88EBD62959CEE9CBDF5F /* Endpoint.swift in Sources */, + B921CF701C7ABCB95B5489BA /* EndpointI.swift in Sources */, + 3C6D235D0D6DE82E42EA4632 /* EndpointInfoFactory.swift in Sources */, + E915365B65F166283C5A7F9D /* EndpointSelectionType.swift in Sources */, + 39989167034C3272CA3BD987 /* EndpointTypes.ice in Sources */, + F190A21FA780155868903D60 /* Exception.swift in Sources */, + D89777822ADB1527B2E9ECDF /* FacetMap.swift in Sources */, + 85D9AF5104CE3F3E362D3C63 /* FormatType.swift in Sources */, + 1662721D0ACE871AF8158F52 /* IAPConnectionInfo.swift in Sources */, + D7925782BB7F4C817FD0AA57 /* IAPEndpointInfo.swift in Sources */, + 9F3EC4CF229801630E4DA883 /* Identity.ice in Sources */, + F3E8FD1DDD07547A0DF7D91D /* ImplicitContext.swift in Sources */, + D12BFEE94D559BE97EA05925 /* ImplicitContextI.swift in Sources */, + 8DB73EBF4C2845D055412A18 /* Incoming.swift in Sources */, + B1431EBFEB84AD625884B324 /* InitializationData.swift in Sources */, + F36251032A3F4AD1E9C34A21 /* Initialize.swift in Sources */, + 353989250D7F2EB99BA92BF0 /* InputStream.swift in Sources */, + 292B54AD7E6FFDC4750B5A0C /* Instrumentation.swift in Sources */, + E24DAC092926FBEAF91679CB /* LocalException.swift in Sources */, + 170C4CFE00C77FC6EA64CB0E /* LocalExceptionDescription.swift in Sources */, + CF467ECA243473DAA814D048 /* LocalExceptionFactory.swift in Sources */, + 2C200E9E10BFA312E9E3F9FC /* LocalObject.swift in Sources */, + D5F6AB847BEEEF0A8646388B /* Locator.ice in Sources */, + 458E08E5F9B0736BA438BED1 /* LocatorF.ice in Sources */, + A074B308562DA349AB4659EA /* Logger.swift in Sources */, + EAE752895F55485E6B9D314E /* LoggerWrapper.swift in Sources */, + 5DDF47B7BB0721D19F9ADE42 /* Metrics.ice in Sources */, + CE3F516C6BCFD191F6EF75C5 /* Mutex.swift in Sources */, + AFD6AB5AD6800C6D202F9E08 /* NativePropertiesAdmin.swift in Sources */, + 05B4299FC837338C7C9F07F6 /* Object.swift in Sources */, + B83638F0D662B79B5A0975A3 /* ObjectAdapter.swift in Sources */, + 3DE78F344E8540CDFD5B4254 /* ObjectAdapterI.swift in Sources */, + B1C6A1EA2197139A7EECAD83 /* OperationMode.ice in Sources */, + B9B9FEAC21799ECDE7C16E09 /* OptionalFormat.swift in Sources */, + DF801682057D9E3481021BF9 /* OutputStream.swift in Sources */, + BE9763782AD0F8D1C9B367C0 /* Plugin.swift in Sources */, + 751560A68722B308F6C21119 /* Process.ice in Sources */, + 778723B748D759EFEC60C0F3 /* ProcessI.swift in Sources */, + 6DB6A62110660F912E3A425A /* Properties.swift in Sources */, + A3A50A3F5C0EF82A11B7EB07 /* PropertiesAdmin.ice in Sources */, + 6DDF0843AEE85A7BC67F6D1A /* PropertiesAdminI.swift in Sources */, + 80F1CE0419339022678607E2 /* PropertiesI.swift in Sources */, + 83FEEB974C87EBDC8EE7223A /* PropertyDict.ice in Sources */, + AFC826EB9C6FC596575BAB6C /* Proxy.swift in Sources */, + 04994BC95865F3AFF995FFBD /* RemoteLogger.ice in Sources */, + 0AC32732B6437A1A7136CC6B /* Router.ice in Sources */, + 623D02D1C7E5691F89015FB8 /* RouterF.ice in Sources */, + ECC4429CC6E5FD93D6461316 /* ServantLocator.swift in Sources */, + 0BE3033B3DC78D489AE854F6 /* ServantManager.swift in Sources */, + 179758EB67CBBAB3D244B28A /* SlicedData.swift in Sources */, + 6BD827012FAC4AC28D8F3086 /* SliceFlags.swift in Sources */, + ACA078A151886FF1B9180EB8 /* SliceInfo.swift in Sources */, + 419A77E8C424CB2E6558CA92 /* SSLConnectionInfo.swift in Sources */, + 3F0925A3511C364792909CA5 /* SSLEndpointInfo.swift in Sources */, + 10531B948E68D655E91C0BB9 /* UnknownSlicedValue.swift in Sources */, + 60E1A08BF3DF777FE43DEF83 /* Util.swift in Sources */, + 75182724EA5355E68E9DFFA6 /* Value.swift in Sources */, + D5B05C56684E9AF8549AAD04 /* ValueFactory.swift in Sources */, + 4A739393CA5A4D3034091082 /* ValueFactoryManagerI.swift in Sources */, + D2EB8D72E7B2D2C2C47BDBAB /* Version.ice in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DFD24470B0E45F19AEDF55E6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 248FEA012067A2F54A434DE9 /* Clash.ice in Sources */, - 716B296D602451B28CE1A50A /* Client.swift in Sources */, - 96541ED42B4D94224653EA55 /* Key.ice in Sources */, + 9A181D7F3BCDE13B2B12928D /* AllTests.swift in Sources */, + C707CDC8444931346E0E9A77 /* Client.swift in Sources */, + B64EEC007F67795539001A1C /* Server.swift in Sources */, + 2787D9A27A2FB75C90CC0FFF /* Test.ice in Sources */, + 4B17AEDCE912654DF4F1B81D /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E348665D2E7B54767A723942 /* Sources */ = { + E12248A19E1B790525CD23AB /* 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 */, + 9667D7FF72AC7F7F693E0496 /* IceLocatorDiscovery.ice in Sources */, + 9DB03E845F65202EB39E3115 /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E6BD7AF4534163901A16C006 /* Sources */ = { + E1A96FD5802396C607420A5E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A69001503A900CAC227CC4BF /* AllTests.swift in Sources */, - F5015433E6AFEA5007AB3A52 /* Client.swift in Sources */, - 901CAB6FEE7B29869F1169C7 /* Test.ice in Sources */, + 4BF6604BC790A31F1C67EAB5 /* TestCommon.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E7F343821E76B5BEA92307B7 /* Sources */ = { + E57FB46C09E60C578673E07F /* 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 */, + 178CDFD5D67D59A011CA09C2 /* AllTests.swift in Sources */, + 0A0B5C8B51AEA59D813EDDC8 /* Client.swift in Sources */, + 99844B3A968E31726EE5572E /* ClientPrivate.ice in Sources */, + 5B92C39D3E26B89A720C1108 /* Server.swift in Sources */, + 661618CE4D8FF002E5AD6890 /* ServerPrivate.ice in Sources */, + 1578DC0DA374E3252D218246 /* Test.ice in Sources */, + 1DEDDDBE872929D306A93333 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E97E53155473702F3D0C698D /* Sources */ = { + E5EAF4410D62B1919A140B78 /* 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 */, + 65BCEDE5DBB4CD4617C6FF7D /* AllTests.swift in Sources */, + 369EF3D5503B14589E768982 /* Client.swift in Sources */, + A10198668C86E808ADAB0616 /* Collocated.swift in Sources */, + AB2D4F0471D4AE020F18FA29 /* Server.swift in Sources */, + 519646A83A47B52F8323EEAD /* Test.ice in Sources */, + 399E20453F0FFA4DE48A30F6 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EB32919E1E6A8B4A3FAC122C /* Sources */ = { + E9DCD5998A1AFE37F795A360 /* 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 */, + D65AAD574F10CC5260DEDF9B /* AllTests.swift in Sources */, + 74FC1F8681CD55379E111F23 /* Client.swift in Sources */, + AE7F49DDBCC0F010BD7A2EFF /* Collocated.swift in Sources */, + AAB7E9939903E4976A03CF5C /* ServantLocatorI.swift in Sources */, + F24BEAE12877F57261308991 /* Server.swift in Sources */, + 776BD0070DCDF3131A59D788 /* Test.ice in Sources */, + DECBEB44AF185A09A7FCC64F /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EB3E64B349C3B416A390C7C4 /* Sources */ = { + EBA356C27D4FAF52E2FB0AAB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9BF9371AA952161F68806569 /* ServerAMD.swift in Sources */, - 052B1A84D3F1A5B398BE25BC /* TestAMD.ice in Sources */, - 9DDF7C7D0390862A81462257 /* TestAMDI.swift in Sources */, + 317770D521D6E3A64899EBDF /* Client.swift in Sources */, + F21FCFEF6A0F15862F7627DB /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EF833938FAC76D1C5ABAC549 /* Sources */ = { + ECA8E9D076A7FEA89EF29A0B /* 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 */ = { + ACACE420C4781E94BA667B3B /* Client.swift in Sources */, + 8B7CF432027FB4D652E66F08 /* Test.ice in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + ED09550AE8FA94ADE0975A42 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5C43941F99E2DB7A35407251 /* ServerAMD.swift in Sources */, - FE6373583004A13A11CB9EF5 /* TestAMD.ice in Sources */, - 72A67D3D4C8E462425976C8D /* TestAMDI.swift in Sources */, + CF54DE141E09CF1FD2F8D99E /* ServerAMD.swift in Sources */, + 1C48D09188909E044E72FC0E /* TestAMD.ice in Sources */, + BBA1C03B0A59799B56B2C0DA /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F1FC8508CB62D756F44B4DA3 /* Sources */ = { + EE31D1023E6B2D6849A9FDCA /* 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 */, + ADB1AFEE08A56BB42FE008EF /* AllTests.swift in Sources */, + A26B148723583F5F831BF775 /* Client.swift in Sources */, + 35FFB634E9D15E5A4D978C9B /* Server.swift in Sources */, + 0C05B309530BDB59E82F9419 /* Test.ice in Sources */, + 38629B5251A9DBA7CF2F98A3 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F42BAD6D9D3F6B9853BC13E8 /* Sources */ = { + F19017E1D9F12DA2663861F9 /* 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 */, + 6BCCFE670D1A1A869E4F8EA6 /* AllTests.swift in Sources */, + 288FC7EBB1C6D1E680D6DB20 /* Client.swift in Sources */, + 7C8E9F28A7A5E23739A4E5AB /* Server.swift in Sources */, + 7A003E7134D70BDE825BD906 /* Test.ice in Sources */, + 3BD7F3DCBF353531853B9787 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F60F2139A7B992FC349C6BE5 /* Sources */ = { + F3B366D49E6B2BFF8728E083 /* 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 */, + 570F91544266D4CADF784323 /* ServerAMD.swift in Sources */, + 1A5155B3EE7D2B39FE40516E /* ServerPrivateAMD.ice in Sources */, + 8F402940833F34C3FFDBA8C3 /* TestAMD.ice in Sources */, + 0706F0FA4CC01B88DD0D2DE8 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F643D4D9720F7126ED408D82 /* Sources */ = { + F6AAC081A93E2757B8F6E9AC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 68B180EC4F4C0BA3B62C1540 /* TestCommon.swift in Sources */, + D2D7AC43D47EAC4F693FEDC6 /* AllTests.swift in Sources */, + 02D7DC30D69353C1B161EEA1 /* Client.swift in Sources */, + FABCCCE9318EED5B0DC9F223 /* Server.swift in Sources */, + A6DD61F672BCEBB094EFA299 /* Test.ice in Sources */, + 12FE3D9CFB6D51E9A2F18E5F /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F8DF0C296DD163C4546CE134 /* Sources */ = { + F6DF1DCD51C0EA0E25420646 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 99720FCD65864098F14B73D6 /* ServerAMD.swift in Sources */, - 979D038CBAFD3AFC1E6463D4 /* TestAMD.ice in Sources */, - 6FEF7D9A8BE01B48EFBEC0D9 /* TestAMDI.swift in Sources */, + 97F5C6EE108405CBF7F7F9F1 /* AllTests.swift in Sources */, + E7E91715336C76DC5AD01D93 /* Client.swift in Sources */, + 9515D9FB6383BE8459D6E624 /* Collocated.swift in Sources */, + 698D678767BF41CA11BF7572 /* Server.swift in Sources */, + 7095D0B562AF1399B8AE8E1C /* Test.ice in Sources */, + 18795A6D49413B4DD3261EE1 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FAF5BCCB34907687AD05FF20 /* Sources */ = { + FAD4ECED8BEEB141B2709A27 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F5B98825EF6005872E07B207 /* ServerAMD.swift in Sources */, - 40440F5B203290FE0ED58BFC /* TestAMD.ice in Sources */, - 7ADC79C350F2E2510B26CB6B /* TestAMDI.swift in Sources */, + B8C52DF2827AE7AC5AA2FDD1 /* Clash.ice in Sources */, + 786328BEAE17891594F5B83F /* Client.swift in Sources */, + 1F72EE3605E5F8F02FDE798E /* Key.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FC322E7E585B59E4DD6BE436 /* Sources */ = { + FAE41A6D65E6771F4FD09FCF /* 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 */, + D39B227A38413AEFBAB8EE91 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 001DD76E59FF4C830BAFE107 /* PBXTargetDependency */ = { + 000557CC81C9632BB5D26D8B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = B27F0A0C8164D50379B47811 /* PBXContainerItemProxy */; + name = "IceProxy macOS"; + target = A292FEFD4AC0C53DF83589BE /* IceProxy macOS */; + targetProxy = 28308B058AA8525E4B221564 /* PBXContainerItemProxy */; }; - 01AC9BEEA4A751C8B7183B44 /* PBXTargetDependency */ = { + 00C7366750C45A1A322C6CF3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperationsAMD macOS"; - target = CC8E2C60DE859F3875C1A578 /* IceOperationsAMD macOS */; - targetProxy = 57ACB85FDE7F2314CCE6A7F8 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 5C2BDD1F7CD22C469FF2BC4D /* PBXContainerItemProxy */; }; - 02CE1A948C8D7A9C07D81026 /* PBXTargetDependency */ = { + 01A23ACF74F5CD97CDD78FA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceRetry iOS"; - target = 87E9A0678200BC32DF77CC22 /* IceRetry iOS */; - targetProxy = 61BC7B11FD7679D2366C9C3F /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 746F0F0BE070900F901A030E /* PBXContainerItemProxy */; }; - 04A4BA1474AE052F3146911A /* PBXTargetDependency */ = { + 01B16A341EAF3CA681B853AA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 0C260F3F898DDD2ED50A2604 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 37F29581EFF202ECB7D4A0D4 /* PBXContainerItemProxy */; }; - 063C85C5C7BA865B792BAC95 /* PBXTargetDependency */ = { + 020A0AC03AB445E15CDBC364 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxy iOS"; - target = 7C4454250BFF2F744DA15043 /* IceProxy iOS */; - targetProxy = D5F74D0D75EAC0F8566B0B23 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = AC1F23397FF990BFB8F67C56 /* PBXContainerItemProxy */; + }; + 02823461962BC2A525DCCF4E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceDefaultValue macOS"; + target = 9938DD491B5B4A54DB0A80E3 /* IceDefaultValue macOS */; + targetProxy = 978A989313EC93B33642623B /* PBXContainerItemProxy */; }; - 06FBECBAE5F3DA0ABCDFC859 /* PBXTargetDependency */ = { + 03AE68141B2EDA6CE6C43620 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 4BD9B6A40A3A2BAE3F792DF2 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = B5F2564776EA1F243AB49D5C /* PBXContainerItemProxy */; }; - 0966619ED7FE1158115320AA /* PBXTargetDependency */ = { + 04F7CA6C3F10A96A96850E6F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = C38E4E0F120F34468BCB4F61 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 7113F8F89F2CEA84A61862D9 /* PBXContainerItemProxy */; }; - 099F632E3F13CC42232ECD1F /* PBXTargetDependency */ = { + 053F3A49FFF23311FAC44489 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = 66766A219D36565BAA8D85DB /* Glacier2 iOS */; - targetProxy = 554ED7B7307F91FB05534DB9 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = B5BFDAAF6AE364DD7061584B /* PBXContainerItemProxy */; }; - 09D176AFEE3692AD309D6562 /* PBXTargetDependency */ = { + 07393B7DA0FDE71929409356 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 9FC3D5756BE155623977F09D /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 3A3907750B192A4164843BD4 /* PBXContainerItemProxy */; }; - 0C7DFFA9151969EC3F996061 /* PBXTargetDependency */ = { + 07CE505BF5648B30269F4DC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl macOS"; - target = BB148EB91DBAAACC5D08F10B /* IceImpl macOS */; - targetProxy = 1C86476610F2E1CFF118CB0C /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 5037CE3078B57AB307002568 /* PBXContainerItemProxy */; }; - 0D75510DEB51424F228A3C0E /* PBXTargetDependency */ = { + 07F76D4D9005A939736B6911 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInvoke iOS"; - target = F9DF2DD34D62DDCA59B08490 /* IceInvoke iOS */; - targetProxy = CDFC04EB2D7F9C1BDD4EE235 /* PBXContainerItemProxy */; + name = "IceServices macOS"; + target = 065FE0308F8C069FEF18896D /* IceServices macOS */; + targetProxy = 1546F78CDC6948BFC536E89F /* PBXContainerItemProxy */; }; - 0DE97AB60A39783B6FF691A5 /* PBXTargetDependency */ = { + 087A9C1989AAA843B5590366 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptionsAMD macOS"; - target = 82C53B88275C4981212133CC /* IceSlicingExceptionsAMD macOS */; - targetProxy = 61D1B0A84E51FD06361FA27C /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = E251CA04F82003BCE485A5CC /* PBXContainerItemProxy */; }; - 0E15162FE9DC53DD6CD4527E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 6C14F96F54B2F09A87EF82E4 /* PBXContainerItemProxy */; - }; - 0EFD452CA523BEB73D0F8635 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = BBE986EDE9CEA2409CEA11DC /* PBXContainerItemProxy */; - }; - 11959A96FE4C532C895E63D2 /* PBXTargetDependency */ = { + 090C3209AF384F8B6108121C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 36E9BF62C12569F45DA81AF3 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = A27C6B11529DF945963C598D /* PBXContainerItemProxy */; }; - 13176BB7C32C2E481A9B11DB /* PBXTargetDependency */ = { + 098D84548F556CCEB5C69F11 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = F7A1DB397366FD2B523DE3D2 /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = EAE2CB011D2B1E218EBD8ED0 /* PBXContainerItemProxy */; }; - 133F8FA0ED200ABE709C7C97 /* PBXTargetDependency */ = { + 0A6AB4A2EDAB4DD0C9F9C4F7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocatorAMD iOS"; - target = 7BD0591E1B5ABBDFE982E6E8 /* IceServantLocatorAMD iOS */; - targetProxy = EB5B0656FDEA65501DF4D528 /* PBXContainerItemProxy */; + name = "IceLocatorDiscovery C++11 iOS"; + target = E84AD21BA9DB06F21E2D3BB3 /* IceLocatorDiscovery C++11 iOS */; + targetProxy = B0486932F2DD45930580B73A /* PBXContainerItemProxy */; }; - 13DD1FA83C1CEE545E98F485 /* PBXTargetDependency */ = { + 0FBE96A84BC1484537A5FD45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceFacets iOS"; - target = A2837C7BEC47E856E536F9B3 /* IceFacets iOS */; - targetProxy = 863213C4D9F821BDBBB2F0AC /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 35ED6D2F347DF92D6FE7310B /* PBXContainerItemProxy */; + }; + 11E7921B9E8504ED04C4DD20 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceDefaultValue iOS"; + target = F18532A4F881321CB6AE2614 /* IceDefaultValue iOS */; + targetProxy = 3DDD2A62396435A09C641971 /* PBXContainerItemProxy */; }; - 1460A5644FA231F28D5F7C08 /* PBXTargetDependency */ = { + 1310DBFEFF36C9AB05FE1342 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = CC3474720734885708BBBD6A /* PBXContainerItemProxy */; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = B644051E85864FAFA9B1ADE6 /* PBXContainerItemProxy */; }; - 14C96416FF965CF99EA8DF85 /* PBXTargetDependency */ = { + 1331283ADDCD92BE4D72F968 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = AB9364286ACF8E12CD09F08F /* PBXContainerItemProxy */; + name = "IceProxy iOS"; + target = CEE926A8FFE81634B9CBA64C /* IceProxy iOS */; + targetProxy = 25861C368313982F64FCFCE1 /* PBXContainerItemProxy */; }; - 177DD53FA83D4C906941D23B /* PBXTargetDependency */ = { + 158203B2E8EA9B27230C32E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = B50E757FD1BF6AF7A6F37EDE /* PBXContainerItemProxy */; + name = "IceInfo macOS"; + target = 8B673B53CF2890202D016783 /* IceInfo macOS */; + targetProxy = 89BB66CA925FF81CC3C4702D /* PBXContainerItemProxy */; }; - 17BF9FB5DD888796E8094B00 /* PBXTargetDependency */ = { + 1655AE07C3C927D529A01CB9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 95FF20C7B96C39DAEA9783B7 /* PBXContainerItemProxy */; + name = "IceHold iOS"; + target = 6C9760FEBCAAE6CE0FA2DC30 /* IceHold iOS */; + targetProxy = 7815CFBD06551649906B5770 /* PBXContainerItemProxy */; }; - 18EE0B5F4F06D5E85788B6CF /* PBXTargetDependency */ = { + 17D78C3590AD3341EAD750B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 50E06DF792893808145A8EAB /* PBXContainerItemProxy */; + name = "IceInterceptor iOS"; + target = EA1D2D4417E34B61AC64FEE1 /* IceInterceptor iOS */; + targetProxy = 9C7171466351C72E76E6896B /* PBXContainerItemProxy */; }; - 19F93C717AF196D1EED43CDF /* PBXTargetDependency */ = { + 17FD8ED3B2D7E1AE7C5625E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = F478DDCD9811E6F09C91EAF1 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 5AA83B738974FE7C022EE611 /* PBXContainerItemProxy */; }; - 1B5D072CB3BA0A8077EEC657 /* PBXTargetDependency */ = { + 1898625C798054237255D989 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 179172FA190EA2F6FB1B6134 /* PBXContainerItemProxy */; + name = "IceExceptions iOS"; + target = 0A1278D024EC2ADD3E42D968 /* IceExceptions iOS */; + targetProxy = ED10296BB17D4CD063607027 /* PBXContainerItemProxy */; }; - 1BB5E632D9FB3E508B468DD5 /* PBXTargetDependency */ = { + 191F2DF8F559B727A0B9A104 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = F8D350B56D7FF192A55E7627 /* PBXContainerItemProxy */; + name = "IceStorm macOS"; + target = 0763ED05481F11F83E2EE767 /* IceStorm macOS */; + targetProxy = BADB735E88BEF016E412AC96 /* PBXContainerItemProxy */; }; - 1ED1295A515AB5137D83B3FD /* PBXTargetDependency */ = { + 193BA6ED5F91A3E91A7987F7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = EE61473FD27F5A8827B87E34 /* PBXContainerItemProxy */; + name = "IceUdp macOS"; + target = 96F2227A2D1F58BCEA8ED0F6 /* IceUdp macOS */; + targetProxy = 852C05BDD534DB44709C07C3 /* PBXContainerItemProxy */; }; - 1F4B600A0C49C69B3DFBD59E /* PBXTargetDependency */ = { + 1A088D4452F3C164E5E671F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceHold iOS"; - target = 2D69E78989BA05C0A499A44D /* IceHold iOS */; - targetProxy = D8081E43C2CA5A8101CA8073 /* PBXContainerItemProxy */; + name = "IceObjects iOS"; + target = BAD99ED95E14E2F53810245D /* IceObjects iOS */; + targetProxy = 237A2AA7222257F643AE591A /* PBXContainerItemProxy */; }; - 1F89FE69F95A11F92CC290E8 /* PBXTargetDependency */ = { + 1EBCCDD716930DF08A115916 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = B06DD43CC98E177E5491959D /* Glacier2 macOS */; - targetProxy = 7EE72D0E259A4D5150B01076 /* PBXContainerItemProxy */; + name = "IceImpl iOS"; + target = A9149583C7CA34903D80B3C4 /* IceImpl iOS */; + targetProxy = C53DB7524D834CD967E9FA4D /* PBXContainerItemProxy */; }; - 20D0E9047A43F154E11D5E6F /* PBXTargetDependency */ = { + 2073171DA6488766240C73C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm macOS"; - target = D166D330DEC6674B8372A98E /* IceStorm macOS */; - targetProxy = 0239F500BAC2E87283B0DB3B /* PBXContainerItemProxy */; + name = "IceServices iOS"; + target = AD0E7F89F478FE77514A8842 /* IceServices iOS */; + targetProxy = 496CC30FB83C3D5689E55992 /* PBXContainerItemProxy */; }; - 214AA24946474D09AA454F7A /* PBXTargetDependency */ = { + 21E0947C7662A94A1C869D84 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SliceEscape macOS"; - target = 44669E73C88B6F4F3038B679 /* SliceEscape macOS */; - targetProxy = 76E71BF16EFF9D2AC7E83382 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 1798C04524E372354944B484 /* PBXContainerItemProxy */; }; - 2219D2B745BBE8D752027A8B /* PBXTargetDependency */ = { + 21EFE1CC52F99DA8714377F4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = BC400B6D1967FEED0EDD3926 /* PBXContainerItemProxy */; + name = "IceInheritance macOS"; + target = D52144324A93F3717DC3A4BB /* IceInheritance macOS */; + targetProxy = 35640F3820EFC19B6758C50F /* PBXContainerItemProxy */; }; - 243F7F3833E86D05FF757D65 /* PBXTargetDependency */ = { + 25163588E7567C9DC2B926F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocatorDiscovery C++11 iOS"; - target = 1D8E308F3BB453AE7F0F43D1 /* IceLocatorDiscovery C++11 iOS */; - targetProxy = FE41A5548AB62154B45A8694 /* PBXContainerItemProxy */; + name = "IceAcm iOS"; + target = FF7948EAFE0A62518B685629 /* IceAcm iOS */; + targetProxy = 080DA5611BBDFB5DD434C97C /* PBXContainerItemProxy */; }; - 25E8B3B464AC1EE5B8AAC54D /* PBXTargetDependency */ = { + 279A73BF587F532B1ED47130 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl macOS"; - target = BB148EB91DBAAACC5D08F10B /* IceImpl macOS */; - targetProxy = 1BFB741D987C73ABE77B0C32 /* PBXContainerItemProxy */; + name = "IceGrid iOS"; + target = EACA18083EFA62557FBB6215 /* IceGrid iOS */; + targetProxy = CB8D00FE1ED96C2C67C62B36 /* PBXContainerItemProxy */; }; - 26877FF8F0BCD2FA80E42C7F /* PBXTargetDependency */ = { + 2917EA502B354A6494B8FF02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = E1AC4FB4D3B4CF7873039E01 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = BA14EFBEC1ADAC16CFAF4570 /* PBXContainerItemProxy */; }; - 28E1AC7D63064F6EED56D35E /* PBXTargetDependency */ = { + 2929AD35171753BFA602F48D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = A6D0AA617D51148B4A729D8B /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = B2D94D8BBB319F772FF7C077 /* PBXContainerItemProxy */; }; - 2963DE3A8838570474ABE73F /* PBXTargetDependency */ = { + 2BAAD90F90C6A90A021E6A76 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm iOS"; - target = 086D7EFAFD5B99B06915E82A /* IceStorm iOS */; - targetProxy = 2C3295921EABE6A2B4B344B3 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 8587E52646DD02D89A81EBF2 /* PBXContainerItemProxy */; }; - 29EB864A205D17CBE4C922D8 /* PBXTargetDependency */ = { + 2F691D4411C45234858C1983 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 332C20F6F8CECC445FA43DBE /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 1FDF92C740D86B8DAF02BC71 /* PBXContainerItemProxy */; }; - 2B2E4604441CEA0D6A3D55EA /* PBXTargetDependency */ = { + 31493DABA42FD09F7DFECB41 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInfo macOS"; - target = E51388D0936150349DB47717 /* IceInfo macOS */; - targetProxy = CF8051D30E715DB8FEBA9FD7 /* PBXContainerItemProxy */; + name = "IceLocatorDiscovery C++11 macOS"; + target = 8D692CC4BED85D90455B3611 /* IceLocatorDiscovery C++11 macOS */; + targetProxy = BFC93BE5D1A5B2CFD4575F9C /* PBXContainerItemProxy */; }; - 2EE91FF0137EA0C56A9866A8 /* PBXTargetDependency */ = { + 35357E9E1A4B5309DE819116 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 52A7DB154C18252C0118A925 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = D27B32C7AB353D5AE4902D67 /* PBXContainerItemProxy */; }; - 2F20AF50EF29D165312173D9 /* PBXTargetDependency */ = { + 35B27061E8112FA1B6B66318 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdmin iOS"; - target = 47118015D4FFF9159FC93434 /* IceAdmin iOS */; - targetProxy = 827AAA0DBD12FF9B085F6843 /* PBXContainerItemProxy */; + name = "IceBinding macOS"; + target = 600F66FEB1C8FA05B0D86986 /* IceBinding macOS */; + targetProxy = 0D1D2EE5267D4EC47BDCC5D4 /* PBXContainerItemProxy */; }; - 306BAD3D6E8F81138F885C87 /* PBXTargetDependency */ = { + 376ABE64AF659ECA8C22D231 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptions macOS"; - target = 7649B8B4D36C63D3D167ED11 /* IceSlicingExceptions macOS */; - targetProxy = 043F5A3C19D22388B6604E8C /* PBXContainerItemProxy */; + name = "IceEnums macOS"; + target = A5A118B8D38A8DF773729D3E /* IceEnums macOS */; + targetProxy = B7A43EE3A8546D7831BBE9CD /* PBXContainerItemProxy */; }; - 321CA458874D936AADF90B86 /* PBXTargetDependency */ = { + 384D047B6C9F2863BFB31590 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 93CD96FF4EB061E085F2A386 /* PBXContainerItemProxy */; + name = "IceObjects macOS"; + target = A2BA1134828B7EE3273C5D13 /* IceObjects macOS */; + targetProxy = 470DB549AF0696DF551E03E8 /* PBXContainerItemProxy */; + }; + 3BC969C7F2AFAD0E3A038D2B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = A2ED78FDF2B79D91463F89B8 /* PBXContainerItemProxy */; }; - 338FDEDE2C7912EC1B86D293 /* PBXTargetDependency */ = { + 3C07DD43F02337996CE7092B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 2A753D85D7D7B4468801DD01 /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 12C39D1B6EEC499875CE301C /* PBXContainerItemProxy */; }; - 33BB3C3D618E4D1F283E6C99 /* PBXTargetDependency */ = { + 3CFDC36ED886B57BC4C00866 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 84E7D19B1BC7D48A5CCFCFC9 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 77336DB172773086F33DE302 /* PBXContainerItemProxy */; }; - 34086D5FD64F54313B547FEF /* PBXTargetDependency */ = { + 3D9D49B469AA2053E8E30785 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = A1177BDA42ECB93DD19E9EEC /* PBXContainerItemProxy */; - }; - 3416113DF237AFC35587414F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 31334DDE7BEFE6B15239CD3E /* PBXContainerItemProxy */; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = F33737401446C0666AA11215 /* PBXContainerItemProxy */; }; - 341DC8457E0F60396E37A49D /* PBXTargetDependency */ = { + 3DBE085DFD2E881FF58E52E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdapterDeactivation iOS"; - target = 3D1F7E6A7317D6CB8877A0D5 /* IceAdapterDeactivation iOS */; - targetProxy = 64E24FB3A09A1FAF8FA07FF9 /* PBXContainerItemProxy */; + name = "IceProperties macOS"; + target = 9FAA9797D207A26125233020 /* IceProperties macOS */; + targetProxy = AA3A356C6953B9401698C4F9 /* PBXContainerItemProxy */; }; - 3546E3EA54642322837E9CC2 /* PBXTargetDependency */ = { + 3DE284C4F6FCB5781D328A55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */; - targetProxy = 5DDEA32F1C31BC51C5C6D66E /* PBXContainerItemProxy */; + name = "IceExceptions macOS"; + target = 836D0AD1DCC62D99CC1CB8EA /* IceExceptions macOS */; + targetProxy = 0ED57033457114F5ED5B4752 /* PBXContainerItemProxy */; }; - 355050F8ABB8B02A4A57AC93 /* PBXTargetDependency */ = { + 3F1836C3085B01562B38C2EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = EA3D11C332176AD29691910F /* PBXContainerItemProxy */; + name = "IceStream iOS"; + target = AFBF627FDB9280859A796E95 /* IceStream iOS */; + targetProxy = B72EB5F999F616B79B17B6AF /* PBXContainerItemProxy */; }; - 3644B35FF0613A9194C9AFF1 /* PBXTargetDependency */ = { + 40D1956EA1F9DD10651A5E14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 78F1308C887D1667DE857AF8 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = BC5EC2C581CEA0BED68A07E0 /* PBXContainerItemProxy */; }; - 381ED48226681FECD2174188 /* PBXTargetDependency */ = { + 40EEF1DCFF711E9F2594E63D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 6B7FE12812349143703F9B3B /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = B8EC0A4D5ACA3C64100F5519 /* PBXContainerItemProxy */; }; - 38E974EECBE77CABAB2DD241 /* PBXTargetDependency */ = { + 410FDF4952B010B0945C3C8C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultValue iOS"; - target = E1DFDE719731E7D4A7FEF6E0 /* IceDefaultValue iOS */; - targetProxy = 709A3F364483E15887C64210 /* PBXContainerItemProxy */; + name = "IceExceptionsAMD macOS"; + target = 3922C5D52BCDB27B7A0BD1C2 /* IceExceptionsAMD macOS */; + targetProxy = D1C34263362C925446B8169C /* PBXContainerItemProxy */; }; - 39F809683F85B4CDF4344C88 /* PBXTargetDependency */ = { + 4200DF6902C6C3AF1A0FE39F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = E5906B2ADE3E196F77A1B16C /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 514855FEB49BFD6BB1472BD6 /* PBXContainerItemProxy */; }; - 3A22535A08D03885044E158B /* PBXTargetDependency */ = { + 4276032127E7F02B88B45E29 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAmi iOS"; - target = 2C9432880D461B94B2829F4D /* IceAmi iOS */; - targetProxy = 69E7A8EC87F6BD69985BE302 /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = 137A22811E93D82B716007C8 /* Glacier2 macOS */; + targetProxy = 7475914DC76F68487DDE435E /* PBXContainerItemProxy */; }; - 3AFAEBFEF8FD90C9F5ADA18E /* PBXTargetDependency */ = { + 4330C12D8249B9BBC55614A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxy macOS"; - target = 7862E459B18BD8751A67923F /* IceProxy macOS */; - targetProxy = 386AB84004D9B78C0EDD536D /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */; + targetProxy = 9FE3D1A04B09E6CF7F7502C5 /* PBXContainerItemProxy */; }; - 3B4546B1387E723D2C297F52 /* PBXTargetDependency */ = { + 452CA0172D244CBC9D248302 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 6EF8510E1A2A180A27F9ED34 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 66998044C76BFAC007A08089 /* PBXContainerItemProxy */; }; - 3BD980643A11F94F555DE698 /* PBXTargetDependency */ = { + 45FF4770D67E760A94627B7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = BE7A26630FA857A0F9DE2244 /* PBXContainerItemProxy */; + name = "IceSlicingExceptionsAMD macOS"; + target = 204D17961BE241E9AA6931C4 /* IceSlicingExceptionsAMD macOS */; + targetProxy = 9FFED967233D448C9D5FCD1E /* PBXContainerItemProxy */; }; - 3C3EA5ADFF87F85CA7571E11 /* PBXTargetDependency */ = { + 461396EE57D51DE72FBAB3CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 14E3FB2F892E6ADEC5EEEE46 /* PBXContainerItemProxy */; - }; - 3C58BDC60502522C978B9A0A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = D566C077519B17B006F4C457 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = F11C9AD6C3166B60D9EAB0D7 /* PBXContainerItemProxy */; }; - 40377970465B2425DFCAFC4C /* PBXTargetDependency */ = { + 46275F2AE1F5949678E5B7E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 64243A42833EB19FFF1EDAC1 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 88E9909EB6F7154046E78033 /* PBXContainerItemProxy */; }; - 40B944B83C8139F2BC8078A3 /* PBXTargetDependency */ = { + 46CB383F272BEC717AFCE66E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = BD5BDE3817FEC6E0B6EF6DBE /* PBXContainerItemProxy */; + name = "IceStorm iOS"; + target = 02E12A01B24B3B3E6927EAD6 /* IceStorm iOS */; + targetProxy = 05A958A1B7047AB7DD79AF63 /* PBXContainerItemProxy */; }; - 4124CC268695417E739EC1F7 /* PBXTargetDependency */ = { + 485AD32FFF655BD454B30F80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = D6167EF5F451D5FA93AD9BB8 /* PBXContainerItemProxy */; - }; - 41E650E8178BB8D6F2C204DA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceOptional macOS"; - target = D660697C6325570C429F2BC9 /* IceOptional macOS */; - targetProxy = C82C192791BA7B79C32D9024 /* PBXContainerItemProxy */; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 90611DDF57B019E5E078509F /* PBXContainerItemProxy */; }; - 44E43CA842A3390C6097C7DB /* PBXTargetDependency */ = { + 4965F928F33AA93E7729C0D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInterceptor macOS"; - target = 6FD780B3B0F51D50A0233C81 /* IceInterceptor macOS */; - targetProxy = 8B8368E9D04D9365D7FEF1DB /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 5513FD3EB06702845234B6E6 /* PBXContainerItemProxy */; }; - 46E054F553ED7C2E677F8915 /* PBXTargetDependency */ = { + 4A4786C4294D9D9EB04A12A1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid macOS"; - target = 953A9306D1F74C3E46325E82 /* IceGrid macOS */; - targetProxy = 1D75B9D8D2478679CC49270A /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = EFB6982D58325AEC0E826519 /* PBXContainerItemProxy */; }; - 4791F01C73505D5C5746CA2F /* PBXTargetDependency */ = { + 4ADC78295866FB7F4959DDFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 92CB9BA81DAA028497F4ABB5 /* PBXContainerItemProxy */; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 53755BAD7B2EA1AD79CAEDBE /* PBXContainerItemProxy */; }; - 47D2840760CDAC67169AEB7A /* PBXTargetDependency */ = { + 4B11CDADF3FB598BD15FDD82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 9636074FB23CB93DD4FDD351 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 65E4D69F83161D7FD6CD98D7 /* PBXContainerItemProxy */; }; - 4A97BD98E21B9BDA345B96F0 /* PBXTargetDependency */ = { + 4B8BC5B7F645DE838ACA6606 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAcm iOS"; - target = 3CC923BA7EC9201D602FFE65 /* IceAcm iOS */; - targetProxy = A07196A81A2D3095AFD04529 /* PBXContainerItemProxy */; + name = "IceSSLConfiguration iOS"; + target = AA9DCC224B96540517FC8217 /* IceSSLConfiguration iOS */; + targetProxy = 4D9DC67DA712ACC2EF7313A5 /* PBXContainerItemProxy */; }; - 4B84FECB667E6C9A01DC97A2 /* PBXTargetDependency */ = { + 4CF1CCC42365A82C633CD504 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAmi macOS"; - target = D4D6FEE0BB4641B83FAB188E /* IceAmi macOS */; - targetProxy = F1DF8648413A52CDB11A66C8 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = B3D3F185D102E0E8FE8D4788 /* PBXContainerItemProxy */; }; - 4C89F031189B582A00303766 /* PBXTargetDependency */ = { + 4DF062ECC947761147A8B958 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm iOS"; - target = 086D7EFAFD5B99B06915E82A /* IceStorm iOS */; - targetProxy = ABEABF70DC2F4D6B6E50A4BC /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = FF1E1593F0B50EF869897059 /* PBXContainerItemProxy */; }; - 4D24BB84B7B720B1609DE82B /* PBXTargetDependency */ = { + 4E2B168180317E2A65AFB156 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = CE6D8582F9E5F43FD4CA3741 /* PBXContainerItemProxy */; + name = "IceTimeout macOS"; + target = 8716086DA12B2BDD0A0AB020 /* IceTimeout macOS */; + targetProxy = 1A66F60C8D1392CB576BB6E9 /* PBXContainerItemProxy */; }; - 4D4580CFB540C6548FBF8D70 /* PBXTargetDependency */ = { + 4F22349D73BE3FB82942A9F8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceHold macOS"; - target = 6C6B3F2AAE2C93C3A2670E5E /* IceHold macOS */; - targetProxy = D89D5EEC26C160330B7B8AEF /* PBXContainerItemProxy */; + name = "IceFacets iOS"; + target = 57641F57B5FDCF62AD0FCD45 /* IceFacets iOS */; + targetProxy = 2AD592A2235556B7CF68D372 /* PBXContainerItemProxy */; }; - 4E770DBE2E4380524BC74E0B /* PBXTargetDependency */ = { + 4F565C91BA73514F2E9B1EC9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 0A9D7521506E54EF49F62920 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = AB1F8CB427C7F0F350F353F1 /* PBXContainerItemProxy */; }; - 50FDAC5AA1B8E6C9513D1991 /* PBXTargetDependency */ = { + 4FBF9E4A9DF99D3F75579BFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = B2CB3A501165B7E78E956557 /* PBXContainerItemProxy */; + name = "IceLocation iOS"; + target = AE646D18FFEFFFB65901B9D9 /* IceLocation iOS */; + targetProxy = 17A8BFF896953B1998E75E96 /* PBXContainerItemProxy */; }; - 518B1F1A9B4F14E69A90ADED /* PBXTargetDependency */ = { + 5115402FB20281796EBBF688 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptions iOS"; - target = ED67C4392ADE53C242195C57 /* IceSlicingExceptions iOS */; - targetProxy = F2B67D875A18BB46121D6096 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 79462F2296ABDFB8BD15906C /* PBXContainerItemProxy */; }; - 52722DF7EBAB5DC86E5F6EE4 /* PBXTargetDependency */ = { + 516DC0CF307323B0D5D88662 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceObjects iOS"; - target = EBB34A2FBFB19A98854A90B2 /* IceObjects iOS */; - targetProxy = 65E35AB963957665F82C78A4 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = A4BA589A6533E902A79E9953 /* PBXContainerItemProxy */; }; - 534F123E4E7C67F7FCD2C0D9 /* PBXTargetDependency */ = { + 51F741133673DEAA1459FE79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptionsAMD iOS"; - target = 08063B79E151583B4BCA64E2 /* IceSlicingExceptionsAMD iOS */; - targetProxy = C77629519BBBB5C64DB1BEE7 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 31043A801393C80C771D88C3 /* PBXContainerItemProxy */; }; - 5377289F050FDD926FD56639 /* PBXTargetDependency */ = { + 5284D32BE16809CC3BF4C3F8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl iOS"; - target = 1461134F8E13923F515F804D /* IceImpl iOS */; - targetProxy = 056F818105111FA828DFA996 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 7D1311CCD0AD0D14DF684101 /* PBXContainerItemProxy */; }; - 55C211531B74B920D3BA5856 /* PBXTargetDependency */ = { + 53A0109717E72F079E06AE34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = D72F2F8587751A3BF793B388 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = A3AFC54E8EA145173239BD48 /* PBXContainerItemProxy */; }; - 56199CEFBE52B4351D0025C1 /* PBXTargetDependency */ = { + 54F09B88FD7F3FE9236B23FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = E91160C56A9113D9DF5D3D49 /* PBXContainerItemProxy */; - }; - 568E55888B2FBB1434F2101E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceStorm macOS"; - target = D166D330DEC6674B8372A98E /* IceStorm macOS */; - targetProxy = 3F0579C966297CC06DB23E31 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 587C03CD19778AC277402EC8 /* PBXContainerItemProxy */; }; - 578FC1E0F3F13E5DE1507FDC /* PBXTargetDependency */ = { + 555EAEE8DFFC8D4D221B2BB2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDiscovery C++11 macOS"; - target = 4CA64E4D7C1BECF901572919 /* IceDiscovery C++11 macOS */; - targetProxy = B0511C999599692CEF63C386 /* PBXContainerItemProxy */; + name = "IceFacets macOS"; + target = 0210DABE4A3F8E46162FC09A /* IceFacets macOS */; + targetProxy = 47FAFF9D6569E68CABF65040 /* PBXContainerItemProxy */; }; - 5794BA1B3D723D06E8E02779 /* PBXTargetDependency */ = { + 56513DA127D1C68ACCBA0B8C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */; - targetProxy = 7C6BF10F61186DD69616F0C2 /* PBXContainerItemProxy */; + name = "IceGrid macOS"; + target = CFA7C016ADBDBC9AE9AB0FF7 /* IceGrid macOS */; + targetProxy = 40EC11FC36AD38007C21C6EB /* PBXContainerItemProxy */; }; - 57ECD7F009A9C588B71426F6 /* PBXTargetDependency */ = { + 566680A0045B5FC0A2FBB40E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceScope macOS"; - target = 961580353429DCE0D0B109CB /* IceScope macOS */; - targetProxy = 4FD344865433C487A7C74F3E /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = E69E5BCED226C2529340C152 /* PBXContainerItemProxy */; }; - 583F8667E5F7C17D868F5978 /* PBXTargetDependency */ = { + 56F6B03F04DC7DD5F2FB148A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 361B9424E3E8CEFDCD4E18F1 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 0AB1D88FDB0B571F67339DB0 /* PBXContainerItemProxy */; }; - 5C767ABE5537E8E771F1FBD9 /* PBXTargetDependency */ = { + 574BB9348375C75E94B6FA23 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = E95A5D586C90B9F7D0D0EBB3 /* PBXContainerItemProxy */; + name = "IceAdapterDeactivation iOS"; + target = 61321B12DA134239ABC63556 /* IceAdapterDeactivation iOS */; + targetProxy = 785910A02E277731751D94FF /* PBXContainerItemProxy */; }; - 5DC2C74A75DCC82D8EB76065 /* PBXTargetDependency */ = { + 580FC8590D7564D6621587CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 870182EC13F330A5C99A8AD8 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 1E776D0361C6D4CA7ADAA8B3 /* PBXContainerItemProxy */; }; - 5F218459B2D081FD4D276F0E /* PBXTargetDependency */ = { + 58EAF68E11B46086E0F06344 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice C++11 macOS"; - target = 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */; - targetProxy = 8F2F3FC6FC38618B325EFB96 /* PBXContainerItemProxy */; + target = 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */; + targetProxy = 8569D3B6F0C1240326500260 /* PBXContainerItemProxy */; }; - 5F2AE40A7B6B38809C886901 /* PBXTargetDependency */ = { + 59FC8466F9EA87D242A3BBA2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 172CBAB495365D889B14D951 /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */; + targetProxy = DFB7D5AA00C0BB078188829E /* PBXContainerItemProxy */; }; - 602527CCFB0FED66A58CEDA5 /* PBXTargetDependency */ = { + 5A0FCC92D3699768A160D6D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjectsAMD macOS"; - target = 45B627654A6C6E672B177B58 /* IceSlicingObjectsAMD macOS */; - targetProxy = 5FC49C5318AA80BB4616722C /* PBXContainerItemProxy */; + name = "IceAmi macOS"; + target = 68767C0FE145D39DE4D88779 /* IceAmi macOS */; + targetProxy = F1763831D933F47A6857F5FB /* PBXContainerItemProxy */; }; - 60D2A880AF10256A590B7AF8 /* PBXTargetDependency */ = { + 5BF9522711D21979665731D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultServant iOS"; - target = 7AC3B103C3B879479057C283 /* IceDefaultServant iOS */; - targetProxy = 65DDD513A3AD330E4DED4FBD /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = DC335AD85FEA67D0DFA5E868 /* PBXContainerItemProxy */; }; - 624562FE9AF40419990B7DE9 /* PBXTargetDependency */ = { + 5DFC199C350523CFAA6A5ED9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 2A9B31FD5450BEAC59472BD7 /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 5DF3D971056622D31D908176 /* PBXContainerItemProxy */; }; - 6253E9AD66F800E28D095533 /* PBXTargetDependency */ = { + 5E712366BD04AB698D4EEE87 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 488DB15BEBD72B41BFC2F7C0 /* PBXContainerItemProxy */; + name = "IceHold macOS"; + target = 214682343A5CDC54C07B1A1B /* IceHold macOS */; + targetProxy = 77DF3890E1786A15A18724C0 /* PBXContainerItemProxy */; }; - 628C8A699FE5EA6A1C636571 /* PBXTargetDependency */ = { + 5EC0BF68CBF859070F7C60E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl iOS"; - target = 1461134F8E13923F515F804D /* IceImpl iOS */; - targetProxy = 25BEADB06BE24072293366FF /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = B9310496AD9B4161E3EFB68F /* PBXContainerItemProxy */; }; - 63D8D2788A671D2EAC6D3289 /* PBXTargetDependency */ = { + 61CBA0870CF5AE106D507737 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceEnums iOS"; - target = D8E57767C0E6E25C9171CD94 /* IceEnums iOS */; - targetProxy = 0F5655381197825B7102E2FB /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */; + targetProxy = A5D3113454C161DD75477BA5 /* PBXContainerItemProxy */; }; - 654CB17F160D7E8E2AD477E8 /* PBXTargetDependency */ = { + 643721BE480E516C3780AD4C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 9FD62E260BCCE118132284B9 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 0B4C82CA734FA90D97995650 /* PBXContainerItemProxy */; + }; + 644D2CB48445102AD4EB961F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 1F3CA22617C41E7E5DC92496 /* PBXContainerItemProxy */; }; - 6812589996B832C9A0609F36 /* PBXTargetDependency */ = { + 677D8EB8A364B50453E41043 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 89FC34EF19D5D0ABC4D1EA35 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 60B1571F8AEFCD29A0DD20CD /* PBXContainerItemProxy */; }; - 6B1F0117A09B57FFF2B9CD65 /* PBXTargetDependency */ = { + 680C8D1C94B4328EEB837B9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = C9567EC56D783D1440891852 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 50128C099A3CF7A9D7D34405 /* PBXContainerItemProxy */; }; - 6BB02CD18FF76573BC460FC4 /* PBXTargetDependency */ = { + 6BB1369014EC7A395354080A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 70C90AE95855653A9AC0CE50 /* PBXContainerItemProxy */; + name = "IceSlicingExceptionsAMD iOS"; + target = D62438E4F1A3CC9836A8E287 /* IceSlicingExceptionsAMD iOS */; + targetProxy = D8FC56D106C26473144FAB83 /* PBXContainerItemProxy */; }; - 6C455E558BDEADE3864ED714 /* PBXTargetDependency */ = { + 6C652077FC7503CFC40710A8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSSLConfiguration iOS"; - target = 4CD1512C8E4830F6FAC5E6E4 /* IceSSLConfiguration iOS */; - targetProxy = C94FC3CACFFDF403942A0713 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 8DE974F341AADB664C9BC5F9 /* PBXContainerItemProxy */; }; - 6C9FB4EE32EF3B1523B6F351 /* PBXTargetDependency */ = { + 6CB0A7D9CEBAB7FEDE893965 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 4952EEE2AED387DB9EEA4BD4 /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */; + targetProxy = 62BBA732C3711A7003559032 /* PBXContainerItemProxy */; }; - 6D34E44E69F3CB0D2DEABB80 /* PBXTargetDependency */ = { + 6DB6D2BE6BA8F692AF940220 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSSLConfiguration macOS"; - target = 3C66C239BBA518B87D48C1C3 /* IceSSLConfiguration macOS */; - targetProxy = BB2E208EBD5BE41E44F8EB27 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = F697CB11BE5CDAEE843BFD83 /* PBXContainerItemProxy */; }; - 6EDAB68D98F4B3CC280C6101 /* PBXTargetDependency */ = { + 6E5028C1155E6A2A4C4C4E98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 246668AAF6B00CDDA6E9C701 /* PBXContainerItemProxy */; + name = "IceOptional iOS"; + target = B0A77BB6DFBFBE8B44E34482 /* IceOptional iOS */; + targetProxy = B365A4BAEE25960F7C19EF20 /* PBXContainerItemProxy */; }; - 6F281B7C738EF48FDD11BCC3 /* PBXTargetDependency */ = { + 6E7CA6DF8E06C7F5DF811FA7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = FA3AD6B4016627232A0C7027 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 21073CC71FE922B62C6FA61C /* PBXContainerItemProxy */; }; - 6FD74D84EEB6D1522D4BDE79 /* PBXTargetDependency */ = { + 6EA80965AC7EBF95F050A721 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = B06DD43CC98E177E5491959D /* Glacier2 macOS */; - targetProxy = DA4FD535D6ECC7CE2309F91A /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = D68E9B85F7C0297292175F63 /* PBXContainerItemProxy */; }; - 6FF69033A22E023626CBC999 /* PBXTargetDependency */ = { + 70BA3A6EAE132BF56B919C33 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 9204F421FDD1F7C1A321EFF5 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 0E84347D1A08F7F15DC27ED3 /* PBXContainerItemProxy */; }; - 70183B95CD8F66FB82DB74EE /* PBXTargetDependency */ = { + 71C2564C0663504A3DF487CF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 1B5149A81431CE3EF21C3351 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = F10FBFB1C1BCBACCAD0EF873 /* PBXContainerItemProxy */; }; - 705C9FBEAE168297C58BDA0B /* PBXTargetDependency */ = { + 71CCF13118C59068AE4C30A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 75D90FD867A1C5A9F54E6920 /* PBXContainerItemProxy */; + name = "IceStream macOS"; + target = BC8AD08D72ABA5BDCF4A07E3 /* IceStream macOS */; + targetProxy = A1564C6A6F504130C7B077E4 /* PBXContainerItemProxy */; }; - 7233F6C9E2602CFA873D9033 /* PBXTargetDependency */ = { + 72E0A24D82A3611248E7A55E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptional iOS"; - target = 263FF8D1D5EF5BA8F4E3FDFA /* IceOptional iOS */; - targetProxy = 396D434D2A6FBB7DFE7FB14F /* PBXContainerItemProxy */; + name = "SliceEscape iOS"; + target = 4E4074DFF5890EB17098C624 /* SliceEscape iOS */; + targetProxy = D36C2411C435C799F754506E /* PBXContainerItemProxy */; }; - 73A41FE9CBC445B071808659 /* PBXTargetDependency */ = { + 747C6EDCFF53A92C7918E498 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceEnums macOS"; - target = 3C8F64BC2EB740FC26540C5A /* IceEnums macOS */; - targetProxy = 0445FD490A608CA2BBC5A706 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = E334451CB20D9C36CF4DAF28 /* PBXContainerItemProxy */; }; - 7487147066411410147870B2 /* PBXTargetDependency */ = { + 74A57853F75F6CDA4348E446 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProperties macOS"; - target = CF2C35C710236049C9C60B79 /* IceProperties macOS */; - targetProxy = 41CC0169F1111C04E415AC8D /* PBXContainerItemProxy */; + name = "IceProxyAMD macOS"; + target = 866E8F0547A584631426B2A5 /* IceProxyAMD macOS */; + targetProxy = 37B09DA87F27CB7ABE8325BC /* PBXContainerItemProxy */; }; - 7AE8E7EB7AC7B98D94B7EE2A /* PBXTargetDependency */ = { + 7537F99FF2EC0F183328E38A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocator iOS"; - target = 246FEE224D85BEE24C2D1581 /* IceServantLocator iOS */; - targetProxy = 3CB4CA72520721540AEF5655 /* PBXContainerItemProxy */; + name = "IceOperations iOS"; + target = 90FA36CD9B0F6F2C3BC99401 /* IceOperations iOS */; + targetProxy = AD75D3B0464DD8529292B622 /* PBXContainerItemProxy */; }; - 7C6F9386F7A18DE4B273E36C /* PBXTargetDependency */ = { + 7542658B1836A7406DA10C95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 2BEAE6758EFA118B2027CCE6 /* PBXContainerItemProxy */; + name = "IceGrid macOS"; + target = CFA7C016ADBDBC9AE9AB0FF7 /* IceGrid macOS */; + targetProxy = FD38DE0D1285459EBF5C368C /* PBXContainerItemProxy */; }; - 7CF5BA9F11877E8DE8CC0B1F /* PBXTargetDependency */ = { + 75BCB4C7CF48F12841EC9185 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 6B0AB5FCB178D5C6B7BD91DB /* PBXContainerItemProxy */; + name = "IceExceptionsAMD iOS"; + target = 287E9414F6A74860FF1188EE /* IceExceptionsAMD iOS */; + targetProxy = F78DD79E88AA7C72D2C7630B /* PBXContainerItemProxy */; }; - 7F60111AC7F5F12B6F78594E /* PBXTargetDependency */ = { + 76EBAA25C0E89FC850447018 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 63119168261AABF6098B7D8C /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 5308F3A03AE16A651E327C44 /* PBXContainerItemProxy */; }; - 8033BC3863F4B27A60180BA6 /* PBXTargetDependency */ = { + 76F827D5F22741F0DE0112CB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 4FA7360902327FE1AEDD3760 /* PBXContainerItemProxy */; + name = "IceProxyAMD iOS"; + target = 330758B0C9821D7E1E2243D3 /* IceProxyAMD iOS */; + targetProxy = 1DA75F379586881F62DEC72A /* PBXContainerItemProxy */; }; - 80D5B83EE21DA6DD3550BD8B /* PBXTargetDependency */ = { + 77EC7D9DEE34A6B7F04BCD70 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProperties iOS"; - target = 73B0FB7CB263578EA908E6BF /* IceProperties iOS */; - targetProxy = 3C96FBBA1D866525481B6407 /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = 137A22811E93D82B716007C8 /* Glacier2 macOS */; + targetProxy = 0B84F4707C85691977B46138 /* PBXContainerItemProxy */; }; - 821E7DB417F0F0382E648337 /* PBXTargetDependency */ = { + 77F8492EF73ECDDC1787218E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperationsAMD iOS"; - target = BBEFD25BD9A130DE61D90238 /* IceOperationsAMD iOS */; - targetProxy = AA1D3D274DE1D1DACAF76475 /* PBXContainerItemProxy */; + name = "IceScope iOS"; + target = 0FE313AA3347701853A8ACC2 /* IceScope iOS */; + targetProxy = 2791207B562F08EEDE8694BE /* PBXContainerItemProxy */; }; - 8281FF63885EA22DAC514FC6 /* PBXTargetDependency */ = { + 784F589616673E41E6E10577 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 424D32CEB0DE33F9E1D2EDAD /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = B19A744D8AB77B2B729518B8 /* PBXContainerItemProxy */; }; - 82F725F66AF7963DA643F37F /* PBXTargetDependency */ = { + 7A0D34B2D177C32128C645D0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 73353E58AC47EC3C0E7E4660 /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */; + targetProxy = 02F1D59BE481F8A321545E57 /* PBXContainerItemProxy */; }; - 850E3B2E3F2688C9FA8F1679 /* PBXTargetDependency */ = { + 7A7758F7AE666F1EBFDF5EB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDiscovery C++11 iOS"; - target = 563E7C5E9BFDDAD9AEB54CD4 /* IceDiscovery C++11 iOS */; - targetProxy = C48482DE10A162F47CEE22B0 /* PBXContainerItemProxy */; + name = "IceImpl macOS"; + target = 9FEDBE2BC73385F81D251350 /* IceImpl macOS */; + targetProxy = 4B036C207C08D140D8ECDF94 /* PBXContainerItemProxy */; }; - 8590BF2D92F5E519CCE6E0B7 /* PBXTargetDependency */ = { + 7ABF6AB7E9FC1E0443C5DF9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = B033F882805EFC28F4711FC0 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 4076824240EA3725053168B9 /* PBXContainerItemProxy */; + }; + 7AEC5A1458DB23B92EEB3D31 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceSlicingObjectsAMD iOS"; + target = 1F921787D1BBEBC84AF46F5D /* IceSlicingObjectsAMD iOS */; + targetProxy = B1A28AE71B094403C2C0C8C7 /* PBXContainerItemProxy */; }; - 8702C18A0C77263511D9EEDE /* PBXTargetDependency */ = { + 7B086A6685E226D7555642CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 565C3379B039CBE177EDEFEB /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 5A357832ED6DB437413B159E /* PBXContainerItemProxy */; }; - 8732D089FD1A403F9535195A /* PBXTargetDependency */ = { + 7B7193622EFEA69428F66DE9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceUdp macOS"; - target = 7B09AAAF71F5D5AB2F8C1B78 /* IceUdp macOS */; - targetProxy = 3B9A50B36B7EC52474EC74CE /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 97B35E09FB8379402B16C9B9 /* PBXContainerItemProxy */; }; - 877B4C1103BC1DBA5834A2F7 /* PBXTargetDependency */ = { + 7B9A2F265DC3ACF93454979F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 24519292C63CDD33513EFF95 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 04774B6B043E06B20DDA85EC /* PBXContainerItemProxy */; }; - 8AA33C1034B93523BA5B140B /* PBXTargetDependency */ = { + 7CFB1EAE4986B09E929407BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = F8B1BB7CC7D12EA9B482F87D /* PBXContainerItemProxy */; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 39EFC00272C6203BA2739F55 /* PBXContainerItemProxy */; }; - 8ABF02C70DC6AFC5C4BEB93A /* PBXTargetDependency */ = { + 7DE539FEE90D1986BF41DDAF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 758C83C5E9AC0CBAE5F586A1 /* PBXContainerItemProxy */; + name = "IceInheritance iOS"; + target = C11F92A0F52BB78CE42B609D /* IceInheritance iOS */; + targetProxy = B8E082D0B95AECE4310FFBD5 /* PBXContainerItemProxy */; }; - 8BD920016F095A02FFC1A98E /* PBXTargetDependency */ = { + 7E7A154541DD3F5526DA6955 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = AE21B8411D203C7FC4055270 /* PBXContainerItemProxy */; + name = "IceSlicingExceptions iOS"; + target = C353EC6DD74EF040A9869F1A /* IceSlicingExceptions iOS */; + targetProxy = 2F7DA7F9AD6E9BB9FD3237DC /* PBXContainerItemProxy */; }; - 8E7C7D84D79C288BB564C397 /* PBXTargetDependency */ = { + 7ED6FE2BE0D824FEFE6F2BAD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */; - targetProxy = 06958B65D9E61CD65C030E7E /* PBXContainerItemProxy */; + name = "IceUdp iOS"; + target = D0CB5D7E1779A34D43B5B89E /* IceUdp iOS */; + targetProxy = E6440D29EAE62D986D6FC567 /* PBXContainerItemProxy */; }; - 90F0F32CC84D9BFC5D6DB504 /* PBXTargetDependency */ = { + 7FB3F0BD3A0991E0CAF69DFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAcm macOS"; - target = CE79EFA5A2D0EEBD42B1DC53 /* IceAcm macOS */; - targetProxy = D961E429680328C9376ACD00 /* PBXContainerItemProxy */; + name = "IceServantLocator macOS"; + target = F41AE083FE7A390670B538F9 /* IceServantLocator macOS */; + targetProxy = C7E6BB3A69B21AA9378983B1 /* PBXContainerItemProxy */; }; - 923B443A3DFBA414FFB0EE60 /* PBXTargetDependency */ = { + 805D664C3733E17B045CD956 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocatorDiscovery C++11 macOS"; - target = 8E23FF66CFB6287919E99A31 /* IceLocatorDiscovery C++11 macOS */; - targetProxy = B7B7629BBC65294BCFA76061 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 65E2CA13F3897003E6020246 /* PBXContainerItemProxy */; }; - 9723F6A89BAA32EFB9E38912 /* PBXTargetDependency */ = { + 80EF4016774DA399DD1B1987 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptionalAMD iOS"; - target = BF6E058050842A50604055C2 /* IceOptionalAMD iOS */; - targetProxy = 3D8884CD565D4A35EB22C64D /* PBXContainerItemProxy */; + name = "IceInterceptor macOS"; + target = 1714972356F07102A679833E /* IceInterceptor macOS */; + targetProxy = 8B18A6C108529E5D0AE08A7C /* PBXContainerItemProxy */; }; - 9865DFFD138C74155281BD35 /* PBXTargetDependency */ = { + 816C173A31F9452ADAF16BD9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = F1075D8455C9CE7882F11E53 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = AF3025EB1D4A3CDF25855D1B /* PBXContainerItemProxy */; }; - 99977B77422172889E2505B2 /* PBXTargetDependency */ = { + 8372F8B77792626C7161922D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = D960472284DF0ABCD771B249 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 0FFEF472F74C83504B38C5DA /* PBXContainerItemProxy */; }; - 9BBC14B6DEB9CC469A18760D /* PBXTargetDependency */ = { + 8424FEE4E9D597D4BA072BEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 520C9E1BA5F83158E30E26F9 /* PBXContainerItemProxy */; + name = "IceAcm macOS"; + target = D7CF9E2B46E63FC31B7A1F92 /* IceAcm macOS */; + targetProxy = 6096BE5870763AC1855E4FEC /* PBXContainerItemProxy */; }; - 9D1EEDD844972C62FD524F5D /* PBXTargetDependency */ = { + 8469BC8DE06514C0EC4415B2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceFacets macOS"; - target = EEC6F479C65DCAAB4950D96F /* IceFacets macOS */; - targetProxy = 4CEC6C7D95E0CA1C63DEB2A9 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 9045E5A631A69D61EB1F9E8D /* PBXContainerItemProxy */; }; - 9E17DD7FFF15EFAF825726DD /* PBXTargetDependency */ = { + 847597A48877E6EEE06837B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 8F39CEB5897DD5417B1A0BEA /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = B68C23310174EDAB1C726EE7 /* PBXContainerItemProxy */; }; - A1AEA60AA98C9CAF76FD32A0 /* PBXTargetDependency */ = { + 87D911C3E22577CF86C47968 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 59678E1D5AFC460FA5D03A6B /* Ice C++11 macOS */; - targetProxy = 0E5B072C3073550289AC022D /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 1083543E7C3C54D87729DFFC /* PBXContainerItemProxy */; }; - A1AFF9D2AAEB1A821EBCD3E0 /* PBXTargetDependency */ = { + 889161D8D617DAE3FB899EFE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocator macOS"; - target = 938EB0FB3FB9C74695580EBE /* IceServantLocator macOS */; - targetProxy = C4648503F7E00B7B097DD352 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 3C299AFF4F7BCDF5320774F6 /* PBXContainerItemProxy */; }; - A220AC0698C4013092133F67 /* PBXTargetDependency */ = { + 891470D2A3E36C5CA342397C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptionsAMD macOS"; - target = 60091C7C300D5092A8E52149 /* IceExceptionsAMD macOS */; - targetProxy = C3147B2B67B7EBE5156B5365 /* PBXContainerItemProxy */; + name = "IceDiscovery C++11 iOS"; + target = 85DA963BEF597DDF5EBD28D4 /* IceDiscovery C++11 iOS */; + targetProxy = B3ECC1E2787AE418FA27994C /* PBXContainerItemProxy */; }; - A402B8A075E43FF8F5860C07 /* PBXTargetDependency */ = { + 89C9ED5DBA335F17B96A0507 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultServant macOS"; - target = 8DB5F9E207CEEFAD3CA28266 /* IceDefaultServant macOS */; - targetProxy = B4D6DC6746AF83195798E010 /* PBXContainerItemProxy */; + name = "IceServantLocatorAMD macOS"; + target = 1849F40335AEAFEAB939B520 /* IceServantLocatorAMD macOS */; + targetProxy = 2056ABE6D73F234C39C0A109 /* PBXContainerItemProxy */; }; - A454DF0D8814AA796AC3A34E /* PBXTargetDependency */ = { + 8D1A106E21F2556EE5A310A1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 6315F1589B46F7B4E65EFECB /* PBXContainerItemProxy */; + name = "IceBinding iOS"; + target = 1AAB45470D9803BF85F70BF0 /* IceBinding iOS */; + targetProxy = 4D3AF207C2965ADE012D2344 /* PBXContainerItemProxy */; }; - A473622614263821F53C3D47 /* PBXTargetDependency */ = { + 8DEE39D33DB085CA080A643B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 5A1A8F8FAFE4A01BD86E291F /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = F825B993E634C733D44A5574 /* PBXContainerItemProxy */; }; - A478F9404FB7C31EEAC472BB /* PBXTargetDependency */ = { + 8F3F465FF11C1D1348CB1EAA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = A3981340330BF1B2BBE5C5ED /* PBXContainerItemProxy */; + name = "IceDefaultServant iOS"; + target = 408FAEC665C8C38D7A2248A7 /* IceDefaultServant iOS */; + targetProxy = 55D25AB9B857AE18CCAB5270 /* PBXContainerItemProxy */; }; - A758FEB00F45F43548A58C3E /* PBXTargetDependency */ = { + 9026F726E66782655ECF0627 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 6CDE8504E9B7417FC60202FC /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 43F27E2455DFDB8B0F43DF75 /* PBXContainerItemProxy */; }; - A7A3456523A16A48D6AF3D21 /* PBXTargetDependency */ = { + 9265E9934EFD9A6F846D47E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceBinding macOS"; - target = BD615D3AE7C4D142D2D859B8 /* IceBinding macOS */; - targetProxy = 055279623C7C6ED5BE872EB1 /* PBXContainerItemProxy */; + name = "IceAdmin iOS"; + target = 45F2051058E66C596838C08E /* IceAdmin iOS */; + targetProxy = F4326B28E318075CA66DF1E8 /* PBXContainerItemProxy */; }; - A7BC4711D90476B21C97247A /* PBXTargetDependency */ = { + 92DCAC9E6B410FA728DDC0CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceEnums iOS"; + target = 595CBA41E37503369DC5E136 /* IceEnums iOS */; + targetProxy = 6E7BAB3FDAAFA5B13D1CC895 /* PBXContainerItemProxy */; + }; + 94714092693980C3E9AB8A38 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 4D4C5D798AFFB8EA4F4BB9AB /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = F6C5BC7691501CEE31FF8230 /* PBXContainerItemProxy */; }; - A8909DBDEB2BC7213342F687 /* PBXTargetDependency */ = { + 970D63C1D4A4BF15FA93EC58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjectsAMD iOS"; - target = D2EB13A2B3406D37FA2754E9 /* IceSlicingObjectsAMD iOS */; - targetProxy = 33916F796E33205889F8A514 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 3B24D3755A46DDD29C24B72D /* PBXContainerItemProxy */; }; - A8ACB23FDAF863A5B348CA03 /* PBXTargetDependency */ = { + 97B000A6252B61239F60D7A4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceRetry macOS"; - target = B1154CF85BB46C6CCA916ABD /* IceRetry macOS */; - targetProxy = AD02F61E11394A39B48185B1 /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */; + targetProxy = 5DB13D8EE71751CB075CD794 /* PBXContainerItemProxy */; }; - A93B5EB4B3BDD5605367C99B /* PBXTargetDependency */ = { + 9836538E8EA0AF80582F8BC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 289518D8279A017F4EA87E20 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = BEB34F0BDDE3C8CE03F2277A /* PBXContainerItemProxy */; }; - A9C7FC09D99B2CC031BFA12D /* PBXTargetDependency */ = { + 994A88656CBB1B53490E2472 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceObjects macOS"; - target = B51FD7FF275A85DCE665AB96 /* IceObjects macOS */; - targetProxy = 64AAB3780F7152FEDDDF1C63 /* PBXContainerItemProxy */; + name = "IceServantLocatorAMD iOS"; + target = 86D99596C3AC52CDD7C6A937 /* IceServantLocatorAMD iOS */; + targetProxy = 7F77B050D8D9177B58C744C6 /* PBXContainerItemProxy */; }; - A9D428A05C52A274B1A72E5F /* PBXTargetDependency */ = { + 999DBEC3129B500169220DB6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjects iOS"; - target = 568C96C03F49810104EE6CD1 /* IceSlicingObjects iOS */; - targetProxy = D33424573227C409DB3052BE /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = A0F016AD1E999B7BEEFD079D /* PBXContainerItemProxy */; }; - AA2FB66424D53E53649A862B /* PBXTargetDependency */ = { + 99C57F8B7836AB8A160E5CE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 16D6FE9D2BDB54DDB4735C1A /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = C5ED53B11A35E611F70CD0BF /* PBXContainerItemProxy */; }; - AC689ADB31AA0F7433A298CD /* PBXTargetDependency */ = { + 9AE0565ECFF368D791619365 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInterceptor iOS"; - target = 736E7E0279329997566B6CBD /* IceInterceptor iOS */; - targetProxy = AAF7F7CC5EB52708BEAAC88A /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = DFA5BCC169F4D1EAE539311E /* PBXContainerItemProxy */; }; - AE09AE75AA277407194474D5 /* PBXTargetDependency */ = { + 9B05D1352749078F9A4F050F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInvoke macOS"; - target = 65B4CEBE6BC37BE3E80C822B /* IceInvoke macOS */; - targetProxy = FD2425EA92C135B5B7BBC01C /* PBXContainerItemProxy */; + name = "IceStorm iOS"; + target = 02E12A01B24B3B3E6927EAD6 /* IceStorm iOS */; + targetProxy = 2BF05714148999A822860758 /* PBXContainerItemProxy */; }; - B02A518685B8288E303542CC /* PBXTargetDependency */ = { + 9B5B74685DA573133A1206AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid macOS"; - target = 953A9306D1F74C3E46325E82 /* IceGrid macOS */; - targetProxy = BB9C3870FD19928B2D211011 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = B349CD7089A08FE116851B73 /* PBXContainerItemProxy */; }; - B16E8FE24046274907F97681 /* PBXTargetDependency */ = { + 9BE01873452B4CDE2505E761 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 2EF62F8C4BCBD2D0C38BCA8B /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = F6CC7D98224224CD6B4D1B39 /* PBXContainerItemProxy */; }; - B2287847456C443450046F4F /* PBXTargetDependency */ = { + 9C64C861ED970F6040F57C2D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 5020DC827D0CDBDE619C1999 /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 163882765647C8ED7AD33778 /* PBXContainerItemProxy */; }; - B2FF292B16D73AF295372E9B /* PBXTargetDependency */ = { + 9C7E6B2770EB36DB2C4A986C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxyAMD macOS"; - target = 653844725C6B533AEBD3977F /* IceProxyAMD macOS */; - targetProxy = B83CA1F1B88DCBA5E07177D0 /* PBXContainerItemProxy */; + name = "IceGrid iOS"; + target = EACA18083EFA62557FBB6215 /* IceGrid iOS */; + targetProxy = 0ADE15174170E0B43C1FEB12 /* PBXContainerItemProxy */; }; - B4A261B73714974D9F3D44AD /* PBXTargetDependency */ = { + 9D2DD32A0256D385ACB54808 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = B27B1B823F57615994AA87FE /* PBXContainerItemProxy */; + name = "IceOptionalAMD iOS"; + target = 032E51349714AC140B16B6B4 /* IceOptionalAMD iOS */; + targetProxy = 2406FB9C52A6CD48CF8E7E30 /* PBXContainerItemProxy */; }; - B69512CDB44121E19AC47267 /* PBXTargetDependency */ = { + 9E6E69F1F02510C56CDA7615 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 4CAAF120E053F3911CDCBB12 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = FA303C60AEC916F5237A3111 /* PBXContainerItemProxy */; }; - B772D4413BDE6F23CFE5AB9A /* PBXTargetDependency */ = { + A02E59E12B944AD9B146C4D4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 4C7D8D5F56D51212B4EB3EDE /* PBXContainerItemProxy */; - }; - B8F36EACB6A70B2192BFABDE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceOptionalAMD macOS"; - target = 3C65AA8108580E3668BDBC3F /* IceOptionalAMD macOS */; - targetProxy = BD799E40E1B1231346583165 /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 1CF5C6CF222BB3A825FE1731 /* PBXContainerItemProxy */; }; - B964BB9EA7FB3369637C6722 /* PBXTargetDependency */ = { + A0E3D4AC198A6DC6808F2DEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceUdp iOS"; - target = 92DFD90832239D72108865B4 /* IceUdp iOS */; - targetProxy = D0EF17D320E8AB74A974F526 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = FA116D1FBBE97D6621713DEC /* PBXContainerItemProxy */; }; - BC8E9AEADEC1C9437B93872E /* PBXTargetDependency */ = { + A497425BB144004D91B3A24C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid iOS"; - target = D6C19C2ACCB1CB3FB3B25FA9 /* IceGrid iOS */; - targetProxy = 9097BF0D9D5029FE82933379 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 3E0292931E0236A0D004F053 /* PBXContainerItemProxy */; }; - BC91FE7A6C7B417DA7CBC3CB /* PBXTargetDependency */ = { + A54A8023DAA2646B9E387228 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceBinding iOS"; - target = 984F9509A61A9677BDD2B1E7 /* IceBinding iOS */; - targetProxy = 2403B7E46EFF8B1823936276 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = D7446F13E4963912133B5474 /* PBXContainerItemProxy */; }; - BD341B3DBE44221ABA2CE3D6 /* PBXTargetDependency */ = { + A54FA4CF9616CE1B19F5865B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStream macOS"; - target = DE8F7D3EE9F4909908CB3923 /* IceStream macOS */; - targetProxy = 366E74274441B9A0FCDA56D5 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = C8F115F9CA8B54E9534DEEFC /* PBXContainerItemProxy */; }; - BD6F61806126F8B4876AAB15 /* PBXTargetDependency */ = { + A62FEAA4E469B98C82503827 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = ABC6C317ECF9D9B7E1EA45F4 /* PBXContainerItemProxy */; + name = "IceOperations macOS"; + target = B502D4DB10FAD01329293155 /* IceOperations macOS */; + targetProxy = B7DAD4A79D1B39A351361B43 /* PBXContainerItemProxy */; }; - BEA47222DCFE0E79497C509D /* PBXTargetDependency */ = { + A88ACEF96D50D5914BD3DC92 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 402763FE8881D4A8E87ADE5B /* PBXContainerItemProxy */; + name = "IceInvoke macOS"; + target = 6D2A74C3BC8748EAD4AF10CA /* IceInvoke macOS */; + targetProxy = 7909541A87A3969E62A8D76D /* PBXContainerItemProxy */; }; - C03007A48FA27BE30F925426 /* PBXTargetDependency */ = { + AC8A20FB7CE10C7C4352C472 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 19A436987D04FD3FE857CE4D /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 1CA7EF0186E289C74677C302 /* PBXContainerItemProxy */; }; - C1DC945D777EA0CF7058098D /* PBXTargetDependency */ = { + ACEDD98247F376B68E088EB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdmin macOS"; - target = B49EEDD01A8C36F24785F1E7 /* IceAdmin macOS */; - targetProxy = AC1FECBB876831076416E474 /* PBXContainerItemProxy */; + name = "IceRetry iOS"; + target = 26B6DCD78B127AE4BDB35209 /* IceRetry iOS */; + targetProxy = 1E0C5D84390243D1F093EAE9 /* PBXContainerItemProxy */; }; - C2336FE5661BC689D2781566 /* PBXTargetDependency */ = { + ADD406C16E8B6E9D5DAB1A80 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 3266390A5794F2FAA5AB106B /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 69C0973CE4AC597D87F0CC67 /* PBXContainerItemProxy */; }; - C25C82B8BD02AE39C9029153 /* PBXTargetDependency */ = { + ADFAB75E29386469C7988912 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 718C3CF8AFB80575F45C8CDA /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 97396975E754D36A4408A58E /* PBXContainerItemProxy */; }; - C275009890F7AEBE56B7BFBC /* PBXTargetDependency */ = { + AF013F8FEADD5AA87CB921C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 8F9C0007F42379910D9FF4A9 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = C454691EF6B4F7655269AFAB /* PBXContainerItemProxy */; }; - C27C0FBE35C7A75968419366 /* PBXTargetDependency */ = { + AF533C8405620F251028A4E9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocation iOS"; - target = 2AD01C6A244838BF6DABEF5C /* IceLocation iOS */; - targetProxy = DB77A67E19C085ADDB8375E5 /* PBXContainerItemProxy */; + name = "IceRetry macOS"; + target = 3C1B36794C4B3EFB2B618967 /* IceRetry macOS */; + targetProxy = D3D242A6092E087E9C48B054 /* PBXContainerItemProxy */; }; - C28D91EADF3A06C6848AF6DE /* PBXTargetDependency */ = { + B010D26E681F43AB12A9D221 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultValue macOS"; - target = 11C4703EE1A20D4D647A2951 /* IceDefaultValue macOS */; - targetProxy = 720832E175EB439A57A39484 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */; + targetProxy = D40E9987316CBD6277131445 /* PBXContainerItemProxy */; }; - C2E5FF8F766ABF8C49C47C41 /* PBXTargetDependency */ = { + B0F2306AD9E2F343B9691960 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocatorAMD macOS"; - target = B4C54B94A72325BA4250EB2E /* IceServantLocatorAMD macOS */; - targetProxy = EEA312042511A8F9B80EA1CE /* PBXContainerItemProxy */; + name = "IceAmi iOS"; + target = 8FBA8150AB11D2A819C1D2EA /* IceAmi iOS */; + targetProxy = 0C3FFB5250946DB2F62ED0B2 /* PBXContainerItemProxy */; }; - C3373DFD4195B262BD339BE9 /* PBXTargetDependency */ = { + B140730A523448E31C4552CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1B9A94B53B78BCA1F3F37DB5 /* Ice C++11 iOS */; - targetProxy = 9121DFC979593B1E11C648A8 /* PBXContainerItemProxy */; + name = "IceSlicingObjects macOS"; + target = EFD2EA453C644DB2E82BF9B6 /* IceSlicingObjects macOS */; + targetProxy = D426300D75A672E2E4B19816 /* PBXContainerItemProxy */; }; - C57F2E966A56D427BD3B9A86 /* PBXTargetDependency */ = { + B1EA7490102A614CD39BDA79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 939FC52BA742DFCF56314DD7 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 124951D212D9706A742AAD8A /* PBXContainerItemProxy */; }; - C79F9A84C9780954C4B2A2D7 /* PBXTargetDependency */ = { + B250A10EA0C9DECC08C517CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 61A26954F988625C541F1F01 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = D8F6F2757A01AC13B5411B8B /* PBXContainerItemProxy */; }; - C7C2D9F88338B9890CA07314 /* PBXTargetDependency */ = { + B2F371E275144C1F37C08D65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 62F870226A3B49EF769A6F69 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 04E20A5BB846D91BB012068F /* PBXContainerItemProxy */; }; - C7DA671101B48AA98B65B28E /* PBXTargetDependency */ = { + B31CA61BAECA3671B98FC954 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 73A2F189E512673017E1BFE6 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 70992C659FB809947542BF98 /* PBXContainerItemProxy */; }; - C83636F3C4909F7E272354CB /* PBXTargetDependency */ = { + B32A054F28A69988E16FDE93 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = B06DD43CC98E177E5491959D /* Glacier2 macOS */; - targetProxy = 15F4529F1879A67F50F754A9 /* PBXContainerItemProxy */; + name = "IceStorm macOS"; + target = 0763ED05481F11F83E2EE767 /* IceStorm macOS */; + targetProxy = F84548D90CFD4FE124DF0010 /* PBXContainerItemProxy */; }; - CC176D949F48F1D3567C5158 /* PBXTargetDependency */ = { + B3D96F5FB71D69F5D938AC3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInheritance macOS"; - target = 54C05D7A1468FBA7EB02A914 /* IceInheritance macOS */; - targetProxy = 4D0ECF7B4A4E30694C530DC7 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = C3DE4AFD27BC034B2AFA89FD /* PBXContainerItemProxy */; }; - CC58057DA07A3455AB2A6207 /* PBXTargetDependency */ = { + B48AB98E8E8805BCBEC6BA31 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 758EC9DFA3BCF0FA971D1F71 /* PBXContainerItemProxy */; + name = "IceImpl macOS"; + target = 9FEDBE2BC73385F81D251350 /* IceImpl macOS */; + targetProxy = BD7EBF2F4BEE5CE80F7FDE34 /* PBXContainerItemProxy */; }; - CDCB3DA8CE04AF7351B19BD5 /* PBXTargetDependency */ = { + B4972BED37D4C4FAF0372BC3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 014501AC275F60A5050D23D1 /* PBXContainerItemProxy */; + name = "IceOptional macOS"; + target = E2CC2C0A9253A8A9567DA40C /* IceOptional macOS */; + targetProxy = 951326359780A13415B74340 /* PBXContainerItemProxy */; }; - CE663B5337DE6CF7660D1D76 /* PBXTargetDependency */ = { + B56ACA4EB35E8DF442950B00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SliceEscape iOS"; - target = 4F13DB1C06A1425528829C6C /* SliceEscape iOS */; - targetProxy = FB32F61FBDCCA0F3A6DA953C /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = DE066803381D22096C90B687 /* PBXContainerItemProxy */; }; - CE99B6946BF5E794912EC454 /* PBXTargetDependency */ = { + B68D70820828D10DDE6DEFDC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServices macOS"; - target = 32B8209C4A20C3D8A8496A49 /* IceServices macOS */; - targetProxy = 25469C37FEC81A040110CF43 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 088E53D66ADCB77044B68F04 /* PBXContainerItemProxy */; }; - CEEE543114F060E7C4726B96 /* PBXTargetDependency */ = { + B6A8FC2A6C0C716CE1C1573A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = DFBECEB61102BF7765DB140A /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 2E362D204705D96236DA7308 /* PBXContainerItemProxy */; }; - CFCC2A72B0602D76978A5B73 /* PBXTargetDependency */ = { + BB157A6DEBF88388B1D602FD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjects macOS"; - target = BCEAC60BF9D3DB0E6BB1DD33 /* IceSlicingObjects macOS */; - targetProxy = 98B15343A8E74143ED5B4B0A /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = D4162EF180337D61BC95E0E3 /* PBXContainerItemProxy */; }; - D14791AFE1C9C2B74C497278 /* PBXTargetDependency */ = { + BBEC5248251B42CD5A5C7BBD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = A52B386CD17D3AC93A7BBB23 /* PBXContainerItemProxy */; + name = "IceServantLocator iOS"; + target = AF397ABBF2A5A4C1FCF90790 /* IceServantLocator iOS */; + targetProxy = 79291E616A79762AAA043BC8 /* PBXContainerItemProxy */; }; - D153B0F232624C7685DD931A /* PBXTargetDependency */ = { + BD7815CE5D3ED4B6360BA769 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = FEB999A0E55F6F5ABEB4DAF1 /* PBXContainerItemProxy */; + name = "IceLocation macOS"; + target = 0520084212F98FC56E36026A /* IceLocation macOS */; + targetProxy = 2C1760F84B17A927353B44D7 /* PBXContainerItemProxy */; }; - D23660E156677E97449E839C /* PBXTargetDependency */ = { + BF1240667740DFEF9BA536F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = A8C02DAD0D072836518FAF59 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 95898F407A05B5C7BF184F74 /* PBXContainerItemProxy */; }; - D262A9D4C5A1AA7DE691620A /* PBXTargetDependency */ = { + C1FB66DD25250EB4BEFADE97 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 7EFFF6DF96D917257417FC18 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = BE883B87719EC8D076FF6B78 /* PBXContainerItemProxy */; }; - D2ABB6907F687A1634C727D3 /* PBXTargetDependency */ = { + C3138A5B1B62555F56113792 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 5D854259AC58BF71060A4FE2 /* PBXContainerItemProxy */; + name = "IceSlicingExceptions macOS"; + target = BA6B1EBD97713F7883F4CA94 /* IceSlicingExceptions macOS */; + targetProxy = B2EF5A0F019D0798C8E56756 /* PBXContainerItemProxy */; }; - D2B534DF7C495616B61D9DAA /* PBXTargetDependency */ = { + C81E1EEBD11F06A34298A694 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = C32F4810A9B60D686D43153B /* PBXContainerItemProxy */; + name = "IceScope macOS"; + target = 94D926D5469FBD751BF9B740 /* IceScope macOS */; + targetProxy = AE9B904DF12B5B648AE23337 /* PBXContainerItemProxy */; }; - D37F5AE837E34553E9A91018 /* PBXTargetDependency */ = { + C8B015F8C20EF516FDB222EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 1B5BEFE3ACBFD71141DFB8AC /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 8779B8D8D3BACED7A8A54A9F /* PBXContainerItemProxy */; }; - D56653FACBEEE60C2262648A /* PBXTargetDependency */ = { + CD026E743E238B67FB126CF4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceScope iOS"; - target = 4FDA69908F50F24A52FA5554 /* IceScope iOS */; - targetProxy = 4A977A65758B16E7E31D8996 /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = 137A22811E93D82B716007C8 /* Glacier2 macOS */; + targetProxy = 8490387359BE5724994B3D56 /* PBXContainerItemProxy */; }; - D5766540D82324E628841392 /* PBXTargetDependency */ = { + CD7274BC30E2C97E3C21B93C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = B394E49E013E4A6297833ACF /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 46EF2CE00F01F9EB508A2670 /* PBXContainerItemProxy */; }; - D5B0DF682589A7C2400DBF3C /* PBXTargetDependency */ = { + CD9514560682743BF11656FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = DA2C65875456DE264A8FBF2A /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = F000AFFB3A25C7ABC28E92B3 /* PBXContainerItemProxy */; }; - D6295B2ECCB99C7E068F15DB /* PBXTargetDependency */ = { + CDA9FFCA9232FD60A26F7D22 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceTimeout macOS"; - target = 80D1931BE1B80501D33167DD /* IceTimeout macOS */; - targetProxy = 47675D8C1F957EE4364D7889 /* PBXContainerItemProxy */; + name = "IceOperationsAMD macOS"; + target = 4A4450AB007BDD9E08CDC48B /* IceOperationsAMD macOS */; + targetProxy = 2F8D1CAC651E8D59006EFD72 /* PBXContainerItemProxy */; }; - D66CEB67000C3EB8E6EDDBAD /* PBXTargetDependency */ = { + CDD8B021773917AC568C6F04 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 084E22A8552E2814CEC545B7 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 2DB10530B98F5C10277BDF10 /* PBXContainerItemProxy */; }; - D671E2A6668680F0E63DC50C /* PBXTargetDependency */ = { + CECFC659A6279C6A70417574 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 6FBFA1D5551FA04E8D5D1888 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = DAC1B85E691C0D40E8D1F5FC /* PBXContainerItemProxy */; }; - D770DB7F97FBAA7FF9BB8B80 /* PBXTargetDependency */ = { + CF430178ACC315250CE4C1B2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = B951D0A96AF960ED8F08DDFC /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 7340355D75412875945DEE04 /* PBXContainerItemProxy */; }; - D9EC6B5F6D429EFE5A7478CD /* PBXTargetDependency */ = { + D0866759E0F64B5A3BDE27E1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = CD3F5FB4DE55DDA83EAF3052 /* PBXContainerItemProxy */; + name = "SliceEscape macOS"; + target = 7E8564022216773735645574 /* SliceEscape macOS */; + targetProxy = DA826583F9B7BF0EEBF2FB41 /* PBXContainerItemProxy */; }; - DB96A96ABB3660110A211A39 /* PBXTargetDependency */ = { + D127CB2E754E2DEFE38A24CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 00D89C717F365A9B330E3D7C /* PBXContainerItemProxy */; + name = "IceTimeout iOS"; + target = 81EBCBBD81DAA61D4581DF4A /* IceTimeout iOS */; + targetProxy = 73CA73AF92CF2C882906C7EF /* PBXContainerItemProxy */; }; - DCAB49BE398943EF003A1590 /* PBXTargetDependency */ = { + D22A61F81811EA2A3879F9EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServices iOS"; - target = 7C4ECB5C2679ED962EFAEA71 /* IceServices iOS */; - targetProxy = 03FE801C71B56486EB5861EE /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = E33E7B8EB30DF9BB129AA6C3 /* PBXContainerItemProxy */; }; - DD9250B27E497A58C6F0D38B /* PBXTargetDependency */ = { + D2B93A66D1C5BFB26864EE66 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 874262A59C8B1F6AEE8C42F1 /* PBXContainerItemProxy */; + name = "IceSSLConfiguration macOS"; + target = 182B60B239B1CC9AAF97C3ED /* IceSSLConfiguration macOS */; + targetProxy = 75E30D8BC5881EFBF70EA140 /* PBXContainerItemProxy */; }; - DDF5CF580877DF6E551B2F36 /* PBXTargetDependency */ = { + D39800CA0A56949337A5D33D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = FB24B8B91A047033703F023F /* PBXContainerItemProxy */; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = E4E19538F1C589FEC4A22691 /* PBXContainerItemProxy */; }; - DFA3E5B85E1F8F2CC25C85A3 /* PBXTargetDependency */ = { + D514AB5DCED2A6361B7E6E9F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 61E2B5DB1640EA077C36236E /* PBXContainerItemProxy */; + name = "IceDiscovery C++11 macOS"; + target = 74391EA658CAB520F6080EFB /* IceDiscovery C++11 macOS */; + targetProxy = 22C284711804C2B72408557A /* PBXContainerItemProxy */; }; - E05E02BCC9304E16F3B38E71 /* PBXTargetDependency */ = { + D5D1116879BBBD478325357A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = F4F2783B8E2574AA2335D126 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */; + targetProxy = 10454185DE4E6FB837057223 /* PBXContainerItemProxy */; }; - E2C29A37818BE0BCF0F5142F /* PBXTargetDependency */ = { + D844D0ECF798FA08E00F62AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInheritance iOS"; - target = 4426F98834307DB6D023DE51 /* IceInheritance iOS */; - targetProxy = 96C749A2EF071F5E2130E695 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 10D49A2F0F75754D60170585 /* PBXContainerItemProxy */; }; - E4842906C99A8CE7E536EF37 /* PBXTargetDependency */ = { + D9661EC214A87FEC6F26326F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStream iOS"; - target = DD3F4218F00B8F03628CFF85 /* IceStream iOS */; - targetProxy = 695A31E5C75603C7FBD2276A /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 101049B04F050F0556BAEDC1 /* PBXContainerItemProxy */; }; - E4C3D0E9FBDC8EFC10432EBF /* PBXTargetDependency */ = { + DBB9E5A459AABFB341F95ECE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdapterDeactivation macOS"; - target = B3FAC186802EC7B160722234 /* IceAdapterDeactivation macOS */; - targetProxy = 133E6ECC4287650410BA9EE1 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = E0482DF36F85D8040DD1A018 /* PBXContainerItemProxy */; }; - E60160BDDD0ED5BB960EDC8D /* PBXTargetDependency */ = { + DCD68B47F3B0FFB5D08298E3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperations macOS"; - target = D7E804643FF0F11F9B5B0EA8 /* IceOperations macOS */; - targetProxy = 4BF30E2AC14F122F253331FA /* PBXContainerItemProxy */; + name = "IceInvoke iOS"; + target = AD5C495F17B512B2D13CC822 /* IceInvoke iOS */; + targetProxy = BEDBE2EA1EECA7EFB1E39F8B /* PBXContainerItemProxy */; }; - E72BBD442FC5ECECA21245B3 /* PBXTargetDependency */ = { + DF851CD15E175B9CF10F503A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInfo iOS"; - target = 95D4F0B99BDEE21096E1027E /* IceInfo iOS */; - targetProxy = 9E97558F58846088EB744D06 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 15E475DDE808AF169C09737D /* PBXContainerItemProxy */; }; - EAC8D8B54AB4CB8156264D1B /* PBXTargetDependency */ = { + E5B1D04C114B228AAE5931FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = 4B703F834745FE58850D62D4 /* PBXContainerItemProxy */; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = AB49C261B8E6842F0934E90E /* PBXContainerItemProxy */; }; - EAEEC544BDF9F708A60CA2FD /* PBXTargetDependency */ = { + E68C4D1E19DC1BD7420EA436 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = 66766A219D36565BAA8D85DB /* Glacier2 iOS */; - targetProxy = 0206073BE2096B182AEEB99F /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 6FD91744CC3C92594C713913 /* PBXContainerItemProxy */; }; - EB0FA6754AB0B1A91DE9664C /* PBXTargetDependency */ = { + E759A25BEB16FB95D4BFA75F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 836518381BE3202105EFCC03 /* Ice macOS */; - targetProxy = ECC059FC573C0C136A8DAD26 /* PBXContainerItemProxy */; + name = "IceInfo iOS"; + target = 53EC7722C4E553C8B5189060 /* IceInfo iOS */; + targetProxy = 826B47DEC92C7B1AA09ABB5C /* PBXContainerItemProxy */; }; - EC9EADB81E3EA1A4EBF28170 /* PBXTargetDependency */ = { + E7807E710FE56F54258C3529 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceTimeout iOS"; - target = DE7C3CE12D76528ED6571BB0 /* IceTimeout iOS */; - targetProxy = 4790FABF6E6F6384DC30DEF1 /* PBXContainerItemProxy */; + name = "IceSlicingObjects iOS"; + target = BC8247889BA776D5F194850C /* IceSlicingObjects iOS */; + targetProxy = 7BB5FF0440E7397329F730FF /* PBXContainerItemProxy */; }; - EE4B312D8942912E66A435E6 /* PBXTargetDependency */ = { + E7D0BCA7B6CE9083E6FDA175 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = CEF13A536AF71E7BF67099FA /* PBXContainerItemProxy */; + name = "IceAdapterDeactivation macOS"; + target = 30CD23A6E9655B858C148892 /* IceAdapterDeactivation macOS */; + targetProxy = 3894FA8C71251D14C413F375 /* PBXContainerItemProxy */; }; - EFDE4A65F0F1315D26D73B2B /* PBXTargetDependency */ = { + E97C2275EAEF1641202D323F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid iOS"; - target = D6C19C2ACCB1CB3FB3B25FA9 /* IceGrid iOS */; - targetProxy = EC69D880228AE4E6A91615A1 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = D37C81BBEC64F74D436EC901 /* PBXContainerItemProxy */; }; - EFF68B9A64C668D93F38020B /* PBXTargetDependency */ = { + EB267888323925AD46EE8F50 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 534637D15E3B13C82368E2DF /* PBXContainerItemProxy */; + name = "IceDefaultServant macOS"; + target = 85AD9F1A782BBCA078D72ECA /* IceDefaultServant macOS */; + targetProxy = 5B79C9D4A01E72B879EDEB10 /* PBXContainerItemProxy */; }; - F0C7D1078E97BA2768BFAC7B /* PBXTargetDependency */ = { + EBF1E054AF40F03178AEB36E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 735348BAA927AF23DB6A9224 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 761A21ECE288F318C0F07F58 /* PBXContainerItemProxy */; }; - F1A84E7CFB79C5A2022D547F /* PBXTargetDependency */ = { + ED059F1D27D335B3B3C32D68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 6ACCFCFB18833D2E4B29A59B /* PBXContainerItemProxy */; + name = "IceAdmin macOS"; + target = EC69EEBE9D64F07481829BFA /* IceAdmin macOS */; + targetProxy = FFE50197D1F8471ADAEC705D /* PBXContainerItemProxy */; }; - F20D5C5EA88A15EF6715202D /* PBXTargetDependency */ = { + EE47DB68A54BFBE2BB606463 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = 13C138092DDD001C4BE931E7 /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 9D65E855E55E1AB1E46C47C1 /* PBXContainerItemProxy */; }; - F28D0C090A072B647F2CFF3F /* PBXTargetDependency */ = { + EE69B54FDCFCC9142CDAB66C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 88DF7E54543F3B33D43E28E6 /* PBXContainerItemProxy */; + name = "IceProperties iOS"; + target = 6204C55F63CC62BE2A2B08C9 /* IceProperties iOS */; + targetProxy = 5E92589DEC11FF0774D2FC4C /* PBXContainerItemProxy */; }; - F2A2E6A867DE3773D9740B04 /* PBXTargetDependency */ = { + EE8E0BD703C15E23C439CB28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperations iOS"; - target = FC5FC6ACD26B2D242E65DDEF /* IceOperations iOS */; - targetProxy = 825C0A36A7AC7136A8289E00 /* PBXContainerItemProxy */; + name = "IceOperationsAMD iOS"; + target = C386F0ADF5BCB591C41D4FFD /* IceOperationsAMD iOS */; + targetProxy = 1F934DA62B7876554BFE25E3 /* PBXContainerItemProxy */; + }; + EEE8DEA7998BB725A223FFDD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "TestCommon macOS"; + target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; + targetProxy = 5F13CBE277E8222A756266A1 /* PBXContainerItemProxy */; }; - F306659467A44A1EF1506B0B /* PBXTargetDependency */ = { + EF8D9D52D26DEE70F42BF3C6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = AA999748EC22F00D7E5E42EB /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 78B89ACEA5183EDBD231250B /* PBXContainerItemProxy */; }; - F3DB30A9F87EA17DC5AC72C1 /* PBXTargetDependency */ = { + F05327602CDFF152C5D841C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = CF6B626BD259CB7B40F13866 /* PBXContainerItemProxy */; + name = "IceImpl iOS"; + target = A9149583C7CA34903D80B3C4 /* IceImpl iOS */; + targetProxy = F2B3FE6B4DECBBFC3B769C20 /* PBXContainerItemProxy */; }; - F4FC3B9A79B2DBB879690C17 /* PBXTargetDependency */ = { + F09E6328CE01286C6ADD95F9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 183D02F1CDC7663537F0F150 /* PBXContainerItemProxy */; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 8991DFD0D88BB4FBC68E3FF7 /* PBXContainerItemProxy */; }; - F63C4DA9A84C21283824ACFB /* PBXTargetDependency */ = { + F1BA5260866BD4B2D46B9437 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxyAMD iOS"; - target = 6B689E233D18BEC5377ECFE9 /* IceProxyAMD iOS */; - targetProxy = B18B4B776B2C5C1E43BB8117 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = B4E319A813799C8D726C4379 /* PBXContainerItemProxy */; }; - F7626EBEE3EC89AC00DEB32A /* PBXTargetDependency */ = { + F5AD26B150EBC63B14C7C1A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptions iOS"; - target = 457BBB51C97A0228B53F703A /* IceExceptions iOS */; - targetProxy = A70E7564B3A082D6BCBE1D17 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = D75D41C2BE55D0728A6B69A5 /* PBXContainerItemProxy */; }; - F7A4C5F2CE8E25677A20701C /* PBXTargetDependency */ = { + F688DECE8B107A49A6AD8DCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 9C08369D07430A8AFB9F41A3 /* Ice iOS */; - targetProxy = 8838EE71DB9C73D4BDB9E15D /* PBXContainerItemProxy */; + name = "IceOptionalAMD macOS"; + target = 205D8173670283F9A6ADDECA /* IceOptionalAMD macOS */; + targetProxy = 483533F0757ED3F22A50F73E /* PBXContainerItemProxy */; }; - F821EBE4ED521270E804D413 /* PBXTargetDependency */ = { + F693659B4A21E81E462246B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = 66766A219D36565BAA8D85DB /* Glacier2 iOS */; - targetProxy = 21BE39872F46F3825FB2C0BC /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = 8060445ABDBD1051C1344C96 /* PBXContainerItemProxy */; }; - F890F59FBE62FC50282FCC0D /* PBXTargetDependency */ = { + F828F317335931B5298DF358 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = D24AF243F3E2AFCAA656BA3E /* TestCommon macOS */; - targetProxy = 439600681D10A6E220DE0AD7 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = BDB1F608C841B14238DB67CF /* Ice iOS */; + targetProxy = B898B88B9D2370C90091CA70 /* PBXContainerItemProxy */; }; - F9363A4E198BA521DC35D2AC /* PBXTargetDependency */ = { + F84CB7D8874C47223236E6E2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = B7F648BD936198D44B002228 /* PBXContainerItemProxy */; + name = "IceSlicingObjectsAMD macOS"; + target = E3479E14717F19236E306587 /* IceSlicingObjectsAMD macOS */; + targetProxy = D8A4B24B1515F28B19D2FAF9 /* PBXContainerItemProxy */; }; - FA345447FEE4B8C36525199C /* PBXTargetDependency */ = { + FC70EE54AE34A09FE39B3613 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = 000899F4C56AEFCFE1B77B0B /* TestCommon iOS */; - targetProxy = F357B9DDB1618D1957526349 /* PBXContainerItemProxy */; + target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; + targetProxy = 74871813383637AD809DB571 /* PBXContainerItemProxy */; }; - FA9EA170C59B2005D2A6CA78 /* PBXTargetDependency */ = { + FD14DE722F05C3B574DE1635 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptionsAMD iOS"; - target = 33115CA925E128B5715AB93A /* IceExceptionsAMD iOS */; - targetProxy = 12367DE4298BD4FAC0C724E8 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 5B62EB88A0D7C4BC05CF553A /* PBXContainerItemProxy */; }; - FE97752A0444F248E98AD556 /* PBXTargetDependency */ = { + FD67C0C61277F39D5551F292 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptions macOS"; - target = 25D99E456ADFE5745483AC23 /* IceExceptions macOS */; - targetProxy = EAF9C98295A4D9DE76503537 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 674B5652E10D914DD5AA0D14 /* PBXContainerItemProxy */; }; - FEA9F6B723324C3362BA8A11 /* PBXTargetDependency */ = { + FECA0D68F9BE92C797C3726F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocation macOS"; - target = 9D8A9741B7D4BD64D5B31B88 /* IceLocation macOS */; - targetProxy = BA77B9323A7565435BBBB21C /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; + targetProxy = 75CA660A2D6F6AEC6D522233 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 00D1138C0A8CDAF9F6958438 /* Debug */ = { + 06844834B982E90B8CC6C3FF /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14271,8 +14265,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14282,11 +14276,12 @@ }; name = Debug; }; - 018D3ACDB8B0A19DBB8B396F /* Debug */ = { + 098885B90E4705B56363648B /* 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,24 +14292,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.IceProxy; - PRODUCT_NAME = IceProxy; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; + PRODUCT_NAME = IceRetry; + 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 */ = { + 0A2F8D5157217E7EF2362077 /* 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; @@ -14325,20 +14320,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.IceProperties; - PRODUCT_NAME = IceProperties; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; + PRODUCT_NAME = IceOptional; + 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; }; - 046684EB813DC83C5D93BBBD /* Debug */ = { + 0ABC20BC5DB552B51651EB4E /* 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.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14365,12 +14359,11 @@ }; name = Debug; }; - 04F32B54214BCD3FD94DC85A /* Debug */ = { + 0AD023302845D15816606D5E /* 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; @@ -14381,55 +14374,47 @@ 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; + 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 = Debug; + name = Release; }; - 06910DE5F734355572618C8C /* Release */ = { + 0C45ED2DBAB93E56CE73962C /* 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, - 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; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS"; - PRODUCT_NAME = "Ice++11iOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; + PRODUCT_NAME = IceExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 073F4236CA3F626A8FCD41CB /* Release */ = { + 0DF6FFF3F1F4C3710E2C287D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14443,29 +14428,29 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Glacier2/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.Glacier2; - PRODUCT_NAME = Glacier2; + 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; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 07CB1CCF0924723E8F08E7C5 /* Debug */ = { + 0ECD4B6E66FE045DD259E247 /* 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; @@ -14476,112 +14461,110 @@ 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.IceExceptions; - PRODUCT_NAME = IceExceptions; - 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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 08C9943BB984EF5F0B10A8FE /* Debug */ = { + 108318E9D09DBB3892066C9B /* 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 = 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, + ); 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"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; - PRODUCT_NAME = TestCommon; - 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.Ice++11iOS"; + PRODUCT_NAME = "Ice++11iOS"; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 08DB62EDE017834E70BC55B0 /* Release */ = { + 11DE1042D18195C87E67C5B4 /* 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.IceBinding; + PRODUCT_NAME = IceBinding; 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 */ = { + 12BB8B82FBDDA28B8EE5E7C6 /* 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/Ice/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.Ice; - PRODUCT_NAME = Ice; + 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; }; - 0C7E3DC934A0CF7641FB3AD5 /* Release */ = { + 131ACE7BA8FF5FD9E4578B3E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14599,8 +14582,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.IceOperations; + PRODUCT_NAME = IceOperations; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14608,9 +14591,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 0C835DA402F1A9F0466507B2 /* Release */ = { + 152B0890011CFE07D2DB4F94 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14626,19 +14609,18 @@ 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; + 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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 0D08D02598910559760557B0 /* Release */ = { + 157199F0F3B47D97FD8675EE /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14654,8 +14636,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14666,7 +14648,7 @@ }; name = Release; }; - 0ED0795FBD518BADABB76E66 /* Debug */ = { + 1736DD342FFE69F0A5359F2F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14684,8 +14666,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.IceProxy; + PRODUCT_NAME = IceProxy; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14693,58 +14675,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 1050080DAB0C5E34C778431A /* Release */ = { + 189FF616FC0FEE9A0CD19745 /* 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,20 +14693,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.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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 12D9DCF932BC04D869417A6D /* Debug */ = { + 1949F8360B9A846261E2F134 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14783,8 +14722,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14794,7 +14733,7 @@ }; name = Debug; }; - 15992D01F69BDF2F5BF65F3E /* Debug */ = { + 19B922212CCC674B5F28DF43 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14812,8 +14751,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; @@ -14821,68 +14760,69 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 19DB434C44749212001D23D2 /* Debug */ = { + 1A3BF0139A2C51089C7634F9 /* 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.IceInfo; + PRODUCT_NAME = IceInfo; 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 */ = { + 1EE7CB56788485887BD523DD /* 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.IceServantLocatorAMD; - PRODUCT_NAME = IceServantLocatorAMD; + 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; }; - 1DFA58CFC47EDAB4B866B5FB /* Debug */ = { + 20617B979B6C765726B1C015 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14900,8 +14840,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; + PRODUCT_NAME = IceScope; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14909,14 +14849,13 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 2001ABB68208BD961B1E1DE7 /* Debug */ = { + 21F1EF92811CE1456684FE13 /* 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 +14866,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.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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 26DA74519A0368B9034D3589 /* Debug */ = { + 2295A02DCC2CFEB08FC77B94 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14956,8 +14894,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.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14967,7 +14905,7 @@ }; name = Debug; }; - 292D9A2ECC28EF41DCB33FE6 /* Release */ = { + 22D36A80E5D1757FC9880B4B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14985,8 +14923,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.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14996,7 +14934,38 @@ }; name = Release; }; - 294C7E4FF8FA13A99E302DBC /* Release */ = { + 259F1E2D0F4F5201C8AE9215 /* 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; + }; + 2BA2FA2D14201B0EC8B20373 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15012,8 +14981,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.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15024,7 +14993,7 @@ }; name = Release; }; - 2AE567BE2C03973BA67977DF /* Debug */ = { + 2EC06CBC2309C21CDDAB1F3D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15040,8 +15009,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15051,12 +15020,11 @@ }; name = Debug; }; - 2BA6ECFD7814C41F693D5F2D /* Release */ = { + 2EF351F013043AAC711F7617 /* 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; @@ -15067,20 +15035,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.IceLocation; - PRODUCT_NAME = IceLocation; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; + 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; }; - 2BD2CE5D4C7BFAA44769D17B /* Debug */ = { + 2FC4692CADA9A9221EF1DDEA /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15098,8 +15066,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.IceInheritance; + PRODUCT_NAME = IceInheritance; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15107,14 +15075,13 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 2D5A96BCD3ED2A4E80938697 /* Debug */ = { + 31412436C3FF8E41562CBC28 /* 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; @@ -15125,57 +15092,54 @@ 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.IceTimeout; + PRODUCT_NAME = IceTimeout; + 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; }; - 30247DB891ED8396937B64D7 /* Release */ = { + 3167CA1FDECBE2CC02B2B284 /* 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.Ice++11macOS"; - PRODUCT_NAME = "Ice++11macOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; + PRODUCT_NAME = IceTimeout; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; name = Release; }; - 31884568AC7D5F16CCFEF918 /* Release */ = { + 320A9F2DEFC255AC1441A9DD /* 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; @@ -15186,20 +15150,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.IceServantLocator; + PRODUCT_NAME = IceServantLocator; + 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; }; - 31C88449B370C9A0831B871E /* Debug */ = { + 322D229E972B84C8BEC0859F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15215,18 +15179,19 @@ 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.IceInheritance; + PRODUCT_NAME = IceInheritance; 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; }; - 32D6ED480CB4331166094207 /* Release */ = { + 32853BBB924C235DEA92D741 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15244,8 +15209,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.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15253,9 +15218,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 332A507B12486465253CE7FB /* Release */ = { + 35174B2162A9F1088527D094 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15271,8 +15236,8 @@ 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.IceScope; + PRODUCT_NAME = IceScope; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15283,41 +15248,42 @@ }; name = Release; }; - 3401982DEF0CD68AA50F3B94 /* Release */ = { + 3617458DA83008DD0D39430D /* 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/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.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; + 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 = Release; + name = Debug; }; - 3785815FF15E7A0FF410712F /* Debug */ = { + 369E5410B96176F40BE2E9F8 /* 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; @@ -15328,53 +15294,51 @@ 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.IceProxyAMD; - PRODUCT_NAME = IceProxyAMD; - 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; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 389E5B490BDA9B31D200E04D /* Release */ = { + 371209B751B170DE3E7416D1 /* Debug */ = { 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.IceScope; + PRODUCT_NAME = IceScope; + 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; }; - 38FBAB88F5A9921DA55C9ADC /* Release */ = { + 380D803E166E8524B7BC6492 /* 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; @@ -15385,82 +15349,77 @@ 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.IceUdp; + PRODUCT_NAME = IceUdp; + 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; }; - 395B405CD76D884C7062CBCD /* Release */ = { + 38A995958390626333537929 /* 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.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"; + VALIDATE_PRODUCT = YES; }; name = Release; }; - 39897AE51BCFFAEDEB7027CD /* Release */ = { + 3DA7BC5262FE03DAFDC0BF63 /* 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_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/", - ); - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; - SDKROOT = macosx; + INFOPLIST_FILE = test/TestCommon/Info.plist; + 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 = Release; }; - 3A615213A37FC61A3A8BAAAF /* Release */ = { + 3F4C9F140104FC697FE6225C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15476,23 +15435,23 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; + PRODUCT_NAME = IceObjects; 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; }; - 3AC9781DD274565C0D166CFB /* Release */ = { + 3F640B23C985630758266492 /* 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; @@ -15503,20 +15462,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.IceAdmin; - PRODUCT_NAME = IceAdmin; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; + PRODUCT_NAME = IceInvoke; + 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; }; - 3BC7DB9A0BC2C29D701A2E96 /* Debug */ = { + 3FC33F2C9947BE642671531C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15534,8 +15493,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.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15543,44 +15502,36 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 3FB258AEEE430FC30BEBCBF7 /* Release */ = { + 401FE55CA258D3C7A1D2CB2A /* 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, - 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; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11iOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 4295ADCA3AB7EB48095A6104 /* Release */ = { + 423072900477705078ED07D2 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15596,8 +15547,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; + PRODUCT_NAME = IceServantLocator; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15608,7 +15559,7 @@ }; name = Release; }; - 4585A0D1475F76BD8F948936 /* Debug */ = { + 4292999A0719EF77D1AE8603 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15624,8 +15575,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; + PRODUCT_NAME = IceAcm; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15635,7 +15586,36 @@ }; name = Debug; }; - 46DDDE455BA3B666AF62611E /* Debug */ = { + 46388F40ABE8AEF9818F921C /* 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.IceHold; + PRODUCT_NAME = IceHold; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 479D0D3708385ECBD8E57159 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15658,11 +15638,12 @@ SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 480F40A430D2C711FEC9D785 /* Debug */ = { + 47DBCBADF8EE34D671A07CD8 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15678,8 +15659,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15689,7 +15670,7 @@ }; name = Debug; }; - 491DBA5E0D9390DC4514A86F /* Release */ = { + 481F2FB4B61D167FFD313B44 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15705,8 +15686,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; + PRODUCT_NAME = IceFacets; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15717,67 +15698,67 @@ }; name = Release; }; - 497225D8C2F05FE4B32BD4E8 /* Debug */ = { + 49D10366C893D161B9DC36BF /* 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/IceStorm/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.IceStorm; - PRODUCT_NAME = IceStorm; + 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; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 4C58115A1799993AB3CFC3D2 /* Debug */ = { + 4A3E808D8D2FE39EF551384D /* 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.IceObjects; - PRODUCT_NAME = IceObjects; + 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 = Debug; }; - 50B77AA8407592C4E93513AD /* Debug */ = { + 4BA1BF97B788E55118EC7543 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15804,7 +15785,7 @@ }; name = Debug; }; - 52314B3580F10392749EB297 /* Debug */ = { + 4CA72070BA2C2FE2D916F051 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -15822,8 +15803,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.IceLocation; + PRODUCT_NAME = IceLocation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15831,43 +15812,48 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 5247068929BD3C108C65578F /* Release */ = { + 4D386413A12B56F03CCDC977 /* 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; 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, + NDEBUG, + ); 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; + 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.Ice++11iOS"; + PRODUCT_NAME = "Ice++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"; + VALIDATE_PRODUCT = YES; }; name = Release; }; - 543898B8DFD29529AD1AD969 /* Release */ = { + 4DF4D65B047264086AFE2F78 /* 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; @@ -15878,28 +15864,29 @@ 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.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; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 5564B4937C23385043C6B3B0 /* Release */ = { + 5007A6FC395CB30A942A7D12 /* 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, @@ -15914,19 +15901,16 @@ "$(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; + 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; }; - 5719FA43274825EA504FAB78 /* Debug */ = { + 50377A53FC123CA6BAB78543 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -15942,112 +15926,124 @@ 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.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; 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; }; - 57D8E5B2FCCE271542B33D00 /* Release */ = { + 508F06240711D1BA270E2A5B /* 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.IceServantLocator; + PRODUCT_NAME = IceServantLocator; 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; }; - 5AE9FD21F7A91873AA604C52 /* Debug */ = { + 50E313944EC67C50E3517AFA /* 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; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; - DYLIB_INSTALL_NAME_BASE = "@rpath"; 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 = src/Glacier2/Info.plist; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Glacier2; - PRODUCT_NAME = Glacier2; + 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; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 5B867B973ECB2D9D3E3DF314 /* Release */ = { + 5209AECA8D740DCBB75D3797 /* 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.IceExceptions; - PRODUCT_NAME = IceExceptions; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 5D927E39CC450458D35A1CB1 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { + 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; + }; + 55B6A10B3A123EFAA25A227E /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; COMBINE_HIDPI_IMAGES = YES; @@ -16063,8 +16059,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.IceLocation; + PRODUCT_NAME = IceLocation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16072,46 +16068,40 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 5DEBC84A9C0AB0EAC888078B /* Release */ = { + 55BD459489903FFCB9740629 /* 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 */ = { + 57FF97B0DC830C1B1C30A660 /* 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; @@ -16122,20 +16112,47 @@ 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; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; PRODUCT_NAME = IceDefaultValue; - SDKROOT = macosx; + 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; + }; + 5D0DDEB6A12EA56B19FDC38D /* 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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 5FCE26426822AB6142DE2F29 /* Release */ = { + 5EA6936BA1B758FAEA8D14EA /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16153,8 +16170,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.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16162,9 +16179,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 62B37900B735C3913A894D55 /* Debug */ = { + 5EEB923BF09AC0E6E0001F70 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16180,8 +16197,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; + PRODUCT_NAME = IceAmi; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16191,7 +16208,7 @@ }; name = Debug; }; - 62BE4B755CEEA5B5987145D8 /* Release */ = { + 5F4451B0E9D0DAE732EF1C85 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16207,8 +16224,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16219,7 +16236,7 @@ }; name = Release; }; - 631C0B3A50EF6794CA95F0D4 /* Release */ = { + 6074F9C1B0191FABA2544FE3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16237,8 +16254,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.IceServantLocator; + PRODUCT_NAME = IceServantLocator; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16248,11 +16265,12 @@ }; name = Release; }; - 651D49DDDDAFDDDFBB16388F /* Debug */ = { + 60D008DB5DCFE7241BE06EEC /* 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; @@ -16263,54 +16281,54 @@ 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; + 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; }; - 6553292B2E38F92ED8CE20A2 /* Debug */ = { + 619AEDC98AB8DBD071357B49 /* 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 = 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"; - 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; - SDKROOT = iphoneos; + 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; 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; + name = Release; }; - 65C8ADA2F6F52C95094A7020 /* Debug */ = { + 61C715BA3C7F551B289160C4 /* 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; @@ -16321,52 +16339,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.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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 660ABB781992E435F5949B66 /* Debug */ = { - 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, - ); - 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.Ice++11iOS"; - PRODUCT_NAME = "Ice++11iOS"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - 67877B442127E46152FC9D55 /* Release */ = { + 64B7A9D392DD962F8CFECE9E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16381,12 +16367,12 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Glacier2/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.Glacier2; - PRODUCT_NAME = Glacier2; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; + PRODUCT_NAME = Ice; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16397,7 +16383,7 @@ }; name = Release; }; - 67BDDF98B0452063036755EB /* Debug */ = { + 655BCA539106BC0761DF42E4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16413,45 +16399,51 @@ 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.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; 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; }; - 6854F562DF283D28F1E92189 /* Debug */ = { + 657164E644EFC97AC771AC22 /* 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.IceAmi; - PRODUCT_NAME = IceAmi; + 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; }; - 6896B0390EF8DF5C3AAE0329 /* Release */ = { + 66EFD47EB56BD08D28560A09 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16469,8 +16461,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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16480,44 +16472,39 @@ }; name = Release; }; - 68CE4DD4D1F0F01A39ED6536 /* Release */ = { + 670EBBACEE6AAA8F98CDA40C /* 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/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.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"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Release; }; - 693FBAD38999AE9FC7FD762F /* Release */ = { + 67112B9637BABB17A6239343 /* 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; @@ -16528,25 +16515,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.IceSlicingObjects; - PRODUCT_NAME = IceSlicingObjects; - SDKROOT = macosx; + 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; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 69C793B3D6199874CEC1CBFA /* Release */ = { + 6A553F8BD5A5C1A33D2F7D53 /* 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; @@ -16557,20 +16543,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.IceAmi; - PRODUCT_NAME = IceAmi; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; + PRODUCT_NAME = IceInheritance; + 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; }; - 6ADF4A3370892EC66FE1932E /* Release */ = { + 6AE2474D67786DF0282F1601 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16586,56 +16571,51 @@ 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.IceServices; + PRODUCT_NAME = IceServices; 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; }; - 6AF265E60399BCD14587E515 /* Release */ = { + 6B1C7050D255F704F3FC6CAD /* 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_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/", - ); - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; - PRODUCT_NAME = "IceDiscovery++11macOS"; - SDKROOT = macosx; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; + 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; }; - 6C32E3CE18210DB7D9EFE8A9 /* Release */ = { + 6CE2195BFC862A22798FB9AF /* 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; @@ -16646,20 +16626,53 @@ 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.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; - SDKROOT = iphoneos; + 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 = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; + name = Debug; + }; + 6F803A2E67CFC72BB6E9C8CB /* Release */ = { + 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, + 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/", + ); + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS"; + PRODUCT_NAME = "Ice++11macOS"; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + }; name = Release; }; - 6ED1D0054CBBC2C7BB44E599 /* Release */ = { + 6F93183EA59D32F95DA183F4 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16677,8 +16690,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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16686,9 +16699,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 6FA023D7AFBA73B79675A458 /* Release */ = { + 7051DD7345372F6FA1F88074 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16704,8 +16717,8 @@ 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.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16716,11 +16729,12 @@ }; name = Release; }; - 6FD74B3BF6157A742944B66D /* Release */ = { + 70BA444A65CCA7A8BAF2CCC0 /* 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; @@ -16731,20 +16745,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.IceInterceptor; - PRODUCT_NAME = IceInterceptor; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; + 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; }; - 6FFBB4844B79B25C696DBE03 /* Debug */ = { + 7196A23969C8124DE20803FD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16762,8 +16776,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.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16773,7 +16787,7 @@ }; name = Debug; }; - 70A1872F4256BC81AF37B0C5 /* Debug */ = { + 73DC1E987DA62C45F491A607 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16789,8 +16803,8 @@ 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.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16800,7 +16814,7 @@ }; name = Debug; }; - 72126A0B707BAD19AEEDEDDB /* Release */ = { + 73E1C606A2874AF700918731 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16816,19 +16830,18 @@ 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.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; }; - 7426AF474BB8C50D6DA48B5C /* Release */ = { + 74292F4340F3225AE2085CA5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16844,19 +16857,18 @@ 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.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; 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; }; - 74433004F4A47EDA9378D86B /* Debug */ = { + 75DD191D18D01914B74CEB40 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16874,8 +16886,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.IceInfo; + PRODUCT_NAME = IceInfo; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16883,9 +16895,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 774EE18D92EFEC1B15A193FC /* Debug */ = { + 763C6D448F7B5D1C1B549E26 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -16903,8 +16915,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16912,9 +16924,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 77971056002284EB909C66AF /* Release */ = { + 76F91F7B2B9BAD361F022CDB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -16930,78 +16942,18 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; + PRODUCT_NAME = IceRetry; 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; - }; - 77C4FFD023F1ECBB461DBB73 /* 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; - 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_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; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - }; - name = Debug; - }; - 784EBC42325599E76491DBAD /* 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; }; - 7CAA171B1B415BAF97135D47 /* Debug */ = { + 77981C847182A134155BDF99 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17017,8 +16969,8 @@ 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.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17028,7 +16980,7 @@ }; name = Debug; }; - 7D556B5B53A614EA02F0F73C /* Debug */ = { + 78E719EDEDB223BC70EB7AA3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -17062,66 +17014,56 @@ CLANG_WARN_UNREACHABLE_CODE = YES; CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; 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_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; - ONLY_ACTIVE_ARCH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; SWIFT_VERSION = 5.0; USE_HEADERMAP = NO; }; - name = Debug; + name = Release; }; - 7DD12BF9EC53679A4BC114D3 /* Debug */ = { + 7A17EA827AA131278EEBDF60 /* 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.IceUdp; + PRODUCT_NAME = IceUdp; 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; }; - 7DFC092098D28D37B0822C46 /* Debug */ = { + 7A25C3B7E20CC599400F7939 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17139,8 +17081,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17148,36 +17090,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; - }; - 7E3804D5DE2531EDE3D56014 /* 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; + name = Release; }; - 7E5FE9EBEF682F0AA8C0631D /* Release */ = { + 7A98754BD3D21211865AAC3B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17195,8 +17110,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17206,69 +17121,74 @@ }; name = Release; }; - 7ED0F3C464C7EEF36E6D3EB6 /* Release */ = { + 7B436DF42D24228CEAB52FF3 /* 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/IceGrid/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; - PRODUCT_NAME = IceBinding; + 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; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 7EF6DB337935233C26FD7E59 /* Debug */ = { + 7E02A44F23461601FD54DA3F /* 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/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.IceServices; - PRODUCT_NAME = IceServices; + 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 = Debug; + name = Release; }; - 7F1EF03D92C3A601EF9680B1 /* Release */ = { + 7F528957E8579B094A44E4A8 /* 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; @@ -17279,20 +17199,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.IceSlicingExceptionsAMD; - PRODUCT_NAME = IceSlicingExceptionsAMD; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; + PRODUCT_NAME = SliceEscape; + 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; }; - 826FE9F5072693096A1B8BD3 /* Release */ = { + 7FF164880ECD590A12CD42EC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17308,8 +17228,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.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17320,36 +17240,38 @@ }; name = Release; }; - 838D69C1047F0199D43A0050 /* Release */ = { + 7FF7489A228CDEB532D0FFD7 /* 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.IceStream; - PRODUCT_NAME = IceStream; + 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 = Release; }; - 84824CD4508FA1EA0BBE060D /* Release */ = { + 821E3BE980A1D2DA3F554CE6 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17367,8 +17289,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17376,42 +17298,38 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 85EEE53F1CF66C075F8D83D0 /* Debug */ = { + 8395B969BD0526BA37487EE7 /* 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; 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.IceDiscovery++11iOS"; - PRODUCT_NAME = "IceDiscovery++11iOS"; - SDKROOT = iphoneos; + 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; + 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; }; - 86DC6BAE054F96AE5B420EEB /* Debug */ = { + 83CCF56FFBE322D0D6C9A516 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17429,8 +17347,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.IceProxy; + PRODUCT_NAME = IceProxy; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17440,7 +17358,7 @@ }; name = Debug; }; - 8C3F26FF62C77A76C72B17E1 /* Release */ = { + 84A6E5BCE03C887855E0C426 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17456,8 +17374,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.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17468,11 +17386,12 @@ }; name = Release; }; - 8C6777E333E6D1CF9A9D4258 /* Debug */ = { + 856AAFA0AC9D42C133F8BB83 /* 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; @@ -17483,19 +17402,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.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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 8CB13553A470DD7F06D2BD79 /* Release */ = { + 869E6D7BE5688A650CD6AA58 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17513,8 +17433,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.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17524,11 +17444,12 @@ }; name = Release; }; - 8E34E14E8A6BBA8236FCCD14 /* Release */ = { + 871D7F4032E9C1D0D21CCA59 /* 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; @@ -17539,53 +17460,60 @@ 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.IceFacets; - PRODUCT_NAME = IceFacets; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; + 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; }; - 8E83C6009A10FDC7A30D3611 /* Debug */ = { + 893B0D5241A16760B6ACC8FC /* 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_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; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; + 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; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - 8EED9A924FC22D431FEA3405 /* Debug */ = { + 899C4BEC1FFB08BAFD8483B7 /* 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 = YES; + DEFINES_MODULE = NO; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -17593,24 +17521,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; }; - 926C64ABF831520E3D89350E /* Debug */ = { + 8B27BA96885C810DDE1A7461 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17628,8 +17555,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.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17637,9 +17564,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 934F8DE46D83BB5774BEF0FA /* Debug */ = { + 8BD5C5B7B93380512E8134AE /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17657,8 +17584,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17666,9 +17593,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 9392BCF297727351A906B912 /* Release */ = { + 8D23DFC43FFE60D18CAC3F61 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17686,8 +17613,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.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17695,38 +17622,119 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; + name = Debug; + }; + 8EA02B2A91FE365252E1FE11 /* 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_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = src/IceStorm/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; + 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; }; - 94F8B00AB9973CA4047B491D /* Debug */ = { + 8F0408C819D3E8BE8FC0CF14 /* 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.IceAdapterDeactivation; - PRODUCT_NAME = IceAdapterDeactivation; + 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; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 9556959049F349F58689FDD8 /* Debug */ = { + 90A42F2A4FBD1889EF4A2258 /* 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; + }; + 916F4272294AFD13020CC6D1 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17744,8 +17752,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17753,9 +17761,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 95944D6DB52C070BD5C7F2CB /* Release */ = { + 91E4665E3E3B6CE2E9ABDBB5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17773,8 +17781,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; + PRODUCT_NAME = IceInvoke; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17782,9 +17790,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 95A123DD2CE7D5A15751A22E /* Release */ = { + 92956A080545092479A5EF48 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17800,19 +17808,18 @@ 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.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 = Release; + name = Debug; }; - 9B9F1141E5F92F88596CA7B4 /* Debug */ = { + 92C03B295FA15AFCBBD588DD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17830,8 +17837,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.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17839,9 +17846,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 9BFEF238CAFD80164DD4709F /* Debug */ = { + 95C72C627789540E6B7BC581 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17859,8 +17866,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.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17870,12 +17877,11 @@ }; name = Debug; }; - 9FFEBCD1BFB27BE4E3C3BA2D /* Debug */ = { + 96917D139D853A621D4465A9 /* 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; @@ -17886,20 +17892,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.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; + PRODUCT_NAME = SliceEscape; + 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; }; - A01807171C92C74891F123BB /* Release */ = { + 975AEC4C1EC99E67F674DD35 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -17915,8 +17920,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17927,11 +17932,12 @@ }; name = Release; }; - A0E61F1B232FD6EE54A8B12B /* Release */ = { + 9D7EFC173A5D11BF0AF5D8C0 /* 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; @@ -17942,25 +17948,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.IceOptional; - PRODUCT_NAME = IceOptional; - 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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - A1C2BA445E954333B8810CF2 /* Release */ = { + 9FA771C091D707A597DA87DC /* 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; @@ -17971,20 +17976,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.IceBinding; - PRODUCT_NAME = IceBinding; - 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; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - A48CD0CF13DC9616D88E0DFB /* Release */ = { + A0AD46E4F58AAF97141D1080 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18002,8 +18006,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.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18011,13 +18015,14 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - A6F7FA5933507B0CECEF0A88 /* Debug */ = { + A19605357CD31BECCE52E732 /* 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; @@ -18028,52 +18033,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.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; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - A702685511112E1F11DDD9DC /* Debug */ = { + A2580E4897DA69D50FB1E2FC /* 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.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; + 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 */ = { + A5F357FFB899E13C5A4CA0D2 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18089,8 +18091,8 @@ 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.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18101,39 +18103,40 @@ }; name = Release; }; - A8089DC5FCA9368EA41F3B19 /* Debug */ = { + A83BE6F7823DEE2EFE00E47A /* 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/TestCommon/Info.plist; + INFOPLIST_FILE = test/TestDriver/iOS/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; - PRODUCT_NAME = IceExceptionsAMD; + 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; - 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"; }; name = Debug; }; - A9889FD968301EE1002FCCC3 /* Release */ = { + ABC31BA096E1426EDDF5DCF2 /* 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 +18147,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.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 = Release; }; - AA3E50D219DE5B4F43711F6C /* Debug */ = { + ABC8C3AA71A1A2F8B6DA6CA0 /* 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,20 +18175,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.IceSSLConfiguration; - PRODUCT_NAME = IceSSLConfiguration; - 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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - AD51DF88482B30BD8A393E25 /* Debug */ = { + ACE933F815C05F926BA6ED11 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18204,8 +18205,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.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18213,9 +18214,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - AD9D0CC04DFB5CB35EAF6EA7 /* Release */ = { + AD94DA9586B50FBBF47C6325 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18231,8 +18232,8 @@ 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.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18243,38 +18244,7 @@ }; name = Release; }; - AF3E212B965535B886CB438F /* 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; - 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/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; - 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; - }; - AF8C42393A72D7CC18D6E590 /* Release */ = { + AECE602422D42F6B1AEAFC8E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18290,82 +18260,77 @@ 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.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; + name = Debug; }; - B1E9EFDB20BB2708E3985C75 /* Release */ = { + AF2922FD05E6067E3EFB73B7 /* 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.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; 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; }; - name = Release; + name = Debug; }; - B2694B626CA1AAD3F0360AB6 /* Debug */ = { + AFA5CB2BD77BA351E3FF1D8E /* 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.IceInvoke; + PRODUCT_NAME = IceInvoke; 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 */ = { + B3F77065E61B1F4E7F3D3D31 /* 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; @@ -18373,53 +18338,68 @@ 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.IceInheritance; - PRODUCT_NAME = IceInheritance; + 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 = Release; + name = Debug; }; - BCFD70822F09F0EC4AE670BF /* Debug */ = { + B8AE478F8F93BE3BD8041011 /* 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.IceServices; - PRODUCT_NAME = IceServices; + 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; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - BD87CC90E5226E34D4A2F65D /* Release */ = { + B91709731889A7959098E27D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18435,33 +18415,35 @@ 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.IceOperations; + PRODUCT_NAME = IceOperations; 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; }; - C135B40AF2BD950ED3C82873 /* Debug */ = { + BA06BEA110D4A7D795AB7CB8 /* 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; - EXECUTABLE_PREFIX = lib; + 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; @@ -18470,16 +18452,25 @@ "$(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.Ice++11macOS"; - PRODUCT_NAME = "Ice++11macOS"; + 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 = Debug; + name = Release; }; - C486D8D432CA637EB3DF8424 /* Release */ = { + BB4F25BA94E2C437D66848C5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18495,19 +18486,47 @@ 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.IceFacets; + PRODUCT_NAME = IceFacets; 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; + }; + BE68347B468B847F2142F2D2 /* 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.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Release; }; - C4DDA2E6D10C55C23F2006C3 /* Release */ = { + BF3D4CF954AA65030BDF983C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18523,8 +18542,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.IceInfo; + PRODUCT_NAME = IceInfo; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18535,7 +18554,7 @@ }; name = Release; }; - C5F9B34EB23F9480E68E6D02 /* Debug */ = { + C0ECE15CD376C02C6868A0DC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18553,8 +18572,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.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18562,121 +18581,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - C6D4C053027BD5C0DDF3703A /* Debug */ = { + C1441DD72D21EE92199BCDF0 /* 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_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; - 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 = Debug; - }; - C96FA0BF679FDA8BB12DEA57 /* 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.IceBinding; - PRODUCT_NAME = IceBinding; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - C9ADCEF69F4E23E726D7F42F /* 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.IceDiscovery++11macOS"; - PRODUCT_NAME = "IceDiscovery++11macOS"; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - }; - name = Debug; - }; - CAF62F8EDF6DAC52F59F37B7 /* 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_BITCODE = NO; ENABLE_TESTABILITY = NO; FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; @@ -18684,8 +18601,8 @@ 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.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18695,7 +18612,7 @@ }; name = Release; }; - CBE662756155E9190A9DF3CD /* Debug */ = { + C17D8BEEE4ABFA214C799A70 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18713,8 +18630,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.IceTimeout; + PRODUCT_NAME = IceTimeout; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18724,41 +18641,12 @@ }; name = Debug; }; - CBFB91C348A20AEE13FBD69F /* Release */ = { + C184B826555584E0C7DDF91B /* 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.IceSlicingExceptions; - PRODUCT_NAME = IceSlicingExceptions; - 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; - }; - CCB8BB488C9DE6C0421F3A11 /* 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; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; @@ -18767,52 +18655,24 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/IceGrid/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.IceGrid; - PRODUCT_NAME = IceGrid; - SDKROOT = macosx; + 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; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + 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 = ""; }; - name = Release; - }; - CD8DCFF9FC3EDBD27A7151ED /* 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.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; name = Debug; }; - CDF7F562D492F8CAB485E41B /* Debug */ = { + C239A92EFD220A0838924352 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18828,18 +18688,19 @@ 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; + 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; }; - CE4D6B61A4D74B9A69F3DB2E /* Debug */ = { + C3F6C239B915A8390D55ADB5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18857,8 +18718,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.IceAcm; + PRODUCT_NAME = IceAcm; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18866,36 +18727,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; - }; - D03B25809F4B16EF0D909579 /* 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 = Debug; + name = Release; }; - D2990DB46B84C732A0D91282 /* Debug */ = { + C617E3CF96DC71AFA8AAE1A9 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18913,8 +18747,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18922,14 +18756,13 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - D6A87D50636C3C2A53788FCC /* Release */ = { + CA229B479D76F2CECBD88E4C /* 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; @@ -18940,20 +18773,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.IceAdapterDeactivation; - PRODUCT_NAME = IceAdapterDeactivation; - 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; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - D7AC79C83F1EDCF8E570F1BF /* Debug */ = { + CA3D873C971A8D89D88952AA /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -18971,8 +18804,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.IceFacets; + PRODUCT_NAME = IceFacets; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18980,9 +18813,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - D872B3C1C65534585A04ADDE /* Release */ = { + CA7A3F0ECAF0A664414C71BB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -18998,8 +18831,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.IceProperties; + PRODUCT_NAME = IceProperties; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19010,7 +18843,7 @@ }; name = Release; }; - DB367FE5B4BB420C3F9C54EB /* Release */ = { + CA828F1B3BB19A9E631497DD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19026,8 +18859,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19038,7 +18871,7 @@ }; name = Release; }; - DE4AAF502FFB1E34C26ED38F /* Release */ = { + CAB6B6A56C0DFF620F995025 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19054,24 +18887,22 @@ 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.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; 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; }; - DF96A79592FAE952CC6E0FD7 /* Release */ = { + CB18606496E6E0EA9A73BA6E /* 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; @@ -19082,20 +18913,81 @@ 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.IceRetry; - PRODUCT_NAME = IceRetry; - 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 = Release; + name = Debug; + }; + CBA99D2DF00CC3E5F4DCA81D /* 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; }; - E2D7860D5692FC51B791D803 /* Release */ = { + CF18244341C78BFE411D88C9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19113,8 +19005,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.IceScope; + PRODUCT_NAME = IceScope; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19122,64 +19014,73 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - E469073303E77BCF75CA6ACB /* Debug */ = { + CF889F1FD89DBB0771680031 /* Debug */ = { 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, + ); 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; + 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; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + SUPPORTED_PLATFORMS = macosx; }; name = Debug; }; - E4FF0D7F71912336ECC18DB6 /* Release */ = { + CF9A298BE46B85C55BF4F29F /* Debug */ = { 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, + ); 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; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; + PRODUCT_NAME = "IceDiscovery++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; + name = Debug; }; - E9484A1CBA995CB6AEAE9BF1 /* Release */ = { + CFBCC4EA992F4C843C738531 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19197,8 +19098,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; @@ -19206,152 +19107,109 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - EA2E854B3A2F252DB0461299 /* Debug */ = { + D2E6046AD5CE7CB47704C7DC /* 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.IceScope; - PRODUCT_NAME = IceScope; + 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; }; - EA913B01BFE7AF868A23C2BB /* Release */ = { + D4200B6C370F6400D0AF2246 /* 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_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.IceOperationsAMD; - PRODUCT_NAME = IceOperationsAMD; + 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; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - EB0E71D06FD902823318329D /* 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.IceInterceptor; - PRODUCT_NAME = IceInterceptor; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - 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; + D42BA7F808848EAE6E69C1B1 /* 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_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; + 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; }; - EBE0BB237FAE440A92FD3EBF /* Debug */ = { + D42CE8C0D80787ACAFDC7A64 /* 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; @@ -19362,23 +19220,25 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptional; PRODUCT_NAME = IceOptional; - SDKROOT = iphoneos; + 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; }; - EC174AD62926FFACCDBE8BDF /* Debug */ = { + D518D02A051F086AF13FB3C2 /* 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 +19249,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.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; }; - EC5DB00EE05745E330064054 /* Debug */ = { + D5855CD42B93F5CBF3CD4523 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19417,8 +19278,8 @@ 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.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19428,7 +19289,7 @@ }; name = Debug; }; - EC762EDD9299858E9F124D07 /* Debug */ = { + D5B687F801F16A817C82CD50 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19446,8 +19307,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; + PRODUCT_NAME = IceProperties; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19455,83 +19316,67 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - ECDA02210FE80EA19FC3A594 /* Debug */ = { + D891762C88F0C3985D829190 /* 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/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; + 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; + 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; }; - ECEC2A0B7C3324E560BBDCF9 /* Debug */ = { + D93A8947B1EB19B41CB8917E /* 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; + 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, - ); 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"; - 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; + 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 = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - ED07401774549CC3D3FC436C /* Debug */ = { + D99F9793EA08AAF8E0DBF7A9 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19547,22 +19392,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.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; 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 */ = { + E0F9C85BDA51275220626881 /* 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; @@ -19573,50 +19420,56 @@ 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.IceBinding; + PRODUCT_NAME = IceBinding; + 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; }; - EE7A9AECCEFE4AB91E77838C /* Debug */ = { + E1BB6764B69D6E7F4BCC95F1 /* 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.IceLocation; - PRODUCT_NAME = IceLocation; + 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; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - EF249BE23C5F80D5F88855DA /* Debug */ = { + E2EA448E76E0BA1ED8526696 /* 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; @@ -19627,23 +19480,25 @@ 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.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; }; - EFDF5337CF2C614569979785 /* Debug */ = { + E3767D4B0D53281579D1E3CE /* 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; @@ -19654,80 +19509,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.IceSlicingExceptionsAMD; - PRODUCT_NAME = IceSlicingExceptionsAMD; - 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; }; - F07AE8BEF7B079F129982D2B /* Debug */ = { + E520F2811D3EE429A050B2ED /* 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, - ); + 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.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 = Debug; + name = Release; }; - F163A97C9F0E53EFBD027651 /* Release */ = { + E7F13EE9B9065F0C92692469 /* 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.IceScope; - PRODUCT_NAME = IceScope; - 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 = Release; + name = Debug; }; - F453098930E35C7CBFA77FB1 /* Release */ = { + EAEA4904AC1FF24501848E4B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19754,9 +19611,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - F48757F1BD5BD447E7E5A339 /* Debug */ = { + EB6F985CF31C039458C83C24 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19774,8 +19631,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.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19785,12 +19642,11 @@ }; name = Debug; }; - F5CE8D6DB3AC9907B065DE35 /* Debug */ = { + EBD1294A5BD217EF33147F8A /* 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,20 +19657,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.IceEnums; - PRODUCT_NAME = IceEnums; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptions; + PRODUCT_NAME = IceExceptions; + 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 */ = { + EF0A626A8AD8CDBB8BF0248D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19828,25 +19684,51 @@ 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 = 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.Ice; - PRODUCT_NAME = Ice; + 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; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; + }; + EF26BD773C33A817D8FF0435 /* 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.IceAdmin; + PRODUCT_NAME = IceAdmin; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; }; - F623746ED4F4049925910771 /* Release */ = { + EF5558979D23D317FA4A6AD8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19864,8 +19746,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.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19875,7 +19757,35 @@ }; name = Release; }; - F80360D07AC2F1003844FD89 /* Release */ = { + EFE70859EC10B82EEB0E0D6E /* 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.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; + }; + F00C037A99F2CC9D8E01231E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -19893,8 +19803,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.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19902,9 +19812,9 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - F80FF2DBC096DED4A7DA3C5C /* Debug */ = { + F1717E3880274E71FE1031AC /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19920,8 +19830,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.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19931,20 +19841,18 @@ }; name = Debug; }; - F85015057487B02E4E0E4F26 /* Release */ = { + F254C8FA0267896A6E26D05A /* 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, @@ -19956,56 +19864,50 @@ "$(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.IceLocatorDiscovery++11iOS"; + PRODUCT_NAME = "IceLocatorDiscovery++11iOS"; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; name = Release; }; - FAB6994666BACD9CC2B29848 /* Debug */ = { + F2BF77CE786F4101DAECAB47 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; - ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; - 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; + 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/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"; + 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.TestCommon; + PRODUCT_NAME = TestCommon; + SDKROOT = macosx; + SKIP_INSTALL = YES; + 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; }; - FCA7CF00FFA1BA3FBDD1A88F /* Release */ = { + F50BEA838D275AA65A6FE37B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -20023,8 +19925,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.IceAdmin; + PRODUCT_NAME = IceAdmin; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -20034,7 +19936,7 @@ }; name = Release; }; - FCCC60D77B4610AEBBBFD8F6 /* Debug */ = { + F8C7F789E66ED84DECF0D2DB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -20052,8 +19954,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.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -20063,7 +19965,7 @@ }; name = Debug; }; - FF6EE6A3BF7334D10194F652 /* Release */ = { + FAB9FA228AE0A74B39FDF8ED /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -20079,8 +19981,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; + PRODUCT_NAME = IceLocation; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -20091,901 +19993,993 @@ }; name = Release; }; + FABCEBA4B5EDF6D358C5E7E9 /* 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; + }; + FC9A60D6ECFA08BEEAA95F02 /* 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; + 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/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; + 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; + }; + FF340377D2F1925C754ECEFA /* 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; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 00236410B7878815C9462DB6 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = { + 033036AB57A2BC13CF9B6D90 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 62B37900B735C3913A894D55 /* Debug */, - 77971056002284EB909C66AF /* Release */, + CF9A298BE46B85C55BF4F29F /* Debug */, + 50E313944EC67C50E3517AFA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 044EEF23E04F8A00E36E0E33 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = { + 082B20DA5873A1E188F2B846 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2001ABB68208BD961B1E1DE7 /* Debug */, - CAF62F8EDF6DAC52F59F37B7 /* Release */, + 5D0DDEB6A12EA56B19FDC38D /* Debug */, + EFE70859EC10B82EEB0E0D6E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0644D9F4813142CF5BD9EDA7 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = { + 11498C7C982D7FA44A2E3AB9 /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5719FA43274825EA504FAB78 /* Debug */, - 3AC9781DD274565C0D166CFB /* Release */, + 47DBCBADF8EE34D671A07CD8 /* Debug */, + 2EF351F013043AAC711F7617 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 075918B1BEC8CE4CF04958F2 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = { + 12D84B08BD2E17377429CD9A /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7E3804D5DE2531EDE3D56014 /* Debug */, - 1BC853462FFD545B69227FF6 /* Release */, + 76F91F7B2B9BAD361F022CDB /* Debug */, + 7051DD7345372F6FA1F88074 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 091C5CE007148B44FDF05281 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = { + 1DBCCE68ABE336FDD111EB69 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F07AE8BEF7B079F129982D2B /* Debug */, - 39897AE51BCFFAEDEB7027CD /* Release */, + 9FA771C091D707A597DA87DC /* Debug */, + CA828F1B3BB19A9E631497DD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 09AB6F8D633729C8866C99B4 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = { + 23EB73EBAAF47155243FEAF5 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ECEC2A0B7C3324E560BBDCF9 /* Debug */, - F85015057487B02E4E0E4F26 /* Release */, + B3F77065E61B1F4E7F3D3D31 /* Debug */, + 12BB8B82FBDDA28B8EE5E7C6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1024A86757B4CF06E68A54FF /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = { + 260FA577E2C3E38F2A27CF02 /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ED07401774549CC3D3FC436C /* Debug */, - 8C3F26FF62C77A76C72B17E1 /* Release */, + 0C45ED2DBAB93E56CE73962C /* Debug */, + EBD1294A5BD217EF33147F8A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 10D2E4823E17F7AA81502243 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = { + 2670006D13340F29628611E7 /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 94F8B00AB9973CA4047B491D /* Debug */, - D6A87D50636C3C2A53788FCC /* Release */, + 6AE2474D67786DF0282F1601 /* Debug */, + 4DF4D65B047264086AFE2F78 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 13F2899914E358256D593220 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = { + 26A5B6B0FCBC7609F683D25F /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F80FF2DBC096DED4A7DA3C5C /* Debug */, - C4DDA2E6D10C55C23F2006C3 /* Release */, + 899C4BEC1FFB08BAFD8483B7 /* Debug */, + 7E02A44F23461601FD54DA3F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 147822705D6DB451BE3F544B /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = { + 29F615027D13C4A96FA1E765 /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 480F40A430D2C711FEC9D785 /* Debug */, - 0C835DA402F1A9F0466507B2 /* Release */, + 61C715BA3C7F551B289160C4 /* Debug */, + D5B687F801F16A817C82CD50 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1811E364A2F015F0AFD24FC8 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = { + 2D984BDC022D5237A7868BA4 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7CAA171B1B415BAF97135D47 /* Debug */, - EA913B01BFE7AF868A23C2BB /* Release */, + 9D7EFC173A5D11BF0AF5D8C0 /* Debug */, + ACE933F815C05F926BA6ED11 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1980BC3BCFEBE70279CF9895 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = { + 304C8B1D7F902B92FF4F7FD7 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 86DC6BAE054F96AE5B420EEB /* Debug */, - F80360D07AC2F1003844FD89 /* Release */, + CAB6B6A56C0DFF620F995025 /* Debug */, + D99F9793EA08AAF8E0DBF7A9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1D8C3D695D1CC0DF208561CF /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = { + 311CC0626756F8DC8C37E0C0 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C96FA0BF679FDA8BB12DEA57 /* Debug */, - 7ED0F3C464C7EEF36E6D3EB6 /* Release */, + D2E6046AD5CE7CB47704C7DC /* Debug */, + FC9A60D6ECFA08BEEAA95F02 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1F180A72D47E938736B12E02 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = { + 31E91A99438DF7CF294196DC /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0ED0795FBD518BADABB76E66 /* Debug */, - FCA7CF00FFA1BA3FBDD1A88F /* Release */, + 6A553F8BD5A5C1A33D2F7D53 /* Debug */, + 322D229E972B84C8BEC0859F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 235EAE8BF84A08E14162D089 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = { + 3693852902D60EDEB5D8B27F /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2AE567BE2C03973BA67977DF /* Debug */, - A01807171C92C74891F123BB /* Release */, + 55B6A10B3A123EFAA25A227E /* Debug */, + 4CA72070BA2C2FE2D916F051 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 25BB18B00994010278262887 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = { + 3A6C21E6CCF11A3B56CDE33C /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1DFA58CFC47EDAB4B866B5FB /* Debug */, - 543898B8DFD29529AD1AD969 /* Release */, + 4A3E808D8D2FE39EF551384D /* Debug */, + F2BF77CE786F4101DAECAB47 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2950D67411DBCABCE2C185DA /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = { + 3AF2DB398FBE9F5CE8512D28 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 65C8ADA2F6F52C95094A7020 /* Debug */, - 0D08D02598910559760557B0 /* Release */, + 0ABC20BC5DB552B51651EB4E /* Debug */, + 50377A53FC123CA6BAB78543 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 29718A28607A68FBD21FC3C5 /* Build configuration list for PBXProject "ice" */ = { + 3DECEE29BBC1B56CC203D718 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7D556B5B53A614EA02F0F73C /* Debug */, - EB781BA1D1350F6680856F47 /* Release */, + 821E3BE980A1D2DA3F554CE6 /* Debug */, + 869E6D7BE5688A650CD6AA58 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2DAF4D2986351CC42ECADCFB /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = { + 3E24D4F20919277433AEDC55 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 15992D01F69BDF2F5BF65F3E /* Debug */, - A1C2BA445E954333B8810CF2 /* Release */, + 380D803E166E8524B7BC6492 /* Debug */, + 7A17EA827AA131278EEBDF60 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 37C3F9ED3466456577D5EA1E /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = { + 3FD629EDBC13AE102B167FDA /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8EED9A924FC22D431FEA3405 /* Debug */, - 57D8E5B2FCCE271542B33D00 /* Release */, + 32853BBB924C235DEA92D741 /* Debug */, + 189FF616FC0FEE9A0CD19745 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3A444FA93CDBF94FECF32EF7 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = { + 40905CDE358A5972012DE4E9 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 660ABB781992E435F5949B66 /* Debug */, - 06910DE5F734355572618C8C /* Release */, + E3767D4B0D53281579D1E3CE /* Debug */, + D518D02A051F086AF13FB3C2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3C8F0B13468176E203388188 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = { + 45336E8FD09E7C44847CE073 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CDF7F562D492F8CAB485E41B /* Debug */, - 62BE4B755CEEA5B5987145D8 /* Release */, + 508F06240711D1BA270E2A5B /* Debug */, + 423072900477705078ED07D2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3D26670110605ADB8439EA1A /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = { + 45862DFB6380EC9C50A9DC9B /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3BC7DB9A0BC2C29D701A2E96 /* Debug */, - A48CD0CF13DC9616D88E0DFB /* Release */, + 92956A080545092479A5EF48 /* Debug */, + AFA5CB2BD77BA351E3FF1D8E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3D3AF29DF96C8805B78B7E6E /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = { + 492CD0CF5E358D907F90FEEE /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5E664041B492822A1D280038 /* Debug */, - E9484A1CBA995CB6AEAE9BF1 /* Release */, + 0A2F8D5157217E7EF2362077 /* Debug */, + AD94DA9586B50FBBF47C6325 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3F28405D195B02F119A124AA /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = { + 49B609DA78AD14FEB7B6AC6E /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A702685511112E1F11DDD9DC /* Debug */, - 3FB258AEEE430FC30BEBCBF7 /* Release */, + 320A9F2DEFC255AC1441A9DD /* Debug */, + 6074F9C1B0191FABA2544FE3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 45F05FDA4B01F011A50096E9 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = { + 49D01C61AD8758D2B471AA02 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 00D1138C0A8CDAF9F6958438 /* Debug */, - 2BA6ECFD7814C41F693D5F2D /* Release */, + D5855CD42B93F5CBF3CD4523 /* Debug */, + 6B1C7050D255F704F3FC6CAD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 46BDA3159CE9E1C75E6623B8 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = { + 4CE4778CBD0A4E6FC82775E9 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 04F32B54214BCD3FD94DC85A /* Debug */, - 69C793B3D6199874CEC1CBFA /* Release */, + 8395B969BD0526BA37487EE7 /* Debug */, + 2FC4692CADA9A9221EF1DDEA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 48F7A82136382EBE8DC0D1A4 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = { + 4E620899F914B71F71320AE8 /* Build configuration list for PBXProject "ice" */ = { isa = XCConfigurationList; buildConfigurations = ( - 70A1872F4256BC81AF37B0C5 /* Debug */, - 332A507B12486465253CE7FB /* Release */, + CBA99D2DF00CC3E5F4DCA81D /* Debug */, + 78E719EDEDB223BC70EB7AA3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4B6F73A21159504E16B57A1B /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = { + 5220219DB0289DD3A3F01180 /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 85EEE53F1CF66C075F8D83D0 /* Debug */, - 5564B4937C23385043C6B3B0 /* Release */, + 73DC1E987DA62C45F491A607 /* Debug */, + 2BA2FA2D14201B0EC8B20373 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5228F898A71174D634D43378 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = { + 5B338167339629249D8AC3DB /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FCCC60D77B4610AEBBBFD8F6 /* Debug */, - 0C7E3DC934A0CF7641FB3AD5 /* Release */, + CF18244341C78BFE411D88C9 /* Debug */, + 20617B979B6C765726B1C015 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 544620CA4E7FECF228A7C8A6 /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = { + 60E1781E3558EB9101081746 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EBE0BB237FAE440A92FD3EBF /* Debug */, - A0E61F1B232FD6EE54A8B12B /* Release */, + 77981C847182A134155BDF99 /* Debug */, + 84A6E5BCE03C887855E0C426 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5B3BF42F755322A2D685E036 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = { + 6369F01292BFF3B59B2B41C7 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9FFEBCD1BFB27BE4E3C3BA2D /* Debug */, - 9392BCF297727351A906B912 /* Release */, + 83CCF56FFBE322D0D6C9A516 /* Debug */, + 1736DD342FFE69F0A5359F2F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5B6FA092C0E02733610C7B59 /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = { + 65DA3EE375E8CE4A5E2FCF3F /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 018D3ACDB8B0A19DBB8B396F /* Debug */, - 4295ADCA3AB7EB48095A6104 /* Release */, + A0AD46E4F58AAF97141D1080 /* Debug */, + A2580E4897DA69D50FB1E2FC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5E374F0988577EC8EA81AB28 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = { + 67954058AE74D657CE73E879 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F5CE8D6DB3AC9907B065DE35 /* Debug */, - 6ED1D0054CBBC2C7BB44E599 /* Release */, + 371209B751B170DE3E7416D1 /* Debug */, + 35174B2162A9F1088527D094 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5F4A2D7656A289DA657F237B /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = { + 6BB1BA7FF0A2AA43C1D29C03 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ED41065C1FC082D1C0D12B4B /* Debug */, - 6ADF4A3370892EC66FE1932E /* Release */, + D891762C88F0C3985D829190 /* Debug */, + C3F6C239B915A8390D55ADB5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 62E64D3926FBD2D1F48DA25D /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = { + 6BEA27ACF920A238C41BE6D8 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EC5DB00EE05745E330064054 /* Debug */, - AD9D0CC04DFB5CB35EAF6EA7 /* Release */, + 871D7F4032E9C1D0D21CCA59 /* Debug */, + C617E3CF96DC71AFA8AAE1A9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6583C70856630D705890F9AB /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = { + 6F15C88FC57ADE62FA48D631 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 67BDDF98B0452063036755EB /* Debug */, - A8007F38A751B571CE57FE41 /* Release */, + 3617458DA83008DD0D39430D /* Debug */, + 7FF7489A228CDEB532D0FFD7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6620D36133716E2A0E3BC9AD /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = { + 6F84589747125E7DC5257ACC /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FAB6994666BACD9CC2B29848 /* Debug */, - B1E9EFDB20BB2708E3985C75 /* Release */, + 5EEB923BF09AC0E6E0001F70 /* Debug */, + C239A92EFD220A0838924352 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6AD12FA7448CD620F06F4544 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = { + 718469A340DB715B2D705711 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9B9F1141E5F92F88596CA7B4 /* Debug */, - E2D7860D5692FC51B791D803 /* Release */, + A83BE6F7823DEE2EFE00E47A /* Debug */, + 38A995958390626333537929 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6B93B8C9D017B7D0B3CDCD23 /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = { + 7504876954989971B7E0484C /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7EF6DB337935233C26FD7E59 /* Debug */, - 5247068929BD3C108C65578F /* Release */, + 6F93183EA59D32F95DA183F4 /* Debug */, + 66EFD47EB56BD08D28560A09 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6E5AC7F89D188D7DCAFE657B /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = { + 753BACEB2F3CD6948FC5A58E /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EC762EDD9299858E9F124D07 /* Debug */, - 7F1EF03D92C3A601EF9680B1 /* Release */, + 893B0D5241A16760B6ACC8FC /* Debug */, + 90A42F2A4FBD1889EF4A2258 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 72783896962E4BC50A3C078C /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = { + 75CED96DA2C86B269A2B872E /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EE7A9AECCEFE4AB91E77838C /* Debug */, - 7426AF474BB8C50D6DA48B5C /* Release */, + 95C72C627789540E6B7BC581 /* Debug */, + 763C6D448F7B5D1C1B549E26 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 75D718488E61EC96444BA1F8 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = { + 7A305DD21906A670D3F6D12C /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A6F7FA5933507B0CECEF0A88 /* Debug */, - C486D8D432CA637EB3DF8424 /* Release */, + EB6F985CF31C039458C83C24 /* Debug */, + 7A25C3B7E20CC599400F7939 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 77D54A7D0B463F31230957CF /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = { + 7AF911822DEE95ED274B0A63 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 07CB1CCF0924723E8F08E7C5 /* Debug */, - 6FA023D7AFBA73B79675A458 /* Release */, + 2EC06CBC2309C21CDDAB1F3D /* Debug */, + 5F4451B0E9D0DAE732EF1C85 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7C06159D0366ECE2FC26FCE9 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = { + 7DD80A81A453D2724906B5D5 /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 26DA74519A0368B9034D3589 /* Debug */, - 8E34E14E8A6BBA8236FCCD14 /* Release */, + 46388F40ABE8AEF9818F921C /* Debug */, + 3FC33F2C9947BE642671531C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7EA6F034D3A1A444D2CD8398 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = { + 8179BCC8FF14781E23BB396E /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EB0E71D06FD902823318329D /* Debug */, - 6FD74B3BF6157A742944B66D /* Release */, + CF889F1FD89DBB0771680031 /* Debug */, + 5007A6FC395CB30A942A7D12 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8B5D0F2B1B3E65AA37E96F66 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = { + 90700B4EF9DB322D4479A91D /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 19DB434C44749212001D23D2 /* Debug */, - CCB8BB488C9DE6C0421F3A11 /* Release */, + 0ECD4B6E66FE045DD259E247 /* Debug */, + A19605357CD31BECCE52E732 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8CE6DA8DD65F344C44C20ECF /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = { + 90DED0A5E5C3E9810A4D086C /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C5F9B34EB23F9480E68E6D02 /* Debug */, - 5B867B973ECB2D9D3E3DF314 /* Release */, + 1A3BF0139A2C51089C7634F9 /* Debug */, + 75DD191D18D01914B74CEB40 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 927086629D95F4C65DC7D986 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = { + 92D3B5C3ABFC9059F3CB410E /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6854F562DF283D28F1E92189 /* Debug */, - 95A123DD2CE7D5A15751A22E /* Release */, + 4BA1BF97B788E55118EC7543 /* Debug */, + CA7A3F0ECAF0A664414C71BB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 94178A4111559DBDC1193429 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = { + 96024CD2A213A56EA0CDB0C6 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7DD12BF9EC53679A4BC114D3 /* Debug */, - 073F4236CA3F626A8FCD41CB /* Release */, + 96917D139D853A621D4465A9 /* Debug */, + 7F528957E8579B094A44E4A8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 94BF99686336765D665E1962 /* Build configuration list for PBXNativeTarget "Ice macOS" */ = { + 97E387EACA6AEBEE98FA605C /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 784EBC42325599E76491DBAD /* Debug */, - 0B3C87366D7F6F01886A8FA2 /* Release */, + EAEA4904AC1FF24501848E4B /* Debug */, + 619AEDC98AB8DBD071357B49 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 98058983671A49B9B9D12694 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = { + 98EC32A5E954BB63900D8FCE /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2BD2CE5D4C7BFAA44769D17B /* Debug */, - 693FBAD38999AE9FC7FD762F /* Release */, + 4292999A0719EF77D1AE8603 /* Debug */, + 67112B9637BABB17A6239343 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9C3C3747AFC874E570EB571F /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = { + 9A898F97439A84719F1671CF /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AD51DF88482B30BD8A393E25 /* Debug */, - 6896B0390EF8DF5C3AAE0329 /* Release */, + 131ACE7BA8FF5FD9E4578B3E /* Debug */, + 19B922212CCC674B5F28DF43 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9D55DF3FBBE3BFA20172573A /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = { + 9AC9195AE48E71CB74E51857 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6FFBB4844B79B25C696DBE03 /* Debug */, - 292D9A2ECC28EF41DCB33FE6 /* Release */, + CFBCC4EA992F4C843C738531 /* Debug */, + EF5558979D23D317FA4A6AD8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A1A08AD4C010082331DCE136 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = { + A1E02F41A3A6C1296EC1ED1E /* Build configuration list for PBXNativeTarget "Ice iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C9ADCEF69F4E23E726D7F42F /* Debug */, - 6AF265E60399BCD14587E515 /* Release */, + C184B826555584E0C7DDF91B /* Debug */, + 657164E644EFC97AC771AC22 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A1FB629F3DB8F5537ACC46F2 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = { + A2ED652B8ACFE2E5D1830069 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4C58115A1799993AB3CFC3D2 /* Debug */, - F453098930E35C7CBFA77FB1 /* Release */, + 55BD459489903FFCB9740629 /* Debug */, + BF3D4CF954AA65030BDF983C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A6D0F9F122B7EC98A09C98DE /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = { + A369A5BC026AEE26F64C934F /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 12D9DCF932BC04D869417A6D /* Debug */, - 3A615213A37FC61A3A8BAAAF /* Release */, + D42CE8C0D80787ACAFDC7A64 /* Debug */, + 92C03B295FA15AFCBBD588DD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A6ECFF0AE6F72868FD73E772 /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = { + A5032BE58483039660530CEB /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - BCFD70822F09F0EC4AE670BF /* Debug */, - AF8C42393A72D7CC18D6E590 /* Release */, + EF26BD773C33A817D8FF0435 /* Debug */, + ABC31BA096E1426EDDF5DCF2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A7B12C54A68B5F3BB09BB60C /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = { + A9397B603612590159730228 /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CE4D6B61A4D74B9A69F3DB2E /* Debug */, - 045D9853BF86338733311256 /* Release */, + F8C7F789E66ED84DECF0D2DB /* Debug */, + 22D36A80E5D1757FC9880B4B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AD19E78B54CB935962D28D3B /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = { + AA9E2FD9844A0304BAEED206 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7DFC092098D28D37B0822C46 /* Debug */, - 84824CD4508FA1EA0BBE060D /* Release */, + 5EA6936BA1B758FAEA8D14EA /* Debug */, + BE68347B468B847F2142F2D2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AD603A92D4BD1B979C351ECC /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = { + AAA4B5634CFAF599D5CF0A53 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3785815FF15E7A0FF410712F /* Debug */, - 5D927E39CC450458D35A1CB1 /* Release */, + 74292F4340F3225AE2085CA5 /* Debug */, + 57FF97B0DC830C1B1C30A660 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AE6610CCC8687AE5744A53F6 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = { + AD161EDD9CF2D67496627B0D /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EFDF5337CF2C614569979785 /* Debug */, - 72126A0B707BAD19AEEDEDDB /* Release */, + ABC8C3AA71A1A2F8B6DA6CA0 /* Debug */, + 3DA7BC5262FE03DAFDC0BF63 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AE7B39681266EE4045B4EF75 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = { + B097866F7C9739FE146CBADC /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D7AC79C83F1EDCF8E570F1BF /* Debug */, - DF96A79592FAE952CC6E0FD7 /* Release */, + E1BB6764B69D6E7F4BCC95F1 /* Debug */, + 8EA02B2A91FE365252E1FE11 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AFABD3DE224C0B5C6940A5B7 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = { + B19B12C0EA85D69FF9269DB2 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 52314B3580F10392749EB297 /* Debug */, - 32D6ED480CB4331166094207 /* Release */, + 70BA444A65CCA7A8BAF2CCC0 /* Debug */, + 7A98754BD3D21211865AAC3B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AFC2FC4DD16F87884A40D512 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = { + B2B98177DDD46EE593305650 /* Build configuration list for PBXNativeTarget "Ice macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9BFEF238CAFD80164DD4709F /* Debug */, - F623746ED4F4049925910771 /* Release */, + 259F1E2D0F4F5201C8AE9215 /* Debug */, + 64B7A9D392DD962F8CFECE9E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B29B72E12FD45954EF853156 /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = { + B351BA953215FB9837A9C550 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9556959049F349F58689FDD8 /* Debug */, - 95944D6DB52C070BD5C7F2CB /* Release */, + E7F13EE9B9065F0C92692469 /* Debug */, + F254C8FA0267896A6E26D05A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B79C877815ABF505B942A900 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = { + B5B25621875C8E1002F9A022 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 651D49DDDDAFDDDFBB16388F /* Debug */, - DE4AAF502FFB1E34C26ED38F /* Release */, + C17D8BEEE4ABFA214C799A70 /* Debug */, + 3167CA1FDECBE2CC02B2B284 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BACA0E371176684F2AA8A14A /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = { + B6024535BA37B28DFB01C3FC /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EF249BE23C5F80D5F88855DA /* Debug */, - 31884568AC7D5F16CCFEF918 /* Release */, + 21F1EF92811CE1456684FE13 /* Debug */, + 670EBBACEE6AAA8F98CDA40C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BBE03B18CF52DBF06CD120E4 /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = { + B759C973487A012F6C373F82 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 774EE18D92EFEC1B15A193FC /* Debug */, - 838D69C1047F0199D43A0050 /* Release */, + 06844834B982E90B8CC6C3FF /* Debug */, + 916F4272294AFD13020CC6D1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BCAEC8A06C1D19270BDAC8E0 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = { + BAA00BA6A0C39AAC123B5915 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AA3E50D219DE5B4F43711F6C /* Debug */, - 395B405CD76D884C7062CBCD /* Release */, + 152B0890011CFE07D2DB4F94 /* Debug */, + 369E5410B96176F40BE2E9F8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BD8D95737AFD80C1CA704BCA /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = { + BF17C6FB528CF9EC0E545D1B /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 926C64ABF831520E3D89350E /* Debug */, - B88A7D1EB4264ED18BA09B8C /* Release */, + 11DE1042D18195C87E67C5B4 /* Debug */, + E0F9C85BDA51275220626881 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BFB94717F4ED2D23EF213F86 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = { + C0BAC8D2F2BDDC628B47F70C /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6553292B2E38F92ED8CE20A2 /* Debug */, - 68CE4DD4D1F0F01A39ED6536 /* Release */, + 49D10366C893D161B9DC36BF /* Debug */, + E520F2811D3EE429A050B2ED /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C11BB948A633390FEA571628 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = { + C13AEC2E435E896E8FBD5649 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EC174AD62926FFACCDBE8BDF /* Debug */, - E4FF0D7F71912336ECC18DB6 /* Release */, + F00C037A99F2CC9D8E01231E /* Debug */, + 8B27BA96885C810DDE1A7461 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C2CB26111BF3C955550C4B72 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = { + C375060CFF20E4DE39D6CFF3 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 046684EB813DC83C5D93BBBD /* Debug */, - 826FE9F5072693096A1B8BD3 /* Release */, + CB18606496E6E0EA9A73BA6E /* Debug */, + FAB9FA228AE0A74B39FDF8ED /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C323C8A30EC76BB9F1EDA4CF /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = { + C404B8DF51F2446BE3BB6BD9 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8E83C6009A10FDC7A30D3611 /* Debug */, - 6C32E3CE18210DB7D9EFE8A9 /* Release */, + B91709731889A7959098E27D /* Debug */, + CA229B479D76F2CECBD88E4C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C417073A078CD94D7E1005A8 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = { + CAB0B77B83FB59AC0194739E /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 77C4FFD023F1ECBB461DBB73 /* Debug */, - 389E5B490BDA9B31D200E04D /* Release */, + 401FE55CA258D3C7A1D2CB2A /* Debug */, + 975AEC4C1EC99E67F674DD35 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C664B931CC45B69DA172BA64 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = { + CBEB8379016775C75645A394 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8C6777E333E6D1CF9A9D4258 /* Debug */, - BD87CC90E5226E34D4A2F65D /* Release */, + 0DF6FFF3F1F4C3710E2C287D /* Debug */, + 7B436DF42D24228CEAB52FF3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C7F80BA4C97C8D21B793DE17 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = { + CDABCC82729DB49FD47FFE3D /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ECDA02210FE80EA19FC3A594 /* Debug */, - 5DEBC84A9C0AB0EAC888078B /* Release */, + 2295A02DCC2CFEB08FC77B94 /* Debug */, + 479D0D3708385ECBD8E57159 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CD1A13B6321D7957542DE130 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = { + CDCDD4A7D4900CC95A64A7D0 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 497225D8C2F05FE4B32BD4E8 /* Debug */, - AF3E212B965535B886CB438F /* Release */, + 856AAFA0AC9D42C133F8BB83 /* Debug */, + CA3D873C971A8D89D88952AA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CE38CF5CBBFBC1E58056332B /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = { + CFEEBC29960A3220CBC34132 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4585A0D1475F76BD8F948936 /* Debug */, - DB367FE5B4BB420C3F9C54EB /* Release */, + 5209AECA8D740DCBB75D3797 /* Debug */, + B8AE478F8F93BE3BD8041011 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CF71943CB3679B30EDCADDBB /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = { + D186B9D2354DEEF650F4EFBB /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 50B77AA8407592C4E93513AD /* Debug */, - 491DBA5E0D9390DC4514A86F /* Release */, + AECE602422D42F6B1AEAFC8E /* Debug */, + 31412436C3FF8E41562CBC28 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D0008B9280EA8DD418237763 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = { + D4BBF305714A95BEF18C3D36 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C135B40AF2BD950ED3C82873 /* Debug */, - 30247DB891ED8396937B64D7 /* Release */, + 8F0408C819D3E8BE8FC0CF14 /* Debug */, + BA06BEA110D4A7D795AB7CB8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D071476039D59E60FB986A4E /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = { + D589334357FA183D27798AED /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A8089DC5FCA9368EA41F3B19 /* Debug */, - D872B3C1C65534585A04ADDE /* Release */, + F1717E3880274E71FE1031AC /* Debug */, + 157199F0F3B47D97FD8675EE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D071E6E67415B1084B7FB2B0 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = { + D6D26BFF9C8DBDB634F93FAA /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D03B25809F4B16EF0D909579 /* Debug */, - FF6EE6A3BF7334D10194F652 /* Release */, + E2EA448E76E0BA1ED8526696 /* Debug */, + 60D008DB5DCFE7241BE06EEC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D3EE323899CFE50C8FF01A4C /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = { + D87EB862D7C1FAA82D04034A /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 31C88449B370C9A0831B871E /* Debug */, - 1265170C8F1AAA4B598ADED6 /* Release */, + 91E4665E3E3B6CE2E9ABDBB5 /* Debug */, + 3F640B23C985630758266492 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D77B6EAF252C5E522EF824EB /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = { + D88854720B46BA2754326BFC /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 08C9943BB984EF5F0B10A8FE /* Debug */, - 08DB62EDE017834E70BC55B0 /* Release */, + 8D23DFC43FFE60D18CAC3F61 /* Debug */, + C1441DD72D21EE92199BCDF0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DD3460088DD573F25718BB50 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = { + E0EBE04152FF4ED31AD30380 /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CBE662756155E9190A9DF3CD /* Debug */, - 8CB13553A470DD7F06D2BD79 /* Release */, + 3F4C9F140104FC697FE6225C /* Debug */, + 0AD023302845D15816606D5E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DD88214AAC13298E250CAFE5 /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = { + E5F229C1A5B95628F5542D9B /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EA2E854B3A2F252DB0461299 /* Debug */, - F163A97C9F0E53EFBD027651 /* Release */, + 098885B90E4705B56363648B /* Debug */, + C0ECE15CD376C02C6868A0DC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DF89BAA77340F0D9A91B5B70 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = { + E8FA4A91F8A3AABCF0C62675 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 74433004F4A47EDA9378D86B /* Debug */, - 631C0B3A50EF6794CA95F0D4 /* Release */, + 108318E9D09DBB3892066C9B /* Debug */, + 4D386413A12B56F03CCDC977 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E28ADFC31AAB0E465B4AEA32 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = { + E9C9BFDEA2ED16B4476CCF6D /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F48757F1BD5BD447E7E5A339 /* Debug */, - 5FCE26426822AB6142DE2F29 /* Release */, + EF0A626A8AD8CDBB8BF0248D /* Debug */, + D42BA7F808848EAE6E69C1B1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E776FBA795F89D6CCE02CD6A /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = { + EA5565BC88E3B4CF63433B39 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 934F8DE46D83BB5774BEF0FA /* Debug */, - A9889FD968301EE1002FCCC3 /* Release */, + 7196A23969C8124DE20803FD /* Debug */, + 8BD5C5B7B93380512E8134AE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E99F518660F9AB06ACE667CD /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = { + EA59AF9ED6271FF30295A838 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46DDDE455BA3B666AF62611E /* Debug */, - CBFB91C348A20AEE13FBD69F /* Release */, + AF2922FD05E6067E3EFB73B7 /* Debug */, + 655BCA539106BC0761DF42E4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EC2ED350B4BE06E124AF4315 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = { + ED8B8EFE415F9FA463B0A59E /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2D5A96BCD3ED2A4E80938697 /* Debug */, - 38FBAB88F5A9921DA55C9ADC /* Release */, + FF340377D2F1925C754ECEFA /* Debug */, + D93A8947B1EB19B41CB8917E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EC4DBEF8FA6B0A7A7177F50B /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = { + ED8E7E82B168D7EB16E5E342 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D2990DB46B84C732A0D91282 /* Debug */, - 7E5FE9EBEF682F0AA8C0631D /* Release */, + 6CE2195BFC862A22798FB9AF /* Debug */, + F50BEA838D275AA65A6FE37B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EE183CAB742B1360694466DD /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = { + EEEEA9D05A20FB2C43336CD7 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5AE9FD21F7A91873AA604C52 /* Debug */, - 67877B442127E46152FC9D55 /* Release */, + FABCEBA4B5EDF6D358C5E7E9 /* Debug */, + 6F803A2E67CFC72BB6E9C8CB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F2C0C2C72D017FA1BC6C221C /* Build configuration list for PBXNativeTarget "Ice iOS" */ = { + F2A31FCBF6D5223BA39DC957 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - B2694B626CA1AAD3F0360AB6 /* Debug */, - F5DE62AAAC0B9B74542AF36A /* Release */, + BB4F25BA94E2C437D66848C5 /* Debug */, + 481F2FB4B61D167FFD313B44 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F5FC90624E257893850F4F24 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = { + F2AC5AC49AC37FEC3087A7A1 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E469073303E77BCF75CA6ACB /* Debug */, - 294C7E4FF8FA13A99E302DBC /* Release */, + 1EE7CB56788485887BD523DD /* Debug */, + D4200B6C370F6400D0AF2246 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F8010370F463A7F2210C530C /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = { + F5C049476C15902282285C7B /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CD8DCFF9FC3EDBD27A7151ED /* Debug */, - 3401982DEF0CD68AA50F3B94 /* Release */, + 73E1C606A2874AF700918731 /* Debug */, + 7FF164880ECD590A12CD42EC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FCB71AFE893E7171705D4364 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = { + FDB4D6BFB37F88D5E6A16C48 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C6D4C053027BD5C0DDF3703A /* Debug */, - 1050080DAB0C5E34C778431A /* Release */, + 1949F8360B9A846261E2F134 /* Debug */, + A5F357FFB899E13C5A4CA0D2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = 1EB94907D14CF0330FE8A8B4 /* Project object */; + rootObject = 2FC1D43765A7F931D9DC5184 /* Project object */; } diff --git a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme index 6c8d6b22644..51962c0f368 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..3948bfb0966 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"> From 0fa892f25305ee2c285d5bf7b686152ca912347d Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sun, 14 Jan 2024 14:24:29 -0500 Subject: [PATCH 8/9] Set DEVELOPMENT_TEAM before running rake --- swift/ice.xcodeproj/project.pbxproj | 21806 ++++++++-------- .../xcshareddata/xcschemes/Ice iOS.xcscheme | 10 +- .../xcshareddata/xcschemes/Ice macOS.xcscheme | 10 +- 3 files changed, 11153 insertions(+), 10673 deletions(-) diff --git a/swift/ice.xcodeproj/project.pbxproj b/swift/ice.xcodeproj/project.pbxproj index c30a81b3217..2614cab6ccb 100644 --- a/swift/ice.xcodeproj/project.pbxproj +++ b/swift/ice.xcodeproj/project.pbxproj @@ -7,1898 +7,1879 @@ objects = { /* Begin PBXBuildFile section */ - 0018341987DE28CA1CA741D3 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB5D02829AEAB23FFABB5B4F /* WSConnector.cpp */; }; - 00697F0CF3B2AF39EE080EF7 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8960D717D9673447C68F61D7 /* EndpointInfo.cpp */; }; - 0072C42A6D23F148DF459251 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54E9AF62DC5520A54B0CF2AA /* Random.cpp */; }; - 00B613DAA9C2BF3F770470F4 /* EndpointI.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7EB7AAB041B597E34A71548A /* EndpointI.mm */; }; - 012112A57534E1CE8702B653 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 01586D48B85E01D0587A5BA2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 0172BC3C5CA19454AA9B50D8 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EDA8B46CA1A0F1CFC1E283B /* SystemdJournalI.cpp */; }; - 01808FC6BF917FA6CC60DA77 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 025FA88297B6C712DCAA8F25 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FBE489334E0ED23D774B550 /* LoggerUtil.cpp */; }; - 02D6E05A0B88B1E5AC7AA938 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F5945F8AFC7C9F3E86F3D4 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 02D7DC30D69353C1B161EEA1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C2B5BBCC468EFCF6C706DDF /* Client.swift */; }; - 032CDFAF5171057955003F6F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 035B3023FCAC87E5D59B95B7 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFD565105BC4E6A56DCB1853 /* Exception.ice */; }; - 036B7294EF6C85869D4D99D0 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5042D96FAC79ED86972DEF0A /* LocalException.cpp */; }; - 036E303C13FCDA857E6CAC88 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4804F5E00E5C966AE7D9FD34 /* BatchOneways.swift */; }; - 038F68BDDAA7D82C87A4E358 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000611DF33CB4304F42A33BE /* RetryQueue.cpp */; }; - 03AE2B78C6E447D09D6B1B9E /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 60C72DE758D50EEE330E214C /* Metrics.ice */; }; - 0431CDD713D70DDCBC01025B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A321E613C2308FD17E0C2E6D /* TestI.swift */; }; - 04490F3CC1B2F69D1CF40F78 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 0464FD639B7E64C401CD0F66 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 04781CF1594EB616E0A82C3E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8EC734E3ABEC1B9F8ED7E1C /* ServerAMD.swift */; }; - 0479A525C9005DE348CDCAC7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66677779E376C6BC1CB257CB /* Client.swift */; }; - 04994BC95865F3AFF995FFBD /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 96057073F871C88A9A437E6C /* RemoteLogger.ice */; }; - 04A1DA6F0688902360376C8B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 04B6E589A0CFC15B1324287A /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DF1CA6ABA240EB1DCE0DCA9E /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 04BF5B027FC2EC31DFF1C3B4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 187ED1A448C608EC15DF698C /* AllTests.swift */; }; - 04CA57F572948DE12AF650F4 /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38D102721EA6D00E46DBB85E /* Cond.cpp */; }; - 0519C7E867DB374F149B1990 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5DABF3352FC370E8C8424646 /* FileParser.ice */; }; - 05B4299FC837338C7C9F07F6 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7FCFB7E350304BE48F9AB70 /* Object.swift */; }; - 05BA88CFDB0A1B982F7DCBCA /* StreamTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA94963DA4E9C2C6BC9D3A1C /* StreamTransceiver.cpp */; }; - 05CD8A6BBC6A23919D9474CF /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31917CC0A13FF7C85862B2F0 /* OutputStream.cpp */; }; - 0616771E9DCC32A8954A64EE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF00A0B8905692CA5CB21851 /* Client.swift */; }; - 0643622519CDC658F54DEA21 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08422DB9B8A6F7BEF0B9659B /* SSLEngine.cpp */; }; - 067B6E6FA2EA192CDFCF9036 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD7C6AB26C45ABFC92DDB247 /* Server.swift */; }; - 06C7C566D33AF10D3C441548 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F600B75D092C22922DC97C /* LocalExceptionFactory.swift */; }; - 06C7FA26056AC4243C624FE1 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D23950CABD458FD84101A42 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0706F0FA4CC01B88DD0D2DE8 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE548BE00DBF796605CE418 /* TestAMDI.swift */; }; - 07231DDD854AABD03305B283 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */; }; - 074A20086ECE8EA68179360C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 0774C7F1D02D5438905530E6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5242AA08870B9E96219670E /* Client.swift */; }; - 07B21E2CAB7DBC84FFCC7754 /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 73E30F6985B146225B2F0177 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 07B9860625BA278EB29B60F8 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 07D1B834520C1898CBA51C6A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 07D2C592286FA9396D82CC5B /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4219AE5EE1189E920E1A77AA /* TestAMD.ice */; }; - 0825802796D8ECBA83F8CD73 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 086044B8C7CD0025AC4D03D5 /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 006CF4F54F5E4A89A3C663B0 /* RouterInfo.cpp */; }; - 0920F0B8C7B88597FBD511A0 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 654CCEC599E0A9552262BFF6 /* RouterF.ice */; }; - 09402B549DA79E6153D5B1B5 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E829B55DFE27094ED4A1790 /* EndpointInfo.cpp */; }; - 096D459BAE2FCF2E26D63288 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AC23262A7AC04461F4A4BFD /* AllTests.swift */; }; - 097C6736BC34ABC39A8351DE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 09CEE7F11F5525460EA4422E /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 0841109EAF658FE8F75F1D35 /* certs */; }; - 0A0B5C8B51AEA59D813EDDC8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7401C2CE09807582FF593E /* Client.swift */; }; - 0A225A1465272A8C992BEBE8 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5FC1B1B7E470DA1817C0EEA4 /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 0A468AC2E0650A5D5537871F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57CF891C000E31222368C816 /* Server.swift */; }; - 0A7EF887C9DAA79818FB599B /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511AD3135337E08B90F9C34B /* BatchRequestQueue.cpp */; }; - 0A945DF4D48C7CF37CF3FE37 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEE6C673CF16E6CD4116CC12 /* ThreadException.cpp */; }; - 0AACFC0CB4701C0AEC238865 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 0AC32732B6437A1A7136CC6B /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7490F0360E314E9C5FF89F3C /* Router.ice */; }; - 0B9335BFAA4E14EB94810181 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 879BBBB407F7C87AA23FEFB0 /* TestI.swift */; }; - 0BC46298F3258DEACAEB87D2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E498B9EBD907E4FAD93351F /* Client.swift */; }; - 0BE3033B3DC78D489AE854F6 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 688574A0631176251901C5D7 /* ServantManager.swift */; }; - 0BF831C6A17EE4C209FFB07D /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2DB1A2EBE508ADA82D566B4 /* TrustManager.cpp */; }; - 0C05B309530BDB59E82F9419 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = ADA2F94E4EDD0ADEEE713717 /* Test.ice */; }; - 0C59DF32C4B266890E39489B /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4749A84AF39751728F692314 /* ConnectorI.cpp */; }; - 0C93CE252AE54609BE184AC6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A0432DEA9466221C423F5 /* TestI.swift */; }; - 0C9758945EDA3658BA968BDF /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27196B5B3415DF6ED7D4A3A5 /* Properties.swift */; }; - 0CC5FB5A531BB50FD446CDCF /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00909CBA5C2223CED4ED9381 /* SSLInfo.ice */; }; - 0CD0FD273978A1755A6B4970 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 0D22F62905B784D9B736C643 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 294AC4A94D492076FFDEF664 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 0D6795ED5818F1BA7304C6D6 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0AF15B4EEC648C875D97939 /* IceGrid.framework */; }; - 0D91C27BAD60BBECB3C0FDC7 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5400703129C16CEB55676316 /* ConnectionInfoFactory.swift */; }; - 0DA69726D275D0F638CCA647 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 206401F7B7D85C2E662248F5 /* RegisterPluginsInit.cpp */; }; - 0DDAE46D5AD5AFABB7E57CF4 /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 065B949882E18BDEB1485FC1 /* Registry.ice */; }; - 0DF6D85D4D268671B58316D9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 069D6D873DB12806A4A9705F /* Server.swift */; }; - 0DF8356374955C9B994ED912 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 0DF98737208C5FF562D1B8B7 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C32566337C1211D2262DE5B8 /* AllTests.swift */; }; - 0E18F54173D74AD248051490 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 0E40C8BD89089A3DD6B11378 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A51F31391447E13718ECF7F /* UdpTransceiver.cpp */; }; - 0E7E65D715D1EE6037D10809 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = D16C752C89102255A084815B /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 0E80A8FA036E42C8CEF55DFB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 879BBBB407F7C87AA23FEFB0 /* TestI.swift */; }; - 0E95472F96C3298CB4401BAE /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB2A63494B776FCB8C2A0BCF /* ServerAMD.swift */; }; - 0EBFC940981F4AE361EEB597 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 0FBBFD2A689370DD3A659CB4 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59DDE7B5BC8DF0F3AD836E76 /* SecureTransportCertificateI.cpp */; }; - 10202B13383E9F4B8247203E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848049457E74A1C8BA343A1D /* Server.swift */; }; - 10531B948E68D655E91C0BB9 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7987BEF538197F4846537BC /* UnknownSlicedValue.swift */; }; - 10980ECEFA4EE39659C106A3 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 876D9FFC7CC704C0504BCB91 /* SHA1.cpp */; }; - 10CDCA1AC74E706DE81268F6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1925D4741CC08B26DFD1621 /* Server.swift */; }; - 11023A79BA4F103EE71D9704 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E98EEC1CF21AF6E6D15DE7 /* ObjectAdapterF.cpp */; }; - 110C0E024EB6945CD5EF31ED /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8110A6A605EABCCC95B70C /* Current.swift */; }; - 11157DE47B322BCA72356E25 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 1137853C143EFCA34A542E73 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A51F31391447E13718ECF7F /* UdpTransceiver.cpp */; }; - 1162E9441073AA4F6A9DF60B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 1165E688A7E875307F3B84B5 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17E2F182F3B77EE5965C3F59 /* TestI.swift */; }; - 11A6C2F6E64486155B43522C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F47009097AD17B454D6780A7 /* Test.ice */; }; - 11AC317527695E10D90CCF69 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 120C3846DF526D2CC01C6BFB /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07391C2F2F17BEF451562D52 /* FileUtil.cpp */; }; - 1220A09A233ADD19F5B63EE2 /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6CE4D7AF84FCCEB30AEE82D /* CommunicatorI.swift */; }; - 1236014A00E4E01EB379A952 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 069D6D873DB12806A4A9705F /* Server.swift */; }; - 126C849738AF6323B384E086 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 1277130DC1A6B2D74FC034FD /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 12E0C4C963DF5E2A484ED2B9 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4077CF4E039DFF0D6A22D3D /* StringConverter.cpp */; }; - 12FE3D9CFB6D51E9A2F18E5F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA38B6705BC845C06AFE3CD7 /* TestI.swift */; }; - 135912851A957FF91A21D58C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 139F52A98D1CCD15770A0116 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 13B99C54525FCB5D99763D7D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97E99C2AEE0BD9BF770175D4 /* AllTests.swift */; }; - 142C7687076AAC2C8C72C5DD /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B24624FBC0D46B2E71D96A /* CtrlCHandler.cpp */; }; - 14364F4CC32A010ABCF07B23 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 145F9CA921B6F461C83FCAF5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 1464A58CDA48D7EDC7455275 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80C813147DFCDC62BE24AD6F /* ThreadPool.cpp */; }; - 14746EC5AA5E6852B4CF1A09 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 147A63836AD5956D3ECEC6AC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 14AF48A72280B8084D647D69 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 14B4462CA4B8DAC51CB9DFAB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8131692BCB1B7FD451C01F8B /* Server.swift */; }; - 151FB7FCE5B2462B0BCF9275 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C38FF5F290399FD2A575BC5 /* Incoming.swift */; }; - 15306E705C2B126FDFB5E91D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7E3DA05928304B5AC220E13 /* TestAMDI.swift */; }; - 1551FC173CF39E02CDA0795A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 043AB17C4C069B93FA1E7D41 /* Server.swift */; }; - 1577BE946FF741D2C8024A12 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 1578DC0DA374E3252D218246 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 11093968C1A0F59042CD7D5B /* Test.ice */; }; - 157BCF7102A1CE6EEDEF5F29 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 15F7DCC09D0084F0822E576C /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B972748A398232A92FC108CB /* Buffer.cpp */; }; - 15FF52207BB3A882D4ACAD44 /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E18A66D20FAB52A8017CFEC /* PluginManagerI.cpp */; }; - 1662721D0ACE871AF8158F52 /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CF2439A128695F8D08C60D1 /* IAPConnectionInfo.swift */; }; - 1679AD08C0C9C2C1F16F34D5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 1689503B258341EFDDE5BE0B /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 135C5232085BDE2604DFEE21 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 16A39D292B555A395D8043FA /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AB45D97CBDA0FAEFF65A6AE /* ConnectionInfoF.cpp */; }; - 16C00F03E881EF04CBC89C27 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 16C3FFA9C9C70E9616892007 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7966445621B396BC50FEFDAF /* Service.cpp */; }; - 16EF4C28DFF84F79444B5AF0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 89430DABC966D657CAA11785 /* Test.ice */; }; - 170C4CFE00C77FC6EA64CB0E /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2437C8A597A1CE438BEDEC3D /* LocalExceptionDescription.swift */; }; - 172ABB0861A43489EBDB94E5 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F94A73A9390A0C781AE4A324 /* IAPEndpointInfo.swift */; }; - 175A82560F6DAFF08F73E180 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 176FA0D9CAB57E17A1B6D457 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D097943C4BAC00D7111D073F /* PropertiesI.cpp */; }; - 178CDFD5D67D59A011CA09C2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5248E12595EE33145909A5D9 /* AllTests.swift */; }; - 179758EB67CBBAB3D244B28A /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92E658D78C379EAA3ED57897 /* SlicedData.swift */; }; - 17C3F67246D0DA4164CDF041 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 248A46E1415A6C79670BA017 /* IconvStringConverter.cpp */; }; - 17C7F68FAB5E3D3EFE5570B5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 17EE7DF3C192B5AAAA088776 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 1846C4B6AA0740E353A22F81 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59C46080488C352EA3B5E078 /* ServerAMD.swift */; }; - 184CCCDE951AC454A534BCE7 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 61F67EA48B40D8217803F572 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1850762506CBCC3C99978655 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B570B45B289F7B6C00BF559D /* ProtocolInstance.cpp */; }; - 18795A6D49413B4DD3261EE1 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E2557828DF2EF804720B5DF /* TestI.swift */; }; - 18EB373F03969A5726EFB480 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83F50C58BF53491B5A2519D6 /* SecureTransportEngine.cpp */; }; - 1903737A0771106A96717857 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 190E4907D07E6FEA0FDAEA14 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 191571E443B658986B332140 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 953B936F6C84AD4413F0837A /* Connection.mm */; }; - 191F66CD348B3CBE7EE7FC2A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3089717B2724FA70B62A07E /* Client.swift */; }; - 19DEAFA41AC58B52F3270072 /* StreamConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9082BACB853874884EA0C9C /* StreamConnector.cpp */; }; - 19F695F5B7F0E3C2C25376C9 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CF5F747C703C2E26BCF3A54 /* Connection.swift */; }; - 1A0421740818EE069D0CBEC4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 543206D99800E30AAB5B257D /* AllTests.swift */; }; - 1A4A097C8ADF70A2A325F054 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 1A5155B3EE7D2B39FE40516E /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D731F95822FEE54CA546BF4 /* ServerPrivateAMD.ice */; }; - 1A9B2F9F146CEB43F63FAEE6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 1AB0C9E8A36E7177EB9A0B18 /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DAC9DE9BB0E7BD3C95B7C6D /* OutgoingAsync.cpp */; }; - 1AB8E91259048E7AB1876ED5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 1B7FB8AA326578FE9F3B8CB6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 1C12F304FB3287DB86E42E86 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A542194ED490F2D450FBE00 /* CollocatedRequestHandler.cpp */; }; - 1C48D09188909E044E72FC0E /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = A1D1560CEE1155BFFA1F9B22 /* TestAMD.ice */; }; - 1C9A0B565CB0C871EE3CABAE /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66EBE19FA36E23B906766A85 /* WSTransceiver.cpp */; }; - 1CA4763ACFDDB34614425869 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DB36F16689B898D5396DE89 /* SSLEndpointInfo.swift */; }; - 1CA9F9E21052C7E3766D8BD5 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9ED8B6B4E62F9D71D312B66F /* Value.cpp */; }; - 1CAB9532A1CC8144816E56CE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7E2F05661007A6DA5ACB1A9C /* Test.ice */; }; - 1CD23F61AA300C404E3EDF16 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 1D0BF0BD29DB97D61C0675DA /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50755E3F26CA6D9CC706FDC /* TwowaysAMI.swift */; }; - 1D0E1556A7EBC4B9E8C96B54 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B07EBD95BDC4C8F2D8598B89 /* TestAMD.ice */; }; - 1D1E1580C280FCD5F7E083C5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 1D6832EE3EF206F282899D92 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 1DB5F39372C7C1710966126C /* TcpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5A9928AEF2ED41ECB96691AF /* TcpEndpointI.cpp */; }; - 1DDDC080F31CA429D204E8A6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 1DEDDDBE872929D306A93333 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E69FAE81A29C4237DF3017 /* TestI.swift */; }; - 1E143F0DD1082A6A97CF4F78 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9DAF4E6A6A0734D36C7039E /* Server.swift */; }; - 1E44E9A0E1B2863ED614F14C /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EDA02B0B44B95EBB2841F9 /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1E48B791A1865EB55D9284DA /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 164143EB3C130B0FA5630E59 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1E53540A9D41DF7E0577619C /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DEDA8D23AD6801409BD6D10 /* PluginI.cpp */; }; - 1E7FC6A3FCC753DC5AC50711 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = BE336D44832D3B066ECDDB06 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1EBC94A168E5CAF124CF1E33 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 977C1FE11405DDDBFB5775A2 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1F093643851476294E4DF1C8 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A500C7A9434EE6B7B6007E2 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1F72EE3605E5F8F02FDE798E /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 87EF303B4F48EAFE426CB832 /* Key.ice */; }; - 1FA9E9F00108DE8B22E3C509 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F7B24CE59A1F99506ABFA9 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1FFF30D901F9DB44501ABBF2 /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 873DDDDA9C1B2827C2427670 /* OnewaysAMI.swift */; }; - 2013749497D255BA483932F3 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3A90857F1CD31FC2193C9C89 /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2050EC34186FAE6CB7F93137 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E00667716A1C103FAC5F4862 /* Glacier2.framework */; }; - 20CBBB3E58A156A8A7EE646C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 20CCF9BE9008173E34CA8E6F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B0A74331F696DA324EE12AF /* TestAMDI.swift */; }; - 20E0EC9B72ED0F188C3CA3A3 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7E5BC150A7E6BE558ECEA251 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 20F5F1E6B7E664860383BA12 /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 925C43BB0C5ED12BA8492EA3 /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2113DB3454929A04F837BAD2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A18E1A90F712D013DEBAD12 /* TestI.swift */; }; - 21350A5903CD4A412B2D52EC /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63EFA6A9F175C4F63D612486 /* TraceUtil.cpp */; }; - 2158F7AEE895DE6CB59909EA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 2167F438E88BB33B0802C78E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 278EEAB3360C6F45AF0BA345 /* Client.swift */; }; - 217A42A3C9F0FB086E7DA7AE /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFE318F6CB3960BD10185486 /* TestI.swift */; }; - 21886F50FD91B7CEBF441CBC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 218C0D1499948F72482D3D56 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 21A64A28833A269C102EAE91 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B396B2BC10CC618A54890177 /* Test.ice */; }; - 21B635C52B34460B49A820BF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 21CE84AB07B159ED0708EA76 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */; }; - 21D837952971440E5EB330DF /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41F405B3502079EE7591BD56 /* Communicator.swift */; }; - 21DEE1870E95B360F902116A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 21F24DFA62F1079EB03EF7A9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 17D15FE0C359907D9E73E508 /* Test.ice */; }; - 223A3C463C46FFB1A1C7A729 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 224D05F8A42170C8A0D3E680 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 229EC81397D523D3DF52FB8F /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79ABC993469B3E7832F12F25 /* ConnectionI.swift */; }; - 22FFD2A3F595ED46AC2E0958 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7009D84B5EA234435C031C1D /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 233CB26F06DE77C312AA14F2 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99A0FA92B5EA56DCB41FC92 /* EndpointFactoryManager.cpp */; }; - 2380BC330BB2CA8F85F10D07 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 238D6984DA57079300B269A2 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6EC196F1092D9A40472D0F1A /* InputUtil.cpp */; }; - 23B13295432D1028F187ACBB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 24117E70E408C9928171B08E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 2423BCF238AC6AD81B79A39C /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 065B949882E18BDEB1485FC1 /* Registry.ice */; }; - 2428C45CF7F8C77251D81519 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 244925B2D61D7DD174403486 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = C42E3590E041824F3DCB8EB0 /* TestAMD.ice */; }; - 245F0A9E8E40E18DCE5687C4 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A38C5090BFC9479B5774794 /* ProtocolPluginFacade.cpp */; }; - 24764EDFE67BB619256DB8A1 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D98CE77652346A9B41B4831 /* IceGrid.framework */; }; - 25329B0342BB1E2B45C4589C /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 748EE12499322EB81A8498E8 /* ServerPrivate.ice */; }; - 256B36A1C395209309ECDD5B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 257953F655C3275C12048FE4 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 74C18BC9905EB667A2B8518D /* Test.ice */; }; - 25821E0287DE5D6CE40099AE /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08733FFC27D163E7A610C567 /* NetworkProxy.cpp */; }; - 2591DF29610555BC8F376399 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7966445621B396BC50FEFDAF /* Service.cpp */; }; - 259AFF67FB76BBAD098ABE7F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 25ED7008DC9D4BCB5FB028A6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 260604829BC6EF368BC06F2D /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */; }; - 2634FE2D98EAED5260B52D13 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = D447784B77B4412B60FCFC03 /* Session.ice */; }; - 263A1187B3AE86850045620D /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A590A314799E84457E6B723C /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2663574BFC2BBB885AD1EB71 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 267222EAE40D9DA3C9C180FC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 273746EEACA57E9DB33DA124 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238D7DBD94628C8E32119E5B /* IncomingAsync.cpp */; }; - 2755D9B24F7C3B1826BCB535 /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1026DA33ACD08DBDEFF45AC4 /* EndpointF.cpp */; }; - 2787D9A27A2FB75C90CC0FFF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 88E0874AAF62BEBDEAA903B2 /* Test.ice */; }; - 27BA709F3829857FAB6A5F06 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D64D7DE7F59927CC720908 /* ServantLocator.swift */; }; - 27E037D96A065A7E61ED5B6A /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A28E723AB3710F4B62B6B303 /* Exception.cpp */; }; - 282A071C3C1DFECCC4D2FBEC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1962FCE8C13AAA1EDB246D78 /* Client.swift */; }; - 28540770D6ED1942FA05F49C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 287C4F650BFB6E84F2D89401 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AEDF0E03E10480338D6773 /* ServantLocatorF.cpp */; }; - 288240CF1E01298A40C9E48D /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5AE3DC5C68BCF7B63AA95F6F /* Metrics.ice */; }; - 288FC7EBB1C6D1E680D6DB20 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF00A0B8905692CA5CB21851 /* Client.swift */; }; - 290964CF22C53C93CA53C304 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A558073E4D0060993986E950 /* Client.swift */; }; - 29137332A16C86118EDA1E2C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 292B54AD7E6FFDC4750B5A0C /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF3426F5F604EA6AD6D67FF /* Instrumentation.swift */; }; - 2967E3FB8D599E3DACF4AB60 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65ADD8278D737094AD85D73B /* InputStream.cpp */; }; - 29756C9388DCC609F53AA0EE /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 29BA36D3727D013D7AE3B759 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7E2F05661007A6DA5ACB1A9C /* Test.ice */; }; - 29CCCB984235038F1C23DE36 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2321024BC76972FDBEF190 /* Util.swift */; }; - 29DC460D1F6252227B4576F9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 29FB77B26D54802EBE61E134 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 2A15060058139663E7821C80 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 654CCEC599E0A9552262BFF6 /* RouterF.ice */; }; - 2AB59934F0DA4947BC3C7C07 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 2B1DFFB2FE624C8BA6D79DB0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 543206D99800E30AAB5B257D /* AllTests.swift */; }; - 2B5C13822C5D5F8528E32C06 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF6712CD8911F10A5971E9 /* Reference.cpp */; }; - 2BFB4191B7AA1DBC081B52C7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5292AB6BD873695825E1758E /* Test.ice */; }; - 2BFE2D6E0DC4F32FF78CFBF9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 2C0BD819B021415A2B55D8EF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 2C200E9E10BFA312E9E3F9FC /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 990C9617CC26B0961E520996 /* LocalObject.swift */; }; - 2C9B5DB375D29D5992FC98E3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4E2510934C92262E6420D091 /* Test.ice */; }; - 2D66BB6DC37B603C1EB91D29 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00AE826AA0B6D12DE8A593B /* Client.swift */; }; - 2D871DDE4EE8354CDB49D4DD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 2DA654F14912D79AB6E74AB1 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0F99C57D798B822698572DE /* BlobjectFacade.mm */; }; - 2E45A5F32909E7742E003A3E /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; }; - 2E5FECEFC67EFE074A3606FF /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 94750ED6B82F0F0C0E7243D1 /* TraceUtil.mm */; }; - 2EBDF9888333DC98CEC4904F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 2F4C30CB0E62214A96149D20 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 2F63AB037755CC57F2AA51F0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DEE9BBFD65F9CC3DD2E91F5 /* Client.swift */; }; - 2F65C8A9D24FB473F2B67BE6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 2F84AF1FAB750DE9223E27A1 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = ADEE63F9B0ACFD0462CA86EB /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2FD71F0C1BBFC6EA7B19AA9E /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B33CD6B53C345AC42929BAAC /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2FE5B3C36CA225765D9553A0 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 700EF0543089A6F52A51D7E7 /* HttpParser.cpp */; }; - 3022D517E87995A09D4BC94B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 303B30C955BE042B6D833660 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 615E8464EAAEA906EF0953DE /* EndpointI.cpp */; }; - 306A67A7A82BE1F3FD206BAE /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7A933D36328C77B1C03028B /* PluginI.cpp */; }; - 307ADE8C6F9D5E0713B0F416 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 308BD566EA908CF247563DBE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC8C2F843887BE982892CC85 /* AllTests.swift */; }; - 308BEFAA1E891A3CD98EC312 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 585EAAAD1DD963A893315BD6 /* ServantManager.cpp */; }; - 312CC70877750CBB72C8F7E1 /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E67BFC86E01DD26387F81954 /* CFNetwork.framework */; }; - 3134465808476C2B9AF5A1E7 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 31404AAF6DED540CAE1C7082 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02C7023576B21B0B085453B7 /* Initialize.cpp */; }; - 317770D521D6E3A64899EBDF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2725188194A8D2470DBF46F5 /* Client.swift */; }; - 3198230FECD6917F1E54E9A5 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4EDA8B46CA1A0F1CFC1E283B /* SystemdJournalI.cpp */; }; - 31D90E02CD1D5F627995B0C4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 320718ACEB70681D16ED8ECD /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 324A50B00D435D4EF19DB035 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31CCAAEF9A0D8BD94D02FADD /* DispatchInterceptor.cpp */; }; - 324DE06DE3737E59D4BA2BB5 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D8766C6DCAB7BABFE071D77E /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 32A5401BCBDC4CE0B1FF428B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C6D0DC6E65F5AE88EB1701F /* AllTests.swift */; }; - 32F457506BE4112346FC25C2 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = A1D1560CEE1155BFFA1F9B22 /* TestAMD.ice */; }; - 338D3B703A9596B37A9234FA /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D30AE0D95CE0B8136368F33 /* ObjectPrx.mm */; }; - 33E46E944D89D0AECF0AEF10 /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B05047B0A67FBB7433C356E2 /* OSLogLoggerI.cpp */; }; - 33F02CA9F06C15FF0FB76A2A /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */; }; - 3419C76A03E29460F60A10A9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6DE61C2A91224378F513C93 /* Test.ice */; }; - 34985EBE9C50CB06AA64D8BA /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2AB45D97CBDA0FAEFF65A6AE /* ConnectionInfoF.cpp */; }; - 34A571D18E90FAE9D06B69EF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA2F862F15E33C84D1C777E3 /* TestI.swift */; }; - 34D7D317ECB499DB09F9F639 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 34DACF0F45A29B2FABF70BD3 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF5C1DB557360C9F09A15BB8 /* UdpConnector.cpp */; }; - 34E74A2BBD7B7EF71BAE9A2F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0205F3DB3D2A802285F11C8B /* AllTests.swift */; }; - 34F29F31D596DF12B4205EE6 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = ADEE63F9B0ACFD0462CA86EB /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 353989250D7F2EB99BA92BF0 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E29D53CB33DDBF93C9D34C /* InputStream.swift */; }; - 3553F05E74B10F4A5FE9C0AB /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 700EF0543089A6F52A51D7E7 /* HttpParser.cpp */; }; - 35593D1DC9FD62BACFE5C054 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 358524F4B7865BB4AD77E7E7 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2BADF2E71C4E31C2545EBD7 /* PropertiesAdmin.mm */; }; - 35C5A534D7AC3BB2AA85E2F3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 35EB6B845246A5713F9BBFD7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 35FFB634E9D15E5A4D978C9B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD7C6AB26C45ABFC92DDB247 /* Server.swift */; }; - 360716F34BAC49A2B2B4B1B8 /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43931C1667BC9E1EB9EBE642 /* ImplicitContext.cpp */; }; - 363083682BE458B2B4FBD36B /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31917CC0A13FF7C85862B2F0 /* OutputStream.cpp */; }; - 363EBEE0E3EA26AC3E81669F /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BC454AFBA15995FFFE08DBA /* Protocol.cpp */; }; - 3697A9BB3D6A517328B6906D /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F844C21E5E941FB173DD616C /* Instance.cpp */; }; - 369D5C2414ECF2E246C78737 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC33F4F1A32F4DFE8EBB12A9 /* PropertiesI.swift */; }; - 369EF3D5503B14589E768982 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB330C24F7E1E7F765F5B40D /* Client.swift */; }; - 36C3EC4400DDA8402ACC6AD8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 372F513478AE96A9B02E1E28 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6CF5F747C703C2E26BCF3A54 /* Connection.swift */; }; - 3739D48403F7B64A879F8FA2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3979D5422F89387622D2651D /* TestI.swift */; }; - 3743992806B7567EE7D64284 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8131692BCB1B7FD451C01F8B /* Server.swift */; }; - 37969434CF573FE2E107DC30 /* Connector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97E37D3215AA9BB8DD87E7B4 /* Connector.mm */; }; - 379AFB2D0C62F742312A463B /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8288E572CC1605192A1F1696 /* WSEndpoint.cpp */; }; - 37BD728FB36E968AE9008EA9 /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8044616B12D739F37275B163 /* Logger.mm */; }; - 37D41A2F3CF119CC39F8222E /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 79E564BB39566F3CAD8B878F /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3820134F1B35B1D1E92E600A /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B0C61085F906AE19C4D73ED /* Logger.swift */; }; - 38398D28689BE1AE27EFDB06 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF38F1C85E466EEC07C46EE0 /* RecMutex.cpp */; }; - 38629B5251A9DBA7CF2F98A3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0C70BDF91875EC6706AE12C /* TestI.swift */; }; - 387A307046DAE74D4B359D90 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 953B936F6C84AD4413F0837A /* Connection.mm */; }; - 392B692E590FF92F563A91BB /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4307C8F5994221221EAA83D5 /* ObjectAdapterFactory.cpp */; }; - 3953A1F48B71061302B559D7 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B2C1876280F446CCE7B816D9 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3995C27D07CB622FE667FC3E /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5DAC9DE9BB0E7BD3C95B7C6D /* OutgoingAsync.cpp */; }; - 39989167034C3272CA3BD987 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */; }; - 399B3AE9CD7D52AA3D974DF7 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0F1C0C87F3118B4B5673E1 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 399E20453F0FFA4DE48A30F6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 714EC172B42055EC5BF98E11 /* TestI.swift */; }; - 39A91BF44E483F22FC43BA29 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0CBBD39BB0BC5077AC80C4D /* AcceptorI.cpp */; }; - 39BFDC307D3D2D55B1FDFB50 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5052AC8588F0B21D8BE3AD20 /* LoggerF.cpp */; }; - 39CD88EBD62959CEE9CBDF5F /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D62D9A3A91168A2CA52AAE8 /* Endpoint.swift */; }; - 39E05A2E3433BFBB8D58681C /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89C8AEE905086856134C860E /* Collocated.swift */; }; - 3AAAC42656BCF859E342EF5C /* libIce C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CD9C4FF6B42F14CAB807960 /* libIce C++11 macOS.a */; }; - 3AB574C22427757199B86CE0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BDD768C41EE98F60B1ADFD6 /* TestI.swift */; }; - 3AE2B565314D08D3FF70C3B3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A18E1A90F712D013DEBAD12 /* TestI.swift */; }; - 3B719984FE998AA0FB6BBDA3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 3BA7B0B434E5E02B9D750C0A /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A53A47B49B4866AB8EE69620 /* ReferenceFactory.cpp */; }; - 3BD7F3DCBF353531853B9787 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E73A61A877F2E6823B7907 /* TestI.swift */; }; - 3BEE80BD6285446BA2128FB4 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 397D6E5EA9E00485DEEDF569 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3BF9E4CC841F0653549B0515 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0F25A5B87F1D6D4DE443C3F7 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3BFE460683D8559E6A8101AC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 3C02844A7DAA17DDECD68687 /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 248A46E1415A6C79670BA017 /* IconvStringConverter.cpp */; }; - 3C02A4508CD8276D0BC6AE3B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 3C28C8DA74A1C7BBB8E86B74 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = C9268509E17D41945A7D998E /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3C37A292CA67085CEE563AB3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 3C6D235D0D6DE82E42EA4632 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = E73324B4E2A13F9EFC446206 /* EndpointInfoFactory.swift */; }; - 3C7DA4CD086A31722B14C6AF /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CABAAA81FDF2158619AA51BB /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3CA9BFC67A994E2EB8C16368 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 3CABC75D222B03775270DA8E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 17D15FE0C359907D9E73E508 /* Test.ice */; }; - 3D040DD5FCF7504343A2EC3D /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D731F95822FEE54CA546BF4 /* ServerPrivateAMD.ice */; }; - 3D0B4C2019194618E9AE34F6 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D075D441DE8B7DA8AA330C5 /* BlobjectAsync.swift */; }; - 3DACF73B85EFF125789135F2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 3DE78F344E8540CDFD5B4254 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0542741E3D6987968EDC3A03 /* ObjectAdapterI.swift */; }; - 3E092E58009E2A1614D58825 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 3E32C2500353BC9AB51D92D7 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7A0A8197B967AFCB434D4FE1 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 3E3965C73F6867AEEA31C03E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 11093968C1A0F59042CD7D5B /* Test.ice */; }; - 3E74B978028C2095E79EB6F2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 3EB594D7B8B6AC35A80F6A4D /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63EFA6A9F175C4F63D612486 /* TraceUtil.cpp */; }; - 3EB9B210291BB7557E04374A /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78B6F5E512D86BC4BDC8026B /* Object.cpp */; }; - 3EF0398FCB4591E2CDEA2FFB /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 01CD17E5927E812D8DD3EAC1 /* TestAMD.ice */; }; - 3F0925A3511C364792909CA5 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0DB36F16689B898D5396DE89 /* SSLEndpointInfo.swift */; }; - 3F0A65C9CFB288F98E19799B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 3F118C82349E685F75AA3C92 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 3F75A94E0EAFD519FF1BB253 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B0A74331F696DA324EE12AF /* TestAMDI.swift */; }; - 3F924E5914B4957FE3C5D13C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDA15621A632772E70EF9DE9 /* Server.swift */; }; - 3FD5E94297204866ECEA47C2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 3FD8F288D9C3AED2649CA04F /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08397788AB99AF6585C187A4 /* Endpoint.cpp */; }; - 3FD9D1D3C10723136813DBC7 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C0093783F41BC3D488E98600 /* Test.ice */; }; - 40094C3EAB990523863BA5E8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 40645501AF8502F567C28FEE /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7A933D36328C77B1C03028B /* PluginI.cpp */; }; - 40700CF27FB897708C8E3FC9 /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B80DE963F4B8A8CE7A086F4B /* ServantLocator.cpp */; }; - 40F02DB514B3FFB0C0706912 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BCB9D60D449CB2F6D37702 /* AdminFacetFactory.swift */; }; - 40F08703FA8A937D09706386 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC52095091A14C3F13099644 /* OperationMode.ice */; }; - 411E513F993E091CB1E2AC4F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 323B42FB5AD8FC12D8AE7CDE /* Server.swift */; }; - 412F52164B8A9A3BAF19EBD1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C265F58DECCDAB36E4CD6A6 /* Client.swift */; }; - 41359D3BBD5E94768E60773F /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2A2E598EF61DF473F6F1896D /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 4198D33F3732415C4D92222E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 848049457E74A1C8BA343A1D /* Server.swift */; }; - 419A77E8C424CB2E6558CA92 /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68FE5BEC43DB70CE488BA78C /* SSLConnectionInfo.swift */; }; - 41A357398D70D93257339E8B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C6D0DC6E65F5AE88EB1701F /* AllTests.swift */; }; - 41C87D63EE0B4F7119F1AFED /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29114B3DD6DE83F72CE4BEF6 /* TestCommon.swift */; }; - 41E039270E0805499570605D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5AD5A8F56E90F0DF1C96F2 /* Client.swift */; }; - 420559557CDAA1A07D378EA3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 014D0EE5D267E432DA21670A /* Client.swift */; }; - 42401834C114B2832139FF2E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB4A17E1D7AFC814618AE832 /* Client.swift */; }; - 42A86FABE59B3FE293E609BD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 43219B5BB970F1B55CE454AA /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09A12C7A25EC939F04AC6CB8 /* ValueFactoryManagerI.swift */; }; - 433753C318BA6309627F8436 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21D15D6C8E3919123C989D88 /* StringConverterPlugin.cpp */; }; - 435A0B3E906B0A91CC244021 /* Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = BECB73EA046F28161933053C /* Notifications.mm */; }; - 43A06A4A51A4558C24398F0D /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = F0DB50962CCFE3F777DFA679 /* Context.ice */; }; - 43A17B3FA08F9100FE050837 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B643EA2D961B5A046DA618B /* AllTests.swift */; }; - 43BEC394D6019C242A1965FD /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC8043E62037681FA6B23AE1 /* RFC2253.cpp */; }; - 440AA05E3A9604C6442EEA39 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36A3DD415DB5D47F3DD67986 /* Util.cpp */; }; - 4446DF6E15D87AE4822DB2F3 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 60C72DE758D50EEE330E214C /* Metrics.ice */; }; - 44F660CF3E288CADA03C9E75 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C536B3A8A8CD276788EE5A1A /* AllTests.swift */; }; - 4511CAA8C1392A439742B53B /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA44D2D537AF18875B1AF6E /* Server.swift */; }; - 458A24FE79D3611E1E628182 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB330C24F7E1E7F765F5B40D /* Client.swift */; }; - 458E08E5F9B0736BA438BED1 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */; }; - 458EF9B014A0C7657AB8BD60 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 145489AECBBABC46B13BBD6F /* ObjectAdapter.mm */; }; - 45C087E01EE697577A42E469 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31C92631DA6DA4BADFE8C59F /* EndpointFactory.cpp */; }; - 45D397710D514A934510642C /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F0E8376C2AD9B7DDE63D13E /* Properties.cpp */; }; - 45D97239DCB34F0BBA90095C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 45FCAA660699E603A4291A08 /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 79B44ECCFF08BDD9E83A886B /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 460166E775382AF887D095F0 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C520CFEA9E7F6ABF0BB8DEFE /* LookupI.cpp */; }; - 461823AD45D5FBE8BC6E9588 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5CA31F719AC415E991FB8790 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 46D59D884D1C0E7DC99CDD01 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 46D6175F2BA05EDE03AE80F5 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A84471908266098F39B2D842 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 470344329175105E480A6526 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 4714CE6112C1E40B9171D952 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A500C7A9434EE6B7B6007E2 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 471A21D3CAA2EC4182B2D2DA /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E07F2808B7ABBDDF36A6614 /* Controller.ice */; }; - 474229F67C964ECBC86FFE44 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B722E075AEEBEA3D471A855 /* ObjectAdapterI.cpp */; }; - 476EC843AE77537D626FB504 /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCC0E3729F4A0124693C97A /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 477F9ABD3ADD138056741BCB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A19D8983C8F5E4BF02AA82C4 /* Test.ice */; }; - 4786ECF6B6C742E04D341284 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 479CA0789624646DFAA32548 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 102C8EBB7B156230C64E8D84 /* IceStorm.framework */; }; - 47E530BA383A469D57F3AD2B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 480A168967EF40F23CE23AFF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C30A1A1C29802757EAC98B0 /* Client.swift */; }; - 487A5360D29674F9324E6A81 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 487D841EE5B42671944AE28A /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 24EEF303A9F8E4869A064E55 /* ClientPrivate.ice */; }; - 48D6D2B0D802B078BA554DA9 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7F6F6014A25D3EA8088D4D /* Collocated.swift */; }; - 49071D3B86174CFAA05E7489 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8C536D312B9304B2D44C277 /* IPEndpointI.cpp */; }; - 490A47684F9522DA0EB3B71D /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C4AA43D47071643F9248425 /* ConnectionI.cpp */; }; - 49301E54077F72EF4C17EF94 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E00667716A1C103FAC5F4862 /* Glacier2.framework */; }; - 4954FD2AC663B8C418A39FEC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 495A47AEE0C8881638302999 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC332916E29C4DB70EDDC09 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4963E6A2F3B94627BD3C2122 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD9A6F271F1D24C181329DEC /* ConnectionRequestHandler.cpp */; }; - 498FC7DC4E527F8D28C5B260 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 80C813147DFCDC62BE24AD6F /* ThreadPool.cpp */; }; - 49F7CDDFA1E4CEBE301FAD6E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 49FE39730C4806DFB684E9CF /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 58A46161AB366B92156533D6 /* IceDiscovery.ice */; }; - 4A1722F2B254F5A7C51DC5C7 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E70AFD8DC408D542FD307AB5 /* Instrumentation.cpp */; }; - 4A739393CA5A4D3034091082 /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 09A12C7A25EC939F04AC6CB8 /* ValueFactoryManagerI.swift */; }; - 4AD65AA33D07C3122665572B /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85A919E5EEB0EC42C4BAF17A /* Options.cpp */; }; - 4ADF224365C51AD0BE287779 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20BCB9D60D449CB2F6D37702 /* AdminFacetFactory.swift */; }; - 4B17AEDCE912654DF4F1B81D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D90B76046F6620FA39EB66FA /* TestI.swift */; }; - 4B333E3B2B1960B959792FF8 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 78B6F5E512D86BC4BDC8026B /* Object.cpp */; }; - 4B35254B4B03D338C27D1448 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292810AEFEB4C7B5B49D1C98 /* RequestHandler.cpp */; }; - 4B3D0D86BFA72510F02B26BB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A321E613C2308FD17E0C2E6D /* TestI.swift */; }; - 4B698F4BA047FF7356D9D7FE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E498B9EBD907E4FAD93351F /* Client.swift */; }; - 4BF6604BC790A31F1C67EAB5 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29114B3DD6DE83F72CE4BEF6 /* TestCommon.swift */; }; - 4C1FE5673C9DCFCC6C521681 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EEC8F950880BA5D14A58ACE /* AllTests.swift */; }; - 4C3E68F02B2C9BD2C28A4D7F /* TcpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A72C73AF071E66FC94B9C561 /* TcpConnector.cpp */; }; - 4C49409A75762B82E4BE1007 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BEC5A912505A2D0739F41AE /* Collocated.swift */; }; - 4C654FF1266E98B906EDCCEC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 4CC927F5A9DB3DE178615D2E /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C14840E2D26E13A7C5D6AC9 /* OutputStream.swift */; }; - 4CF9B8FFCEC00582965D6CE3 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 540A7B3104F684B945E4E393 /* MutexProtocol.cpp */; }; - 4D11B7270E733B4273E0FA5D /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08F114BAF6B711459E6438F1 /* ConsoleUtil.cpp */; }; - 4D273679B85FF12E509E9C70 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFC58AB4E1C5B5964CD9F8D3 /* UserAccountMapper.ice */; }; - 4D4E22B2077F9937C031C5CE /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FEB045E2BE5B2791729997F6 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 4D60D0B72D3DD34473145C7D /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6297BCCEF80EEAA0E5BB22A7 /* ConnectionFactory.cpp */; }; - 4D6DE19AB3C8A36450960C2E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 4D90AA0165758DCA6F4E5573 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27B24624FBC0D46B2E71D96A /* CtrlCHandler.cpp */; }; - 4D9C2C7F08BDCED4939C8CA4 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2967E04C4326091B1910DB93 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 4DEC9591C46508E168F67B6D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EEC8F950880BA5D14A58ACE /* AllTests.swift */; }; - 4E12B6B1E647A3BBD18FA3B6 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02C7023576B21B0B085453B7 /* Initialize.cpp */; }; - 4E52A5C6A682AD06A560D8B8 /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 60EDA02B0B44B95EBB2841F9 /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4E5F2B5F0189D7BFB17FD725 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFBB16D3C8E2986C4EB8D12D /* Network.cpp */; }; - 4E66421B983A52C43625EFF8 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = EFDF1AFD3FE00EFB8D0F40DF /* Properties.mm */; }; - 4E79D345C7D2A366F7D1715F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F90D823F008079DDF85638 /* TestAMDI.swift */; }; - 4EA6D84C757D5BE591C26638 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 4EAD393284CCF137A487D040 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 09486704DD4EBAC0DD6677C8 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 4EC88C92AA0FC0A517F3C9FA /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE732A9CB17BA09E4B52F143 /* Transceiver.cpp */; }; - 4F3613958F9EE0BF75AB64C1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 4F4F9325271124005C734F42 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA44AC521456FBE35AC0D96D /* UUID.cpp */; }; - 4F9F8F0810481C81391D8CB5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 71C219D846F1B5B1FDD3578E /* Test.ice */; }; - 4FE9ACBEB15A45D193EF97D2 /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FCC0E3729F4A0124693C97A /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4FF9C92D07C52E796BDDAB09 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 508534B8EF19FD5FEFDAB249 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 508E9C24CD856630898F556C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367F5C787891BBE1B298343 /* TestI.swift */; }; - 50E08BF2848339F9284E25ED /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D92A55DB4A2264AEEDC97D5D /* ImplicitContextI.cpp */; }; - 50EB15A0D6DF626B6EE6F2B1 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3159C7F956674DA8F082423D /* Base64.cpp */; }; - 51118B71D7D03F9E63CAAC8A /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28F6EBEDD7E3BB7D5EA9FBD4 /* ObserverHelper.cpp */; }; - 512B06413F6FFC00EF9E639E /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A9E418725A7536BFB1BF5F9E /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 519646A83A47B52F8323EEAD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 74C18BC9905EB667A2B8518D /* Test.ice */; }; - 51B543350C9BC2DEA824F676 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5124560E2C8D4CA6F32B121F /* ClassResolver.swift */; }; - 51C24535F43ED7568BD3C4D8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 521F04B4A86C343DF07CC55B /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5042D96FAC79ED86972DEF0A /* LocalException.cpp */; }; - 525F9365A999DFAFDBB720B3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 52858702FE194D8B2F3FAF99 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB841745F334BE569AAC2791 /* InstrumentationF.cpp */; }; - 52917832550139896AF4EB59 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 52C90CA2DDEC67D745293E34 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62BD73733BF5EF5838784676 /* LoggerI.cpp */; }; - 52E1DED4E3F543049FAF6EDC /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA8D617819FF713F80CE4A0 /* Blobject.swift */; }; - 53344552350017DCCC922BA5 /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BC454AFBA15995FFFE08DBA /* Protocol.cpp */; }; - 5359708A14D3FF5119AFCC16 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = C9268509E17D41945A7D998E /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5385A9DD587796EAE5FC99FE /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D652FBDA58B2A88C9EE9351 /* Proxy.swift */; }; - 538B2C4025C32BF487869AE1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5923FFFFBE73677A77330996 /* Server.swift */; }; - 53CA31576F7B085963D38037 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FBE489334E0ED23D774B550 /* LoggerUtil.cpp */; }; - 53DBB4E9FCB30BF1603CDD09 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E580B9D9CC76D53B7B18272C /* IceImpl.framework */; }; - 53DE8F7FBACDBB37D1DA9101 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = C42E3590E041824F3DCB8EB0 /* TestAMD.ice */; }; - 54393BFF1D83F3E981FC1B7F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 545A7478618FA7277C12C6C7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 54B208E550318720CF0886EC /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31C92631DA6DA4BADFE8C59F /* EndpointFactory.cpp */; }; - 54BAC7C6B5C92629D6E4DEEF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 746535D89AE46CEA581E57AF /* Test.ice */; }; - 54D449931AD3D789593DEADC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 5507F5352871DB46AA66235C /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3159C7F956674DA8F082423D /* Base64.cpp */; }; - 553233BCC9A149A6061D671D /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 053E3EA43764388B8A0304F1 /* LocalObject.mm */; }; - 555CB23B8C24752C88C5B6EA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 558AAB0D9EC1A2AE5831C99C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F32E0BF2C8C888EC8ADD08A9 /* Client.swift */; }; - 55F6F002E5AD62ED4950F9D0 /* StreamEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C91F21E0EC4A9AB95D7E569A /* StreamEndpointI.cpp */; }; - 55FA81E16C3E0400C3622932 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D50C3279384F2AA6BA994E0 /* Router.ice */; }; - 55FF45BCE5599DE5C5C0A73B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 5600EC0B8A694C907D5E70D3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DD7C821443F5E0607D4DE6F8 /* Test.ice */; }; - 5607DD25299446F07752A306 /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CF60B8793F769C8446821BF9 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 560834AD1A197083C8BE8942 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 561077E7B6A5882AF8646B61 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE4880C3857E46FDB8466BDA /* Server.swift */; }; - 56352A4EB5A199C170B61599 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 563FC8ABBBD015DE9C469C56 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A6BCE84AFC62FA7351297E6 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 56455B5C8BE6ECA559D703C8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3548229461616CC182BCEBD /* Client.swift */; }; - 5646AF5748468E8367A8B2B8 /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8DED3CCF7ABF57CB61A22DE /* Plugin.cpp */; }; - 5662E8863A145D1CA6D929B5 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 56AF104E15F9D407777CB4DD /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0F1E9B04036C7A1BB7003EF /* Client.swift */; }; - 56B312059BBB28373C60ECE7 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1F8FE1A0E059D0118539988 /* FactoryTable.cpp */; }; - 56DFADAF1768EA7556E0DDB6 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A53A47B49B4866AB8EE69620 /* ReferenceFactory.cpp */; }; - 56FBF3A9AB42F50ABC6D9428 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = E22C0DF633DFF1F13E530965 /* Twoways.swift */; }; - 570F91544266D4CADF784323 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68A1DF0813FCFD98C103C20D /* ServerAMD.swift */; }; - 57457D4037025A4B24CDAB0D /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 978FF0AEF23EE4E31F7CB0BE /* FormatType.swift */; }; - 57692E85AB50C3FA34A3DDB2 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3240EAAE31EEEE2C1A979DF8 /* NativePropertiesAdmin.swift */; }; - 577DA2B9A1B14718E505178F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 578E85F2ACBF6FE077558453 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 57DF162FC6CFAF34105C6347 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 583A5A675D444BA0B139780A /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = 94750ED6B82F0F0C0E7243D1 /* TraceUtil.mm */; }; - 58731F415B7F60515B1023A4 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94FDF54850CD30639F5F2A76 /* Proxy.cpp */; }; - 58C83AB506FA69E086CBBC6A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AB42DA37A87829961E185A1 /* Server.swift */; }; - 58F654A06BB0AEB3759FA754 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38EBAF76FAFE72C64335C5B /* UtilException.cpp */; }; - 58F819BF5E32F0301C276167 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE732A9CB17BA09E4B52F143 /* Transceiver.cpp */; }; - 590B30F38A2DFC0CAEE33014 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F18DA127CFF3E191C1169914 /* Selector.cpp */; }; - 59139E6E230A3382F1E3715C /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43931C1667BC9E1EB9EBE642 /* ImplicitContext.cpp */; }; - 59227CB2B5242F8633F368B4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 595522F6099D05330116C450 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 96057073F871C88A9A437E6C /* RemoteLogger.ice */; }; - 59651F37E654C8823CEE0912 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0542741E3D6987968EDC3A03 /* ObjectAdapterI.swift */; }; - 596F9AFEEA41228FA193E260 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1C48DE3037CF4AE7BFD44F84 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 59EB77479D063ADC9B2D323B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 5A0055A5ABBBB0D459E43E5B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C0093783F41BC3D488E98600 /* Test.ice */; }; - 5A4FCB52A138384242EC41F2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2CC389E3BAC5C77C6DFC3B2 /* Client.swift */; }; - 5A65AF9F96CF139CF41BECDD /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AE623D75A48D156E4410F1AD /* libIceLocatorDiscovery C++11 macOS.a */; }; - 5A70341D32664BCC9FB6D922 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 35AE9823C665F00939098688 /* Identity.ice */; }; - 5AFA14CFA0D5B2602C25C72C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EB971FEE56EA31F7716F3AD /* AllTests.swift */; }; - 5B030C5AE731084E45F25138 /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEAA1F26027433EC0170129E /* CommunicatorF.cpp */; }; - 5B30A1C7106D235EECD371A2 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E7A74CCB2DED35DB6A1B93 /* Communicator.cpp */; }; - 5B335989737F66B47BE61847 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */; }; - 5B92C39D3E26B89A720C1108 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C37E81FE388B9D7FAB3C7C2C /* Server.swift */; }; - 5C953EC1A4D29E2D3FC233B1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 5D20890C7DD2538AB7E70DB3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 5D6852B070BF3BE58AC082F3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3C30A1A1C29802757EAC98B0 /* Client.swift */; }; - 5DDF39A2B0E18D7BC0644CEF /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC48F3FEB7298E0C6FB9C9BD /* Oneways.swift */; }; - 5DDF47B7BB0721D19F9ADE42 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 60C72DE758D50EEE330E214C /* Metrics.ice */; }; - 5E8CB82E96183A00602D33F9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD76D50BBE665C06B63D8EA0 /* AllTests.swift */; }; - 5ECCA1C3D4BF2684FA6E05D5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C32566337C1211D2262DE5B8 /* AllTests.swift */; }; - 5F133154CDDD2309623DBA4D /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = E73324B4E2A13F9EFC446206 /* EndpointInfoFactory.swift */; }; - 5F4F659E54E72A3923BA7E05 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 5F90BC3E8434F37052D21747 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 5FB0C48B0BB085684D1D05D6 /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08422DB9B8A6F7BEF0B9659B /* SSLEngine.cpp */; }; - 5FB5335AA0332FFE9F80D568 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 601AE55BEB7C928FFF774792 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C4E36FFCFD779F3349E0B808 /* Test.ice */; }; - 60627F6BFDB33527B71F7172 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */; }; - 60729C52D701EE8270A8BC44 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 85A919E5EEB0EC42C4BAF17A /* Options.cpp */; }; - 60BB3AE8CDE506001E498270 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B9776ADB255F1973621C98 /* TestI.swift */; }; - 60DE445CD9C49D62E8D5521A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 60E1A08BF3DF777FE43DEF83 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC2321024BC76972FDBEF190 /* Util.swift */; }; - 60E42FD8D5C59731BADC40C9 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 53A5BF7BE1E27774AE055437 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 60EACE4E3104FF8141E4212C /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = F8AFAAB080FEF12A06662C69 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 611D1E8C0AC59BE838506D7A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA6C41DF9E4B34FCEDC9493A /* Client.swift */; }; - 614BE0D924BF4D86313559AD /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D075D441DE8B7DA8AA330C5 /* BlobjectAsync.swift */; }; - 6160F950A58B054D12D963B3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 619741963C59007C6D22C8E3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 61C4E04534B59B12AA56F750 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1D68FCE2A561F7EC2ACDCAA /* ImplicitContextI.swift */; }; - 61CE9D15ACE85029660C1E95 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 61E7766D0ECA90A3969500B8 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD8ABC24EC401B3963964DB0 /* ServerAMD.swift */; }; - 623015A7A85F5AD04050E7B2 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 358B68004AEA4DEE9CC643DF /* ConnectionInfo.cpp */; }; - 623D02D1C7E5691F89015FB8 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 654CCEC599E0A9552262BFF6 /* RouterF.ice */; }; - 623F35B1EE9BB8F4AEF24A81 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */; }; - 62572F0A0E64E238AE4041ED /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 62B29A312B8F55B653D9664A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 62F5B617CB223589C7FFCE33 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BDA44D2D537AF18875B1AF6E /* Server.swift */; }; - 63469B17D875A7DAAF873C97 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 63568851267BB6756FA339EC /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 64826F8AA2F1B443C0AEFD5C /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6361D79F77A9F19E3564564B /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B972748A398232A92FC108CB /* Buffer.cpp */; }; - 6377BC79AD4C6C18CB585F67 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 688574A0631176251901C5D7 /* ServantManager.swift */; }; - 63A6AE967BECEE6E91432B91 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 63C4D368D4E7394F8C269507 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3D9E5A1FEF7356081B23255 /* SlicedData.cpp */; }; - 63C6AC701FD2F02A5B60DFD8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B396B2BC10CC618A54890177 /* Test.ice */; }; - 64133ED7B6EDF761D206478F /* Transceiver.mm in Sources */ = {isa = PBXBuildFile; fileRef = DE0FE67A381FD4FD9F7DD015 /* Transceiver.mm */; }; - 641C43C2F02D34F279B4CEFF /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C37059709E53268E7C14372 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6427196F2B0891F6524E55CF /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B99A0FA92B5EA56DCB41FC92 /* EndpointFactoryManager.cpp */; }; - 646707A36F91F0631B887A31 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 646D198397E749966DB40E3A /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02CB2CD05CEE1E2166255186 /* ConnectionInfo.cpp */; }; - 648D8D01FBDDE620653F907A /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E35C99046C1F715F4B4E5F /* Initialize.swift */; }; - 64FB14BBAB1B754BA393BF06 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17B4B38AC0363CAFA24A9E4 /* Shared.cpp */; }; - 653850FF0CFE825110E58AA0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 65982AA7C6095AD8475F8D4F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 65A8AF2CF8EE9372DA44FE37 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFC58AB4E1C5B5964CD9F8D3 /* UserAccountMapper.ice */; }; - 65BCEDE5DBB4CD4617C6FF7D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2EB971FEE56EA31F7716F3AD /* AllTests.swift */; }; - 65ECC0458CBF7904A506CDAE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 661618CE4D8FF002E5AD6890 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 19AA73005971E2B69755A399 /* ServerPrivate.ice */; }; - 663230989A239EDB681EBA7C /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79F3ED290282BD409F3522BE /* SliceInfo.swift */; }; - 666B594E9BB773EA22623170 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CE3EFB47219D60018ECBCE1B /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 66AC2567B6670DC2A83953FB /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52B6920962BB40484351B828 /* LoggerWrapper.swift */; }; - 66EB6C5BEA8ABD459CD1C5DF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 6702C6BCF912D1445DFA5380 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 671518A946A0761D8E02FB3E /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 671C5DC6CF676112E82E6E28 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 672AFD89DDBD201DEB56D8D7 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = F0DB50962CCFE3F777DFA679 /* Context.ice */; }; - 6736B7FCD6A2E3A641B0BEEE /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B9B7D2C864B2D316ADE535 /* Exception.swift */; }; - 675820CF4F643F83204FFA1A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE7F0BCED1A80C49DD69EED5 /* AllTests.swift */; }; - 67877EA20DA6A2E11F52B79D /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = 164143EB3C130B0FA5630E59 /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 67958EBA770BFD3838254333 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 44B4CA994280A6DA16BE5B80 /* Test.ice */; }; - 67F343A920ECA0C6C8F798A2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 681283AB3F4D3C57BA2DAD4E /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B80DE963F4B8A8CE7A086F4B /* ServantLocator.cpp */; }; - 68337CBF05C2DA45B34BCE3A /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7847B096AC0D34F6A6A83F0 /* TestAMDI.swift */; }; - 6833FA2587B83E832DF0757A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 6835F2FEC5F2CD79B4938E7F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1D0DCF81BE7E3A82E4C8306 /* TestI.swift */; }; - 6897437304C4DFDB71F0B384 /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8288E572CC1605192A1F1696 /* WSEndpoint.cpp */; }; - 68BE71A6D1A2000E1CCF037E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 57CF891C000E31222368C816 /* Server.swift */; }; - 68E284BBBE9AF0BDC7635E8B /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F07B1686893281A6AD084966 /* ImplicitContextF.cpp */; }; - 68F668E656345A7D9F3D99A9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = A09BB09CBD110F5A9A95C3BC /* Server.swift */; }; - 68F86A82194C13E7CCC45FF2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 69111FD172BDB8E174C7365A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 6918229332F5D5BA6B82D7CD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DF443F93429C08880793844 /* TestI.swift */; }; - 6923B7F3B5833B17B1444A9F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 770F579715615C54D53ABF72 /* TestAMDI.swift */; }; - 693E823DD3F152A5CADF56ED /* libIceDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = F20CF9182023E2AB477F4A39 /* libIceDiscovery C++11 iOS.a */; }; - 698D678767BF41CA11BF7572 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2591D7770A25B731A7D961B0 /* Server.swift */; }; - 69D52BE18FAD6179243A7A8D /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; }; - 6A0314BAAAB1E1D5321D0E26 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = BE336D44832D3B066ECDDB06 /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6A2B255A91EC1F933473BFC4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 6A2E71B1352408738F0F77AB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 6A3DC36E88854D99A7DF1CCA /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 346EA4E8BF5EBE984DAF0872 /* TestAMDI.swift */; }; - 6A40774D61D6CCC937C6AC31 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A47964EE995DCCF12193A7C8 /* TestI.swift */; }; - 6AB4C973B7D16E7747B38FA1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 6AF5EB3E096847C86D409473 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 401D314CEA8878CFB3F1674F /* Collocated.swift */; }; - 6B247546FF2E0F8C92352C81 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6B2E2425DCEABA5C1EA2DBAE /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4321B1EC69E230431008038 /* Connector.cpp */; }; - 6BA413B384BE48782FD4106A /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 63DF48DC6AC320881942F9D2 /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6BCCFE670D1A1A869E4F8EA6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8188FC2EE67FAC79B3DDD184 /* AllTests.swift */; }; - 6BD827012FAC4AC28D8F3086 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3DCD2329D6CC0E7D1A67304 /* SliceFlags.swift */; }; - 6C1F10D34E51D607BD0F87B3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 6C3C0602B1B8FF69F18518DF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1D0DCF81BE7E3A82E4C8306 /* TestI.swift */; }; - 6C9FA9D2501970F08B561AE9 /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA03B082E40C34B986B183E0 /* TraceLevels.cpp */; }; - 6CC623094D0967F02F04F651 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59FC3375D6E90AE4E3134B50 /* CommunicatorI.cpp */; }; - 6D66F60AD807A0D621B4FCDA /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2981BE0BA9E535D4E8738D6C /* SecureTransportPluginI.cpp */; }; - 6D75D9051192FCD409BB41B4 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F15FB749EF455BD7CA108204 /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6DA0B9BB176F6BCCB270A5A4 /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = E400CBFEEB7A5C82AA30E765 /* Process.mm */; }; - 6DB6A62110660F912E3A425A /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 27196B5B3415DF6ED7D4A3A5 /* Properties.swift */; }; - 6DDF0843AEE85A7BC67F6D1A /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F546DCC7DF65F50BED56636 /* PropertiesAdminI.swift */; }; - 6E0F4BA532FBA5A46F06B1E7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AB4A17E1D7AFC814618AE832 /* Client.swift */; }; - 6E3FD5DBDB9B448F1EDA89D7 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC2D223A5415E0568A67FC72 /* SecureTransportTransceiverI.cpp */; }; - 6E6B63060307B772C99F21B3 /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7987BEF538197F4846537BC /* UnknownSlicedValue.swift */; }; - 6E9B566339D8E8339FD384F7 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 6EB55CA35B0042F8907ABB71 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A26B127504B1411F9A44E917 /* Time.cpp */; }; - 6EB9599AA1A7328CB5EEC889 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */; }; - 6EF44198D76492489EEA8B9D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C536B3A8A8CD276788EE5A1A /* AllTests.swift */; }; - 6EF5810F0D6DB1CD94969C3A /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C4AA43D47071643F9248425 /* ConnectionI.cpp */; }; - 6F54ACB5C499213640C15344 /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C4920C3131DE43086740705E /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 7073B348FF70E9085EB2A77D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 7095D0B562AF1399B8AE8E1C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D75F8E6BDE3707D84F90250 /* Test.ice */; }; - 70AB12AD44C972293921A90E /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C4B3812EC86A075A591325CD /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 711B3416FAF9FFD66902D667 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EF9EA920CDA248C30B741E3 /* Collocated.swift */; }; - 71580E5F4321782220583BF6 /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C291B1D3FF41716E62FE1B66 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 716BA3AF8285604C0993408F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E73A61A877F2E6823B7907 /* TestI.swift */; }; - 71B3704D98093EDE2A1731A9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 71E7FD03D2194AEEBD0238D4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 71F4D472DBAEE211AC348305 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA44AC521456FBE35AC0D96D /* UUID.cpp */; }; - 721ABF1FCB1E91E0D979C9EE /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC8043E62037681FA6B23AE1 /* RFC2253.cpp */; }; - 7257C43AB0E12E76E38DB6C2 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 07B40D097E062D485AF3F394 /* TestAMD.ice */; }; - 7284EF59424060A58D2734D8 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F294A7B72FAF1011CB416FA /* AllTests.swift */; }; - 7299858CC411A3BA51EA12CB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1925D4741CC08B26DFD1621 /* Server.swift */; }; - 72BCBF10AB3B8FC119868A22 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3D95F9289578400C8DD7B0E /* MetricsAdminI.cpp */; }; - 732C986A3AE8629CAF57AC36 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 7374F6D453C0207902F43CFB /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 681AABFFA977FBCD95B43311 /* Instance.cpp */; }; - 73AFC54F4D4336070DC87303 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = D16C752C89102255A084815B /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 73B3F11FA4E2E153E1EFCA77 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 73BA33E3EFB8A6AA4EA8370A /* libIce C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EB11AE63135A23028AE12F90 /* libIce C++11 iOS.a */; }; - 73BA63A3CC9DCC9D20E64B64 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E7FD5CE013170C15DA09A31 /* LoggerAdminI.cpp */; }; - 73D741CD871F61247D2012D1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F91A4DE4998C11CD9FA265 /* Client.swift */; }; - 73F09AB536E76818864ACC32 /* LaunchScreen.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = C045207B0CFBEA2826456197 /* LaunchScreen.storyboard */; }; - 74179549A179708EC1F30CF7 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 7451CFE0B0DDF0536B287153 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF698C2D5D97DCCFC7D85451 /* Endpoint.mm */; }; - 74629744424689F013519A6F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 89430DABC966D657CAA11785 /* Test.ice */; }; - 747A63095FC03440BD795862 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FD8ABC24EC401B3963964DB0 /* ServerAMD.swift */; }; - 74B6D0915C42A96499E0191C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 74FC1F8681CD55379E111F23 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DEE9BBFD65F9CC3DD2E91F5 /* Client.swift */; }; - 7506819774CF24B7691C32E7 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = D26101A37129FDCC7F02DE6A /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 75069E7FC7D00B2A003CD5BD /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 38D102721EA6D00E46DBB85E /* Cond.cpp */; }; - 751560A68722B308F6C21119 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */; }; - 75182724EA5355E68E9DFFA6 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B6B06FDB50B258D64C0C1B5 /* Value.swift */; }; - 7535D4607A3ECC358A421FEA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 759A80CED591A7990CCF8CD9 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0F77C35360BC168A8EE3C849 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 75DF6D77AB9E216E1BFB7164 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6232FC65AC888C2919A29D4A /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 7628B8E4495A90D8508C3459 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B8AD33CAF2513831F190948 /* Server.swift */; }; - 763D4BF738EB436A2FBA4012 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 769C4E885E7E13D63F5C9184 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C50755E3F26CA6D9CC706FDC /* TwowaysAMI.swift */; }; - 76DF8DADFFAA355F53083DCB /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8EC734E3ABEC1B9F8ED7E1C /* ServerAMD.swift */; }; - 76E928740B0374061A0B2E4C /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD917785198D9351B3909F60 /* ImplicitContext.swift */; }; - 76FEC9B75CEC89A42B71C16A /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC52095091A14C3F13099644 /* OperationMode.ice */; }; - 77129808429C81C2AB037481 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = EE56A762315F2E6B866D2172 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7726D14089BB24F5E567F6B6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = EDA15621A632772E70EF9DE9 /* Server.swift */; }; - 772CA57DE3BE1FE47025F228 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 7735AFBC7F28D830774C507E /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A303F7D2349A2BAAF06FBA7 /* PluginF.cpp */; }; - 776BD0070DCDF3131A59D788 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5292AB6BD873695825E1758E /* Test.ice */; }; - 778723B748D759EFEC60C0F3 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48FF8C7FFEC75A3D1F598354 /* ProcessI.swift */; }; - 7794C7FD958B1B638FA39434 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 292810AEFEB4C7B5B49D1C98 /* RequestHandler.cpp */; }; - 77A5A85603F8961F35C8AF6F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 77CC7C7DEDF87C5E2B010FE7 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E580B9D9CC76D53B7B18272C /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 77FAF4CD8EBA344B63C2D87C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1570CABD05CE88D0D442FBAA /* AllTests.swift */; }; - 78062257E13BE39337E96538 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82B698D2AA00D8433E829B6C /* DefaultsAndOverrides.cpp */; }; - 7853F06192F28AF6AB408E41 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 786328BEAE17891594F5B83F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50727E8340FCAC13BECEC831 /* Client.swift */; }; - 78FED968098DFDB32666A53A /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C0AF15B4EEC648C875D97939 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 7918C758E9FC4D94FAF9C75D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DE7F0BCED1A80C49DD69EED5 /* AllTests.swift */; }; - 79503EB61471FE7225C2CD32 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7101B26D06079EE4319D8BB4 /* UdpEndpointI.cpp */; }; - 7960BAF96A0FD68992BA64D3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18CE168298CE80608E0B6DCD /* Collocated.swift */; }; - 7984763859B1132CEA8B6C17 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9D50C3279384F2AA6BA994E0 /* Router.ice */; }; - 798F9ED73855A18315650195 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE85799B50D901E7EE91B724 /* Communicator.mm */; }; - 79E24AF1F29BCC8EB16F5797 /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 876D9FFC7CC704C0504BCB91 /* SHA1.cpp */; }; - 79EE0B3F30DD627D8DAE8E41 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 7A003E7134D70BDE825BD906 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 746535D89AE46CEA581E57AF /* Test.ice */; }; - 7A7A4C7A80706237CFE714DD /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8B3B91893CDE2FCE46DB8C3 /* ValueFactoryManagerI.cpp */; }; - 7A8FCFFFBDB5348A80FC9EBC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA2F862F15E33C84D1C777E3 /* TestI.swift */; }; - 7A9DB38700D4C6ECE4AE53F8 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = E597DC759086A689098B811C /* ServerAMD.swift */; }; - 7ADD4BB8DBFDDB60947DB5A1 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF38F1C85E466EEC07C46EE0 /* RecMutex.cpp */; }; - 7AE9BBD2B5985BA1C9A8A9DE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7896AFF2A6A7C311E7C0DBBA /* Test.ice */; }; - 7B157DCB3C603A7EDAF35E77 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11AEDF0E03E10480338D6773 /* ServantLocatorF.cpp */; }; - 7B311962159224E81FF3F6C9 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5507FC7D9307D1B742D67CE8 /* Clash.ice */; }; - 7B32D189930B4349E8C9426A /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 102C8EBB7B156230C64E8D84 /* IceStorm.framework */; }; - 7B3325A26D5CCE04158FB480 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = F47009097AD17B454D6780A7 /* Test.ice */; }; - 7B4093DC56456EF617CD7CA9 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B570B45B289F7B6C00BF559D /* ProtocolInstance.cpp */; }; - 7B418B8458096FB5EF4C5D1E /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 63086CCB688E11EB58FA8847 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7B531C9230D86E2F61BCB0E8 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = AFF94B5C18B237C5BCC2586A /* IceStorm.ice */; }; - 7B6916A88A0A037EF164D18E /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 19AA73005971E2B69755A399 /* ServerPrivate.ice */; }; - 7BE8AA23C233405C278A22A5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 99B5902E632A1305ED246DA8 /* Test.ice */; }; - 7C70271D70FE7C71CA4E6A2C /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C90B96D25DD719CC60E168 /* Collocated.swift */; }; - 7C8E9F28A7A5E23739A4E5AB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721BA6A8AE743A4B2FF95A5 /* Server.swift */; }; - 7C967026CF877781CF90F55E /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DF969510683D898EFE4084C0 /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 7CB5BE628EB7893853BA789E /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE017E010C3B64228A0758B7 /* Connection.cpp */; }; - 7CC88F908182D3BC48437B75 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 7CEE74EF0FFA0AF462DDC54C /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5D80A2F30612934EEB5E8AA /* WSAcceptor.cpp */; }; - 7D592EE68A7CD7F0B34884B7 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD976A623B36B1B8928E4F84 /* Server.swift */; }; - 7D9A72846D731A74B0073C3F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 7DE7F63B8B17B7DE9CC53DA8 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 748EE12499322EB81A8498E8 /* ServerPrivate.ice */; }; - 7E1CEB886804B90A520C9F06 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 58A46161AB366B92156533D6 /* IceDiscovery.ice */; }; - 7E3651954058DFC1CB0759F3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66677779E376C6BC1CB257CB /* Client.swift */; }; - 7EC26B1196E7D01F695B4BF7 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 7EFB948C8F71C0940154D850 /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DD9A6F271F1D24C181329DEC /* ConnectionRequestHandler.cpp */; }; - 7F871A8C8D80A4C9D8942B16 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 80295B329F47AD618475BF99 /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B68896EE6832BCFFC1CDEA85 /* EndpointSelectionType.swift */; }; - 8038411DFDFD19DB768C7556 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 8044DF34E086E9207057E6AC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 807A23F8A58BC92EDCAC7CAD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7771C966A95A75444CDD9607 /* AllTests.swift */; }; - 807F919519C4AEB2EBB5114E /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 35AE9823C665F00939098688 /* Identity.ice */; }; - 80D6A0F053834FE292E3DE0A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CC8C2F843887BE982892CC85 /* AllTests.swift */; }; - 80EC62E70535BB96C57F58F9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C37E81FE388B9D7FAB3C7C2C /* Server.swift */; }; - 80F1CE0419339022678607E2 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC33F4F1A32F4DFE8EBB12A9 /* PropertiesI.swift */; }; - 81047873254ADAD8E58FEEC2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 88E0874AAF62BEBDEAA903B2 /* Test.ice */; }; - 8116182CE642218EE0297F19 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD976A623B36B1B8928E4F84 /* Server.swift */; }; - 8128D9ACC369D6F1247B8910 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6297BCCEF80EEAA0E5BB22A7 /* ConnectionFactory.cpp */; }; - 820CF3DC6B93BFB98EFF91A7 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D98CE77652346A9B41B4831 /* IceGrid.framework */; }; - 8237C181EE1CB5F17024B315 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 82405BD150C77B92AE21D727 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4DF3479CC49100449C494653 /* Test.ice */; }; - 82F8761B8B726286ECCC2853 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */; }; - 8329CA5C26C5132A2F162417 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 834066F3E00F8A8149DDCA41 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 834246E0E89FF486CAC79A89 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D92A55DB4A2264AEEDC97D5D /* ImplicitContextI.cpp */; }; - 836ED348F8A9705B34D613FA /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7342B8BA9FB0E6A989E0B06 /* ObjectAdapter.cpp */; }; - 838BFA0588472EC15995940E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 83B35AF48C1D0E68EEA97C55 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 83FEEB974C87EBDC8EE7223A /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */; }; - 841BFE0613018387F3873E99 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A7049303E4CC0D79196E584 /* EndpointI.cpp */; }; - 84226DD2E2F66765A7D0143C /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6EC196F1092D9A40472D0F1A /* InputUtil.cpp */; }; - 845053DF8321A58CE6067BA5 /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D9F47C5F7E714936213E615 /* Current.cpp */; }; - 846C177F4AD7FF27D8B66A83 /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A8AFF8F311501C1902F407B9 /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 84AF4F009CF9E16EBEDCAC3F /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = CF60B8793F769C8446821BF9 /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 84CC6162A6BBE3FC8B845E15 /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59DDE7B5BC8DF0F3AD836E76 /* SecureTransportCertificateI.cpp */; }; - 84D4C8F119C9EE1C09FD9884 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B80662080CB423CE83029C /* AllTests.swift */; }; - 851FA14B9E98213ED8975304 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D82A4CA54A5484DD964DFE39 /* AllTests.swift */; }; - 853CD8ABEAC9F6D9859387F1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 857674BAC5C3DFB88B3B4ABD /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A28E723AB3710F4B62B6B303 /* Exception.cpp */; }; - 858D29278C64E90B53093ADC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BA38B6705BC845C06AFE3CD7 /* TestI.swift */; }; - 85D9AF5104CE3F3E362D3C63 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 978FF0AEF23EE4E31F7CB0BE /* FormatType.swift */; }; - 85DEA81A55CB3E4104D24E29 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 862F47193B485FAEA9801BB4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 97E99C2AEE0BD9BF770175D4 /* AllTests.swift */; }; - 86480249061BFEBB3EF8D4AA /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = FDD74C1D5D68EB2943068DA2 /* Version.ice */; }; - 8655F3C92CD573B2D95AB505 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 014D0EE5D267E432DA21670A /* Client.swift */; }; - 865A4A6FB3D81631DEDDA54D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 8669F90A254F560CED2D2D2D /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */; }; - 86DFE4BDC8937108E605E755 /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 614B4EEEE8D6EC764E4CB54B /* FacetMap.swift */; }; - 87072B81D09CA7998317AC57 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB5D02829AEAB23FFABB5B4F /* WSConnector.cpp */; }; - 871F735E7EAB7F895E82DC66 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 87224A54B03EFE9729904FFF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 876B53FB4F46CE95E08476AF /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DFCE210A780A814AEE2A57AC /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 876BD275061F47E61178094E /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 685C908500567FED302500C2 /* ACM.cpp */; }; - 87A06205244785BDD42529A1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C265F58DECCDAB36E4CD6A6 /* Client.swift */; }; - 87B9C072C30E2DBED33BB8ED /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC6EBC91E36FD1E5EEDDEA5F /* Collocated.swift */; }; - 88252DBE558C77A619038DA4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 88345F83E1301D2FF1C1D263 /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08F114BAF6B711459E6438F1 /* ConsoleUtil.cpp */; }; - 886792273848EFE3371AF4A0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 88C496A9001C639C933AC98B /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = FDD74C1D5D68EB2943068DA2 /* Version.ice */; }; - 8905F8A712324754F451DFFF /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1DAF6712CD8911F10A5971E9 /* Reference.cpp */; }; - 891AB334019BB7E8BEE85BA2 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 042B09E718B4AF7FEC08C931 /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 892E2CEDBBCFBCA1F9E5E748 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 8932803C962A9FC5FE8EB618 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECB41582845B643446FFF5A0 /* Collocated.swift */; }; - 89440AF05FA7CC8EB88BE86C /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE017E010C3B64228A0758B7 /* Connection.cpp */; }; - 895DBBE4ED47839BFB80E431 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2110B3C9B21AE73C0BD6ECBD /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 89A18A72BB4884C905C3D894 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 737C8B48855EE4342128C161 /* PropertiesF.cpp */; }; - 89D3ACE4EC733E3DB21C14C3 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08397788AB99AF6585C187A4 /* Endpoint.cpp */; }; - 89ECDC747A165854E1A4F971 /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 66EBE19FA36E23B906766A85 /* WSTransceiver.cpp */; }; - 8A00939F0CD533282212A9B2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5AD5A8F56E90F0DF1C96F2 /* Client.swift */; }; - 8A2FB80DAF4057C43165F948 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 8A3155B3F4C4D042241E2AA8 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3573CD4E6D9EB58A37C88DBF /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8A7860F817320C324C588ACA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 8AA0A446F9EF18611E79D8D1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 8AA8293CDB629E0E92F460B3 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 3573CD4E6D9EB58A37C88DBF /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8B18A9E9A12346C8ED49B6A9 /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5D80A2F30612934EEB5E8AA /* WSAcceptor.cpp */; }; - 8B6404C0117C60D6BCFDA8CC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 8B6DB53E884B0623F78F9B96 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D097943C4BAC00D7111D073F /* PropertiesI.cpp */; }; - 8B6F0C3D7A777167E4FD4924 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80BDC773852878159B385AA8 /* Server.swift */; }; - 8B7711A7F655C504F16447D7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 8B7CF432027FB4D652E66F08 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 71C219D846F1B5B1FDD3578E /* Test.ice */; }; - 8B86EBBE72B4D6104A5FCCCF /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5923FFFFBE73677A77330996 /* Server.swift */; }; - 8BBC231865D38CC433D929BF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5248E12595EE33145909A5D9 /* AllTests.swift */; }; - 8C3C0F4EF3C2B59801C65447 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E829B55DFE27094ED4A1790 /* EndpointInfo.cpp */; }; - 8C3F661FBF62FDE58807D739 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F7401C2CE09807582FF593E /* Client.swift */; }; - 8CD7C7F8CD5CF7929BE18A81 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B848104E80383628C5A2CF73 /* Test.ice */; }; - 8CD7F5964EAE861660D6977A /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE85799B50D901E7EE91B724 /* Communicator.mm */; }; - 8D0FF5C22DF55CE32D75CC84 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C520CFEA9E7F6ABF0BB8DEFE /* LookupI.cpp */; }; - 8D18DC057A5D72091A6DFBE4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 8D4BD3FB0759473D2489E8BE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 8D64EA1EAAFC0C7A0F94A5EC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9DAF4E6A6A0734D36C7039E /* Server.swift */; }; - 8D69DDFC431A064DC4647F12 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65ADD8278D737094AD85D73B /* InputStream.cpp */; }; - 8D780C8CBB06009CA2D3F5C7 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A26B127504B1411F9A44E917 /* Time.cpp */; }; - 8D86DD29625A7FAC9080713B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 8DA3A5C96FF54B27DA669C22 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 8DB73EBF4C2845D055412A18 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7C38FF5F290399FD2A575BC5 /* Incoming.swift */; }; - 8DCA1D0474EC0432EAC54AAA /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 259E1CFC2597003F39AF9275 /* CountDownLatch.cpp */; }; - 8E000FA58A8BF9C987EDDF46 /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 990C9617CC26B0961E520996 /* LocalObject.swift */; }; - 8E03445E92185967E8DD12C0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 8E5245DB3069B0D996247CFF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB7DEF69D88E4196C6C38C6 /* Client.swift */; }; - 8E54196DDD5049D8DAC54C1E /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B05047B0A67FBB7433C356E2 /* OSLogLoggerI.cpp */; }; - 8E97031B28FCA915CDDD4A5E /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8ED527CE33CD5E98D4395F3B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 8EE7680FBD0E3B74CBF47E27 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A14118D0E57AF0A5F37755A /* AllTests.swift */; }; - 8F402940833F34C3FFDBA8C3 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 07B40D097E062D485AF3F394 /* TestAMD.ice */; }; - 8F5D7506EF6BCB3D883E0303 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = AFF94B5C18B237C5BCC2586A /* IceStorm.ice */; }; - 8F90919FDD9BDB3330814400 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A6D9088DAAB107784DA16DE0 /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8FAA4DFC51B140E7F4A29684 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 8FC01AE4D5A702BC8A31783E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 8FD0E948F857C79A381DD164 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B7F6F6014A25D3EA8088D4D /* Collocated.swift */; }; - 8FD7EB5AEC4912BEEEDAEED2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 8FDA09F45B9AB6BD1E411872 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 8FDB877BA52CA228C6CE9D88 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D2DB1A2EBE508ADA82D566B4 /* TrustManager.cpp */; }; - 8FF467A992F60AE6913EF8D6 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99B9776ADB255F1973621C98 /* TestI.swift */; }; - 8FFF1D48A4993384E286D04A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 90396689FED2BE972C518274 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 9069580CEF0C50BC0D548024 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2725188194A8D2470DBF46F5 /* Client.swift */; }; - 908E05CD6BF7384E988465D4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - 90F8F55D353DAF6C27D22646 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 48FF8C7FFEC75A3D1F598354 /* ProcessI.swift */; }; - 9100D670BD0902AD4FBEDA79 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 96057073F871C88A9A437E6C /* RemoteLogger.ice */; }; - 917E14572AE0B2E97F541042 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3D98CE77652346A9B41B4831 /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9181A6BBA6FD673EA823A689 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 99B5902E632A1305ED246DA8 /* Test.ice */; }; - 9204A2F66BD793877C2C1FBF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 9221FBCFB03BF7DB8E80316C /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8E86E1134A0E4313F11F025 /* RequestHandlerFactory.cpp */; }; - 922CC8214A0218AA4015C20D /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0AF49C110C762F572C744977 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 92388EB12542F6B1292CE23F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AC47855542E0FC1068E3A9 /* Server.swift */; }; - 92CC5C6998619BE603D750E5 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4477AA6B5501589EC90C4F2 /* ValueFactory.swift */; }; - 931BE9080B44F58D559B8206 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 90C90B96D25DD719CC60E168 /* Collocated.swift */; }; - 93C4965EBD4F44FAB183C5F4 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 585EAAAD1DD963A893315BD6 /* ServantManager.cpp */; }; - 93DAFE2E582CAFB57622168C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A558073E4D0060993986E950 /* Client.swift */; }; - 93E82A4FF25EBC7EDD3858D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 9470D0DF053DE7012BF91D7D /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1D30AE0D95CE0B8136368F33 /* ObjectPrx.mm */; }; - 94D96E1E93C00C303E419E88 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 31CCAAEF9A0D8BD94D02FADD /* DispatchInterceptor.cpp */; }; - 94F4CFFA6DB0A2C7508E550A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 9515D9FB6383BE8459D6E624 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 401D314CEA8878CFB3F1674F /* Collocated.swift */; }; - 951B9BEDF850E9E38C146377 /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1BD6C158D137668766182C6 /* CertificateI.cpp */; }; - 95308B332BCF771798ACDEC4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 9541617B04428080C862F221 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = 87EF303B4F48EAFE426CB832 /* Key.ice */; }; - 9554BF43135121B7D65E2E7C /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4387BB8D14955178CF59D4F /* Acceptor.cpp */; }; - 955C4B5851FC27BD076098AF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 959931FF252BA4696D793D30 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 95B55872D9D23F15BFB4A57B /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 873DDDDA9C1B2827C2427670 /* OnewaysAMI.swift */; }; - 95C626F7F7EE5460E72969F6 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C54DFAFDC0223F71EBCA048 /* OpaqueEndpointI.cpp */; }; - 9619F8AA58E59D7BDE10E213 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 9667D7FF72AC7F7F693E0496 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = DE0294898D1572E655754A5B /* IceLocatorDiscovery.ice */; }; - 9670FBA186530E35DAC0DDCA /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D238D915AA7B2C9AAA51674C /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 967DACE1B78C42A031FA8623 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E153E7D44172EC94A37022 /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 96A327804FE56315FA908FBC /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A7F4197C8123883ABAF8C85D /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 97134D0F45385D17BB4AD8CE /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A35C4E163EB55AE186B1AF8 /* Logger.cpp */; }; - 972ADC32F17372B5C30532D0 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5052AC8588F0B21D8BE3AD20 /* LoggerF.cpp */; }; - 97481AEC4000BC44F22F0712 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 000611DF33CB4304F42A33BE /* RetryQueue.cpp */; }; - 97648C6132A20AE515ECB787 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1B2E875251FF8233F5415E48 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 97D40FCE27599C22E56DF214 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 97E15FB52037B16AC187CBD8 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3979D5422F89387622D2651D /* TestI.swift */; }; - 97F5C6EE108405CBF7F7F9F1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8AC23262A7AC04461F4A4BFD /* AllTests.swift */; }; - 98C3C4B071EF9C6F09322013 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BA8D617819FF713F80CE4A0 /* Blobject.swift */; }; - 98D4C1B1369325C1133BBE98 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 814042ADB97F55EAA8E0BEE4 /* PropertiesAdminI.cpp */; }; - 98DE3F717107A1F542CE0648 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 98F63C97A3560D1B7063BA2C /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 31807FCC8B102E3BA2E0BBC5 /* ClientPrivate.ice */; }; - 992670B71CA3CA542C9A7D54 /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = EDC332916E29C4DB70EDDC09 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9929944B6270F68EE990FCB9 /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8110A6A605EABCCC95B70C /* Current.swift */; }; - 9941D28677EAC759FF252E04 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 654CCEC599E0A9552262BFF6 /* RouterF.ice */; }; - 9948A17DD52514E7C2F0074B /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 28F6EBEDD7E3BB7D5EA9FBD4 /* ObserverHelper.cpp */; }; - 995CFAC19FD43A7F67F2805C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 99691C23E18FA58A76148837 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 99839C7C174F1AB6AE8344ED /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6F38DD25FC0B9CF9834644C9 /* Locator.ice */; }; - 99844B3A968E31726EE5572E /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 24EEF303A9F8E4869A064E55 /* ClientPrivate.ice */; }; - 9990F28A57C58C7DED5AC285 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - 9991831C1643E2E62BA18219 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F18DA127CFF3E191C1169914 /* Selector.cpp */; }; - 99B0FE475C82FD4103A59330 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - 99EF11BE8BD4279EF6B81B34 /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = DE0294898D1572E655754A5B /* IceLocatorDiscovery.ice */; }; - 9A06DAAA0B203CA2157102A0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DD7C821443F5E0607D4DE6F8 /* Test.ice */; }; - 9A181D7F3BCDE13B2B12928D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9668122A663485B283D6E354 /* AllTests.swift */; }; - 9A2CF04ECC8D5D4C2D846B51 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 9A4B7BDB0CF51BF38A70D353 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 9A6797228E8FABD723BAEF2E /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9F93205A8C96574AF482B2AB /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9A831E10A02D537C4F2F1236 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F546DCC7DF65F50BED56636 /* PropertiesAdminI.swift */; }; - 9A89F20EFF48B5A0A01E4860 /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4487959432B7C792830C5266 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9A9846D0A51010D3639834DC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 9ACBDB87668CADF95E2D9FC1 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 9AD33D51C7075AF3070BA8B2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 10FBAC0DE50DD8520BF0D494 /* Test.ice */; }; - 9ADA0F6235539F8F26919051 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B324F3F918968083524C839F /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9B62AC540356B46A318ABAFB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = ADA2F94E4EDD0ADEEE713717 /* Test.ice */; }; - 9B631B8D1B0D1E314639EC85 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2D63C2A77F018D37B047CFA9 /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9B73A6F077FB75A43F7DAE02 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - 9B9542CCAFF468634E1B1672 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18CE168298CE80608E0B6DCD /* Collocated.swift */; }; - 9BC25E00F33F3AC0A0B7BAC2 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1F8FE1A0E059D0118539988 /* FactoryTable.cpp */; }; - 9BFAE53486883E170688D76A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8188FC2EE67FAC79B3DDD184 /* AllTests.swift */; }; - 9C17134AC1DB656CA2F01C9E /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */; }; - 9C684B66E3E7AEBF591C1150 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCF77AA38122CC9F97CA697A /* Client.swift */; }; - 9C869A7A50B22DB555CC9004 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1962FCE8C13AAA1EDB246D78 /* Client.swift */; }; - 9CE0109A317A46F2409A18B5 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 31807FCC8B102E3BA2E0BBC5 /* ClientPrivate.ice */; }; - 9CF2EC8A140F3674CD8B4181 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - 9D45C5E5D8433A8C25F178F7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - 9D547612C029D152FB04C251 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 9D6A459545335A93DE35A937 /* Assets.xcassets in Sources */ = {isa = PBXBuildFile; fileRef = 101D000CFC727409838DEE04 /* Assets.xcassets */; }; - 9D73435873964679C928BB13 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 737C8B48855EE4342128C161 /* PropertiesF.cpp */; }; - 9DB03E845F65202EB39E3115 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BF3A34243EBCF0033484450 /* PluginI.cpp */; }; - 9DCC3C21D3245727D4CCC405 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4321B1EC69E230431008038 /* Connector.cpp */; }; - 9DEC69361646694ADE128FE9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 9E01A5E11A073ECCBA820D92 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 99F9D2D3C733AFDB4D23EB00 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9E36493AA2A1DB7E35F45A6E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 89C8AEE905086856134C860E /* Collocated.swift */; }; - 9E67E9EE49147CF058353C43 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04CC49DCD0D4C30286DEACE3 /* InstrumentationI.cpp */; }; - 9E7E37B00D3C6813AFB984B9 /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 41F405B3502079EE7591BD56 /* Communicator.swift */; }; - 9E8DD612EA94C6AF073D2BE3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E00AE826AA0B6D12DE8A593B /* Client.swift */; }; - 9E9CB4E5940E527D09BC3F0B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - 9EEDE9281FF63C59FC1F4F61 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 182630D7EE2E9D527F3E7FC2 /* ExternalAccessory.framework */; }; - 9F3EC4CF229801630E4DA883 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 35AE9823C665F00939098688 /* Identity.ice */; }; - 9F90174E943BDAB586C260A3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = BC6EBC91E36FD1E5EEDDEA5F /* Collocated.swift */; }; - 9F9D995257C6956AC279FF3D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - 9FAD01E7A5A3E50F861682DA /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = AF698C2D5D97DCCFC7D85451 /* Endpoint.mm */; }; - 9FBEC4A643CE38595A7CB226 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E7FD5CE013170C15DA09A31 /* LoggerAdminI.cpp */; }; - 9FD686DE121AE997FC29EAC6 /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7FCFB7E350304BE48F9AB70 /* Object.swift */; }; - A0149DC58918685B9C5F2976 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 01CD17E5927E812D8DD3EAC1 /* TestAMD.ice */; }; - A02F4BA9CDA144203FA206F1 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 82BA2AD0516BDC1B952A1A16 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A050D241D029DEDDB1DFC6E0 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FC1B02BF28CB20BA8607932 /* LocatorInfo.cpp */; }; - A05A10B6FBD0AB0DA5F06517 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = D8F7B24CE59A1F99506ABFA9 /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A074B308562DA349AB4659EA /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B0C61085F906AE19C4D73ED /* Logger.swift */; }; - A08EA856B344D8B4281F2EA9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - A0B9342FC17498B8E4E2679D /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E00667716A1C103FAC5F4862 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A0BBE2FA8F876D16C2A73EB2 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 27D7B1673A591C9B7CAF8808 /* Forward.ice */; }; - A0CC746B46CF2A1808F7694B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5206DD21F8DF743B9A61B14B /* Test.ice */; }; - A0E4EE3E2A26F93DD54B7C0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - A10198668C86E808ADAB0616 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E78C7100074203EDD9A86A1A /* Collocated.swift */; }; - A129D3B708FDC043C773555B /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDF3426F5F604EA6AD6D67FF /* Instrumentation.swift */; }; - A12B9DACA618AAAFF07EFA06 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4DF443F93429C08880793844 /* TestI.swift */; }; - A1981A764085A99EEC5E4B4B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C6DE61C2A91224378F513C93 /* Test.ice */; }; - A19B83EBFC52D54B327152DA /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 102C8EBB7B156230C64E8D84 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A1D0719594430445F69D5943 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - A1F4ECEC16BD53589AC95BC7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1599141F395131410355644A /* TestI.swift */; }; - A2054992B8CE70C1D425598A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - A20E3E83764CBC9CC7D035C1 /* StreamAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25D7EE2BD98457D481B8B3BC /* StreamAcceptor.cpp */; }; - A214D71B7058ABD7775B79A5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 61B80662080CB423CE83029C /* AllTests.swift */; }; - A216308FFA7F4D18363061AB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - A2278BA50113911A136EDD47 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2028B9FE566140E37F6A80E /* ProxyFactory.cpp */; }; - A230E5CB808BA0203AC69D4B /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E70AFD8DC408D542FD307AB5 /* Instrumentation.cpp */; }; - A26B148723583F5F831BF775 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B306F3D24CD60364FAF42DBD /* Client.swift */; }; - A274AE19070174CC7E66E22C /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07391C2F2F17BEF451562D52 /* FileUtil.cpp */; }; - A274B3590B5C38EA5AD85E9A /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B183D8B5CE1435DBB960167D /* AppDelegate.swift */; }; - A277D08D79C49F784F3E6105 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02CB2CD05CEE1E2166255186 /* ConnectionInfo.cpp */; }; - A299361F94B7BFDD16C90C78 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - A2BDFD11C3155D23B684A5CA /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 145489AECBBABC46B13BBD6F /* ObjectAdapter.mm */; }; - A2E2212187162F926159A5CC /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8697F5EF8C512BDD2D230A1 /* PermissionsVerifier.ice */; }; - A2E3516A08D310BECD05E875 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1096EF87824C8D901CB7EB0 /* ServerAMD.swift */; }; - A2E5F886FD4B23BC51B4292A /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = A8697F5EF8C512BDD2D230A1 /* PermissionsVerifier.ice */; }; - A2E672B4B4434441205D8769 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */; }; - A32A0537F40F21D10090A7FB /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7AD25AF9E04E7237D00DA079 /* Metrics.ice */; }; - A357FB84B5FAC4E07572BCE9 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5DB117E9F7CD97246E362D0 /* LocalObject.cpp */; }; - A3A50A3F5C0EF82A11B7EB07 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */; }; - A3C813D0284A183F2C9013D2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - A3F6F9A0E7D7425809679F12 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5400703129C16CEB55676316 /* ConnectionInfoFactory.swift */; }; - A4B79799AA177ECC2680F3E3 /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFF0ED34748664151B72A1D2 /* Incoming.cpp */; }; - A4BA56050938ECDC2307189C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - A4D36C0FD19DE530887B370F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = C4E36FFCFD779F3349E0B808 /* Test.ice */; }; - A5173EC0F8ADAE747419B3D7 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6F38DD25FC0B9CF9834644C9 /* Locator.ice */; }; - A51F2D0C28544E74C78FF985 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - A554EF63FA4E6A5D761F981F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - A5B856E9E86689D24951DD67 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 698CE5506A44CD12B6835C88 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A5C7AB16FC112BED82F89C05 /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 92E658D78C379EAA3ED57897 /* SlicedData.swift */; }; - A5F2C50EFE98A0E24E47672E /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3DCD2329D6CC0E7D1A67304 /* SliceFlags.swift */; }; - A61F4624E2918A651B93C920 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - A627FA2E306B19A78BE077B5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - A62F8477FA3CBC17475FB322 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C9EE6928D91D3DD502B5B8C /* ConnectRequestHandler.cpp */; }; - A6308AE13C3F31335293B164 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2028B9FE566140E37F6A80E /* ProxyFactory.cpp */; }; - A6A4F6000E0E0B56DE6090AD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - A6DD61F672BCEBB094EFA299 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 10FBAC0DE50DD8520BF0D494 /* Test.ice */; }; - A6E1C8F6BC77FEBA93DA9EC8 /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBAE1ADE6A6A3C9DACBF2C68 /* LocatorI.cpp */; }; - A6E9DDCB266F59F01E1D3E2A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA6C41DF9E4B34FCEDC9493A /* Client.swift */; }; - A70BDA756A9B7A42C3D2E7A6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - A7B42343AC9E2951EC59C338 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - A7EE2C1997021D64CF91787C /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = CA042305E180817575383DD8 /* TestAMD.ice */; }; - A815DDA39526FA93C2851FB5 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A7049303E4CC0D79196E584 /* EndpointI.cpp */; }; - A824549EE2D79F19D9E96045 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68A1DF0813FCFD98C103C20D /* ServerAMD.swift */; }; - A84195F835C0EE4FB4785717 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4CF51F5BA92DBCFB19276E79 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A8E6141724C576A3EB73695C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B0C70BDF91875EC6706AE12C /* TestI.swift */; }; - A913E2AFE4FE7CA8D35BD76B /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2424727B01DAAE130B238EF7 /* InitializationData.swift */; }; - A92EAC6E21F6504793754DB2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFE318F6CB3960BD10185486 /* TestI.swift */; }; - A9414CB4BCDB9E09B40E1249 /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 94FDF54850CD30639F5F2A76 /* Proxy.cpp */; }; - A9A2C6A2EAABE0514D916CFA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - A9CF883E427C334ADD258E16 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC6572D6D1B9BB5AD0EBFF57 /* ArgVector.cpp */; }; - A9E7C418A13AF88F95B56863 /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 68FE5BEC43DB70CE488BA78C /* SSLConnectionInfo.swift */; }; - A9F4F71B394900161CABCDDF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 24511A349B3AC892968F3C7E /* Test.ice */; }; - AA3DF90F9F7AE7E41A7A9F89 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = D447784B77B4412B60FCFC03 /* Session.ice */; }; - AA903940404A6CF2F522CABE /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - AAB7E9939903E4976A03CF5C /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */; }; - AAC4E4F6E9E71BB058B4ABF5 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F98C3CA8C685D2666897D25 /* StringUtil.cpp */; }; - AAE4675B438542D382FABD79 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5124560E2C8D4CA6F32B121F /* ClassResolver.swift */; }; - AAE75D6A127A5DDAFD75A272 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA45CDF58CA91E2E635F08A /* TestI.swift */; }; - AB2D4F0471D4AE020F18FA29 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77242285508C579CC5B0D48D /* Server.swift */; }; - AB8E4E81E5F4E854A6C82F46 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; }; - AC3C703D291DA979F3C915DA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - AC45AA1D12ED92644FDFFE25 /* TcpAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F562D9D8A7515B35C2F58350 /* TcpAcceptor.cpp */; }; - AC543328F191EEF6FD7A8983 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - ACA078A151886FF1B9180EB8 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79F3ED290282BD409F3522BE /* SliceInfo.swift */; }; - ACACE420C4781E94BA667B3B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B40AB91DB677ED424B70FA69 /* Client.swift */; }; - ACB7DB01983490A9612C897F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - ACDB50DB35A6779B56D47D82 /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F95B39360BF7A5A8F3336C02 /* ConnectionF.cpp */; }; - AD17C0A7220054AF2343A0E5 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A896AB8FC799C78576276217 /* OutputUtil.cpp */; }; - AD358F37A777336A39C8B99A /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = F1096EF87824C8D901CB7EB0 /* ServerAMD.swift */; }; - AD4272746FF4D38E8495E2E6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4E2510934C92262E6420D091 /* Test.ice */; }; - AD542D5B6992526391AD8D25 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB841745F334BE569AAC2791 /* InstrumentationF.cpp */; }; - AD62AF11D8BBC2CACC704697 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5E7A0432DEA9466221C423F5 /* TestI.swift */; }; - AD82A51F863258B191EEB488 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F98C3CA8C685D2666897D25 /* StringUtil.cpp */; }; - ADB1AFEE08A56BB42FE008EF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF5E56D13752DB41032C1BAB /* AllTests.swift */; }; - ADF818ED72CA48CD036E5C7A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - ADF9112F19AD07C8800D540D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - AE32C55E7D9EE564F84EDB43 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - AE7F49DDBCC0F010BD7A2EFF /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EF9EA920CDA248C30B741E3 /* Collocated.swift */; }; - AEBFBD3E02A9FFBD8FFDBF3F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - AED4F17F4BD2F1F9BD1A1834 /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BF3F7C97E46FF31D7DBAFF42 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - AF5A80243991E5AA16E0D227 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - AF76E41B539190348EA3B4E7 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = F8AFAAB080FEF12A06662C69 /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; - AFB9E6C201C3912182FCA333 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F97826A9DCAFE51593E3E836 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - AFC826EB9C6FC596575BAB6C /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D652FBDA58B2A88C9EE9351 /* Proxy.swift */; }; - AFCB1192BA3F48442D920C1C /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 540A7B3104F684B945E4E393 /* MutexProtocol.cpp */; }; - AFD6AB5AD6800C6D202F9E08 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3240EAAE31EEEE2C1A979DF8 /* NativePropertiesAdmin.swift */; }; - B09C0508C2DBD6737E11665A /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D51058046137C699E489643B /* DynamicLibrary.cpp */; }; - B0A4BA7E87864E87F5BCF1CD /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F91A4DE4998C11CD9FA265 /* Client.swift */; }; - B10BBA489EE9CE93542DF349 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 753E12D3EE11FCE2B8E3B8F9 /* Server.swift */; }; - B142EFD0673F101282671532 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - B1431EBFEB84AD625884B324 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2424727B01DAAE130B238EF7 /* InitializationData.swift */; }; - B1BF10F883AC7BB3FB0A5548 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 99BB692606D808F7F66B6446 /* Session.ice */; }; - B1C6A1EA2197139A7EECAD83 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC52095091A14C3F13099644 /* OperationMode.ice */; }; - B1D78D559C48248DEE45CE22 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - B24B1B3B4D615A89A141EE46 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - B25A522ECC27DD8D012BBB38 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2437C8A597A1CE438BEDEC3D /* LocalExceptionDescription.swift */; }; - B25F38AB93AB1A3133696F00 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F8AC47855542E0FC1068E3A9 /* Server.swift */; }; - B2645C7AC36F03C6118E59E0 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7AAAA99233AA95D5E2D8623D /* Admin.ice */; }; - B28964A958A1D4B9949032C5 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40F0848AD5E921D3D29D8E5F /* MetricsObserverI.cpp */; }; - B2AD8E5819AF0F52E798EF1B /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA23EE95BEDA285AEE6F8A0D /* IceUtil.mm */; }; - B2B047120C9B97524D190BBB /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 346EA4E8BF5EBE984DAF0872 /* TestAMDI.swift */; }; - B2EEE757E6D5F3B2ABC5D2E1 /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A38C5090BFC9479B5774794 /* ProtocolPluginFacade.cpp */; }; - B2F8335DA50D91649AD4A803 /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEAA1F26027433EC0170129E /* CommunicatorF.cpp */; }; - B31FF29C712A0585DA2B16A8 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2981BE0BA9E535D4E8738D6C /* SecureTransportPluginI.cpp */; }; - B342CA44502DE774A8E79975 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7FC1B02BF28CB20BA8607932 /* LocatorInfo.cpp */; }; - B36A489853F82B2E57647BD7 /* Main.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 7EA959FB1AE1C0215813F162 /* Main.storyboard */; }; - B3CC6F4D6DB25A45BCC1C24D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7847B096AC0D34F6A6A83F0 /* TestAMDI.swift */; }; - B442190D15696E1BD40AC0FA /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - B4B84F514376A4A8E4A6ED31 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 238D7DBD94628C8E32119E5B /* IncomingAsync.cpp */; }; - B4BE891DFDFF27AE72183B50 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CE5EF72F93C8A48F13699E40 /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - B4F1A4E2CFCC9898C9B2E828 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7896AFF2A6A7C311E7C0DBBA /* Test.ice */; }; - B51C69F89B80DA2E1B401184 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - B53337A63B03967706AC3204 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6E0FC8B916544739F08DBD2A /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - B55F456482188268D8FBE02E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = A09BB09CBD110F5A9A95C3BC /* Server.swift */; }; - B5631F7A1EA8676C88F7897D /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CBAE1ADE6A6A3C9DACBF2C68 /* LocatorI.cpp */; }; - B57E0BFEFD3ADCAA3672C527 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - B5A1B9C863BD82ECEA0D0E3C /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5CF2439A128695F8D08C60D1 /* IAPConnectionInfo.swift */; }; - B5B9BBB7EE1A047FC5216ECB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - B5C9AB5A11C9DC99931B8C57 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B848104E80383628C5A2CF73 /* Test.ice */; }; - B5DB285F9C6EAD474FAA95BB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EF3EED5D49B0E829BC0E03A /* TestI.swift */; }; - B5FCC340B092B2D332433AA8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 278EEAB3360C6F45AF0BA345 /* Client.swift */; }; - B64EEC007F67795539001A1C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 80BDC773852878159B385AA8 /* Server.swift */; }; - B676889E0E4DAFC083A035ED /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */; }; - B6A9C7628EAFE90B4E3A712C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - B6B0AD61FEB0ABF698126781 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = F84548B73653D4C1742C2AD9 /* certs */; }; - B6B30C6F69C46D9769464518 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - B6D10C65D061D7D1D4EB5729 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5AA45CDF58CA91E2E635F08A /* TestI.swift */; }; - B6F436312C61E057ECDECCD8 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = E78C7100074203EDD9A86A1A /* Collocated.swift */; }; - B6F50BA90185C68282A3573B /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E580B9D9CC76D53B7B18272C /* IceImpl.framework */; }; - B6FBDF0052EF47CE6B52F328 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC6572D6D1B9BB5AD0EBFF57 /* ArgVector.cpp */; }; - B751C81FEFAFDD39434EE7D0 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0AF15B4EEC648C875D97939 /* IceGrid.framework */; }; - B76A3686BEAF19E70AA5587F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 24511A349B3AC892968F3C7E /* Test.ice */; }; - B7F221C5248CAB086EB64C67 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */; }; - B83638F0D662B79B5A0975A3 /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC08CE6FC9829FC76970ABF /* ObjectAdapter.swift */; }; - B89F95BBC741F229F326FBB9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE4880C3857E46FDB8466BDA /* Server.swift */; }; - B8C52DF2827AE7AC5AA2FDD1 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5507FC7D9307D1B742D67CE8 /* Clash.ice */; }; - B8EB08195365B3764B9F0777 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C7529E7D6E0CE82CABE0D45B /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - B904C69A68313FE87E876699 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5DB117E9F7CD97246E362D0 /* LocalObject.cpp */; }; - B921CF701C7ABCB95B5489BA /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA0E2961E11E1150BA971DB0 /* EndpointI.swift */; }; - B94C97890E9A5D64D52DCAEE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D08B05FD08F60E1D3870BBF2 /* Test.ice */; }; - B966483371606869BB002249 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = ECB41582845B643446FFF5A0 /* Collocated.swift */; }; - B9B9FEAC21799ECDE7C16E09 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203BF667EB7502A11DAAD293 /* OptionalFormat.swift */; }; - B9D79D3ECA42805AE43C28E6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = D82A4CA54A5484DD964DFE39 /* AllTests.swift */; }; - B9D7BFA85056512F43AB0701 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5721BA6A8AE743A4B2FF95A5 /* Server.swift */; }; - BA6136386C06CDE18915B249 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 685C908500567FED302500C2 /* ACM.cpp */; }; - BA8EDD5F400F44488ADEBCD1 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 60C72DE758D50EEE330E214C /* Metrics.ice */; }; - BA90DA40D414B0DB97A49CB5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 50727E8340FCAC13BECEC831 /* Client.swift */; }; - BA9A241562A265F29B588468 /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9490D97D26F54E2DE96FE5E /* ValueFactory.cpp */; }; - BABB95F2BCAA9B4C835466C4 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BEA81A87699651060DB2E4A /* StreamSocket.cpp */; }; - BABC32201225A91C5A25EA93 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D23950CABD458FD84101A42 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BAE5D97C28D6B650ED4D4706 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36A3DD415DB5D47F3DD67986 /* Util.cpp */; }; - BAF3246BCB036F3FDD4BEC82 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B07EBD95BDC4C8F2D8598B89 /* TestAMD.ice */; }; - BB00A92C945030D3F7CB1108 /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1BD6C158D137668766182C6 /* CertificateI.cpp */; }; - BB0627CE5A909DB8B89570F2 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 273E5195A6D681AF9C343F47 /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BB42E17D60B59344EDBD9D56 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7F6624BB6F4570C1B15B7C59 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - BB5A13609DB215E6583AE660 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - BB836B5E8EB2F43BD9656753 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = A19D8983C8F5E4BF02AA82C4 /* Test.ice */; }; - BBA1C03B0A59799B56B2C0DA /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7E3DA05928304B5AC220E13 /* TestAMDI.swift */; }; - BC10A8AD3F1353F4DE35FE57 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4F365747574374068F56B9FD /* libIceLocatorDiscovery C++11 iOS.a */; }; - BC7E4DBA7D73110E5CA447BA /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8B3B91893CDE2FCE46DB8C3 /* ValueFactoryManagerI.cpp */; }; - BCAD5735C893A46116E6A080 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = FDD74C1D5D68EB2943068DA2 /* Version.ice */; }; - BCF08A16C4619922A60B7811 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F0F1C0C87F3118B4B5673E1 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BD34921C3C75DF924FDFF57A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7771C966A95A75444CDD9607 /* AllTests.swift */; }; - BD4486E46D3800D9836FEBBF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - BD4668C593E2B731A449859D /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A35C4E163EB55AE186B1AF8 /* Logger.cpp */; }; - BDDCE26BD7594406AF5A5A70 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - BDEEEA8F75868D04E2763F08 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 99BB692606D808F7F66B6446 /* Session.ice */; }; - BE9763782AD0F8D1C9B367C0 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6ACA341F8D22FF154D2C3631 /* Plugin.swift */; }; - BEA8A85E1A1521E5D7B7FBB0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A14118D0E57AF0A5F37755A /* AllTests.swift */; }; - BF192091BB537835893B6097 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 197DFA765AE77FC51AEF8CC3 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - BF2ED6CBEE98AA49A9CC643E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0EF3EED5D49B0E829BC0E03A /* TestI.swift */; }; - BF3495F443BA537B55E419BA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - BF44643792D19A3A6AF218FE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5B27506E526D876D902739A /* AllTests.swift */; }; - BF563871B8C1710CB7C10DDE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = AF5E56D13752DB41032C1BAB /* AllTests.swift */; }; - BFB497D499A0397F7FDD2369 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D3548229461616CC182BCEBD /* Client.swift */; }; - BFCE75841F61F771CAF746A0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - BFD6E1E93E91C48E46BB3353 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = D53779F0A96B303BCCEAEFCD /* ViewController.swift */; }; - C03CEB6C13E93631A7A84FCD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 77242285508C579CC5B0D48D /* Server.swift */; }; - C0F2252DBC9DF62F01802D0C /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC56C57F4AF048D4B7528E44 /* UnsupportedAdminFacet.mm */; }; - C13E142A45648F7040E3EB1F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - C1AEE0EAC78A383EC6D234B0 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 681AABFFA977FBCD95B43311 /* Instance.cpp */; }; - C1ED60554A4D48729279D0D1 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77A833C278A8A075161EBAA8 /* Exception.mm */; }; - C1EF67608B9D20245C3B4903 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4307C8F5994221221EAA83D5 /* ObjectAdapterFactory.cpp */; }; - C222CC7EE9494ECFC5EC8D6F /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C4077CF4E039DFF0D6A22D3D /* StringConverter.cpp */; }; - C25732180D01695CFA011678 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - C26282DA482B3A282EC20CAB /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3665BE59BB614AAE0CDF2FE /* EventHandler.cpp */; }; - C309FA89F6823F3F6618FDA5 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C54DFAFDC0223F71EBCA048 /* OpaqueEndpointI.cpp */; }; - C35678C287F8F9A637655A7A /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BEC5A912505A2D0739F41AE /* Collocated.swift */; }; - C3A5F72AA3A7E6A2C5CF7160 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA23EE95BEDA285AEE6F8A0D /* IceUtil.mm */; }; - C3D21BDC151A7C398E3CB974 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B8AD33CAF2513831F190948 /* Server.swift */; }; - C409F4A89EA4DBA75ACECAC0 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 95E105439BA21E7D9534BAA3 /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C42BE5C720B857B4DF47D736 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 59C46080488C352EA3B5E078 /* ServerAMD.swift */; }; - C480C3056D5D95CFE0D230EC /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0F2C3F356F0573D576A925FB /* ServerPrivateAMD.ice */; }; - C48F676CD5319A8FCC64558F /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7342B8BA9FB0E6A989E0B06 /* ObjectAdapter.cpp */; }; - C4F1E9325871166B577761BD /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E7B4AD1931A23E635750A562 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C52A5C479A5C09FDFC29A368 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6C9EE6928D91D3DD502B5B8C /* ConnectRequestHandler.cpp */; }; - C53C9AD418AB700BC9B5B2CF /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 043AB17C4C069B93FA1E7D41 /* Server.swift */; }; - C56F8DF28EE4E3EBBD329E91 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2BADF2E71C4E31C2545EBD7 /* PropertiesAdmin.mm */; }; - C5C0ACB9917A6EBADBEE205C /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6ACA341F8D22FF154D2C3631 /* Plugin.swift */; }; - C5C2FECC4860219581389BAE /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7AD25AF9E04E7237D00DA079 /* Metrics.ice */; }; - C5F9D85C25B7333CE3ED978A /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F844C21E5E941FB173DD616C /* Instance.cpp */; }; - C60593303A3B702CBA40204D /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */; }; - C614BDC1295291BDCF41EC71 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */; }; - C64011C9443A5988B170EEFA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - C6AFDA64C688FF06B9310908 /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1A303F7D2349A2BAAF06FBA7 /* PluginF.cpp */; }; - C6B62EB8CD89E069E59ED384 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF2604CFDFD9F02C2548D7C4 /* Thread.cpp */; }; - C6D8C383B45A96F4637F5A3C /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */; }; - C6DF378AF6E6653008466E9C /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08733FFC27D163E7A610C567 /* NetworkProxy.cpp */; }; - C707CDC8444931346E0E9A77 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3089717B2724FA70B62A07E /* Client.swift */; }; - C7AAC21D23FB9C7F4D7306AD /* libIceDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FF2875AE0E0680CDB9C9B1B8 /* libIceDiscovery C++11 macOS.a */; }; - C82E8BEDDC20EC57EE94CCAB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B306F3D24CD60364FAF42DBD /* Client.swift */; }; - C834907D047E9AA3E4540029 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8C536D312B9304B2D44C277 /* IPEndpointI.cpp */; }; - C8877B3C819990B6BC7A690D /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = D26101A37129FDCC7F02DE6A /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C8D3E461307EB4D460985F7C /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = E22C0DF633DFF1F13E530965 /* Twoways.swift */; }; - C8F130C843CE329970CE6DF1 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4749A84AF39751728F692314 /* ConnectorI.cpp */; }; - C93FBD32CB01DCF0DD912B6B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - C971E7B0131BF13655D468B9 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 82B698D2AA00D8433E829B6C /* DefaultsAndOverrides.cpp */; }; - C99C0FAC4856145800CB6948 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - C9A2AE33C23EEFB2099F749E /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C321C7D5D3EEBFF6B77950C /* FactoryTableInit.cpp */; }; - CA0F36142EBD4397EE7622CD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - CA3767AF6A1D9C1A1A6EE7B4 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 27D7B1673A591C9B7CAF8808 /* Forward.ice */; }; - CA90EC3044CF03BEE0A79E98 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DE81698975B33852370169B0 /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CA9A8A3756ECC527753B1160 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8B6B06FDB50B258D64C0C1B5 /* Value.swift */; }; - CAA05AA07F9F217B0FD37667 /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BA03B082E40C34B986B183E0 /* TraceLevels.cpp */; }; - CB08CC281534672927561D65 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AB42DA37A87829961E185A1 /* Server.swift */; }; - CB0EA922D4BEB16E6B68FFB6 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04CC49DCD0D4C30286DEACE3 /* InstrumentationI.cpp */; }; - CB3C7EE6E6D99CCCC6D9E51E /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9ED8B6B4E62F9D71D312B66F /* Value.cpp */; }; - CB6C7B09D11CFB55948EB796 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39B7FD86E7AAB2B74EA0F79A /* AllTests.swift */; }; - CB7FCDA8BBA9538914A9D6B5 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = E58B32872CC6A0C1048F6248 /* Descriptor.ice */; }; - CB93D94A72ACB6460406106A /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3077BF706F4E5C8BA2500DA /* ImplicitContext.mm */; }; - CBA2586558C473108D1842F5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - CBF0EEA7678D3359CAE68078 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40F0848AD5E921D3D29D8E5F /* MetricsObserverI.cpp */; }; - CBF3C2474A9C447BA9905F4E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - CC2E3D87471BBA696973522B /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1FD8BF102CBDEA4AE9A1BEF0 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CC93901E1D8CB7948402ADFC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - CCCDEE08F99C171111B5EB86 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - CD1974E69E78E59EFB0451C3 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EFBB16D3C8E2986C4EB8D12D /* Network.cpp */; }; - CD50B206BDF7F3B5AAC0FEFA /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3D9E5A1FEF7356081B23255 /* SlicedData.cpp */; }; - CD646C6A94062A9D0A397244 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39B7FD86E7AAB2B74EA0F79A /* AllTests.swift */; }; - CD6C6398B754387A5CF5CA9A /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = 203BF667EB7502A11DAAD293 /* OptionalFormat.swift */; }; - CD9ACCBDE72090CEA1B5CDDF /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = E58B32872CC6A0C1048F6248 /* Descriptor.ice */; }; - CDF7F513816B48F9B04BCBA4 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B986932C2925F4F85570A5B /* Mutex.swift */; }; - CE3F516C6BCFD191F6EF75C5 /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B986932C2925F4F85570A5B /* Mutex.swift */; }; - CE718F0554CDFCF1ED39FB7A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - CEB1AE999611FBFA57C54C12 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - CF06DF1CD1F897F0B4FC9334 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - CF467ECA243473DAA814D048 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 18F600B75D092C22922DC97C /* LocalExceptionFactory.swift */; }; - CF54DE141E09CF1FD2F8D99E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = E597DC759086A689098B811C /* ServerAMD.swift */; }; - CF646D3A12CB83166392CEE6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - CF9EC652EE21A343A2685988 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8D90EA61D510888A922C76 /* Client.swift */; }; - CFC195CB641909D037D0CCB8 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7490F0360E314E9C5FF89F3C /* Router.ice */; }; - CFE5F1C21970D5D8ECD4FC54 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC2D223A5415E0568A67FC72 /* SecureTransportTransceiverI.cpp */; }; - D053C9626C8F6B692897D6AA /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = DFCE210A780A814AEE2A57AC /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D05E6544BA2CB7987F563B1F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - D06F6FD95F3B3DD60298A587 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7490F0360E314E9C5FF89F3C /* Router.ice */; }; - D071A91812655939890551E8 /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = FFD565105BC4E6A56DCB1853 /* Exception.ice */; }; - D073DA318597A838C099688F /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5AE3DC5C68BCF7B63AA95F6F /* Metrics.ice */; }; - D0918E43C63B007F8787034D /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8044616B12D739F37275B163 /* Logger.mm */; }; - D0B68D28A36F25DBDEEEE0B0 /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1515A9EBA05A025707FA0A5B /* main.swift */; }; - D12BFEE94D559BE97EA05925 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1D68FCE2A561F7EC2ACDCAA /* ImplicitContextI.swift */; }; - D1750FB93060EF4C23FCA4CE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - D17C7CCF486CFFB13A7E4F8A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - D19EE30CA81B28E902F68A75 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 83F50C58BF53491B5A2519D6 /* SecureTransportEngine.cpp */; }; - D1A5973A5392B9F0A7D551FF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - D20B8F69CCF1E0A4C2B28CD4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45C8F6FB616A194C3B2F51F4 /* TestI.swift */; }; - D2512B6E3C43F4F50507FD7A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - D2960954B18EB5482D9C08AE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = D08B05FD08F60E1D3870BBF2 /* Test.ice */; }; - D2BD83724E67D0BF55280D93 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C37059709E53268E7C14372 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2C1332796532EC9D13F2A01 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ACB9AA204E947072B6089FC4 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D2D7AC43D47EAC4F693FEDC6 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F294A7B72FAF1011CB416FA /* AllTests.swift */; }; - D2EB8D72E7B2D2C2C47BDBAB /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = FDD74C1D5D68EB2943068DA2 /* Version.ice */; }; - D2EFEB9E0E91C48FBDE17656 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - D359A277456C1432D3D2713D /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 259E1CFC2597003F39AF9275 /* CountDownLatch.cpp */; }; - D39B227A38413AEFBAB8EE91 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = BCF77AA38122CC9F97CA697A /* Client.swift */; }; - D3A075A4E31396353AF654FC /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1026DA33ACD08DBDEFF45AC4 /* EndpointF.cpp */; }; - D3B2170996EE9D9A4178F087 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB2A63494B776FCB8C2A0BCF /* ServerAMD.swift */; }; - D442A5075C050714DD84E2C2 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */; }; - D44E98F08362136B999A176A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - D47E7EB5C8A2F63A302DF2AA /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = C0F99C57D798B822698572DE /* BlobjectFacade.mm */; }; - D48F8AD05FF8E64BCBF7D3D1 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E5F90D823F008079DDF85638 /* TestAMDI.swift */; }; - D493480967AAEB71801A0D46 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AADAF4F2A9298B55860DC8AB /* Client.swift */; }; - D4A1C9D30C746269BFA9A55B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - D4D63EFCA9639B1347B119D2 /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B38EBAF76FAFE72C64335C5B /* UtilException.cpp */; }; - D53361B4E18F02F39AD71F7C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E2557828DF2EF804720B5DF /* TestI.swift */; }; - D547B10B9B0582311BAAB31A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - D54DD89128401A9E190A2CC4 /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 533D65B77DD79A97AE2A1A8F /* SecureTransportUtil.cpp */; }; - D55538B35122E4FB0FB98280 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - D55FDB743E5A6E822F3AAF4A /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A542194ED490F2D450FBE00 /* CollocatedRequestHandler.cpp */; }; - D5B05C56684E9AF8549AAD04 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4477AA6B5501589EC90C4F2 /* ValueFactory.swift */; }; - D5B136ECAE08DC357CBB0FC1 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7490F0360E314E9C5FF89F3C /* Router.ice */; }; - D5F6AB847BEEEF0A8646388B /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6F38DD25FC0B9CF9834644C9 /* Locator.ice */; }; - D65AAD574F10CC5260DEDF9B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0205F3DB3D2A802285F11C8B /* AllTests.swift */; }; - D6B102876B48EF4B4CA8F75D /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = DEC08CE6FC9829FC76970ABF /* ObjectAdapter.swift */; }; - D6D05F5C607B332E0FE623C2 /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F07B1686893281A6AD084966 /* ImplicitContextF.cpp */; }; - D6F5990B7C76C78341F87B52 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 187ED1A448C608EC15DF698C /* AllTests.swift */; }; - D71B01B9823A114BA16DC5C2 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A47964EE995DCCF12193A7C8 /* TestI.swift */; }; - D7278E9D2A77063BE213C0E8 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3E80F236FF9CC3D3ABDABC94 /* Test.ice */; }; - D7398A853900B2D4C341BBE2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4DF3479CC49100449C494653 /* Test.ice */; }; - D73AB114429EB5C8F292E4DC /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E0417ABE38D6F16A1223B078 /* UIKit.framework */; }; - D7401A165877E9EA69A0165F /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 770F579715615C54D53ABF72 /* TestAMDI.swift */; }; - D76544D05F02CC68167E8FF7 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F7CA3B0771AAB23FD2BBAB32 /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D7925782BB7F4C817FD0AA57 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = F94A73A9390A0C781AE4A324 /* IAPEndpointInfo.swift */; }; - D7F868E56A6E9055EA7EE9B6 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8C321C7D5D3EEBFF6B77950C /* FactoryTableInit.cpp */; }; - D81AF7157AAAAD80CED907DF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5B643EA2D961B5A046DA618B /* AllTests.swift */; }; - D84966B3582B40ECC94EE434 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF2604CFDFD9F02C2548D7C4 /* Thread.cpp */; }; - D857103C966CAC42C206AD91 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - D88E2F85B135A0BC74FF48D3 /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 85B515A196F89D779308CAD1 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D89777822ADB1527B2E9ECDF /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 614B4EEEE8D6EC764E4CB54B /* FacetMap.swift */; }; - D8CCB30783ED0346C979E749 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17E2F182F3B77EE5965C3F59 /* TestI.swift */; }; - D918497C4CFF0B3FE6C8E9FF /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AB7DEF69D88E4196C6C38C6 /* Client.swift */; }; - D97BCDE42B2D775C8EF3AE38 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367F5C787891BBE1B298343 /* TestI.swift */; }; - D9A262313E99DF4F916ACEAB /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C0CBBD39BB0BC5077AC80C4D /* AcceptorI.cpp */; }; - DA2350D29732E5C260DE2CA3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - DA3CB710A71685FEC7F899BD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5784A651E1A32B4749128DE1 /* AllTests.swift */; }; - DA5FD412CA303435EC0BD6A8 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B17B4B38AC0363CAFA24A9E4 /* Shared.cpp */; }; - DA777C2519E5B4091CF7C54C /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE284562963BDD32CEEF2902 /* Timer.cpp */; }; - DA8B7FCFA35AA56A3EFD271D /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 206401F7B7D85C2E662248F5 /* RegisterPluginsInit.cpp */; }; - DAC9E92FDB209CC2D715EBEF /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - DB2D614A5808D193088DE541 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5F9757AB402E520F6A127C8D /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DB4F725DB292A3B29DA0D1B5 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 77413C0CE48FA70D463B327C /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DB6297628D1095BCA0E76407 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - DB75EB4EE7CE66C80C5EE26C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - DB77761A15E27B58B5FED5AC /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1B71BDB8210B42A2FC5F0C82 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DBB7F84496509ED6498EF3DA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - DBE6458D34651589E7720E78 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - DC744E01B81A89EEBEF1F1B5 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62BD73733BF5EF5838784676 /* LoggerI.cpp */; }; - DC80C2E33FB5AE127BEDF73F /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F6CE4D7AF84FCCEB30AEE82D /* CommunicatorI.swift */; }; - DD7559B902076F85721A3BE5 /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC93FDF7BB0162F351F94E98 /* LocalException.swift */; }; - DDFFAA38F6E8DA644E395A20 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - DE4F221E7B43ECB85073A654 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87C7BBC6F22A9A903F1FB5A4 /* BatchOnewaysAMI.swift */; }; - DECBEB44AF185A09A7FCC64F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 45C8F6FB616A194C3B2F51F4 /* TestI.swift */; }; - DF06D92BA14A9549F58F07A9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 323B42FB5AD8FC12D8AE7CDE /* Server.swift */; }; - DF801682057D9E3481021BF9 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C14840E2D26E13A7C5D6AC9 /* OutputStream.swift */; }; - DF841E9C81A9DD7D0D27B435 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3665BE59BB614AAE0CDF2FE /* EventHandler.cpp */; }; - DFA814FDD933EEA0C6018647 /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = EC56C57F4AF048D4B7528E44 /* UnsupportedAdminFacet.mm */; }; - DFC84089EB6C7C3DDCD8C1DA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - DFDC8F8075A4114675F568FD /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59F4F79624A15326B17E88ED /* PropertyNames.cpp */; }; - E0171B0F8F9AD0DB8A46CE03 /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 511AD3135337E08B90F9C34B /* BatchRequestQueue.cpp */; }; - E080250FCAB43DD84603268D /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CA06581C1F468D6DFACFA9C2 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - E085CF894D47FF6C9A3CD5B0 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = EE56A762315F2E6B866D2172 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E1A31D3A169D4200F2F3F07A /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 246925D469B0CD3F19FC5EF4 /* SysLoggerI.cpp */; }; - E1C1934BB4D16C16FA11BF0F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - E2150CB6BA407CAEB82D3EA8 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DEDA8D23AD6801409BD6D10 /* PluginI.cpp */; }; - E22D1E64BBBE6C060473ED19 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - E24DAC092926FBEAF91679CB /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC93FDF7BB0162F351F94E98 /* LocalException.swift */; }; - E254C9DB9C32B839FB1ED073 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - E3048FA6DCBF6AE977F880C9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - E31F8BD247F7EFF2BF88403C /* certs in Resources */ = {isa = PBXBuildFile; fileRef = 0841109EAF658FE8F75F1D35 /* certs */; }; - E33606D9A1D3FC4166231FEE /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6C1CDE26751507399301F945 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - E3763CF6D5C07A3D3ED6EC99 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 053E3EA43764388B8A0304F1 /* LocalObject.mm */; }; - E37C083C51128D4F812DFECE /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A5B27506E526D876D902739A /* AllTests.swift */; }; - E39D0BAF24DE0513CB5CFE63 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 273E5195A6D681AF9C343F47 /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3AE7D6BB6F62823F1F29326 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - E3B6DDA346162ADE50B1864E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 44B4CA994280A6DA16BE5B80 /* Test.ice */; }; - E3BED76CFEA93576EE34FA5D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - E3C19CCAA5625E5938BC62C9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1570CABD05CE88D0D442FBAA /* AllTests.swift */; }; - E3CDD467EEBA8EAC5394CE7A /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 77A833C278A8A075161EBAA8 /* Exception.mm */; }; - E3F3F343ED7740DD59F18110 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - E3F6799674E7EF82586899D9 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79ABC993469B3E7832F12F25 /* ConnectionI.swift */; }; - E40F05BA8489AAB761152686 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - E434146673B4685DFAA0386E /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */; }; - E46F315B2FE959CC2492512E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0F1E9B04036C7A1BB7003EF /* Client.swift */; }; - E4E52BB485AAE3F157C712D5 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */; }; - E5CBEC389C711B5308FF9381 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9B722E075AEEBEA3D471A855 /* ObjectAdapterI.cpp */; }; - E620BA872F0DE08AAF53BB43 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59FC3375D6E90AE4E3134B50 /* CommunicatorI.cpp */; }; - E634E724E3309B5C4CD661DB /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - E63AF4D08B9EFB88EA47A758 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 65E69FAE81A29C4237DF3017 /* TestI.swift */; }; - E6D2CAE0C0295F5764C05900 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A896AB8FC799C78576276217 /* OutputUtil.cpp */; }; - E7A7932B3C78022433B7A206 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - E7E91715336C76DC5AD01D93 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2CC389E3BAC5C77C6DFC3B2 /* Client.swift */; }; - E810AC28FA6CDF71929F2137 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF5C1DB557360C9F09A15BB8 /* UdpConnector.cpp */; }; - E823D510B3477722C248DCC7 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - E8693CAB4DA65B12C05C6B97 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C19ED6991B81D0F741D8B390 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - E8956EC59BBE5F86D680A905 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 87C7BBC6F22A9A903F1FB5A4 /* BatchOnewaysAMI.swift */; }; - E8B76651846F221ED65BED57 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 615E8464EAAEA906EF0953DE /* EndpointI.cpp */; }; - E8BE4DFEE22FD1758897D7FE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F8D90EA61D510888A922C76 /* Client.swift */; }; - E8D67F1B923E3B3C5B2ED0EE /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8DED3CCF7ABF57CB61A22DE /* Plugin.cpp */; }; - E8FA35D450BF9D20E43A1B63 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 714EC172B42055EC5BF98E11 /* TestI.swift */; }; - E8FC55175649B5BC8777C9D1 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = 96057073F871C88A9A437E6C /* RemoteLogger.ice */; }; - E90DFA944181471958D118D0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - E915365B65F166283C5A7F9D /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = B68896EE6832BCFFC1CDEA85 /* EndpointSelectionType.swift */; }; - E91FC07C9A154CE7C6F5689F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - E97CEF9CD19A46E9C4CE76EF /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D51058046137C699E489643B /* DynamicLibrary.cpp */; }; - E9B6B5DD581F17C55F3746FB /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - E9C5A9435BC9DF7C9F0896C5 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = CA042305E180817575383DD8 /* TestAMD.ice */; }; - E9C9012DDE95D30E68B720FE /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F95B39360BF7A5A8F3336C02 /* ConnectionF.cpp */; }; - EA1EDFC25BB45BDD2E4ED129 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */; }; - EA6F9A7E36D0151F968863D5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - EA7D0BAD39C7346EB632D6BE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - EA81884A036C1B83E353172D /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFF0ED34748664151B72A1D2 /* Incoming.cpp */; }; - EAAB4C91C36CE3F2DE37D235 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - EAB83885C6B77A2D99A17F28 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8BF3A34243EBCF0033484450 /* PluginI.cpp */; }; - EAC6DC63B415344EA963D8EF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - EAE752895F55485E6B9D314E /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52B6920962BB40484351B828 /* LoggerWrapper.swift */; }; - EB31B1FBCB271396431126B1 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = CB2C9FFB0BA6BBA3E848504F /* Convert.mm */; }; - EB3DA38B8BFB0D4CB9619CC2 /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6F0E8376C2AD9B7DDE63D13E /* Properties.cpp */; }; - EB4B274437E107D0C67AC046 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - EB51EFFEB6762C02A0AB27E4 /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = E3077BF706F4E5C8BA2500DA /* ImplicitContext.mm */; }; - EB89F1F6CBD6E83E06BB9DBB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - EBB341E040CC4BB228CA4D2A /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23234EE76F12BDE06765390A /* Security.framework */; }; - EC281258A1E8C93527EE8192 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - EC28468FB6DCDBBB3A2F5939 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */; }; - EC67DE80E989A1BBCA6D2E7A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - EC95DFA9D4A946EA82A21A69 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = D90B76046F6620FA39EB66FA /* TestI.swift */; }; - ECC4429CC6E5FD93D6461316 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44D64D7DE7F59927CC720908 /* ServantLocator.swift */; }; - ECE047163CB55F0E700743B6 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 135C5232085BDE2604DFEE21 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ED1AE7B4467B99CAE85A91B4 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = CB2C9FFB0BA6BBA3E848504F /* Convert.mm */; }; - ED5787262CD1986FC4D09E77 /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59F4F79624A15326B17E88ED /* PropertyNames.cpp */; }; - EDCFCF99DC5A895DF62E8929 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3E80F236FF9CC3D3ABDABC94 /* Test.ice */; }; - EDE9713BC451CE5E12CA1F8F /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 006CF4F54F5E4A89A3C663B0 /* RouterInfo.cpp */; }; - EE19CE8B034CFA0F59078B90 /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E9490D97D26F54E2DE96FE5E /* ValueFactory.cpp */; }; - EE2D1BCE972F27CCCA9D475F /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC48F3FEB7298E0C6FB9C9BD /* Oneways.swift */; }; - EE6577FBED8C0450B3C6345A /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00909CBA5C2223CED4ED9381 /* SSLInfo.ice */; }; - EF1418198F7ECD2729A37969 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 99CDD3BEF9831A379194BA9E /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - EF3919AD2952F7B3755AAF76 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - EF3F061F550183120C8B5456 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 10E29D53CB33DDBF93C9D34C /* InputStream.swift */; }; - EF5BF0ADF4AADCAD20D976BD /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = 925C43BB0C5ED12BA8492EA3 /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EF6B600C01360A3E77570577 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E39E0C1B10E19B51E2A7B2E4 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F08C001ECA218C73A5E4B48C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5242AA08870B9E96219670E /* Client.swift */; }; - F0A512F9DB88649C58FC9DDD /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = E400CBFEEB7A5C82AA30E765 /* Process.mm */; }; - F0B987226D3972F934B8BDE0 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = F0DB50962CCFE3F777DFA679 /* Context.ice */; }; - F13A4AA1DA75AA9E62F116D6 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC52095091A14C3F13099644 /* OperationMode.ice */; }; - F13FBCE9EEA5B5820E2112C5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2591D7770A25B731A7D961B0 /* Server.swift */; }; - F190A21FA780155868903D60 /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = 42B9B7D2C864B2D316ADE535 /* Exception.swift */; }; - F1E936862D17AF9C6D2B44D7 /* TcpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41D003139C78BDCDD6F24440 /* TcpTransceiver.cpp */; }; - F1F8BD03C1F0F501CEFD81AD /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3D62D9A3A91168A2CA52AAE8 /* Endpoint.swift */; }; - F21FCFEF6A0F15862F7627DB /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5206DD21F8DF743B9A61B14B /* Test.ice */; }; - F24BEAE12877F57261308991 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 753E12D3EE11FCE2B8E3B8F9 /* Server.swift */; }; - F253CC5000807172EC6C807B /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 246925D469B0CD3F19FC5EF4 /* SysLoggerI.cpp */; }; - F2DC38D190A55A61548531BB /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D9F47C5F7E714936213E615 /* Current.cpp */; }; - F2F8E672D0B6448433C0F8B5 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B40AB91DB677ED424B70FA69 /* Client.swift */; }; - F2FB54DF4CFFC0C16DFC2A9A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - F318F86CFB6818B759FC35CB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74D6726513624795759A7851 /* Foundation.framework */; }; - F33F3FA8FDE07357527E668B /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54E9AF62DC5520A54B0CF2AA /* Random.cpp */; }; - F33FD946C46440BB04E2C977 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - F358B827B18187A436C6B807 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 814042ADB97F55EAA8E0BEE4 /* PropertiesAdminI.cpp */; }; - F36251032A3F4AD1E9C34A21 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = C5E35C99046C1F715F4B4E5F /* Initialize.swift */; }; - F380C17C1B690A521FF15647 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */; }; - F3989FFBEA39D4B805F2A109 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - F3AEBFD1C3D3CE06735E9D64 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD76D50BBE665C06B63D8EA0 /* AllTests.swift */; }; - F3E8FD1DDD07547A0DF7D91D /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = BD917785198D9351B3909F60 /* ImplicitContext.swift */; }; - F4113CB3B13A1BE5DC7388F5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9668122A663485B283D6E354 /* AllTests.swift */; }; - F412B716233F6DC5B5F06E83 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 855BA3CF130D0F9747BDA673 /* Security.framework */; }; - F41589B2D9BF5C39BD869A77 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C2B5BBCC468EFCF6C706DDF /* Client.swift */; }; - F449A7BB4CF9C07F8749F812 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B3D95F9289578400C8DD7B0E /* MetricsAdminI.cpp */; }; - F44CA32D2CDFDDE45F4E72D9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5784A651E1A32B4749128DE1 /* AllTests.swift */; }; - F4524A3A925EA566BCDC4B69 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4219AE5EE1189E920E1A77AA /* TestAMD.ice */; }; - F4ECCD3D34061B012E0217C9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - F5144F08CA8D806B2D8428D9 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE548BE00DBF796605CE418 /* TestAMDI.swift */; }; - F52BD20B24695C7C57BE0E64 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCD573A768D574A4F55647D /* Server.swift */; }; - F55F952FA802F099EB0C65AA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - F560F6F9B086723C991AAF10 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 21D15D6C8E3919123C989D88 /* StringConverterPlugin.cpp */; }; - F5A588A2CB3E1874486FE65E /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 35AE9823C665F00939098688 /* Identity.ice */; }; - F5D8C4461601E5387C59C544 /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 533D65B77DD79A97AE2A1A8F /* SecureTransportUtil.cpp */; }; - F606445AA2CA160F522C5A99 /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ADE78EC4CCE93F2E0C1D0DD3 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F623630184815B0DE4997E35 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50E98EEC1CF21AF6E6D15DE7 /* ObjectAdapterF.cpp */; }; - F628A90221011F3D8A44697E /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E4387BB8D14955178CF59D4F /* Acceptor.cpp */; }; - F64C59605860BD6C23A27155 /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA0E2961E11E1150BA971DB0 /* EndpointI.swift */; }; - F6550E4045DCA75D9D253C74 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = F0DB50962CCFE3F777DFA679 /* Context.ice */; }; - F66F71C7ADF724DFA67D30B0 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7101B26D06079EE4319D8BB4 /* UdpEndpointI.cpp */; }; - F6D94346785E7673ABB2546C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - F72F1331B81005123FEB13DC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - F7690849B01BF1B6ACD65602 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - F79F0E9568D388C01B9EE3E3 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - F7AB684C3F174249370B021B /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4E7A74CCB2DED35DB6A1B93 /* Communicator.cpp */; }; - F7BCEDD8F080F78BF0C96B6F /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5BEA81A87699651060DB2E4A /* StreamSocket.cpp */; }; - F7BF505A4C89F1C269AFF18F /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = EFDF1AFD3FE00EFB8D0F40DF /* Properties.mm */; }; - F7C97C18DD83300CB84462EE /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 25C7F6C8A9023BB604FCC8C6 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F7EDF8ED76FF8FBF6F3B68E2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = F32E0BF2C8C888EC8ADD08A9 /* Client.swift */; }; - F873A044FA20C143145F4AB4 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F5945F8AFC7C9F3E86F3D4 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F918003040F10A93E73FA52F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; }; - F97CFDA8CB8A23C6E8BA3976 /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 63086CCB688E11EB58FA8847 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F98D3E533343BAF313BB0467 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A0E153E7D44172EC94A37022 /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F9E1CF73FB5D607F2B0B496D /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E00667716A1C103FAC5F4862 /* Glacier2.framework */; }; - F9E490F4986A69522B970470 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9F84FD475359A48442829A39 /* PromiseKit.xcframework */; }; - F9E6A31066990817284C9D29 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BE284562963BDD32CEEF2902 /* Timer.cpp */; }; - FABCCCE9318EED5B0DC9F223 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDCD573A768D574A4F55647D /* Server.swift */; }; - FAD4FFF37B2141B2899DF603 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - FAED9875AA5B9E82F4A02F8C /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; }; - FB6A27A456FA8598F97A504C /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 0F2C3F356F0573D576A925FB /* ServerPrivateAMD.ice */; }; - FBD8E146BB674CE428406901 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - FC1BA26D46512B4D4D2879BC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1599141F395131410355644A /* TestI.swift */; }; - FC3F53F10FE9848D4097C765 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4804F5E00E5C966AE7D9FD34 /* BatchOneways.swift */; }; - FC54082ACCBB1B3E3B7227C2 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 042B09E718B4AF7FEC08C931 /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FC9545FF8C73189660C16820 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DEE6C673CF16E6CD4116CC12 /* ThreadException.cpp */; }; - FC9A18D11F913E0934D5A0B1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */; }; - FCE39C66D42EC30588470F9F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BDD768C41EE98F60B1ADFD6 /* TestI.swift */; }; - FD4D122A3A32EFED9A1AD109 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C1A5C984E086E684382E966 /* Ice.framework */; }; - FD9CFF63A465FE5ECC4C7CA3 /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7AAAA99233AA95D5E2D8623D /* Admin.ice */; }; - FDAD5D7CD773EC05A012585B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; }; - FDB0026B8DD58118D1FB23F7 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AADAF4F2A9298B55860DC8AB /* Client.swift */; }; - FDEE2605F7A6D5CEBFFE8454 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D8E86E1134A0E4313F11F025 /* RequestHandlerFactory.cpp */; }; - FE391B7557F38AC35E039414 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6F38DD25FC0B9CF9834644C9 /* Locator.ice */; }; - FE70BFEF5C9234B3C7D50949 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */; }; - FEF1F5854B457272592D1ADC /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */; }; - FEF7D62704721832132771C2 /* ControllerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E12D95BAB303CB972B193B0D /* ControllerI.swift */; }; - FF0B5151635EB14F6DD91125 /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */; }; - FF1C80A5D20366AB76CEA278 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D75F8E6BDE3707D84F90250 /* Test.ice */; }; - FF32105E110C3C169B476D0C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */; }; - FF7889ABF8FAE68C77657C16 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5DABF3352FC370E8C8424646 /* FileParser.ice */; }; - FFE50E379B96CC7FE138393C /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E18A66D20FAB52A8017CFEC /* PluginManagerI.cpp */; }; + 0024142D08E8146ED6B749E4 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 284CD0E7A9CF17BA732ECF6B /* EndpointInfo.cpp */; }; + 002593FA6E99043AABEF19A8 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2F6024DEF147BA264B75062 /* Timer.cpp */; }; + 002761C37FEC1BD863FA8E09 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2FF3B3842F37F3295343B6C4 /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 003712874379D9EE3808F9E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 00A667381383D7A104D11FA8 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5794745FC0FAEAA72EC1AD49 /* PropertiesI.swift */; }; + 00C09BF817F1FC244083540A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 00C54888EF2A7C455F916280 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1EFF9091F708E5F6F0704B3 /* CountDownLatch.cpp */; }; + 00E6D2BCDB624F2D111697FC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A6263E6EB0712A439E75D09 /* Server.swift */; }; + 00F487D3AD3785EACE924C0F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 933DB0C83248BF059A7F1C20 /* Server.swift */; }; + 00FE0665F407342D39498E2B /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC4BB865E8CEF17247111E25 /* UUID.cpp */; }; + 01110EBADB5441FECC1C4EDB /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7716384B8702730F154043B /* Protocol.cpp */; }; + 0124F5D1935B3D72A6E64EF2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8A8D9D48C0A5E19D013CFA /* AllTests.swift */; }; + 015BE93C41A3CAC4E6ECA5B0 /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5349B4AD3076D48E54DF2ADC /* IAPConnectionInfo.swift */; }; + 015C3B4F1DF3714139598CF7 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = DD94218AB8FC82917266BC56 /* PropertiesAdmin.mm */; }; + 01901D0CA9AB329495A1E95C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 01D2D31B16EECA66BE55F042 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */; }; + 01EF086D0665E2D7DC2297D9 /* TcpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52104DAB06FD2367D5F4159A /* TcpTransceiver.cpp */; }; + 02189358E3DEAA3352126308 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 028A7F9998CD9F657744EE2B /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE088400874CD0479C5DBEB2 /* SlicedData.swift */; }; + 0299BA4B0F079501AA420194 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B538A5094459696C1D929F20 /* Test.ice */; }; + 02DDAFC836F2EC3E8E413597 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 668C6C0361ED4E7B91231D65 /* ServerPrivateAMD.ice */; }; + 02E5E7016AC05F7A655E2219 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E2686345DB372E56936CAA9 /* RequestHandler.cpp */; }; + 032977B58E34C07E224720B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 03480C9ECD1C063F948DF2EA /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34E8CB61ABA1F28BB7E698FA /* EndpointI.cpp */; }; + 03949E3F114B9055E063CCD5 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74C4E15A84E6E19C4F7072FE /* TestI.swift */; }; + 039778551EDBA4E26DED4F50 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A8FB36F298F50F55357C8BA /* AllTests.swift */; }; + 03BF29AA9F7A17F23A9C1835 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 57B34B2AE4E0AB6BD04A92F0 /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 03D4D96A2E376F6E49556346 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7026D4F8367154C1BE4B7F26 /* ServantLocator.swift */; }; + 040A2963B9F96DED942BF394 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 0437614A624B265C6C91294E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 043D93ED61C15B54AE03FD26 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 55A1E522AC3532C58222E061 /* Test.ice */; }; + 0446C65D43F18EBBF3567AB3 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BB0D9576EB2595A8BB30BC3A /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 04CE142AF814C48EC05D3A57 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */; }; + 04ECAF5D65B993AA6FEC994B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 051D59C471FDC1528AE471E0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 0525B9C6B3463614F468B342 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 0566211B24AFD8F6FC201F0D /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = CF258BC66CA2B0FD8CAE93F4 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 056A13A487D0269009F489FB /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 05F6543EDFBED1EBFC008F2B /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FCD16A3852D0DAB23E0EE5DB /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 062DBE92B3468C7729A921A8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 06315EAE2E8DEC55B85105E2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9460E602C8D4CFFC14B8BCDD /* AllTests.swift */; }; + 0645496C3D42A3DC78DD91A3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 0663556E59DB2BCAD49E731C /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41551E09D595E50A24EF5892 /* Incoming.cpp */; }; + 06B2695071931FFA1A1464F1 /* libIceDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AD73F53FFF7497EA96B009D6 /* libIceDiscovery C++11 iOS.a */; }; + 06D3D4E5620CA3A6A493BEE9 /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 021E511AD9C9C3E31BB6E815 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 06D6D868235FD52567DE309B /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; }; + 06FE7343E51654DF8A44C59F /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D2744013C529D8F086422990 /* Locator.ice */; }; + 070A544F88F5C9ADEEC6F00B /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E18609323F580043357FC2C /* Buffer.cpp */; }; + 072401D28B18ECDCEC8250D2 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7026D4F8367154C1BE4B7F26 /* ServantLocator.swift */; }; + 074F2BE69D4B6E0B74D4F19A /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F214226923D4CB01CC6D14A1 /* FileUtil.cpp */; }; + 076BC5E8463ED699DC235A28 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; }; + 078296B9E5B53929C2EDAD43 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52C032A6AC0462FD61E22750 /* AllTests.swift */; }; + 078873E8343ED44589D57347 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 0792D6EF94B03FBB419E442C /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4D3E7C6DAF7A1136E094036E /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 07B014AD0F72BC7A197F8071 /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85132CE480BFBD047F6718C3 /* LocalException.swift */; }; + 07B52E45F10451703560A6DF /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0C7FC0099BBEEB7A76312E5 /* Server.swift */; }; + 07D364FA5369EF6D8D4E5AA8 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A9B49B4C419054A03A217A /* Collocated.swift */; }; + 081CCE04946DEEEDA2549923 /* Connector.mm in Sources */ = {isa = PBXBuildFile; fileRef = DDA135F8EED8A314941972ED /* Connector.mm */; }; + 0821890B3D246581E1D1B1B1 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = A90D21866BAE0181F737C83C /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0870B5ABB7A3D930328ED6C2 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = D091865931D88D93A031BF38 /* PermissionsVerifier.ice */; }; + 087ED6AEA71048A2FE01505C /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7D8895A590B0D9627121789 /* ImplicitContext.cpp */; }; + 08844D0461D00EFE56B5AD1B /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F790BD181E9C75D456202B50 /* RouterF.ice */; }; + 088A6BBCF4CE108259A3ED27 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36463ABF4A88FE5854D32E77 /* Thread.cpp */; }; + 08C54E5DEBB4C78669163180 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BBBD22CE72373968131654 /* AllTests.swift */; }; + 08DE17DEFDD40B51CECB7C6F /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D2744013C529D8F086422990 /* Locator.ice */; }; + 08EAF643A2653FD89ABB7D42 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E41A2284123652035B9626D /* Glacier2.framework */; }; + 090798C938CF1CDC51DB3176 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB8F279A2779E598731A5601 /* DispatchInterceptor.cpp */; }; + 091491A97A97617EBEAD6299 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 092780B0FE2232D1CD619000 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 261E69F6A52C94909DF014AC /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0929B68F398D982D5850DA38 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90D35835E18D79ADAB716A16 /* Options.cpp */; }; + 0963E3DCFF980E77CD4D47CD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 097470873DDB97B92F0BA0AE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 09A04454140CDCF98273DEC9 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEAEF19C75C1808D288CE761 /* PropertiesI.cpp */; }; + 0A4EA454CDC37B237D4D0068 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 0A89B3A1F5FB92AADC45B237 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5AB0FB42BD3A39396266AC /* SecureTransportPluginI.cpp */; }; + 0A93FCD2AECB8E9CF8D55A29 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E69319811BB2583A562A6C15 /* ViewController.swift */; }; + 0AD7E8F712B6552BBAE3E0EC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 0AFB96465B8EEEC05ECAF412 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 272A8F85D1DA874AFB64025B /* TestAMD.ice */; }; + 0B1C6B9A74ACC04B0A179DB8 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F9015DB7A4BC8F5780598C5B /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 0B28D21E15B45D1ED33F3FFB /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C121A644BFC70CEBB7B25F34 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0B414F22DE059BE997F8DCF7 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AFA47DD3A3466A544964C35 /* Server.swift */; }; + 0B7E47D4AF20BEB3B3846836 /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96EF425FFAE7ADC67DD3FD81 /* PluginF.cpp */; }; + 0BA302A83685C2664019E98B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A635A54F2740AA6A0345900 /* TestI.swift */; }; + 0BAE1F47FB54A5D9966AFF03 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 54B51F429E8B56A715B61412 /* PropertyDict.ice */; }; + 0BF9304D519575F887C0D95B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 0C14941F15A92753776C0CDC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6927471763F231278861844 /* Server.swift */; }; + 0CA5D61E117CEC8D73FE01C8 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4F40F40EF79D1EFF0672F1C /* PluginI.cpp */; }; + 0CB00C51D1538F274D69152F /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */; }; + 0CDA05DC036F12BC7933113F /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B68A5626BF6AEC2DC151AA9 /* Connection.cpp */; }; + 0CE0F813D4862C914D0C9E72 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 0CF450A0A2F39F0454148A99 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D2B953157D627C928A6037A /* Server.swift */; }; + 0D1B0BF9795FBB8AED2DDD52 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A21AF317B8CCD5205D8A9013 /* ConnectionI.swift */; }; + 0D2EBAE3BEC12140C8FFEAED /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D440D5894319742F272192 /* TestI.swift */; }; + 0D383F343BD3B56CF3D71B12 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9158AF482E818BC8C94168F9 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 0D5BB545FDA707CA2E9ECFB7 /* LaunchScreen.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 99AF422C184D4E445CBFDCA9 /* LaunchScreen.storyboard */; }; + 0D88CA2C06D1F4F887B5AD7C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 0DA845ADE51AAB9852C20481 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 850A2787B4B4A3CB3C74175F /* Session.ice */; }; + 0E000047E932B1183B39C94E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 0E9CAFCAAF91B99E5E3B78AA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 0EA185C86B7350E72419B0AC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 0EB0010773FB71EE1DF2308E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DB4E7AC16E22943F389DA62 /* Test.ice */; }; + 0EDDFFAEC77ECB392806115F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78E2A2D2066C58262F423252 /* Client.swift */; }; + 0EDE49A3D761885D2096FA60 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83AFD09B0973C33E42BBA73 /* Value.swift */; }; + 0EE1712A1DA0DAA8F783EF04 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF2962E761A9438BFEC2D88A /* AllTests.swift */; }; + 0F2B48183718EAD49608D11C /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 322A1089B56E24F412CCAD3A /* PluginI.cpp */; }; + 0F71DD6A67178D0C707B2F85 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F904E8A5B6258EDDEAF27A63 /* Network.cpp */; }; + 0F8ED0401A5862836389F95D /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6C1FECEA4BD0E885787FD4F /* OSLogLoggerI.cpp */; }; + 0FB5C078A576612E4E33EB1C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 0FD2142CD0E2EBC31B9B2CCE /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88D78672154E80AA54EA998A /* ProxyFactory.cpp */; }; + 100D9B6351AB634A84E6EA30 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72BF04B404B4A6ABFA18A71A /* Connection.swift */; }; + 101226D239A906D14D232C6E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E14A708807768953B2379FD5 /* Server.swift */; }; + 102C37E47846D0EF9C75646F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 10A3BBE740D13AF0C740BC8E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0C7FC0099BBEEB7A76312E5 /* Server.swift */; }; + 10A917B381D58299302F0E9F /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 54B51F429E8B56A715B61412 /* PropertyDict.ice */; }; + 10F351325620C77D1E508B7B /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85132CE480BFBD047F6718C3 /* LocalException.swift */; }; + 1128B88B961ACEA596CB93AD /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E41A2284123652035B9626D /* Glacier2.framework */; }; + 11414641E84F1809DDD3B613 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 60F7DD828BF511AA7D9F0CFF /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 11704346304A31C19690E230 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = B354AAD31C61053198AA6359 /* Collocated.swift */; }; + 11A48FF3B68288AB5E816FF6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 11AF59D1CAEA33AD50DB0A7D /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF62AE44540279291FBE8D46 /* WSConnector.cpp */; }; + 11CB6E15E76A8A28DA82A0A0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0875A1294F5D23AA2CB7EB75 /* TestI.swift */; }; + 11EE9AE06E06C28E26C86ABF /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6331AC6AD612A19D131621A7 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 121807157EC413FB87069F3F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 123AC9FEB47482139B9F4974 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39513FAD1AB0E49430E2633E /* ServerAMD.swift */; }; + 126403DC6D1B09CDFC7EBAC4 /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5349B4AD3076D48E54DF2ADC /* IAPConnectionInfo.swift */; }; + 126AD68DB3E55E2881550C60 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36463ABF4A88FE5854D32E77 /* Thread.cpp */; }; + 127E17A1E5A7C739CC7CB1C0 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E59CE567CD0339935ECE174A /* StreamSocket.cpp */; }; + 12C757825C2E077AF245A57A /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 322A1089B56E24F412CCAD3A /* PluginI.cpp */; }; + 12F198DEDCC7F5FF1C915665 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */; }; + 1314E0CA8D759C03124C5A89 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37ABE7A8D0AB189693887A28 /* LocalException.cpp */; }; + 13281101D2A03AF0E39CEB91 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 135503B16ECF7FE8834B022B /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0C68422D8FEA96E3FB21520 /* UtilException.cpp */; }; + 13696A5AAC9DA9EFEDBC76C1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 137C1A5092681CB3AFD8A25D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 13808799A6443C9ED85394CF /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B68A5626BF6AEC2DC151AA9 /* Connection.cpp */; }; + 138633C2D72C15353E1FAEE2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B507EB7D03295B2920C11D7 /* Server.swift */; }; + 13999E48614CE52A6FBCEAC3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0875A1294F5D23AA2CB7EB75 /* TestI.swift */; }; + 13D94D7919F7C5CFD506420B /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0A0A432A404B1F07E7108C66 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 13E09FD31C14F9FE90AFFCC2 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03BAC263458A1F99AADFE0B5 /* InstrumentationI.cpp */; }; + 13F7AC00FF0C5CC44E51FEED /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C56F9DD18C4DA39D6933343C /* Reference.cpp */; }; + 146EBA16C94B5008FDE7403F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 1495E8C9AB710FDE4FE9B882 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91D39023FE37EB3ACD51A678 /* PropertiesAdminI.swift */; }; + 14B743A7A9FEB39E1FCFD3F0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B91C23CCEBC74093AC64126 /* Test.ice */; }; + 1521C12DDE5DAE9FE9AB3F30 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 1522E7E67E7F5EA1FEB64AD7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 152A2F71AF65CC663076A8DF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 159D1DCC76ECE3CF996152BB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0972B81E52AE5219A0359F6 /* Server.swift */; }; + 15C8E2EBF9387EDE196AC06E /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41ECD3890AF22A95E9667E8F /* ConnectionRequestHandler.cpp */; }; + 15FD74806A0E0036DC93EFD2 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C121A644BFC70CEBB7B25F34 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 160043DED8FCC4B4461B8CC6 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0832C0FE4DD00F57DBF41A23 /* StringConverter.cpp */; }; + 168BBC0D92DF7FCD60D03C5B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 169D64EEE25256A8EC47061C /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E83D440DF808EEF167018B4F /* Cond.cpp */; }; + 16B2DAB7DE56037E06A5CBB0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 16B9F0142D068E51EF591590 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7226B2863E023A530714AEFD /* InputStream.swift */; }; + 16DD456DFAA5CCD7214C4A22 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C86CB8DA4BE954C9B5E50C78 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 174897CF28EEF25C2FB22102 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95F4BB6C69D370E2E329C2E7 /* Object.cpp */; }; + 177DD1BC6757798874CDC528 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33E7FA0C07F541066A9CE1C7 /* Client.swift */; }; + 17D81C30F65D3D520478406D /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE088400874CD0479C5DBEB2 /* SlicedData.swift */; }; + 17DCF21F4DDABFF050F0745E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B8BE69409380DAA8F3C39DC /* ServerAMD.swift */; }; + 17F49F00DA7907DF1A4E0251 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 1810E68E33A0ACFD934AFB00 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F189089F52472441A777F912 /* Security.framework */; }; + 188D33D572864891FB2C6AD3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 18C072940A70F14F69FE3F40 /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C216F290E9890052BC928A0 /* ServantLocator.cpp */; }; + 19157D1B47D51F5EEAD12A62 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ECDDA9E457926810C0ACEE3D /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 1917AB2AB67D05D8EE504CE2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 039C029EE5082592E88E387D /* Test.ice */; }; + 1944F69679AB587CED597FF9 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4419CDC00A0E26DD43BE74BD /* Exception.mm */; }; + 1961595FE9CC70DD3D0A7975 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */; }; + 19764FF1E36C227E2D6E9E51 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5794745FC0FAEAA72EC1AD49 /* PropertiesI.swift */; }; + 19E0C061D8AC2085265BCB52 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E8D76449FAFB649E9E74273 /* LoggerF.cpp */; }; + 1A44854689C4F681D3348B03 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A030366430881927186CFFF /* Util.swift */; }; + 1A5AD7AF937810A8F33FA8E9 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F87F4E054DCB94D81AF2BE4 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1A60CBD5A72816C85C3E687E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CD6F8266C083D7C5841D1E9 /* TestI.swift */; }; + 1A60D6921AA577F7F0C230B1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47144CDB90451B47BF3BCB58 /* Test.ice */; }; + 1ACBBDA263DC52EFE9B40BCE /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E03FB734840AA5D7A8F37DA /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1AD6E3BB5F9392CE05DEBC03 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 1B4323468E2ADA38457B870B /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5F7B7EC6A1313D15C1D5F60 /* Incoming.swift */; }; + 1B5FE007B263C0C5CE21B0EC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 1B7BB4266B61BADD75263B04 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF136F6E80A01F3C0C176C6D /* ReferenceFactory.cpp */; }; + 1B90E097ED6BB4EE1E6E2D18 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF9FCD3ACA9EEA864C2B86E /* AllTests.swift */; }; + 1BD2E3999984D85A4EF3D0C4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 1BD3A7F4BA5A57E971C6B144 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41EA629E4C3C316AA9FF1EC /* TestI.swift */; }; + 1C2566EF8DCE13602549EC96 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 1C47E77C80C89D12679DF230 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 1C48E0521B537C80932E2D14 /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EF15FCC42E00687BF6F16DE /* Communicator.swift */; }; + 1C78CE07064B9E14D410DC54 /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF1DF22CB01FFA62872EB861 /* EndpointI.swift */; }; + 1C94225DAECAEB72F170D53E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 1C9FF3BD071F50569EEF5B8B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEF066D96D048F2BABE04F9D /* AllTests.swift */; }; + 1CB22725EF77D35C961DC5CF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73CE8E39782ED96D9A0DEE2 /* AllTests.swift */; }; + 1CD1D38A42A59FA95C281B9A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 1D0BDB269D00BAFC70F46DD0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 1D2F1653E1F237366ED37E74 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37ABE7A8D0AB189693887A28 /* LocalException.cpp */; }; + 1D52DAAEEECBAAB658304708 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34E8CB61ABA1F28BB7E698FA /* EndpointI.cpp */; }; + 1D7C04D443B33DB1206B5BCA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19E7F86972D806170B222DD /* TestI.swift */; }; + 1D986F77322F7C729F6DA3CB /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6A10305F53DC63F7512C53 /* IceStorm.framework */; }; + 1DEA3EF5FB9844787BF0B350 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88D78672154E80AA54EA998A /* ProxyFactory.cpp */; }; + 1E3DE5C8839A98964950D5E2 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0D533DA9ED4A5E4635718FB /* RequestHandlerFactory.cpp */; }; + 1E4DC7E206F1EFD6CC78DF94 /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DDD904763300878E12820E2 /* Properties.cpp */; }; + 1EC42A7BFF0FE4B4F2F355D9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 1F7E7557DB78D31D8B693A76 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B07536035C11C1E0934299F /* LocalObject.mm */; }; + 1F87FA6503E2986C537BCF9D /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B678F2298413760C49C183ED /* ObjectAdapter.cpp */; }; + 1FD45EA7DD80CC11311BDA31 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2F8371C545BE433208E8DD7 /* Client.swift */; }; + 1FEE55628BA976D57C338860 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 205960CCD9421E7A27191DF8 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1FF3BD3182DC2FD23143C3E5 /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2063A2A53076F3222EB4F4B0 /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE6FDA00BFC81B40451B476D /* TraceUtil.cpp */; }; + 207CEA59B4F540620C5A9902 /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E9F50378F7C12B118349B /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 20AF9AF75EC41050513EC67E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 2110AA4BF29B32586B7D8012 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1389F21CDF06949902AA2EA /* AllTests.swift */; }; + 214922BA289C0240CF8D93A4 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC5127D1D96F5CE76CAD417D /* Random.cpp */; }; + 21618E4743251E8681B2D50C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8D32C52389F2ECA0048EE141 /* Test.ice */; }; + 217623D13A3358D164F38F80 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E47484D1D3DDA643748FDA4D /* Client.swift */; }; + 21BF35714A2046CC7C4DF8B1 /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC4B3614730C36B93E6CE83 /* CertificateI.cpp */; }; + 21CDF2E5F6BCFB580B4EB4C1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44BC740D6506C3F1C8458122 /* Client.swift */; }; + 21F58D3D37C9BD39EF88E7F0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 220D8F9E8C5D43C960422E4F /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE7ED7DB9B386CE9925025BF /* FactoryTable.cpp */; }; + 22248D7C6A354BF4F3B37B9F /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2308C88106E21E86B64770B /* LocatorInfo.cpp */; }; + 222664EF561E9C7447CD18FA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 223D69B71DC50CCF692B7F5C /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B94A0EF9213206745C31CC8 /* ConsoleUtil.cpp */; }; + 224B69B54087CA089D7FBD7C /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDD807A24DFE6B5DE7A2B384 /* PropertyNames.cpp */; }; + 2265ABB36D033A2AEA5AF713 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA7ECC88F49663429276843 /* ObjectAdapterF.cpp */; }; + 22F2090EBDD0134127A4717E /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFCBA8D98D4B3EE825A33F52 /* SysLoggerI.cpp */; }; + 22F2D81B8BC499073EEA3139 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 234E7A5FBA79D5798940A9C9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 2370F05BA8CD3A5DE60D5016 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E73B68A6243CD1C6AED87DFC /* SecureTransportEngine.cpp */; }; + 2391835E95B662AB5F5E5375 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3637F3FA49D41442776DFDA3 /* IncomingAsync.cpp */; }; + 2394083793788EDFF3EE4775 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB3E29E74373ED5837D69F8F /* Shared.cpp */; }; + 23FA0DE689D5B4E11968579E /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = A594F0C1849CEE5DE3E665BC /* SliceFlags.swift */; }; + 242B6F8412F43F68427F852B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 2462C4CBDA2826A41BE4E987 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5E4ECB4BECCE515728C9F0 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2471D7580A492BA30C327A3B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 2491EC7A2D74733C470C6A68 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 89260FC783CBA8E95B993CBB /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 24E6ACFCBC8D63858A66F8E7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D440D5894319742F272192 /* TestI.swift */; }; + 25E71CF92C0AB9AC508B822B /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D2744013C529D8F086422990 /* Locator.ice */; }; + 25F19EF255F8105DD0073F46 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EB90003DBB8FFCE6E52AB05 /* TrustManager.cpp */; }; + 25FA9E5BB2F62F57E834F0D3 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B15F39FC8689FC1FCB89F477 /* LocatorF.ice */; }; + 261B9A566F38A036CDB8DE0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 262F1A7BECD5EACD2CC40FDF /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 998084A78E611312ABCE0CC7 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 26485651B696FE7658060E27 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD2FED021766EC049A1603D9 /* ThreadPool.cpp */; }; + 2690FE6928C7301F1171F909 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 2693EEA463DCA2747EDF41AB /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CE428CC2328F83A0C7CF327B /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 26D98B6E9BC254A41188AF39 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 27181703FBC2E1DA0369B011 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F81F55C1F60FE16B0090352D /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2786A90145677A16513C7844 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C99CAAF3E88E8B7B746C43A4 /* Server.swift */; }; + 27A328B4CE2F898DA5F44FF2 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAE2612261AFAD9F126ABB05 /* PropertiesF.cpp */; }; + 27AC9C069FA287B5CBAF3DFE /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7AD3A474B7A1D069CCFC0AFF /* RouterInfo.cpp */; }; + 27C5B9CB32BB0B8E9E992910 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD2FED021766EC049A1603D9 /* ThreadPool.cpp */; }; + 27F90A37B3E7904B31A85347 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 14422400D546329D7D9926DF /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 283933A1953976C2DA9B7488 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A83C77E4B0D0283CA18020F /* AllTests.swift */; }; + 2839DAC15D5287856ADEBFB0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94E1968DB24F7AF587425A1C /* TestI.swift */; }; + 283BA03D63F2E5CCD241DAE2 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 49F7B52E1EBFD001EE29C9E6 /* Descriptor.ice */; }; + 286DBDDCA7308C38785E37B6 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5E41A2284123652035B9626D /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 287A26E9212E1D0E2A5C8FD9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 28879CEA796F54C475B2D579 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 212F6BD6C0162AF0C8440224 /* ServerPrivateAMD.ice */; }; + 28AA316F364B77A7B7DC2AB2 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A70C14B2E0E746A0591AF1D5 /* Service.cpp */; }; + 28B350177A5BD9DD6EF6B94B /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA48BF39278DC0F70FC216F1 /* IceImpl.framework */; }; + 28E61955AD742A460CBBC90C /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79108D2FF0232C16468D88DE /* RetryQueue.cpp */; }; + 2944A746A0AD5BCC69AB906E /* libIceDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 622CDB9E04A43DA05E046991 /* libIceDiscovery C++11 macOS.a */; }; + 298BCCC75141BF72F190CE7E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1EAC7DC09EDCDE664A6D412 /* TestI.swift */; }; + 2998ECF0FFAD5226217BB355 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 29D3ED44FB31C93EBFBE9A37 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C012332733DA4296E9354F12 /* Router.ice */; }; + 2A173AEEE9215CF18C978D36 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDD0F141EA94FBF630E95CA /* InitializationData.swift */; }; + 2A1B7F74C8C6C6059794135D /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 526B263C4E63A5FD88236538 /* UnsupportedAdminFacet.mm */; }; + 2A1BF705C2694060F11F41CD /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 817336550425E7439ECF507B /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2A1DB428E8E4B213D629E6C4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 2A37350E682D5A065F5B6DDB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 2A85673264DD9C4FF629CA6A /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = A0D2E40EB5EB722B76219B03 /* Exception.ice */; }; + 2A93CE8856B63795C5EE6ADE /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = F71C3042386918BE757DF8CE /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2AC2F321EA8DF646A2F8ED2E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AEEFDD3BB442CB6663CD683 /* Collocated.swift */; }; + 2AC395DB52A3D7F577FE5113 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D1A1C798CA5E03EACE7C337 /* Client.swift */; }; + 2B02CB531C54D4196BB7C999 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 44DB441A5970DCEF394351B7 /* Test.ice */; }; + 2B305AC06256E79C862653EF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BBBD22CE72373968131654 /* AllTests.swift */; }; + 2B30A380F57B5CB57817CA97 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64B510708D04016FA459B8AA /* Base64.cpp */; }; + 2B58D579C89BC7384E631448 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 2B7BFA0E1A18A214B0817F80 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = EEF3B6F7FB1EF2FF9ED73F1C /* certs */; }; + 2BFB3DA0C51EACA54D43C16E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E14A708807768953B2379FD5 /* Server.swift */; }; + 2C19656A4AF5ADE9DDBAC7A2 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6229E6CA09F91C68DAB3EBD2 /* InstrumentationF.cpp */; }; + 2C66AE552E67BA6B0E3279E9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78A482E000141177A98F078F /* Server.swift */; }; + 2C832AC371BCFF33D4BC6346 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 2D142331D29BB284AC8162D4 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; }; + 2D292BDD0A9A1E24479E4AC9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 442DF01B56EA1176B35EB3BB /* Test.ice */; }; + 2D34799609A8A41448486E2F /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3547A6F171E6B76B9FC63BAE /* TestAMD.ice */; }; + 2D8A2B0415C308C0966E225C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 2D8F31685029DE1A3E5BE883 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 2DBE706E25A1D98BAF735316 /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 07E2F60461505D97899C6536 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2DCC8625E26DFEBB97885357 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 2DCD004B98AAC958160F09D2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25F81F514862521A7077DBE1 /* Client.swift */; }; + 2E09829FB9961B1320CCECA3 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4CF2077C814A7377DDEE06A /* ClassResolver.swift */; }; + 2E760408E022B189EF18D310 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */; }; + 2EC1ACB1D1AED9D08FB2C85C /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 01FA7B3F816F4E1BBAC6D837 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2EDD058114B565BAEDC043DA /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */; }; + 2F32133784FFFE60DDB6CF8E /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A7CAB2E9D70B8A29FA66E759 /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2F5E8687DACCC41271E739BD /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 301D621EB654AC9C3E4E4E28 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 2F84EC541FF7E5156D5ACEF5 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A2C21B3DB0E4BE665D1475F /* SSLEndpointInfo.swift */; }; + 2F8AE514AB33E0B549023000 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 2FF16A6CC846F2F5154FBC4A /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B33C3DAC38D7CB012602F1D5 /* DefaultsAndOverrides.cpp */; }; + 3050ED6F4B7AB30BE192A06A /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0D533DA9ED4A5E4635718FB /* RequestHandlerFactory.cpp */; }; + 305A0C86472070B1AE564313 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22BA0A2A8A538610278E1A67 /* Client.swift */; }; + 30884BEB531E5485E17BC923 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D06539D647623F84D3C475 /* Server.swift */; }; + 30AB0ADF3483478E5ACA7E81 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A030366430881927186CFFF /* Util.swift */; }; + 30BD1CC63A3B7E7A6A05253C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5453037F24499786E84EA5C /* AllTests.swift */; }; + 30CD85B4633420B63D7280C9 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 623BF93B592B69730EBB8EDA /* MetricsAdminI.cpp */; }; + 30F9B1C5622A20E712E8F578 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6BBD6CC1E3C2A7CCF12C722 /* Collocated.swift */; }; + 313B877D5F4FC1DC8134BD1A /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B584730D968F098A9E3D59A /* ConnectionInfoFactory.swift */; }; + 31465B39CD28025DA514741C /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */; }; + 319400CD6F1733AC4A5C67A5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 31DEAC51BC34082B948D1968 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 803EE4274BE0AA9170794297 /* PluginI.cpp */; }; + 31E4CE81617D1D57DB5855DA /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9502656F9828A55BF15B904F /* ClientPrivate.ice */; }; + 31F9687277498B7F842EB5FD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 32093CD583078D225E5120A3 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F790BD181E9C75D456202B50 /* RouterF.ice */; }; + 3289BB4B1953834352FD82F1 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F972A8E2DD097AC08C4A781 /* Context.ice */; }; + 32D6D9111DB62134301F669A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 390FE2A8AA85FA1F066DB95F /* TestI.swift */; }; + 32DE5ADD106045FA5CA17523 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBCA8B1BC5811A9ADA86ED97 /* TestI.swift */; }; + 3309A74215F7525C83407C81 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D1A1C798CA5E03EACE7C337 /* Client.swift */; }; + 3325ADD3479FEC8BA570AF2F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 334E0154C5339FA9329AA0B0 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3207B48B98719A7CBFD2337B /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 335624C3ECBAF9AB3A04F8D9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A343A525055E169CE399ADF /* Client.swift */; }; + 3372567B45FEE2448D214402 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 55A1E522AC3532C58222E061 /* Test.ice */; }; + 33AFEF0D5E65901C071C1C94 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 342D8CF48C45CE057CE74D6D /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B17547CF25F9F6D499E59F4A /* IceGrid.framework */; }; + 3449B9201FDBCB134E91E359 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 34648D1661894C9189372B45 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF9FCD3ACA9EEA864C2B86E /* AllTests.swift */; }; + 346E08396546C485F32F403D /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6B5589624E8C18A764174736 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 349CE6230F2A35214A748F97 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 349E070F6B2DE7E59497C907 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 34A5FAF205B1C97960404164 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 87DF00D7836869F2204A3283 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 34A8AE509874E979426723FC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 34B480D08F5C42E959C213B6 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 34BC98DF30DC09C7B23D8CF0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78E2A2D2066C58262F423252 /* Client.swift */; }; + 34C56ED108DA5603633185D5 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C990D1538CF08ABB45003017 /* StringUtil.cpp */; }; + 34D0F93C003DC567F3914394 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 35133BE11FFC8A317FB38A02 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62FF3521D46F685DF4E667C3 /* Exception.cpp */; }; + 3522FABD1EAB55A5FCD80BAD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 352E655F4D372EA208233852 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E9093C94D6596E3660EDFBB /* TestI.swift */; }; + 3558C96DFC3290A6100F2D27 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F23A1CF4CB61B7741942A35 /* AllTests.swift */; }; + 35AEC3F894DDA7F8F781BCE5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 35D24984165CABD98088A6E3 /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44837E3321ED1322DA4D4AE9 /* Current.cpp */; }; + 35FFAA7246FD899886CFC418 /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6F7C2EFAAD90AF05C836E8AD /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 36791393A4409B89D926A227 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA4F363A3C06C04C4B7E187E /* Instance.cpp */; }; + 36831A8229401DFDBE395F96 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37F1FC9323F6C45B1AC35F58 /* LoggerAdminI.cpp */; }; + 36CF43C7392987B46253C456 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 137ED7A94BB9E11CC053CEEF /* Test.ice */; }; + 374B575A6906DE8A97FFAA8B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9226ABAA5FAF037A4782672D /* TestI.swift */; }; + 37770D76CEE3C0C488D51DB9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 3797173835AB3B517EAECC5D /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D2B953157D627C928A6037A /* Server.swift */; }; + 37A7AFE9702BDAF42C2F9F38 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = BFC3A3040FFC8B6EAFCA158D /* Test.ice */; }; + 381F2E1A3E0357DD8D7F6A8F /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73EC11AA0D472514A88B1245 /* BlobjectAsync.swift */; }; + 3824528B30BE3C7E4502A4CD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC8A0F90321653214F836FE0 /* TestI.swift */; }; + 3858453259EA40101098D345 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 145ACBB9D8EC5ABDF5109CD9 /* LoggerUtil.cpp */; }; + 387C9FBCF807EBD311D89BB2 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7A67EB9002C23EFFD4F4331 /* LocalExceptionDescription.swift */; }; + 38847268EB2F2E4FF7AF0940 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDFC1CF071BE8BC5D2E9356F /* Instrumentation.cpp */; }; + 38D6ECE8850D5A354E086011 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 40E032E865784822992B0432 /* TestAMD.ice */; }; + 39268F660BBE6359E8AE7A88 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 724325600514092A8D262EAA /* Server.swift */; }; + 3930F2425131AD14D8FF8A43 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 3995F0DB81BD82BF3885934B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 39A90996478580DFA113B50C /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7C3C842B0893C4AC6BA6C676 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 39B5D32367FA4CE4F120027B /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5CBC38E08DDBAA7ABAEF6E /* LoggerWrapper.swift */; }; + 3A1DB79600F0C7ADE8B85F30 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 3A37F816C90ED30F4101C30B /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = A7091E2B84A51D7D4E990597 /* Controller.ice */; }; + 3A8010932AB49B8EA7B1F903 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 864A6D958111A066271C2056 /* TestAMDI.swift */; }; + 3A81FB47D8BAEF9D47F67CAA /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F67CEA524FF25FE6949915A /* Acceptor.cpp */; }; + 3AB6DA8D15B4E7A6EADF3857 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE247C4C7515E78416734AE3 /* TwowaysAMI.swift */; }; + 3AF6C0BEB04AEEF81EE7D9CF /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F972A8E2DD097AC08C4A781 /* Context.ice */; }; + 3B1E75699E8BF0FAA71699A1 /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5CBC38E08DDBAA7ABAEF6E /* LoggerWrapper.swift */; }; + 3B3AD0090683BBDA262F5508 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 44DB441A5970DCEF394351B7 /* Test.ice */; }; + 3B3E61B98E6458DBE8E1D134 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BB1E5488617EE9721803F5E /* Server.swift */; }; + 3B43ADB16168DD10352EF8FE /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C18CB03DD5155C1C2B2E8A8D /* Proxy.cpp */; }; + 3B94BD4C53B501BBED67162A /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 336BA488F873C8ED6AC70009 /* ObjectAdapterI.swift */; }; + 3B9BA3DCBFD517ACF2F26189 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1239FA44EA72DF60C02E90F3 /* Test.ice */; }; + 3BAC27CEC5453D4304B6F587 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = C08D8DDDF0EA2D26B0BC84AF /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BE4BCAAC743E7A5403A650C /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF74B405592DF882FC711C4F /* Plugin.cpp */; }; + 3C32347A7AB72AEAD51D1F5D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7FF54833864397ACE8E797E1 /* Test.ice */; }; + 3C7DBC6F0CD83B98E01D4CD7 /* libIce C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FF873ABC0C688353DDDFBD8 /* libIce C++11 macOS.a */; }; + 3C8FD1C2BE27B7363743D8E3 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */; }; + 3CA10FE78E0D7F55CAD1CE77 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8132A588131377350457A8A /* Logger.cpp */; }; + 3CB5C6939CE6B301FD9E1657 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 3CC4943D16C9FEBE7E141812 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 318B426F0ED72A433F61DD1B /* Collocated.swift */; }; + 3CF091986D8294BDD0805398 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD1ECACDD717AF71AF60969 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3D2E6350CD0369A8D7DCC7B9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB750BB47FEA9559FDA7DBDF /* AllTests.swift */; }; + 3D3DBA3857372EC08983506C /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D93BB1CEE95D6DBD647C1F66 /* ProtocolInstance.cpp */; }; + 3D8DD8762C2BA500E5DFE5FE /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE6326CC8423A7AB2E011674 /* LocatorI.cpp */; }; + 3DB2DC5A60D2FEF8C7AEBF0B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 3DB99BBABAB7C0D17101B41D /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 40E032E865784822992B0432 /* TestAMD.ice */; }; + 3DD95F32FA86A873399E022B /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 212F6BD6C0162AF0C8440224 /* ServerPrivateAMD.ice */; }; + 3E36C9FA26A5630D5673273F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 3E3FF2E3D9C5CA825A70EEC5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 039C029EE5082592E88E387D /* Test.ice */; }; + 3E508B3BB54CE3FF221930E0 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73EC11AA0D472514A88B1245 /* BlobjectAsync.swift */; }; + 3E98E39692157C4AC1F9B666 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 724325600514092A8D262EAA /* Server.swift */; }; + 3EA13F38B9051070A90B295B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1239FA44EA72DF60C02E90F3 /* Test.ice */; }; + 3EED6409FDB6D53AA939D95D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FB36E85F6FA876D88996239 /* AllTests.swift */; }; + 3F41FDEBAB1DAD3E79E0A918 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC8A0F90321653214F836FE0 /* TestI.swift */; }; + 4006DB9C513AA2E07BEDB69C /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03031EB4AE5379FF32A3AE17 /* WSAcceptor.cpp */; }; + 4039FCD3C24A18FF82E9FFCD /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37F1FC9323F6C45B1AC35F58 /* LoggerAdminI.cpp */; }; + 406926F796CB77DBF6FA3561 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 407C3D11A0C3E4733F7C99B9 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7F2189733BCF9C8B454DB75 /* LocalObject.cpp */; }; + 40A14EE0B6207B29C7616CAF /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57EE371E56576A8317C8E490 /* IceLocatorDiscovery.ice */; }; + 40A42C5D3C188B503233C8B7 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 4136956F7D6DE65A0E0D9582 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79108D2FF0232C16468D88DE /* RetryQueue.cpp */; }; + 41459A4D16FAA88A013E3141 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59C9EF4D725171D05DFB4A4 /* Client.swift */; }; + 417681F023BC2C9D3ED87D34 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67DA500D7FCA7E4FCAAEBE8B /* Convert.mm */; }; + 4192519E1A06C7457BC9DC1C /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = DD94218AB8FC82917266BC56 /* PropertiesAdmin.mm */; }; + 41DCD9F3CBE93222E74B7929 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 41E0DA93CD81990203545959 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C7DAB3F7C68697A828A55533 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 41FF5166052684179CBD44E6 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 668C6C0361ED4E7B91231D65 /* ServerPrivateAMD.ice */; }; + 4222160FD257F0C52E1A09CD /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59519EE11AE42BA7F6AF270A /* RecMutex.cpp */; }; + 4238E2CD900A7FE78DA5F8CB /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64B510708D04016FA459B8AA /* Base64.cpp */; }; + 425141FE2ABC86DD5B948F74 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBCA8B1BC5811A9ADA86ED97 /* TestI.swift */; }; + 42623FB3A22D5A9F538E4DC8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 42B377EB3735683014AB234B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = BFC3A3040FFC8B6EAFCA158D /* Test.ice */; }; + 42D6CDCD1F1AA39A8710A58B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D4683E4EEA3C7003504AE96 /* Test.ice */; }; + 43300A34CBEBFFA523449B96 /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A65FC585E09C2A76B625463 /* Process.mm */; }; + 43ABBB28ECBB5FB5DBC4B16A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C99CAAF3E88E8B7B746C43A4 /* Server.swift */; }; + 43B04F48C318CB003D00F36C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 43B0E1298CB264DF6C7C335B /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */; }; + 43C041F80EFB1DEB20266001 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73CDB2D5673ECFD9B238AAB9 /* Time.cpp */; }; + 43DA7C98896E7FCBBEA77A79 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 442DF01B56EA1176B35EB3BB /* Test.ice */; }; + 43E0EC14EBDBB1DE22D4CD5E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D2DBA835FDF24BF6450F945 /* ServerAMD.swift */; }; + 43F10B231BDC3A276EDC475F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 43F7AAF102E93B0FDFF85F8A /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7D45D866B9B71FB7B57D0E6 /* WSTransceiver.cpp */; }; + 4417A48F1C9C2AF14B7EA611 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 446C2528778DF27ACAD2F032 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 447023757EA980624C55B149 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDFC1CF071BE8BC5D2E9356F /* Instrumentation.cpp */; }; + 448B14F91C6D399FDA3014C9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 44D90D302B2EEC55F9628897 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EC92AF3F5FC050268FC433B /* AllTests.swift */; }; + 451002ACFD0D95E5DEB8FDC0 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40EB3E43A832B13BDE8D4720 /* PropertiesAdminI.cpp */; }; + 453B1D72841FECE7DD81CAD2 /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7716384B8702730F154043B /* Protocol.cpp */; }; + 4582943A45BCCFF48F5781A0 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 773839314982B481FB9A5F0B /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 45A5B7A80526F19EAE9A8213 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F28FEA3804836A76EBCC3C60 /* AllTests.swift */; }; + 45C96192E204B6AE5B272285 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD61825057BFBFBB41D39597 /* ServantLocatorF.cpp */; }; + 45DFE7C0805EDAD8916ACA5D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 47676F6C4415D7C2396021E0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 47753FB20D5A73A947BA72AE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2527DF77271CA0B2E6A8E151 /* Test.ice */; }; + 47E2D5917DCF925D43AA13E5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5FABA39878E8DF7941FB168E /* Test.ice */; }; + 47EBE96207D7DAD1B4A05816 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F1C224C87B599183A478B5D2 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 480AB36ADFC17F0A48F9C061 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 23F70E58CAF1EDFC2272E758 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 485B6A81CA77B322832278F1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 250055BA1C62F324250B2548 /* Server.swift */; }; + 488364CA860E4460F00E1783 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C14F40BEFB46405B9613959 /* Client.swift */; }; + 48B12429F98610666A92254E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 48DE4F93CF3D8599F8ED2897 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 48E6810798AD40D0134A0BDC /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86BEC7DFBDFA7D664AA2948F /* Proxy.swift */; }; + 48F81BC696321E7DD455531E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59C9EF4D725171D05DFB4A4 /* Client.swift */; }; + 4904EB407049E8EA654B7169 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F87F4E054DCB94D81AF2BE4 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 49440DE41C93F8BE96CD82BA /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 803EE4274BE0AA9170794297 /* PluginI.cpp */; }; + 49510B169380DAE5FC8B2E10 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91D39023FE37EB3ACD51A678 /* PropertiesAdminI.swift */; }; + 49BFF564D0A72D4835A03029 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAD58C233C507C35334F1CC6 /* ThreadException.cpp */; }; + 4A0A85433AA1844F74CE92F7 /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90B2EAB5D9DCC4178F8B5B4 /* ObjectAdapter.swift */; }; + 4A16A9260EB179A795E4A1B3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 4A60F317B7C57A4BA4276CD5 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5D1D431EC03874A83605E840 /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4AD38C3F3E071A3224EEB4A0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 4AD70268730EF7733C819FD0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 4AEFE53F63AB7281FE54BB67 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB8F279A2779E598731A5601 /* DispatchInterceptor.cpp */; }; + 4B1606F2BA1FF3AA33BD2ACB /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A67621EF8B41A02D1A5852 /* IAPEndpointInfo.swift */; }; + 4B323EA94F5330CB76D61630 /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC642EC1944D582B3C794113 /* ConnectionI.cpp */; }; + 4B50AADFE0DFF81D7EC0883E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 4B937F11A84BFBB5430E5CBE /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA4F363A3C06C04C4B7E187E /* Instance.cpp */; }; + 4BB6AD5396EB3BFB1C7CFEE2 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B17547CF25F9F6D499E59F4A /* IceGrid.framework */; }; + 4BF7802BDB2912938F8A5401 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 787DA99C9345BD9AFAFE23BC /* MetricsObserverI.cpp */; }; + 4C24A8CD9D0C8D7685AD6971 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 4C2F700A5CEEF1722CC20508 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E052D5C173FB6BC71D76D94 /* Identity.ice */; }; + 4C316D1D7AC7677AEF8E39CA /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA48BF39278DC0F70FC216F1 /* IceImpl.framework */; }; + 4C8BC3B2EB3417E69F88DA48 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC4BB865E8CEF17247111E25 /* UUID.cpp */; }; + 4CB50F7AEBAA2C7624FF53BC /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367CC264BC70C8FAE95481D /* OnewaysAMI.swift */; }; + 4CE8A1AED2F78DBC7A6F5911 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EDC1F699D0173A3262ED8783 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 4D25051593A83339036F00C8 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E59CE567CD0339935ECE174A /* StreamSocket.cpp */; }; + 4D93CBB4538E3DA31B4D9509 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 4D99483783F1AC42FE90CFF1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B6EF30F36318A639D638152 /* Test.ice */; }; + 4DA7EE74FC425C8FA4A0D33D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9600C016070409DE6568A37E /* Test.ice */; }; + 4DD2839688E91F883C110B2D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20B1410DBC821FBE25FF0338 /* AllTests.swift */; }; + 4DFB007003F91F0FA4685AD7 /* StreamConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCAD591DFA056E0732E8B3CD /* StreamConnector.cpp */; }; + 4E2FA101FE0D14BB24E244BB /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 694A7AEF1BC68DE001EACE83 /* Metrics.ice */; }; + 4E305CC8C23442E8892A5969 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8E0CCA4C7037506934137C /* AllTests.swift */; }; + 4E478527FDA44E11ADE2D2C1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E312FEE4E94C01795C8BBD9 /* Test.ice */; }; + 4E494762C46A37CDE3C4DFDB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 4E5192486BA4131D7C59C04E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 318B426F0ED72A433F61DD1B /* Collocated.swift */; }; + 4EACF0E5A18BA2EF76930E11 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C83A2E19EDF012C6703AB53 /* OutputUtil.cpp */; }; + 4EC5E9F6697A9843D9714C53 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 4ECFCAD561920DC45A770E30 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 4EF1CFD1E2EE8924554E5C30 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 4F5EFC4F5C35BC8BA3DAAF61 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3B0B441C377169B54CEB0DC /* AllTests.swift */; }; + 4F80D4F7344E223FCD8F18A7 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 98A6F84D22ACDB0E77E825ED /* ServerPrivate.ice */; }; + 4FB3FB49E23C28F3D464FCEB /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C630DCAC52483EE71792F541 /* OutgoingAsync.cpp */; }; + 4FB740BB1EA5F46970098735 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E90B07958C12B403F8FF0C /* Collocated.swift */; }; + 4FBCFE426FEE604A4F5DC518 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD8E68C39A86BCA8855BE97 /* TestAMDI.swift */; }; + 4FC731395B73EB87D18816C9 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F0C20EFBCAFF52B67C7AD11 /* BatchOnewaysAMI.swift */; }; + 4FDF4241D3A950D22006028D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 4FFC82EC0B0C3618EF922C5C /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 914E1A04B42CF82EDA413850 /* Object.swift */; }; + 505CDF80EEF8B1D50E79B835 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAE482789CF229EB04641D21 /* ConnectionInfo.cpp */; }; + 51244B53B4AE8A7CC88FDDCE /* Transceiver.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4538B61358B8FF03922527F /* Transceiver.mm */; }; + 5132AE8676BA0DE8C1328C18 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D253A2160FCD5C0E019B003 /* SliceInfo.swift */; }; + 51668FC30C14F66919C8B381 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF2962E761A9438BFEC2D88A /* AllTests.swift */; }; + 51E4E719DFABD7EA5EA818BB /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62FF3521D46F685DF4E667C3 /* Exception.cpp */; }; + 51EF59C8C4309B80A6A73346 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = F5FA2C9600E75B1FCD46907F /* UserAccountMapper.ice */; }; + 52078C9A5B75240335B04E85 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 5219348A3397452F75226943 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDAA337977433E1B2F9235CA /* Client.swift */; }; + 522382E5C10D04C87636A854 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 52488E1CF652C3BA12DBB7B8 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E052D5C173FB6BC71D76D94 /* Identity.ice */; }; + 527E15A291C202A19879B6EA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CCDC8C722C7D08EBC696FC /* TestI.swift */; }; + 52A5E961C78A39186663169A /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 863A6469470E9F1912BC6E4F /* Mutex.swift */; }; + 52C9EE165E8D6C94EFEB4380 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01EC749BC2A7D4FCA7490B47 /* Endpoint.cpp */; }; + 52DABF5017CEBE347B8FF3DF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 5349563EEF2578DB61C4A973 /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6C1FECEA4BD0E885787FD4F /* OSLogLoggerI.cpp */; }; + 535AA68DEA4DE9AA044CF914 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 5385448290174C711B57CE51 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5873A42F0D248A8146E98350 /* StringConverterPlugin.cpp */; }; + 53B126E081D0367234EF6CB5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F23A1CF4CB61B7741942A35 /* AllTests.swift */; }; + 5431C4CE5BB733E53F0F9203 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 5437389FCE14EF4107E150A2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 54A1EF08C8A87DD1CDB2505D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CD6F8266C083D7C5841D1E9 /* TestI.swift */; }; + 54E34B14AD4D1750156935B2 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73CDB2D5673ECFD9B238AAB9 /* Time.cpp */; }; + 558402645321D08AAE5D4765 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5300396B18CE9C2FCA0A8E2F /* Transceiver.cpp */; }; + 559004F4BE7AEA5CD275952D /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = C61C5DA6F7F7080FC83FE964 /* Exception.swift */; }; + 55D25A5EACBD3D706C3A0FE0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B5064B9C0DABEB987B39730 /* TestI.swift */; }; + 55D3DA41FC490F04DD2529B6 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 724C0E53DAF83BB50C3912A4 /* Endpoint.mm */; }; + 5636B65B339485B359629946 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D9D973870D744362BE6CD5 /* Version.ice */; }; + 5669D7A6BA9E41C504A360F3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE0FC793581C11E605079EEC /* Server.swift */; }; + 566DF77C914EC3872FB39951 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A577A9FBA08AE185D53C990 /* TestI.swift */; }; + 56AD68617C9B97CE16FE249C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 56E97FDF069E8FF5D6198C8D /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367CC264BC70C8FAE95481D /* OnewaysAMI.swift */; }; + 5711DF87DE433AC4C316D958 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 5729FC85A5F81362D64C788E /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 272A8F85D1DA874AFB64025B /* TestAMD.ice */; }; + 5737476E80EBB169B518968C /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */; }; + 5739F0353ED109F18A7AC24A /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 25FB164477089E05881BEDAF /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 573E061CC78DFC9E0D5B62B6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 57E7D2C86D9A05EBAC1AE60B /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */; }; + 58081577C9F8D17931A251CC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 5822DF2756D7E2DAAEB81DF0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73CE8E39782ED96D9A0DEE2 /* AllTests.swift */; }; + 583B54EF8BC7A12EB7ECFF36 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 532C14EE7E6458905C05203B /* Connector.cpp */; }; + 584F1B182620F22BC9FE2CAB /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4EE29237269F09AE7E678DB3 /* Registry.ice */; }; + 588EA7C63CAEBB5D835D832E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 58B68AE606BA3A81348B7585 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = EEAE2A3EA52301D744C2238C /* ServerPrivate.ice */; }; + 58BD3A0CEAC9816BE48E7C1B /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCD020CA509B152C8FCE8798 /* SHA1.cpp */; }; + 58C9E17F05FC8E47E55F4734 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 58E9746CB646F7B7935D5526 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */; }; + 5918480D42F258D0ACB415D9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 5930CC7F7118841036A6B7EF /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A46BEB423DACD76BF4A68A19 /* ObserverHelper.cpp */; }; + 595B4A531DE157B61D18422A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33E7FA0C07F541066A9CE1C7 /* Client.swift */; }; + 596F5178CCEC404C6E0D465B /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECBCA68A7DF08B26236F860F /* Connection.mm */; }; + 597EA71AA303CB1111E243AC /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07F1F50A48CFD4DA0680F11B /* CFNetwork.framework */; }; + 59AE3A025BB7D51366750BCB /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E218220353976A1D5C07CF1 /* Current.swift */; }; + 59BC1051CB1DA24224ED354E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 59CE05A8316A450D8348A5F6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 59D55BBECC6B6E3C99441DD9 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DC6A10305F53DC63F7512C53 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 59EB0033873F6E39267226DC /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 863A6469470E9F1912BC6E4F /* Mutex.swift */; }; + 5A0C72759744FAC248F76750 /* TcpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34811EA9E8187AFA7F8C8D41 /* TcpEndpointI.cpp */; }; + 5A270029AA086FCD68401A9F /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = C57D6F7125325B748CB60975 /* Process.ice */; }; + 5A7ADD214B9F2723C29FC653 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D7B75346EB6CBAA407B78C44 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 5AAA4A39F5881DFE802FFC5A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 5ACCF59D35ABE8D74765D44B /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B15F39FC8689FC1FCB89F477 /* LocatorF.ice */; }; + 5AFCF7ACD7E7F9BC3668F91E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 5B1A07BE7511FE3C61F2D046 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D168BB468F0B9234386530C /* EndpointInfoFactory.swift */; }; + 5B26531E8A3FF54A690616A8 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */; }; + 5B67AE7059D8DB516B629E14 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 5B6A0348E48C2CE822785978 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 911DD6C3D079AAD2A68FE941 /* EndpointFactoryManager.cpp */; }; + 5B740A799439BF031F3F8F4C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 5BAE4094CCE5A0B4AC95DEBA /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 25FB164477089E05881BEDAF /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5BC367727BEF048C5FBC84CA /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC642EC1944D582B3C794113 /* ConnectionI.cpp */; }; + 5C158C1E51ABA0D75A47E202 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF62AE44540279291FBE8D46 /* WSConnector.cpp */; }; + 5C249AAA2B1FECEB2F99663C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22EB15880754E559CBAD530E /* Client.swift */; }; + 5C53735690988DBD907B0748 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */; }; + 5C80929FF3811A8E0A6BE04E /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E880F031CD68893D2F69EFB /* IconvStringConverter.cpp */; }; + 5C868AEA4D30A635B6550F25 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 5CA9E7325A11D1072D3B998D /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 136C9F1CB0181AA674220B28 /* WSEndpoint.cpp */; }; + 5D039B66F551328A0945E6F3 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 983A2CBA8E5E46F1AEE78B78 /* Util.cpp */; }; + 5D06D578B67541E764B028E4 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE26B6B169CD5B24ED29BB6 /* Communicator.cpp */; }; + 5D0E6032C6B38E1265DDFE2E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 5D268EE9D1AD00B6ED31A5F9 /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A1722EBDE6AC496F748A964 /* ImplicitContextF.cpp */; }; + 5D2B00CB36B9F707209466FF /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCD020CA509B152C8FCE8798 /* SHA1.cpp */; }; + 5D8EB13A30F715EA61268B54 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A5C5A1DEA6B7BB5ABC8C7DA /* InputStream.cpp */; }; + 5DCACE4010ACB486CFBFCCA3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25F81F514862521A7077DBE1 /* Client.swift */; }; + 5DCC5C2EA2BFA97F799DC6FA /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 137ED7A94BB9E11CC053CEEF /* Test.ice */; }; + 5E08EB311D6E16A25D4D5FEA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 265E767F5805E36FCC9CB2A0 /* AllTests.swift */; }; + 5E48336FFA495568832DB7E5 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2A40A64B4DEF4BDCD6C4742 /* TestI.swift */; }; + 5E4EDDD599F3AED3672370B5 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = B89D7DF2F9D676F96CB9635E /* IceUtil.mm */; }; + 5E83FB3F97A360E252C55FBD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 5E8AA985162D4E0887DEEC48 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 5EA75E67D518F03D9E89D911 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5FABA39878E8DF7941FB168E /* Test.ice */; }; + 5EB89B704EA537152536E101 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 89260FC783CBA8E95B993CBB /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5EE9E3167B275C2706119801 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE15755ADD9B5EE9808D8C1 /* AdminFacetFactory.swift */; }; + 5F10DAB82E234F86D81B0EAA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9460E602C8D4CFFC14B8BCDD /* AllTests.swift */; }; + 5F3C138F87152028C505F187 /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE6FDA00BFC81B40451B476D /* TraceUtil.cpp */; }; + 5F832F238CA8F9AF20070005 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950579F4E8C4DFF646EF3C51 /* ServantManager.cpp */; }; + 5FC217CB7163D86B3526B426 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9AB56DEA09A30139787C127 /* ImplicitContextI.cpp */; }; + 5FDB6870F64FBCC0F9DA7B01 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = A05F7539468832F6A1D1FE8E /* Twoways.swift */; }; + 5FF72A1A2D75592EC9D2A447 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 627B9BCC0B4AD0B6A1F666D2 /* Communicator.mm */; }; + 6034C7EE1187099176DAB596 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A343A525055E169CE399ADF /* Client.swift */; }; + 6057AE44CD17675570BEC787 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 738DC08C9436E513AAF5205F /* ConnectionFactory.cpp */; }; + 60AC310EEEF9B8BD4D60DAAF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 03A03F30C5444AE9322EB66F /* Test.ice */; }; + 60E640C9B38DD0C3E07683BD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 265E767F5805E36FCC9CB2A0 /* AllTests.swift */; }; + 61116BF9D1C69E856E850780 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56AD8F95D9A540F5AD97E976 /* TestI.swift */; }; + 61418C2C561D98E1C1F6B9B8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 6193DB215E30BDE1EE5C02A5 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6D8A172CCED325773F9ACA7A /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 61AAF3E3DD069C0870837CFB /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7449FB4230AD540975DB4BA /* SecureTransportCertificateI.cpp */; }; + 61B43B09235BB754FAB8DDD6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B507EB7D03295B2920C11D7 /* Server.swift */; }; + 61DB8351BB9DD2D2FAEA82D0 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE7ED7DB9B386CE9925025BF /* FactoryTable.cpp */; }; + 621C5B6E7657FB86E6B7B51F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1504B193CDECAF18F430FF2B /* Client.swift */; }; + 62525224C960E2779D7756A2 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03BAC263458A1F99AADFE0B5 /* InstrumentationI.cpp */; }; + 62DC095A2754C6118B0166E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 62F38B37E6BC9A7EE1C4D82B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA7BA874372EE36F4313939C /* Client.swift */; }; + 63015A531AD0039B53247592 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829AECC82389A2F5E05C2960 /* Collocated.swift */; }; + 634864BCBA1C3462B793A772 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4D165404C1661A879CC7DD9 /* TestI.swift */; }; + 63AB354CFAB355710CBFC26E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 64320C37681C5B634C5FAD97 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A26AA7659D06EBA6062EF982 /* UdpConnector.cpp */; }; + 648B5E9CE7EF05D4186DB43E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 648FDBD2BA6F923EEC0E66D4 /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC7FB9EE1A071911E227CCB /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 649F89CE6DBA1882D9CA7381 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */; }; + 64BF91EED61A1D3FE6C90E9D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB925F57794F16F2734D08B4 /* AllTests.swift */; }; + 64C0FC4877E7312A6657335B /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 42A2439DC6CA50093CA51089 /* Admin.ice */; }; + 6530FF9E0CD891FD42A2E037 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 6558EE541043DBC42195026B /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50D65B51261AD566166DB14B /* CollocatedRequestHandler.cpp */; }; + 657683B9E266C397C84D33D2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DC88A1165E0648123E7B24E /* Server.swift */; }; + 65A4E903594F5CA87CA1B6DE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 65D15DB5067FC53F6BC3132D /* StreamAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2C7879A807808CED706CF2E /* StreamAcceptor.cpp */; }; + 662B2AD968F77F28EA555291 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 668EC761627F2EC1BAAB953E /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 54B51F429E8B56A715B61412 /* PropertyDict.ice */; }; + 66955246E47C08C7A9EEE8D4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2A40A64B4DEF4BDCD6C4742 /* TestI.swift */; }; + 66986D65297867F370C71246 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5CB34604AACBE72A2D272966 /* FileParser.ice */; }; + 66C7DAD1EFDD50460B86B902 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C3C55AD97EAC4C2C236144 /* EndpointFactory.cpp */; }; + 66F36E022D500E9B5D5D6673 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 14422400D546329D7D9926DF /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 672ABFC7A04DBF3DFB694921 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E03FB734840AA5D7A8F37DA /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6730EEF5F5B89AE65927B627 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 67413B15492AF4E88F2C127D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 67430986416ABE999B11F823 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 679797836BA03F28C23CEBB6 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B51E89BDF16FF1D23C5FFD2F /* ConnectRequestHandler.cpp */; }; + 67E0BA668DD8ED6D30348A10 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F790BD181E9C75D456202B50 /* RouterF.ice */; }; + 67EAAF7D96E5E6C24CEFF97F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 6812902E002944DFB86BD1F9 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2F6024DEF147BA264B75062 /* Timer.cpp */; }; + 68235D57AB04CF4E76F6496C /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B08D997BB8E4794D4200FB23 /* PluginManagerI.cpp */; }; + 68511C23940695BE53860DC2 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C990D1538CF08ABB45003017 /* StringUtil.cpp */; }; + 6895E4342971BB7DFF143A19 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 945016AEA0FC7438D19E19B1 /* Client.swift */; }; + 68A7B3DE8BA3617FF30187D4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A8FB36F298F50F55357C8BA /* AllTests.swift */; }; + 68DC867AF4A533D05F1F47F9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 6918AA844C697E82C64B2F9F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94E1968DB24F7AF587425A1C /* TestI.swift */; }; + 6957E6514741A42CFB3FD843 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FEE9254105C73243B44FFE6 /* OutputStream.swift */; }; + 6958A19EC00CB8C4F59FEC37 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 6A074A20E524994BFB355CC9 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */; }; + 6A11080ED9C275CCBD4A3B60 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A18062BD1E33BA800FDE662D /* TestAMDI.swift */; }; + 6A1AD6198ED355D783C4ABA3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AFA47DD3A3466A544964C35 /* Server.swift */; }; + 6A5DD9246DBD3A1F04ED77E2 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 431D8C7B1791F56014305D03 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6AD1CD753151676666EB72C9 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5873A42F0D248A8146E98350 /* StringConverterPlugin.cpp */; }; + 6B38C77E3992B139034FB720 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF9391197314E2751FD072B /* FormatType.swift */; }; + 6B86FBA84BEDE9B92B7A8BED /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 407EDDBF73A172C9F18D2E55 /* EndpointI.cpp */; }; + 6B998AE3EED188FC283FAD7D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 6BDB81E44E8ED661D9D99FA7 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFC73C8E6BFAEC766CD5D25C /* ObjectAdapterFactory.cpp */; }; + 6BF60F183E75B000A497D876 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BE65FDBC053C9E1724BD1F80 /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6C02F6B469F85F21320E551E /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5621C5105CF819261AA00022 /* UnknownSlicedValue.swift */; }; + 6C041107E8811070F5C673CE /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C991DFF2AAC0B41C6A1F408 /* CommunicatorI.swift */; }; + 6C398D7D5C1EDCC142FD4BC6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9600C016070409DE6568A37E /* Test.ice */; }; + 6CA2DB9DDA91E513530F1D0D /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71DC04F4318C243C54C6708F /* ImplicitContext.swift */; }; + 6CB7CC4363D824D38DBB75BA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52C032A6AC0462FD61E22750 /* AllTests.swift */; }; + 6D0DA924998E95CEC4B9C9B7 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9732906011677017B8FE8A9 /* ServerAMD.swift */; }; + 6D2E85B95C19A5BE0CBBD640 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53016732D7F1EE45D95136EB /* AcceptorI.cpp */; }; + 6D763E251CF4A3EDA13C0878 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 6D8FDB93E8C66B54255B96B6 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD61825057BFBFBB41D39597 /* ServantLocatorF.cpp */; }; + 6DE8A983BE1304DB333D5A54 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D9D973870D744362BE6CD5 /* Version.ice */; }; + 6E00E1750B687743D25FC5A3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B2D7894B631B2D78882A8F57 /* Test.ice */; }; + 6E6366FBA97D46D0596795B4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E4652309AE1C7E4EEE2D6D /* AllTests.swift */; }; + 6E654F0A8EC84E6037DE27D9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E783E25173DD3CB4652293E /* Client.swift */; }; + 6EC44E0D9D10E523E6D87478 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 6EDCD02EC62F84DF7B9D7607 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 307A532F3C4EB11FF4260F44 /* ServantManager.swift */; }; + 6F372057CC71DDD00F5D3B28 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628F9CA7D6D383137FC355E3 /* Initialize.swift */; }; + 6FD7A841F37161AE926047D4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA7BA874372EE36F4313939C /* Client.swift */; }; + 7035E7C74D577600296FC4EC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 706D46FADF7E67C19DD42C35 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 70BFA57D6FF9C7379186A4A0 /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DDD904763300878E12820E2 /* Properties.cpp */; }; + 71AAF522F60C965C350446C9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F28FEA3804836A76EBCC3C60 /* AllTests.swift */; }; + 71AE26572DE03E7A8D380677 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA5FA8A0E09A3F3BC61D2909 /* Client.swift */; }; + 71D95D2B091D6FBAFDF2CEA2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 71FA006F994324C748C9AD24 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9E63A9A57CB0A4F537AA9E84 /* Forward.ice */; }; + 7226352D625E5F3A323F6544 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 723EE9C5CAAF84265489CADF /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 914E1A04B42CF82EDA413850 /* Object.swift */; }; + 7246969EF7456B34FA3D17CE /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CACDF62E69944DB57D56E47 /* BlobjectFacade.mm */; }; + 7247F656E5CA369BF5D62EBC /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 419431F09AEC1476FE7B4EFC /* Instance.cpp */; }; + 736E2EF02C7B0796F4068902 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 419431F09AEC1476FE7B4EFC /* Instance.cpp */; }; + 73BA968691D9B340A52E44D0 /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7D8895A590B0D9627121789 /* ImplicitContext.cpp */; }; + 73D63D830F8098C60C84A0BE /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03031EB4AE5379FF32A3AE17 /* WSAcceptor.cpp */; }; + 74E30723342E074FA9B5FC62 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 75227D518ADE0FDD8BB56EC0 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 75231CA5EA77CEA177619D68 /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A1629C3A24F66265F742150 /* Instrumentation.swift */; }; + 752E35B46EA4505EC83EC1B4 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 75A8B4B6066AA93A556B8178 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 059F06CFD18E4BA02BA0E025 /* IPEndpointI.cpp */; }; + 76537F251BBF45019A95995E /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90B2EAB5D9DCC4178F8B5B4 /* ObjectAdapter.swift */; }; + 7657975AD42AC20108D07027 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9FADED3C1D00A9AFBE02DACB /* TestAMD.ice */; }; + 7662016A7206E6C48AD1902A /* certs in Resources */ = {isa = PBXBuildFile; fileRef = F52E3E551A8F8B3901BECC9B /* certs */; }; + 7672767DFDB5782E780428B5 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 261E69F6A52C94909DF014AC /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76D98EEF70E83DFAF18537D3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 76E199959830AB560F3E2F2F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E4652309AE1C7E4EEE2D6D /* AllTests.swift */; }; + 76E62DE475D6AFA64D784C9A /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A01CF5F8BB77C282B69730 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 76FBEAF279F6E0EF69F6FE4A /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15530AE76DACDC2FD0C54C11 /* FacetMap.swift */; }; + 773F119B5F739641ED07115E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 77A3E9F059780D8DFBAA3DC4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 77D9647970F1FF697D9D9C96 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 474135D6386C100AE4286B3D /* Server.swift */; }; + 77D9F4551EEEA292FFA03454 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9226ABAA5FAF037A4782672D /* TestI.swift */; }; + 77DC371E43381EF16158F9EE /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 250055BA1C62F324250B2548 /* Server.swift */; }; + 782E7FAE67003BE21307B1F6 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F71CAE50CD7CB4E7134D9FF3 /* FactoryTableInit.cpp */; }; + 7880F2DBCCF3B4FDF0BA9D30 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 638F85E5C6C7085DF46F390B /* TestAMDI.swift */; }; + 788FF870AE92183F633E2547 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E05BB1F95B7599533D83026 /* Oneways.swift */; }; + 78AC389A326D50268C9C1421 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F904E8A5B6258EDDEAF27A63 /* Network.cpp */; }; + 78B10D1E2118BABF5FE5511F /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 86B4DBD2E99AD2E1D9D13F26 /* Router.ice */; }; + 78C42332584409B255BCB2DD /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 78D18BEA8C1E658FCED01C2C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 7904865EB4D9B844039CD2A6 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 638F85E5C6C7085DF46F390B /* TestAMDI.swift */; }; + 791772C90FDE29215C4F2171 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 793F3B65373B8679C6E3B69E /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01024283C896A201E69A8C38 /* EndpointF.cpp */; }; + 7997ECFD992D1B49A8B352D8 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C83A2E19EDF012C6703AB53 /* OutputUtil.cpp */; }; + 799B94989EB0FB659DB5FD16 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9883142AAE78B0D29D622EEB /* UdpEndpointI.cpp */; }; + 79A1925010F96055D419F173 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 28DF745A2D928C90F9F4419D /* Test.ice */; }; + 79B6C0C76C38F872B0C79378 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E73B68A6243CD1C6AED87DFC /* SecureTransportEngine.cpp */; }; + 79C0E9A35E639B954B5CA27A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 03A03F30C5444AE9322EB66F /* Test.ice */; }; + 7A0B0587DEFF310CF9B800D8 /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDD807A24DFE6B5DE7A2B384 /* PropertyNames.cpp */; }; + 7A4D6B16AAE5C59182AE40D1 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A2C21B3DB0E4BE665D1475F /* SSLEndpointInfo.swift */; }; + 7A6E96D004F26E9B1BB8F989 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4584337E9DC542C82D3CFB88 /* TestCommon.swift */; }; + 7AD8DD9EBBA848966B90E8CD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B2D7894B631B2D78882A8F57 /* Test.ice */; }; + 7B0BB91AD2AAE0A9D6EEA849 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0972B81E52AE5219A0359F6 /* Server.swift */; }; + 7B0C4BBE8B0F40F09EF7E559 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 7BAC320CC9549BE3F30C380C /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E45A803280C9975C7D2D5B6 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C2B31B5C272133DE1948E73 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E386E5939BE4E20022B34C8 /* Client.swift */; }; + 7C47A846F07E602B46BC1ED0 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4067CCA4E285628C8AF454D9 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C5213F0AB4E84CD18A07676 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 7C55661EC9DFAC0E5E0A4AF8 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E05BB1F95B7599533D83026 /* Oneways.swift */; }; + 7C9749638F33756CAFCACFD7 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B930854633BDF8CF5FFE22C /* TestAMDI.swift */; }; + 7CC28E32C596E2B96BA97437 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB3E29E74373ED5837D69F8F /* Shared.cpp */; }; + 7D393B5197D8C9F764A4521A /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5AB0FB42BD3A39396266AC /* SecureTransportPluginI.cpp */; }; + 7D4BFF385409F41DDAA66BC3 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104B3F85E85A1F464938A580 /* AllTests.swift */; }; + 7D5B78742101708CFAA63B90 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 7D83FB69615A158017998208 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 7DE141A9B23DA02F0F055EDD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 7E7DEABC002DFDE84F7C7784 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A70C14B2E0E746A0591AF1D5 /* Service.cpp */; }; + 7EB795072A11C2241D41CA7D /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEF23AEA09540063DC96EA21 /* Collocated.swift */; }; + 7ED2872294B29183D74E6D87 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B584730D968F098A9E3D59A /* ConnectionInfoFactory.swift */; }; + 7EDBADF415026D08BE00ED54 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F4F28FF6999FB92889AECC /* Server.swift */; }; + 7F091880CC2BE16653F5C59B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 7F682B274ADF63F87E83B668 /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A1722EBDE6AC496F748A964 /* ImplicitContextF.cpp */; }; + 7F840956F13F990D305C24D7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 7FC2B37350F3E5995B4ECECE /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90D35835E18D79ADAB716A16 /* Options.cpp */; }; + 7FF35CA4033D4C38B644418F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 8016511938D5F624D464633A /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2F6CB1CBABB18103F23A7D3B /* TestAMD.ice */; }; + 8039E0224BB29439AE536715 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB6F28F663DF2D21006713 /* Value.cpp */; }; + 803E001EC76589670027F378 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24630F961292732B29C6782C /* ExternalAccessory.framework */; }; + 8081F030A606ECD461F96BF4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 809E2D74023BFE23E61934E1 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFC73C8E6BFAEC766CD5D25C /* ObjectAdapterFactory.cpp */; }; + 80D13332A162835326C3DF20 /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D5A45BA52FE831A3ADA94B1 /* ValueFactory.cpp */; }; + 810D238B45D8FE86375B6277 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5CD54C2AA8BE23781C057132 /* ClientPrivate.ice */; }; + 811836C9C6097B09684DFADF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 8120E196F15D7A9C3000355B /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */; }; + 812EBC02D2A477A03EC2DDA3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 8140A9ACBAFECD8048F2C4F6 /* TcpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64F29DD7C25FD1D8C1FBF3CD /* TcpConnector.cpp */; }; + 815413C11DAC970EC4F0FEED /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD340E5FDD75011A7A85118 /* Collocated.swift */; }; + 815C651DE541122FE74E3CE5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 816C8986F21DE2D43797087B /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4584337E9DC542C82D3CFB88 /* TestCommon.swift */; }; + 81BE959AA332DC19671071D5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 81DF90B58589897B66CE326E /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B0D3189E1EC893F9D4E0 /* Logger.mm */; }; + 820B6CBB783F9CEFD62E1D50 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 828A8CC28F159BDCB54F2568 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFC516B10AAE738541716320 /* MutexProtocol.cpp */; }; + 828ACA81ADAEBD4A7C45BE44 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02BEC5D52B98E16486723B15 /* OpaqueEndpointI.cpp */; }; + 82B07F81F92C82FC2C8E859C /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = A076886379887427EF43CAB5 /* TraceUtil.mm */; }; + 82B32CCF10B1F159B23F414C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 82C6992869FA3F7AEEFB8028 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 82C8426F92304576DE536C49 /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE6326CC8423A7AB2E011674 /* LocatorI.cpp */; }; + 830EF50D85A696229F7C3FB6 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = F71C3042386918BE757DF8CE /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8311F26BE59DEFD56E414269 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */; }; + 837206647A5313B84B7F7F8E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 837E9D7B78BE00674EF13D4F /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9502656F9828A55BF15B904F /* ClientPrivate.ice */; }; + 83993416308A2A5AD3C61067 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 83ABA46B9D89440A0C8034D2 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00EA1D526F07AB7E2403ACDE /* TestAMD.ice */; }; + 83ADC83B0013D225A82582EA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8748EAC5BFE5A97A4085F0DB /* Client.swift */; }; + 83CDBD33C1150230F2E74107 /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44837E3321ED1322DA4D4AE9 /* Current.cpp */; }; + 83D583E25B45CB7E322FA652 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7F2189733BCF9C8B454DB75 /* LocalObject.cpp */; }; + 8404E57A693222161BC56732 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C5527D47B4AA93DCBF5B076 /* Properties.mm */; }; + 842358F2A2C78210E827D854 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CACDF62E69944DB57D56E47 /* BlobjectFacade.mm */; }; + 844D915B27090B848FB53FF3 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F214226923D4CB01CC6D14A1 /* FileUtil.cpp */; }; + 848E2A01CE44343781BEF6CD /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF1DF22CB01FFA62872EB861 /* EndpointI.swift */; }; + 854D6208F3303E72908EB06F /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5B2DF10CBEFF10D1055C9690 /* IceStorm.ice */; }; + 85BC01ACB28163CA71D951C6 /* ControllerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 216CADE6B58D39565FA60EB2 /* ControllerI.swift */; }; + 85D9C620E963F263940E25BA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 85E4BF86A36BB73D319B2CB4 /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 800A52A540F1DA8547B1D22A /* ConnectionF.cpp */; }; + 8622A720644080DF580FD0ED /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1ED43BAF74AEE3D118146F5D /* Test.ice */; }; + 867FFBB85F8B387BD12388E5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F4F28FF6999FB92889AECC /* Server.swift */; }; + 86C17A041AA408728024B6FC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 86C7FD865D845D0228E595AC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51106D60A56141EBC49C9318 /* Server.swift */; }; + 86F21F920A338C9B8E4C58D1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB925F57794F16F2734D08B4 /* AllTests.swift */; }; + 87169C720693983968D640DF /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9883142AAE78B0D29D622EEB /* UdpEndpointI.cpp */; }; + 8747793A01A5290FCF7E9443 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 8758B7E46B770685B266FFC8 /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = C61C5DA6F7F7080FC83FE964 /* Exception.swift */; }; + 875EB2E0A298E0D4B82D425B /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72BF04B404B4A6ABFA18A71A /* Connection.swift */; }; + 876094B239F28C2B4D5E461A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 876383C8BA8FB8C7D16C9EC7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + 878083D5BDE5054FE67157E5 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE9DC976389286FF16B21B0 /* ProcessI.swift */; }; + 87A4D87227FBDF8E2E0CAD68 /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F67CEA524FF25FE6949915A /* Acceptor.cpp */; }; + 87AC8565D3129BB566C4E4BB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E386E5939BE4E20022B34C8 /* Client.swift */; }; + 8807378728C319C1F71FCF0F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1ED43BAF74AEE3D118146F5D /* Test.ice */; }; + 884F27683269E2801ACE7C0A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 8886606759CF3C907ECEC53B /* TcpAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEBC1443F0873050E5877725 /* TcpAcceptor.cpp */; }; + 88D7D9285A591764AE1DCFF1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5453037F24499786E84EA5C /* AllTests.swift */; }; + 88F0C8A134460E85871730DA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 8907AF3381428A2BD48E84F6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 896CB4F4F0863FCF72FD6E58 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F71CAE50CD7CB4E7134D9FF3 /* FactoryTableInit.cpp */; }; + 897F454A2E54D6B9ED1CC39D /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEF23AEA09540063DC96EA21 /* Collocated.swift */; }; + 8993C3461E4B72B1B4B9469B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 89BD626D72A50F6924F340FB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15D305717C35A677E3D0BF24 /* TestI.swift */; }; + 89CBFE5358A64C8A08A8E908 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA5C303C571C95B5220FFF77 /* ServerAMD.swift */; }; + 89E06C0162972C2C91BCDE55 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 806B7171CB7F0D3E6F836117 /* ObjectPrx.mm */; }; + 8A4F6176FCA37C036D7804DF /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84BCFC47EF30B1DDA82EB275 /* ValueFactoryManagerI.swift */; }; + 8A60D09C00842CA98676C01D /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 474923F0179531C32355FF66 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8A69ADDB57C84FBA4F528240 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF9391197314E2751FD072B /* FormatType.swift */; }; + 8A6F23CC7C2EA4096E2BD01A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 8AC2B9CE61F373C2968A8D78 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8132A588131377350457A8A /* Logger.cpp */; }; + 8B072745B9D1BFB4FC07A09C /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A11FDE12E0158896D2902C2 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8B54F2D56D337B2A5F4BF378 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + 8BD3590077F2A155B5486CC7 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A26AA7659D06EBA6062EF982 /* UdpConnector.cpp */; }; + 8BFEB606F665B7541EA1052E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AEEFDD3BB442CB6663CD683 /* Collocated.swift */; }; + 8C050D5071D18D46B1CA3401 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 8C0A2D9F0804871932011BB5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B4C555F0C2B146AF8D5EC356 /* Test.ice */; }; + 8C1D9454BDD5D1D6813888B5 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AE2E85C3FD16B73660AEE0A /* ConnectorI.cpp */; }; + 8C2809F5A2251554B81E0B1E /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42391EF6184A353552A00883 /* IceImpl.framework */; }; + 8C405EBA1694D7FF455A53FC /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0351F96883BE42489669584D /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8C4507D8EBD56AE7C70ECD02 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A18062BD1E33BA800FDE662D /* TestAMDI.swift */; }; + 8C61A337FDCC3B9BF1964ADF /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04ACFF850FB52C42D1D0256D /* SecureTransportUtil.cpp */; }; + 8C66DA4F73B513778AE9ED84 /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B94A0EF9213206745C31CC8 /* ConsoleUtil.cpp */; }; + 8C757C6A801ACB43E07B3847 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 983A2CBA8E5E46F1AEE78B78 /* Util.cpp */; }; + 8C92FDD3BB0828C5B8823621 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 8C96F0589C61C0B6A80E2344 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 8CB79E433C3F9800783D7070 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F972A8E2DD097AC08C4A781 /* Context.ice */; }; + 8CD5F889DC3FF2A42135DB08 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 8D05E1908CC1C02E65416C0B /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96EF425FFAE7ADC67DD3FD81 /* PluginF.cpp */; }; + 8D5DA597F06AB00006A334A0 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */; }; + 8D6130ECAA002485B2C17923 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64802AF97D0C116399E87B38 /* TestAMDI.swift */; }; + 8D7025DD6B71DCCFCD9D8C22 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 8DACC60172ED92FEE1413F8E /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCB4094FE32B8606EBB93BFB /* OptionalFormat.swift */; }; + 8DFB4A0306490FFF8426C78D /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B15F39FC8689FC1FCB89F477 /* LocatorF.ice */; }; + 8E0523110D6C42D2134C4A47 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC845309A10111AC9F465C23 /* Test.ice */; }; + 8E2A2651032B58C66F114454 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 8E49509F5EDD277F127B6B68 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + 8E63ECC4505FD2FAFEAFBC1F /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41ECD3890AF22A95E9667E8F /* ConnectionRequestHandler.cpp */; }; + 8E94CBFE7990DA554FD8486B /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0D0C50C25B4B163B7098033F /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 8EF0D7A11A26D61A09ECFFB2 /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7D45D866B9B71FB7B57D0E6 /* WSTransceiver.cpp */; }; + 8F3AB1BE615B4F7C552E3560 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B91C23CCEBC74093AC64126 /* Test.ice */; }; + 8F49ABCAAC6E4187E2B6CA58 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E8D76449FAFB649E9E74273 /* LoggerF.cpp */; }; + 8F5B27D45817CC9DC3486365 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ABB967DFEE9C5D24F7C42A2 /* Collocated.swift */; }; + 8F64A26110BDC58D8D54F3D9 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 307A532F3C4EB11FF4260F44 /* ServantManager.swift */; }; + 8F77618E5C9F1B0967F8FA87 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1EFF9091F708E5F6F0704B3 /* CountDownLatch.cpp */; }; + 8F88C5056F59C4F461B7E944 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EB90003DBB8FFCE6E52AB05 /* TrustManager.cpp */; }; + 8FC1683310ADB8C866481055 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F59158F7D5C392A0D1D7CE8 /* ACM.cpp */; }; + 8FD90978C32771C60C66A1B3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 8FE65F6DAEDB22104FD0609A /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BDEAE47C449BAB487924895 /* EndpointSelectionType.swift */; }; + 90F0DB577F458B5BBF5CD826 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19E7F86972D806170B222DD /* TestI.swift */; }; + 911E0D67438383EE6B41AA41 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ABB967DFEE9C5D24F7C42A2 /* Collocated.swift */; }; + 919FCBDA71FAA6B336A35F7A /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 680CE9BA4A204FA3FAC93375 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 91C62960606D8FCCF6747F78 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A345098C97240AE15EE3E355 /* HttpParser.cpp */; }; + 91DD1B6F9C757E9D1932DF5B /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6A10305F53DC63F7512C53 /* IceStorm.framework */; }; + 91F97CED743E6596CC82D08F /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D566AB986C3B8546B20A2AE0 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9201C71F9C04EB74313690A2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 9204AB6155317BC251CAD0A0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 92205818C828E4B5D16AA8AC /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00EA1D526F07AB7E2403ACDE /* TestAMD.ice */; }; + 926C330CAA2AF8AA9434FBD1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 9272CDC35077990FA0FC3DCE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + 92996512B2E2D9A664C2AE0D /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77E66F7A0331FF21333AE3FB /* BatchRequestQueue.cpp */; }; + 92C3862CB23C0C52E5E708BA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB750BB47FEA9559FDA7DBDF /* AllTests.swift */; }; + 92EB5200C3F206225868057F /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 79CF8D4448CD8F1D2AB9367C /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 930D5DC8FE58F79C670C4B53 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 055E1371140F03C46BE4933C /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 935A5D2312914D36D943F35E /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD8E68C39A86BCA8855BE97 /* TestAMDI.swift */; }; + 9364DD9F6D8DA434C268DBA6 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = F5FA2C9600E75B1FCD46907F /* UserAccountMapper.ice */; }; + 938AD770BF6739D032B7E255 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5CD54C2AA8BE23781C057132 /* ClientPrivate.ice */; }; + 939E3C8EF6821939BB399260 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 72083FEA504B3EAD2B1B6FE2 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 939F48B7A82E60A6459321C9 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F972A8E2DD097AC08C4A781 /* Context.ice */; }; + 93B7487AB18E1A9A3B1781B9 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B07536035C11C1E0934299F /* LocalObject.mm */; }; + 93EA132FFB90C6038E00C831 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF136F6E80A01F3C0C176C6D /* ReferenceFactory.cpp */; }; + 94048BBB033060E615673533 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53016732D7F1EE45D95136EB /* AcceptorI.cpp */; }; + 945D2F9580D30BECC37243CF /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B67D5EFC0BB322E8EF9ED64C /* NetworkProxy.cpp */; }; + 947D36770B7E41C0CF6070AF /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ED3424BFB9925A53577998FB /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 94B38541371A80684508FFFC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63B3CE5DAEFF4FCC9EC9707D /* Client.swift */; }; + 94DD6CBBE02737D9EFFEC285 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC845309A10111AC9F465C23 /* Test.ice */; }; + 95295F91978AE312AE371B47 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = F33540D27F8ABA588FF9CFCF /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 953E91436CE58A04CBA8D31D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2E5EBCC2B8851DB99485BB9D /* Test.ice */; }; + 958F12473CEF81A81BBA41D4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 95A408FCF21100A8326796CF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 95AAE0C33FD07EF76E9D26FC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A6263E6EB0712A439E75D09 /* Server.swift */; }; + 95C11CADB4A3F39ACF11B8D6 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9947265006AE43D802120A4E /* LocalExceptionFactory.swift */; }; + 9629F9484B15CF5546D3FD4C /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B1834CCC901B15A44359D42A /* TestAMD.ice */; }; + 963D72FDB59EDAE42A1C2867 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC1C3A7852A6CED90889B91 /* ImplicitContextI.swift */; }; + 968C3AD7FF2E24810965EC8D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 864A6D958111A066271C2056 /* TestAMDI.swift */; }; + 969285B4BE28CFEEC42C375E /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FB7753A8D2686CAE06B2CE4 /* ImplicitContext.mm */; }; + 96B271D784D9299289F70657 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD1ECACDD717AF71AF60969 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 96C46DF1A21FEC3E0065C7BD /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3547A6F171E6B76B9FC63BAE /* TestAMD.ice */; }; + 97436689F8CB87D4C1FF11BE /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B08D997BB8E4794D4200FB23 /* PluginManagerI.cpp */; }; + 9746010596C112B8051EFE24 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344C21FB7DF7176184125859 /* SystemdJournalI.cpp */; }; + 97686E8519D1BA7C21C8B3FF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + 97D14CB373FCCB20B5BC1FC7 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DED512BF02792FFCA52AE9E7 /* Initialize.cpp */; }; + 9815DDD9489CEB32587F6D06 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD36CD2D320F5953C219BB79 /* Client.swift */; }; + 9840A8A84FFBAAB19CAD7ED2 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 762976DF5DE13C4200542E0F /* UIKit.framework */; }; + 9859145304CA198B0C6AFFD9 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9467375F0E35C0FBB7688528 /* CtrlCHandler.cpp */; }; + 98B2A6FDFCCAF3D6A739C75D /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F5C15610EC1017BFB49E9711 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 992E4DE39703E1A0D4718E38 /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C171909B3BA6EDB94DFE7617 /* CommunicatorF.cpp */; }; + 99B11670C9E0DC749C9D53CC /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86A893065E7D543BCF41F626 /* Endpoint.swift */; }; + 99F1F51264DCBBA1F7330936 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A345098C97240AE15EE3E355 /* HttpParser.cpp */; }; + 9A0155DDBCA4FFEC1A349FB3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = B354AAD31C61053198AA6359 /* Collocated.swift */; }; + 9A2338535217B7CFB2473F02 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 532C14EE7E6458905C05203B /* Connector.cpp */; }; + 9A8700B1C2D39ACB29F88CBB /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D590A59E3F6155EADC253B1 /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9AC815A0E12A1B2FF66100B0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 9ACA67AB49660B8296EA466C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32C784477F9A73A13FD21C65 /* Server.swift */; }; + 9AF9489B8926192A481AF670 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D168BB468F0B9234386530C /* EndpointInfoFactory.swift */; }; + 9B35EAB6F8BD88152D726AD3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6BBD6CC1E3C2A7CCF12C722 /* Collocated.swift */; }; + 9B4F4419119ACDACCA449256 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 059F06CFD18E4BA02BA0E025 /* IPEndpointI.cpp */; }; + 9B97D6477B5DA5D0B6B6CBE1 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1CA0FCE8D4431A2B65028231 /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9BA0A38C0BD7E36A1BD60C32 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DED512BF02792FFCA52AE9E7 /* Initialize.cpp */; }; + 9BE9DBFF8F23C2B39DFA252A /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0D102CF3F4701F3AE046D7 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9C13EC1D5BDDEF39E0035621 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C3C55AD97EAC4C2C236144 /* EndpointFactory.cpp */; }; + 9C1B41496E95DD89E1AB38F6 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 806B7171CB7F0D3E6F836117 /* ObjectPrx.mm */; }; + 9C24697B0F15EB28437FE156 /* EndpointI.mm in Sources */ = {isa = PBXBuildFile; fileRef = CCE36EC139B06D18C0C74BA7 /* EndpointI.mm */; }; + 9C8E0442382FED4435A53AD0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 9C991835EB6469C2C8FE9028 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22BA0A2A8A538610278E1A67 /* Client.swift */; }; + 9CD19EC1CD1C690CE3BF1942 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FCD89BFC87D0D93ADD625C0 /* TestI.swift */; }; + 9CD7519D7A0B4FB0FC9B0627 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECBCA68A7DF08B26236F860F /* Connection.mm */; }; + 9D398526A52E1A0DE368F2E4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A635A54F2740AA6A0345900 /* TestI.swift */; }; + 9D4B7F981422D4405C24BE23 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + 9D51E686F366773ACCC7178F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + 9DA06B2460129485D0D0FC13 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E826DFF464DFB4529E54EDC3 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + 9DAFEBB1B955F5C465481165 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 623BF93B592B69730EBB8EDA /* MetricsAdminI.cpp */; }; + 9DE8B5F4F6CD04FC92F08A18 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D2744013C529D8F086422990 /* Locator.ice */; }; + 9DEDEAC427E2D4CC5FA01358 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + 9EA795C10EA59F5A12BD863D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F6E31AAAA244C75D4675291 /* Client.swift */; }; + 9EA9B5E79AFB53974ABC7AFE /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D678FFB619CCB86A3BC95515 /* RegisterPluginsInit.cpp */; }; + 9EF395D8FC087E745CC0E2B3 /* Assets.xcassets in Sources */ = {isa = PBXBuildFile; fileRef = B51AC77641CEE54D03AFFE1D /* Assets.xcassets */; }; + 9F76CE45F0A14F83DBBBCC9C /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC4B3614730C36B93E6CE83 /* CertificateI.cpp */; }; + 9F778C7AB6B7878B7B6EE569 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A67621EF8B41A02D1A5852 /* IAPEndpointInfo.swift */; }; + 9FF2F13524A1987FB5A421FD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73411F554849A6348D021C0 /* Server.swift */; }; + A00DBD175CCF5E771E9AB871 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + A0134E2C57ED7ACA82FAE414 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9A65923D521C078DCDBABA31 /* Test.ice */; }; + A02F2F29E635A0818DAF6DF6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + A0370BD7322D40CD43A9D333 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8750D48101851C84B89B330A /* LoggerI.cpp */; }; + A056BB0F75DC449BC21A868C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52122170F02276E3275AAE2B /* Client.swift */; }; + A0646964B11526959E15863F /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18123528674C5DBEFE8DC183 /* ConnectionInfoF.cpp */; }; + A06F28264FE9AC00BF0C0030 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = B89D7DF2F9D676F96CB9635E /* IceUtil.mm */; }; + A073B6BB6331F5F166A7C157 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + A082D8514D02C406D845DFDE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2527DF77271CA0B2E6A8E151 /* Test.ice */; }; + A0A0F385D08C94CE9C7BA323 /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E9F50378F7C12B118349B /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A0CA87BB2AD0D07F39804C8F /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA7ECC88F49663429276843 /* ObjectAdapterF.cpp */; }; + A0D01250B56FF47A79DEED94 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + A0D16DF3351D17928E3FC8EC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + A0E0182092093DD6E61C134F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + A0E4424A99CD859FD8FD25E7 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A763F1E9B20B68CAD1D62D3F /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A0F0419D7371A0309C002C7D /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 461937D2DA4EABD1399760BD /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A0F6CDD4D0492D0F76120C5E /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 849D140524843186122E2B5D /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + A11B058C87B826A8A68318F2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51106D60A56141EBC49C9318 /* Server.swift */; }; + A1491B81B02939D1F2695390 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9CB8DB9B6B0E2D1D5F87503 /* Client.swift */; }; + A1EF1604B0D51B76BAFE7556 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 436D4DDD3929D36CB74E51A9 /* ObjectAdapterI.cpp */; }; + A2001B962A3E23AC8698461A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA4D36E0018BED4FBB96979 /* Server.swift */; }; + A202237B8A5762C836D3F45D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16484C090CFD38F73675B0C6 /* TestI.swift */; }; + A218647C4ED5BCB5DEF2C856 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2951989E4ED79DB5A5BD840 /* Client.swift */; }; + A23591B0BE17C73DBFFE3B05 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2D266EA2336769024DD2B4 /* TestI.swift */; }; + A24BCC7D7FAF0CCB238BA4CF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + A2647D6098A7EB77AAF8CA7E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDAA337977433E1B2F9235CA /* Client.swift */; }; + A2A28FADC3A8F42D74F94152 /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E83D440DF808EEF167018B4F /* Cond.cpp */; }; + A2F6A13639EF17AAF9E8C3DA /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C012332733DA4296E9354F12 /* Router.ice */; }; + A30D8022B3F949FDB45AB264 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7A67EB9002C23EFFD4F4331 /* LocalExceptionDescription.swift */; }; + A329C64D7DEC8DA9EE2CC8A9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78A482E000141177A98F078F /* Server.swift */; }; + A32E44E679E01526BD2A5F58 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + A33F469D207EAFFDB8FB1D3A /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 850A2787B4B4A3CB3C74175F /* Session.ice */; }; + A360FF1048E84450C8886EE0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + A3809439D9D0321CE539FDD0 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F0C20EFBCAFF52B67C7AD11 /* BatchOnewaysAMI.swift */; }; + A391F8627181A212266CE4F8 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F674217427A6BB4384E16370 /* Plugin.swift */; }; + A3A56A528D7A874125579BE0 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 911DD6C3D079AAD2A68FE941 /* EndpointFactoryManager.cpp */; }; + A4457F8891CC4A735E38473D /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68D9BDAF960BA51A8BF52198 /* ProtocolPluginFacade.cpp */; }; + A452507B04A887F15CE4634D /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BDEAE47C449BAB487924895 /* EndpointSelectionType.swift */; }; + A457D66D0A9DD47D91424E7E /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB6F28F663DF2D21006713 /* Value.cpp */; }; + A4DFD3718AF68E0E47FA9D41 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3D29F00E18E96EA4BA99C36 /* LookupI.cpp */; }; + A4E1145B88CE86D88F59F501 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = C57D6F7125325B748CB60975 /* Process.ice */; }; + A584340DA436567581A583C4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + A59FDFD98086574E6A91CD4A /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAACEF4FECAF35BE85C20620 /* CommunicatorI.cpp */; }; + A5E7463E93E51698C4FA62FC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1E2C99A6DBB9132B74F4845 /* Client.swift */; }; + A5E9EA2FF2470B46153CDA6A /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28BB763CB891D9E198CB4E13 /* LocalObject.swift */; }; + A5EC9178D79AA00619027912 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DB4E7AC16E22943F389DA62 /* Test.ice */; }; + A628D09090DA1A976D4E7395 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D590A59E3F6155EADC253B1 /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A63BB6DB081C31917F83692C /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC7FB9EE1A071911E227CCB /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A662F061162797200A98E0EC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + A663AD708EDDDF794AE80847 /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 526B263C4E63A5FD88236538 /* UnsupportedAdminFacet.mm */; }; + A6CE25350F236044EE002834 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + A6E6B51E80BBDC666B6E071C /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C630DCAC52483EE71792F541 /* OutgoingAsync.cpp */; }; + A71D57F16C95BFF0C9C49555 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 398A19BC7513CD91E69E4025 /* EndpointInfo.cpp */; }; + A73AA8A31476BD2803B0E84C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8E0CCA4C7037506934137C /* AllTests.swift */; }; + A74E2ACB156AC71ADF209D33 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47085E57F8BA1CB63A56B0BD /* Test.ice */; }; + A77DCD9B91D2E95FCC978260 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DC88A1165E0648123E7B24E /* Server.swift */; }; + A78E5DDC9FF22C15DF996CEB /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3D29F00E18E96EA4BA99C36 /* LookupI.cpp */; }; + A7D8D3D0DBFD5F54A63F808C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1504B193CDECAF18F430FF2B /* Client.swift */; }; + A8084181C6D306D4C49EEF59 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628F9CA7D6D383137FC355E3 /* Initialize.swift */; }; + A833858ADAD9204E9668A713 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCD3E590B98FDDB60A31C5B /* Client.swift */; }; + A8C766B134EA6FBA6AD2FB4D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + A8EC75556A8EFAD34C9C4AAF /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = F48616BFFA819BAF3F8B2FB8 /* Key.ice */; }; + A8FC1EAF0AA3504AFD846939 /* StreamEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 368C3BEB6491D68E441DBB33 /* StreamEndpointI.cpp */; }; + A937746D7A9A826BCE10211D /* libIce C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8AF093375A28D692055B8973 /* libIce C++11 iOS.a */; }; + A958FBD4D8743332B89D8A9F /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = C57D6F7125325B748CB60975 /* Process.ice */; }; + A9790114286E03FDBEFEFF14 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B4C555F0C2B146AF8D5EC356 /* Test.ice */; }; + A9A264A27202F290824CB808 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEF066D96D048F2BABE04F9D /* AllTests.swift */; }; + A9C7285A0DF9DF7F94906A6E /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5621C5105CF819261AA00022 /* UnknownSlicedValue.swift */; }; + A9EC0A71C71B5FF5AFED4B18 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE15755ADD9B5EE9808D8C1 /* AdminFacetFactory.swift */; }; + AA189CC4BFC36298AC8BE63E /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4067CCA4E285628C8AF454D9 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AA1B174000281436BC0479CA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E9093C94D6596E3660EDFBB /* TestI.swift */; }; + AA3009A96E6750777D48DBB1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + AA679D0494B1BE11F9957A54 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + AA726D1400A560CF97752832 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2F6CB1CBABB18103F23A7D3B /* TestAMD.ice */; }; + AA86ECCB42291589A2FA8685 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + AAD2FE4692EF082485AF00E2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + ABA1232826877F82079AA611 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD36CD2D320F5953C219BB79 /* Client.swift */; }; + ABE96A45D5047D07B494D811 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9FADED3C1D00A9AFBE02DACB /* TestAMD.ice */; }; + AC63406EA7134396F84D027C /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C004314E294893A903BC059 /* DynamicLibrary.cpp */; }; + AC66AEAB62812F101CC1A9FC /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D5A45BA52FE831A3ADA94B1 /* ValueFactory.cpp */; }; + AC74D2E9FA0C3AAD47C2DA14 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B1EB3F3DCA4EBE0AC85EF8E1 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + AC7FF1DC93E3F28F9D765448 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86BEC7DFBDFA7D664AA2948F /* Proxy.swift */; }; + AC8FA20A8E9A3591E503A3EA /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2E5EBCC2B8851DB99485BB9D /* Test.ice */; }; + ACBFD23F7C301915C5856651 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 910BCA66868673D701E802CE /* Logger.swift */; }; + ACE982D339EDFFC653754B91 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D06539D647623F84D3C475 /* Server.swift */; }; + AD100F4352996B95B7E7CEEC /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77E66F7A0331FF21333AE3FB /* BatchRequestQueue.cpp */; }; + AD33B193FA912407F5246BC2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + AD875C52399723CE4475E71D /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 787DA99C9345BD9AFAFE23BC /* MetricsObserverI.cpp */; }; + ADBBFA59FAF09F9C1DE28C06 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5E1178133F12C06313829C9E /* Session.ice */; }; + ADD0712DE7B899A47722FC2C /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57EE371E56576A8317C8E490 /* IceLocatorDiscovery.ice */; }; + AE02E09E476B221CF30F36F9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + AF2890B36A3BA35B274E95FD /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 46F06EE2B5CE1BD96013A0E1 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + AF8FE0C50A15AC26FA776A54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + AFCB7A1C5AC5640DC7AD8058 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + AFDB4215D50B3770598EA91C /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = DCD2DF2F490C333AFC34E403 /* Clash.ice */; }; + AFF652ACDFD4F86D15C78356 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + AFFE613A4380B21C593CC677 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + AFFF5BDE06F6577570923410 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + B0906221F3F02F1FBAAC361F /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9EEEF7EF10C88BEAC2595F7E /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + B0E111F7B287DD1530DDEA1A /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6A7BC8F66C9728566A553B /* ValueFactoryManagerI.cpp */; }; + B0E914E71BCCE5ACDEF86913 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + B0F3417F7C374C0F482F9DA5 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A3AF2E27A291665E3020008 /* ServerAMD.swift */; }; + B108FB61D8349D59B81F5072 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB0CC3A93C44880C5C9C63D8 /* InputUtil.cpp */; }; + B137642667AE3706E6A0A5DA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227169D88E42D03490D191BE /* AllTests.swift */; }; + B18D0F17814EC2E9593CCBAD /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5E4ECB4BECCE515728C9F0 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B22FBD4C587015173AD9D77D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + B2943A4C4F3190D879BA87F0 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5F7B7EC6A1313D15C1D5F60 /* Incoming.swift */; }; + B2C6D001A53B337E96DAAF99 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAA42C2BC75B14E584DC7925 /* AppDelegate.swift */; }; + B309C311C3D80AB65DF93231 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + B319E2588A5E524131DC1E57 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F6E31AAAA244C75D4675291 /* Client.swift */; }; + B31B43F77AF169D916DAB8C6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8857A465B5A01F88B674B7C8 /* Client.swift */; }; + B33093C6C7B960A8B169B494 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BBBE5C0E398A59FC82DA5B22 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + B35831336B9C8525C5766A9C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + B3756370B221CD6396E20656 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 07A58E70155739B4065E5FFC /* Metrics.ice */; }; + B39C9E6A53FAFD8517C24023 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + B4125D5A6CDD59B0ACB46418 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9467375F0E35C0FBB7688528 /* CtrlCHandler.cpp */; }; + B451AD2F2E8335D26E2DC8AA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1EAC7DC09EDCDE664A6D412 /* TestI.swift */; }; + B4812044969EDC648CF8759C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41EA629E4C3C316AA9FF1EC /* TestI.swift */; }; + B483ED17520E297AC2B9B39D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + B493ACC09E287003922989ED /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + B4FED0CB275415CA0BDBE88C /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */; }; + B501D13A1A9EE63F7638605D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8D32C52389F2ECA0048EE141 /* Test.ice */; }; + B51683D810232AB7F6965350 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4344142A2FC9DF9B5722AFD5 /* TestAMDI.swift */; }; + B66607F1562CDE6DE5F645A2 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 525EFBA91C000927B6DE6289 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + B721015E7D1AAB5D755A8808 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + B72C238DEEB8B6E1BAECA9E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + B73417712AE0BFE19DC85E71 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEE34A113E3DC71D9DB8450 /* BatchOneways.swift */; }; + B76CC8C18A41B77044FEF8F9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7FF54833864397ACE8E797E1 /* Test.ice */; }; + B78646021526E09FAE9D9E3A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA5FA8A0E09A3F3BC61D2909 /* Client.swift */; }; + B7BD0338EFA7C3DB8FF32672 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 407EDDBF73A172C9F18D2E55 /* EndpointI.cpp */; }; + B8454674D8DEC49DD27A5CAB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + B8A3F70E2863B1E5C60D56C1 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA5C303C571C95B5220FFF77 /* ServerAMD.swift */; }; + B8FED15A9B0BC3649AF07A73 /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01024283C896A201E69A8C38 /* EndpointF.cpp */; }; + B916A32845E887D26A90BB8E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15D305717C35A677E3D0BF24 /* TestI.swift */; }; + B977C81B5074600C563DCB93 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E783E25173DD3CB4652293E /* Client.swift */; }; + B97CD3BF18905C818A868F12 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47085E57F8BA1CB63A56B0BD /* Test.ice */; }; + B97DA3D60EE182D1AB51D9EA /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0D102CF3F4701F3AE046D7 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B991982DFFEB4E157255AE6F /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E052D5C173FB6BC71D76D94 /* Identity.ice */; }; + B9BBE89A10AD153981A385BB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B5064B9C0DABEB987B39730 /* TestI.swift */; }; + B9C2DD2D5613D775575C333B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + B9F9B086A2833382BF004F04 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + BA21EFBD517019D1C6150A7E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + BA27D3FF886FCCB851238FEE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9CB8DB9B6B0E2D1D5F87503 /* Client.swift */; }; + BA286EB1F512C5B543AF5AC4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + BAA9CFBA87D8EA695783DEA2 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A21AF317B8CCD5205D8A9013 /* ConnectionI.swift */; }; + BAC78B4F595BD0F319B02618 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + BB5A9BB8BEA3E1E533FDD635 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */; }; + BB6256A532AFE0F50633935A /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A01CF5F8BB77C282B69730 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BBA7C9CA4A8AD0F8AE0C7C6B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + BBBCAC7EEBFCAEA884101D8D /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0C68422D8FEA96E3FB21520 /* UtilException.cpp */; }; + BBCB27DFA915FC2BCFFE092C /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 52675C01C923B38208A8C760 /* SSLInfo.ice */; }; + BBDF488A0D76D385FA9A778A /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C18CB03DD5155C1C2B2E8A8D /* Proxy.cpp */; }; + BBE742F1DFDDCEB7A3BE8625 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCB4094FE32B8606EBB93BFB /* OptionalFormat.swift */; }; + BBFE1CB14B5EF1F55F39B2B0 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A86220A97A6EB0CBFC944D /* ArgVector.cpp */; }; + BC3D6EC3D90A4AE009CC3D5F /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89DACACD2C1AD4F3469CA088 /* SSLEngine.cpp */; }; + BC4A965F00389AFA1C4EC94E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4D165404C1661A879CC7DD9 /* TestI.swift */; }; + BCA8A4514E249D3C06575584 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59519EE11AE42BA7F6AF270A /* RecMutex.cpp */; }; + BCC0808B177FAE9FEABE3637 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BCCA590876E281C9161D5EC3 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BD08218A3D3AE414822402A2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52122170F02276E3275AAE2B /* Client.swift */; }; + BD3417F2E2FBD12FD4B69013 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2B615C29B6876A457E770F75 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + BD346138D37DBC38517DD6E4 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC5127D1D96F5CE76CAD417D /* Random.cpp */; }; + BD43FAB5A93C34E64E28BF55 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */; }; + BD58792E9664068AC18DB148 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + BD80D443905E58947347F959 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227169D88E42D03490D191BE /* AllTests.swift */; }; + BD8DDC19C1647AE129C36A07 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + BDD293FFBBCAF18CE46EAACC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + BE17229417D9AA1D213B521D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + BE5C0EBDADB099CCC3BB9156 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B1834CCC901B15A44359D42A /* TestAMD.ice */; }; + BE7E09E447102CDC75718E7E /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8750D48101851C84B89B330A /* LoggerI.cpp */; }; + BEA7F85366FA14A434C73117 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + BEBC27F6443E69C633906888 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + BEBE36991D9BACCE4939A67C /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B67D5EFC0BB322E8EF9ED64C /* NetworkProxy.cpp */; }; + BEF5ACC5DD0B74AADC279A1E /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 436D4DDD3929D36CB74E51A9 /* ObjectAdapterI.cpp */; }; + BF11A2E22C96DF6D2F20C2E8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + BF40E8BC2701770F6F2B1238 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0832C0FE4DD00F57DBF41A23 /* StringConverter.cpp */; }; + BF4C3C6393D615E64998F9C5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + BF7CED554DC9F717C953BEBD /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7806EDFB543369686343312B /* ServerAMD.swift */; }; + BF82F5A44B264BBAF92AB412 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A202DC196498CA41452751D4 /* Security.framework */; }; + BF86CC5BB50C374E2DD482E3 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8335B51360FAD4A3774DBDC /* IceGrid.framework */; }; + BFE558871C8F222056FDC2D4 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3EA671155BA0EAA870D5F9A /* ValueFactory.swift */; }; + BFF4B06A3B63F0E279CB791A /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 42391EF6184A353552A00883 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C010724525B52C5A463A8FDB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + C04E44502642BFDC01773F49 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = A05F7539468832F6A1D1FE8E /* Twoways.swift */; }; + C069E915226406AB4FC91B6B /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = F33540D27F8ABA588FF9CFCF /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C076AA6FB3BE0CEFA46D3006 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104B3F85E85A1F464938A580 /* AllTests.swift */; }; + C0AF01F8C1A2680A86A26B01 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBFE1FE5EDAEEC44CD547C8 /* SlicedData.cpp */; }; + C0EB837F25A195490E03F95B /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5E1178133F12C06313829C9E /* Session.ice */; }; + C0F045DEE2AE93566EEDB6ED /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39513FAD1AB0E49430E2633E /* ServerAMD.swift */; }; + C0FC3735E785045EC4461BBB /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 800A52A540F1DA8547B1D22A /* ConnectionF.cpp */; }; + C133EBD074843BFA71B97D18 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + C1343CBE720B2DC256CD1478 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + C14261921EC5B6DE9586AA24 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6DE756B8F16EAC3E04B2798 /* TestI.swift */; }; + C14B9D2ACDA59BBFF227D036 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D678FFB619CCB86A3BC95515 /* RegisterPluginsInit.cpp */; }; + C14C7601DEFF28252384A909 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + C16730199AED9F96DA90412D /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E301CB7A257886B9F8760B6A /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C171DF4EB004F8FAD5E6EA69 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 49F7B52E1EBFD001EE29C9E6 /* Descriptor.ice */; }; + C1E6B9220DF9020129DF71F3 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFC516B10AAE738541716320 /* MutexProtocol.cpp */; }; + C229FBDBE235645EB6EFCFB1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + C232B65C84FEDD8CEEAB7B1E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8A8D9D48C0A5E19D013CFA /* AllTests.swift */; }; + C2627C5A2479A57E5EE53629 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D9D973870D744362BE6CD5 /* Version.ice */; }; + C2B40613244370A8EDB5DCDA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + C2DD6C9517D54EE8170B01E7 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A9B49B4C419054A03A217A /* Collocated.swift */; }; + C3346732134A7FF4E54A350E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20B1410DBC821FBE25FF0338 /* AllTests.swift */; }; + C353812AD1FB72561FBEF9F0 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C30C6AF5ACDFF5254E06CAC6 /* EventHandler.cpp */; }; + C3AEC7DB466BF3A156CE31ED /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67DA500D7FCA7E4FCAAEBE8B /* Convert.mm */; }; + C3B4C1E3513CDFE981269530 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + C3FC196932AD70FF912918C2 /* Main.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = F345F9DBACA2072E0A394485 /* Main.storyboard */; }; + C46DCDCC048DC9AA90572DED /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DA216EEEB74D482231E9424 /* SecureTransportTransceiverI.cpp */; }; + C4A9911E857795CC98245C08 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0C651862FD101870CF346580 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C4C6B0C4FB541B81634C25EC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E312FEE4E94C01795C8BBD9 /* Test.ice */; }; + C4D1211585C895BB820057C0 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DA216EEEB74D482231E9424 /* SecureTransportTransceiverI.cpp */; }; + C4FC8EAD023FB1FB5FA5F353 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344C21FB7DF7176184125859 /* SystemdJournalI.cpp */; }; + C56FDA0CA4EF0501C54973D7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + C584B5702105825549FB4F80 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + C5A09A75C25E6B7B97E82DDD /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 07A58E70155739B4065E5FFC /* Metrics.ice */; }; + C5F9F939CDCFF19348CEED27 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F674217427A6BB4384E16370 /* Plugin.swift */; }; + C6670777D45B34F4F55383C8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBFF2AF509B1E71159DAECB0 /* Client.swift */; }; + C67E41468AFE0B965A90F29F /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC5A98A70A93BDFDEE865FFA /* main.swift */; }; + C6C52B22BD7BC8E9DAFC8FAE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 28DF745A2D928C90F9F4419D /* Test.ice */; }; + C6F35C40C7CAD0C3F77FD4D2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1A0F1FD62421D88BD8F6E24 /* Server.swift */; }; + C6F569F44F1FFFF5EB05547E /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = A076886379887427EF43CAB5 /* TraceUtil.mm */; }; + C6F645B973A0595EE324BCA1 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F4BB047ECA2C8C6E40017B49 /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C70348CFD282CD7E9956F6B2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + C70D891B4BEEE2ED25DD9FC0 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEAEF19C75C1808D288CE761 /* PropertiesI.cpp */; }; + C732FF1B674435836AEA4266 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EC92AF3F5FC050268FC433B /* AllTests.swift */; }; + C76FDB1D1DA0DA1D7C15C8B9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + C7B889058A1CE7DE22185681 /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41551E09D595E50A24EF5892 /* Incoming.cpp */; }; + C7BBC8F2BA3013ECBEACB528 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE247C4C7515E78416734AE3 /* TwowaysAMI.swift */; }; + C7DBEF7E416349E035A919C5 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1683ABE87E8B25BC9C881B82 /* IceDiscovery.ice */; }; + C8430DD25DF281D70F6CCCFA /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7226B2863E023A530714AEFD /* InputStream.swift */; }; + C8448ED4409CF9EBF0C49970 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8D10DFF57F34E081EBF41AFF /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C8A271A6B9E2A3B373DEA321 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 950F3E962351FD9CFB2B4F24 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + C91DA74ACBFCAA2DB28D97D2 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = B33CD8E30BD014F5C4CA9222 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C95D74E612CD44A8E5E74803 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83F9EE39111E400F0CF2C17 /* Client.swift */; }; + C9842BC97C2C0889E4A153F3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 474135D6386C100AE4286B3D /* Server.swift */; }; + C9CBD4B8E1EDB9F225E35A75 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + CA001DEF70908E891116A1B0 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAACEF4FECAF35BE85C20620 /* CommunicatorI.cpp */; }; + CA0CC7435D5114B8AB44F7F6 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F59158F7D5C392A0D1D7CE8 /* ACM.cpp */; }; + CA37756C70641135D69865CF /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6A7BC8F66C9728566A553B /* ValueFactoryManagerI.cpp */; }; + CA68D62399ACFCB8817B64C5 /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C991DFF2AAC0B41C6A1F408 /* CommunicatorI.swift */; }; + CA8BE400C1A388279ED6539C /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E2686345DB372E56936CAA9 /* RequestHandler.cpp */; }; + CB095ABCB85EA416200469FC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56AD8F95D9A540F5AD97E976 /* TestI.swift */; }; + CB21D6E2CFDC1DA5DFA706DB /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = A0D2E40EB5EB722B76219B03 /* Exception.ice */; }; + CB2687687AB5F910284C23CB /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5300396B18CE9C2FCA0A8E2F /* Transceiver.cpp */; }; + CB4DDB5C8CBC00891F4F6913 /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E18609323F580043357FC2C /* Buffer.cpp */; }; + CB6F1597E1BFF0463D10D0FC /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C0743CBF803A996FBBFE2C5 /* Blobject.swift */; }; + CB74367931EFE9E5362CA132 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCD3E590B98FDDB60A31C5B /* Client.swift */; }; + CBB08BCE424AA196283AE1BB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + CBC4997044D30BC6B745F59C /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 116A9F625EC4AC51F7044FFA /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CBC9DC2609577E94AC193165 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B77BB5BC36ACDA87B6A69FF /* AllTests.swift */; }; + CBFE90C015F5938E006F7B51 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44BC740D6506C3F1C8458122 /* Client.swift */; }; + CC0A1301E7FD1E4F851E58C7 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95F4BB6C69D370E2E329C2E7 /* Object.cpp */; }; + CC62C41A43CDF7880146CA62 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */; }; + CC817ADCD9DDC10A912EE45A /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A65FC585E09C2A76B625463 /* Process.mm */; }; + CCC5479C72B8428C472A3F11 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E41A2284123652035B9626D /* Glacier2.framework */; }; + CCF0474FF11F73D43AD97785 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + CD0DB9D40B994E3361586193 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + CD1C57F0EB79D5859889637B /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD340E5FDD75011A7A85118 /* Collocated.swift */; }; + CD1F9DFF380D7F1443D4FEF0 /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 80FAAEBFCC3A3BCA918A1783 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CD710D8A5348968E403F003D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + CD75B00F0A0905F76163A248 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + CD7938B5EBA8E41CE6BB84C0 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9330809B9C47D804EF5BC5E3 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CDBB2803A82BE78292309065 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = F52E3E551A8F8B3901BECC9B /* certs */; }; + CDD67A8982DBF28CA51F1F31 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = F48616BFFA819BAF3F8B2FB8 /* Key.ice */; }; + CE332DB5B59EF340DF237C87 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1B7B8369877501337E9D5211 /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CE3A38CCDF2197E61C9E474D /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A1210D169DA5033BD26A6D9 /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CE927DA9106DD63E68BAF7C8 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A3BB783984531DDB15DA995D /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CEB0D53A4A329405D2FF00FC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + CEC11090BE9E6A05461EA506 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + CEC32138BC33E2696F3143BA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63B3CE5DAEFF4FCC9EC9707D /* Client.swift */; }; + CF21B01E38CB4A4001D47B3E /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7AD3A474B7A1D069CCFC0AFF /* RouterInfo.cpp */; }; + CF2FE08D882509CAA6DD32B0 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 695139937807444B932DB3F3 /* UdpTransceiver.cpp */; }; + CF457D75AF0694811BDB3828 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F790BD181E9C75D456202B50 /* RouterF.ice */; }; + CF514BFCB5FD644FC13CE4D7 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 52675C01C923B38208A8C760 /* SSLInfo.ice */; }; + CF6AB1F9705D6C8677FF89CE /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8335B51360FAD4A3774DBDC /* IceGrid.framework */; }; + CF8B005366FF8F61870A8AE2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6927471763F231278861844 /* Server.swift */; }; + CF8B43B1EB3FF02ADD78BA43 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + CF98398C8D9504749631ADBE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + CFA7149771E4E05F86CACAEC /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8188B41289F2C073375F3D48 /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + CFFC7B30EF171CFF9B6DCC09 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + D007472094A8CCE6FC434CE8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CABC46485C8349B0AD18EB39 /* Client.swift */; }; + D05452AB7F6E47B9704E8F2E /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A5C5A1DEA6B7BB5ABC8C7DA /* InputStream.cpp */; }; + D09BD849E9D7E5ED34430C35 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42391EF6184A353552A00883 /* IceImpl.framework */; }; + D107F7D49FBB8D2A50E1CC8A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + D14A961DE90957A1DE3ECFB3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + D17F5D68F23CF1FA942D82A4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + D18E260F1A9A7066AE2CC205 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + D19E0496C898E9B7697C0726 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE9DC976389286FF16B21B0 /* ProcessI.swift */; }; + D1B49D38A4391950B9366FBA /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */; }; + D1E1F1E6A16F7E1D1EFDC4A4 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB0CC3A93C44880C5C9C63D8 /* InputUtil.cpp */; }; + D2485C66283CFD2F2C0E8250 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAE2612261AFAD9F126ABB05 /* PropertiesF.cpp */; }; + D25FA1D4555B90AA8EA2CA6A /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 910BCA66868673D701E802CE /* Logger.swift */; }; + D278E7D277416C7F214529E1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + D27FE379B6FA3B86DAB9C871 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D3CBEB67344D577D334AFA7 /* Selector.cpp */; }; + D2AC08B5E7D7F5DA267CF8FB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22EB15880754E559CBAD530E /* Client.swift */; }; + D2C7FB4EE14AC7C9771B8872 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CABC46485C8349B0AD18EB39 /* Client.swift */; }; + D2C9176747A7C81A27C095D6 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 398A19BC7513CD91E69E4025 /* EndpointInfo.cpp */; }; + D30EFAFE509B0F596DCB7C80 /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73E18D1ADAE4685486879439 /* OutputStream.cpp */; }; + D31863D4C2285EE26B4B5BF5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D406B3CFFDCECBDD678B23A /* Test.ice */; }; + D34E460845F60D96B659E1E9 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = B33CD8E30BD014F5C4CA9222 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D3546FE15CF03316B5A91396 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1389F21CDF06949902AA2EA /* AllTests.swift */; }; + D3743F079C5AE339931CA1FD /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E47484D1D3DDA643748FDA4D /* Client.swift */; }; + D379195C8850680F7F9B72CE /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */; }; + D3B3D1B2437C0DD09B6CEE9A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + D4344DFCF693191817C81A00 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */; }; + D46E7C646A1E8D77C6AE1F5D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1E2C99A6DBB9132B74F4845 /* Client.swift */; }; + D47DEAD489D43174DEC9EAA7 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + D4C3F051368A99283CF157BD /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223354CEBDD25407EF26C216 /* SSLConnectionInfo.swift */; }; + D4DED64A5C28684FC11B9BBD /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4EE29237269F09AE7E678DB3 /* Registry.ice */; }; + D507F6AE61C100C49B391B8B /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B8BE69409380DAA8F3C39DC /* ServerAMD.swift */; }; + D51E815892C6AB254E9A015B /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C012332733DA4296E9354F12 /* Router.ice */; }; + D572E08E607AF19F07ED7AAB /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7449FB4230AD540975DB4BA /* SecureTransportCertificateI.cpp */; }; + D5765BB9B0FB122402F10B7C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + D579E0158CD7C7A74B599CEF /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0F1198C1D619743981CCBB42 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + D58D8E08552392999A098329 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A46BEB423DACD76BF4A68A19 /* ObserverHelper.cpp */; }; + D5D15DD30033BEF6E843444D /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 98A6F84D22ACDB0E77E825ED /* ServerPrivate.ice */; }; + D5EE45A18057938D31DF3CA9 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE1AA28CFE3208D7116FD69 /* NativePropertiesAdmin.swift */; }; + D5FD92490339073AB667D41E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + D643181C088F9CE93D88F13E /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C171909B3BA6EDB94DFE7617 /* CommunicatorF.cpp */; }; + D661B9213BD59B119EEF84EF /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18123528674C5DBEFE8DC183 /* ConnectionInfoF.cpp */; }; + D69293571C79142BD4644BFF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D406B3CFFDCECBDD678B23A /* Test.ice */; }; + D69426083BBC072A41B12214 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E45A803280C9975C7D2D5B6 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D6A7CE6063A9BE0B0C82D0EA /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 145ACBB9D8EC5ABDF5109CD9 /* LoggerUtil.cpp */; }; + D6B688373BBC43036B7FE9AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + D6CB4E18B0388D30588C0469 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */; }; + D72E35AE8C558E7BC749F191 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 695139937807444B932DB3F3 /* UdpTransceiver.cpp */; }; + D76AF5DF6713A46A3F5713E9 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C30C6AF5ACDFF5254E06CAC6 /* EventHandler.cpp */; }; + D788154F37EAF6DC77E8A713 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + D7B0002B1C68D0E52E8FAFEE /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC1C3A7852A6CED90889B91 /* ImplicitContextI.swift */; }; + D88E1EF1901912C9F5A60E3C /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = CF258BC66CA2B0FD8CAE93F4 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D90123A4143E72D3ECDE112D /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B81F0D55617DE7F0F891F6 /* Properties.swift */; }; + D9345ED4DE66A2BAA85CA059 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F8335B51360FAD4A3774DBDC /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + D93E9CE5FA4075E4129F5FFA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5085715D52B4CB7BA1DD1F9E /* AllTests.swift */; }; + D98DDBE334D3B4A22B0E7877 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D78BFDA010F774B68B1D0943 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + D9C3898B35154D67070B59B6 /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B81F0D55617DE7F0F891F6 /* Properties.swift */; }; + DA322673C2069A47E32B6574 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A577A9FBA08AE185D53C990 /* TestI.swift */; }; + DA8014084036AD0878EFE6B4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + DACF76C855E14513876EE388 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEE34A113E3DC71D9DB8450 /* BatchOneways.swift */; }; + DB0B6ACB09E3F07029CCD0D6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C14F40BEFB46405B9613959 /* Client.swift */; }; + DB3C3EE5FE1AAA6E08A2EFF7 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C1AF990F79450A9C081DB784 /* libIceLocatorDiscovery C++11 iOS.a */; }; + DB5DD8C88730E98BC04AABDA /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */; }; + DB695550603F9C75775666F4 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32C784477F9A73A13FD21C65 /* Server.swift */; }; + DB7366CED937744025502032 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = DCD2DF2F490C333AFC34E403 /* Clash.ice */; }; + DB91D7BC5E5818F7E8F40859 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + DBD1FF2867013D1CF374444E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + DBE9BB62EAF3D24495F2C24B /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 694A7AEF1BC68DE001EACE83 /* Metrics.ice */; }; + DBF476418CD0E189A1673811 /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15530AE76DACDC2FD0C54C11 /* FacetMap.swift */; }; + DC030D1A25ADC2A17F7AC392 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + DC55B4A0C94773A803F89A57 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 86B4DBD2E99AD2E1D9D13F26 /* Router.ice */; }; + DC65D9C12980318991DC0B67 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + DD2CC01F50A9FD8A0B59AE76 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D9D973870D744362BE6CD5 /* Version.ice */; }; + DD91BDBDF304B914DD0AE38E /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40EB3E43A832B13BDE8D4720 /* PropertiesAdminI.cpp */; }; + DDBC1A2ECE67BCE6A3AB284C /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BDC9CA0C36333F0F3089E6C1 /* libIceLocatorDiscovery C++11 macOS.a */; }; + DDDA7CC0304D7D1174EAFD93 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAEED543910AAE7DB26F2B2E /* Server.swift */; }; + DDEF658C0972A36DDD721FF0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B538A5094459696C1D929F20 /* Test.ice */; }; + DDF330BBC0C728B5BAEF0159 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = A594F0C1849CEE5DE3E665BC /* SliceFlags.swift */; }; + DE11B8B721005376E35AEB71 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + DE33309388A2D6D35E0D00C9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8748EAC5BFE5A97A4085F0DB /* Client.swift */; }; + DE39A43B950347837A88F697 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CCDC8C722C7D08EBC696FC /* TestI.swift */; }; + DE86DF521D0A29EA2B0095BC /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6229E6CA09F91C68DAB3EBD2 /* InstrumentationF.cpp */; }; + DE94840EAE0950C8BA79F949 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + DE96CD226BEB221D08CA1C20 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01EC749BC2A7D4FCA7490B47 /* Endpoint.cpp */; }; + DECC2A6910E64F875FD34570 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C56F9DD18C4DA39D6933343C /* Reference.cpp */; }; + DF00731D06ECAE6719AD64C0 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3C699CA6ACD42014E3492D1 /* ObjectAdapter.mm */; }; + DF2C78175D84FDBC8C8315A2 /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A1629C3A24F66265F742150 /* Instrumentation.swift */; }; + DF5AF2DB0CD91E715F08042F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + DF658B608E89DC95748E9022 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + DF94FB33F38943155FBEB05A /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1CCF2A334B2BAF9588A6DB42 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + DFDB5511012AC679182BDDB0 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE26B6B169CD5B24ED29BB6 /* Communicator.cpp */; }; + DFE644290C720C34A146AAEC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + E02F6DDDD2ED9F8653D657CE /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 30561094206DE7E5EB3B1E5B /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E046306C3015C877A3BE9084 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + E16774B99E16AD2190AB35F9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + E19DFBCAD181CF1C79CF3383 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + E1AB202BFCF1D5BB293C3560 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + E1C3660C58AA23A810E6A3CF /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4F40F40EF79D1EFF0672F1C /* PluginI.cpp */; }; + E1D2F7A064F903818BC5C81B /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73E18D1ADAE4685486879439 /* OutputStream.cpp */; }; + E1E71D2982C42BEA77D98F1B /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E880F031CD68893D2F69EFB /* IconvStringConverter.cpp */; }; + E1F5AF99B627FEC2E8714A88 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + E20F5B09EF5C04746A4E87C0 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6328AE24A94F7B78F7B70026 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; + E224BC34CEE9B97DA6446042 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64802AF97D0C116399E87B38 /* TestAMDI.swift */; }; + E22DCE56F23EF9759DCEADB3 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50D65B51261AD566166DB14B /* CollocatedRequestHandler.cpp */; }; + E2713AC292F225DC79A9B3E2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + E2A512A72F8C1F3A55044BD3 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = A90D21866BAE0181F737C83C /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E3455A6C3076D0EA2F0D4B3C /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71DC04F4318C243C54C6708F /* ImplicitContext.swift */; }; + E3FAC91AC3A221C72A12F062 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + E437D41C66B9C6EC28D6503A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3B0B441C377169B54CEB0DC /* AllTests.swift */; }; + E49A789A85D80DC904BE4D72 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = D67D8A64DA92416D5A34F56F /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; + E51AA40B2A63B7E6D2EB463C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + E53053B6B36580F1FACF54E6 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B17547CF25F9F6D499E59F4A /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E5370113AA58E064333184A2 /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E301CB7A257886B9F8760B6A /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E56A2B5D84CF0D1438D587E6 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 680CE9BA4A204FA3FAC93375 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E5C6B5AED56F9BC934CC4DC7 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAD58C233C507C35334F1CC6 /* ThreadException.cpp */; }; + E5E608DF1CF09D64C7F7569D /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04ACFF850FB52C42D1D0256D /* SecureTransportUtil.cpp */; }; + E5F6FEF06ABA37D0A16EF93E /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEAB4A7EE835A05B2C8DBB4 /* TraceLevels.cpp */; }; + E6034BDF230D6B0B34DABAEA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + E61AF76EF66344DE9F88AE5C /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83AFD09B0973C33E42BBA73 /* Value.swift */; }; + E65A12912D5C10F7A5F78A49 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C0743CBF803A996FBBFE2C5 /* Blobject.swift */; }; + E684A9254F746D25D8F52B8A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + E686E59B93F9BECF552301B3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBFF2AF509B1E71159DAECB0 /* Client.swift */; }; + E6CADC0AEA94CB6E36899759 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DA48BF39278DC0F70FC216F1 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + E6DFEA695019BC4C971BF870 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 627B9BCC0B4AD0B6A1F666D2 /* Communicator.mm */; }; + E7A19DC3180379FAE502829C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FB36E85F6FA876D88996239 /* AllTests.swift */; }; + E7AE9FD4848A0DEA84955812 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + E7D9D3C909593D23FA8FDA7A /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C216F290E9890052BC928A0 /* ServantLocator.cpp */; }; + E7E9C572C7C05E0813EF78C5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47144CDB90451B47BF3BCB58 /* Test.ice */; }; + E7F0C5863C240F0C61C792D5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAEED543910AAE7DB26F2B2E /* Server.swift */; }; + E80F03AADD7FDE54CBD7DCC2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + E816790986F5BE0A937C0475 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BB1E5488617EE9721803F5E /* Server.swift */; }; + E83D2828AA7D25CB5987291E /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9947265006AE43D802120A4E /* LocalExceptionFactory.swift */; }; + E8655F3D94350A7F0C8A7E62 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6DE756B8F16EAC3E04B2798 /* TestI.swift */; }; + E8ECF125C99587AA89A85E87 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2D266EA2336769024DD2B4 /* TestI.swift */; }; + E8FACC1133C8E173A929F831 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AE2E85C3FD16B73660AEE0A /* ConnectorI.cpp */; }; + E909DDEDE3DF9BAE2ED525AB /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4CF2077C814A7377DDEE06A /* ClassResolver.swift */; }; + E96D9D0E119CF23373C46695 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5B2DF10CBEFF10D1055C9690 /* IceStorm.ice */; }; + E97138E0D1B93F302A064640 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E052D5C173FB6BC71D76D94 /* Identity.ice */; }; + E9D4065FB98B8BA5D1CF4CF2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + EA2E235B053E55B0E4177494 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = C08D8DDDF0EA2D26B0BC84AF /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EA34FB21DA849348CC580D41 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D2DBA835FDF24BF6450F945 /* ServerAMD.swift */; }; + EA55DBA8AB62EF9298A3B767 /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 136C9F1CB0181AA674220B28 /* WSEndpoint.cpp */; }; + EB41A9285C877C256F1A70B3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + EB7415FC08516D8085425448 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */; }; + EB86EAE346B18FD1386478AF /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A3AF2E27A291665E3020008 /* ServerAMD.swift */; }; + EBAA5849483697AE5E16232A /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B930854633BDF8CF5FFE22C /* TestAMDI.swift */; }; + EBBFB1974A4E613A90B1324C /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = C57D6F7125325B748CB60975 /* Process.ice */; }; + EBC02991D3AAB52FE34867D2 /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FB7753A8D2686CAE06B2CE4 /* ImplicitContext.mm */; }; + EBDA6DF9FFD8DA98E922E042 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6328AE24A94F7B78F7B70026 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; + EBDC44BBA0C2C638C4FDE665 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA4D36E0018BED4FBB96979 /* Server.swift */; }; + EBDEE2AC104C7DDFD21B5349 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9AB56DEA09A30139787C127 /* ImplicitContextI.cpp */; }; + EBF0FFBC4582779DAE204736 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E2FA87620B046FCEDC51EC6F /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + EC177206816100D056A7C635 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDD0F141EA94FBF630E95CA /* InitializationData.swift */; }; + EC62E2D762C81829674F1635 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4419CDC00A0E26DD43BE74BD /* Exception.mm */; }; + ECD6E46B065E370B3598C98D /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89DACACD2C1AD4F3469CA088 /* SSLEngine.cpp */; }; + ECDCC511C2F7E5E99513C31F /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 42A2439DC6CA50093CA51089 /* Admin.ice */; }; + ED6DD03F123C10F752D7CBBE /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9732906011677017B8FE8A9 /* ServerAMD.swift */; }; + ED7BC22AAA04977B3356C7EB /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D3CBEB67344D577D334AFA7 /* Selector.cpp */; }; + ED868AC52D578FE5E1E32A0E /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEAB4A7EE835A05B2C8DBB4 /* TraceLevels.cpp */; }; + EDAEC3B6C7BC3E68C9177631 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73411F554849A6348D021C0 /* Server.swift */; }; + EDC726E5116DF79B42E10724 /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E218220353976A1D5C07CF1 /* Current.swift */; }; + EE0C58EBA222F0AA0F4C23DD /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 030DE03918D9D61428E52F76 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + EE54595EDB60291258E1A374 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B51E89BDF16FF1D23C5FFD2F /* ConnectRequestHandler.cpp */; }; + EE6E78F71645C9163AAC6720 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 336BA488F873C8ED6AC70009 /* ObjectAdapterI.swift */; }; + EE92D40F019F418F57F47E97 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + EEA5EE91CC45E766332B8FFD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE0FC793581C11E605079EEC /* Server.swift */; }; + EEE99D5CCFD33EEF81868AB1 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B15F39FC8689FC1FCB89F477 /* LocatorF.ice */; }; + EEE9A2E49EC97E210B2B02E1 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B33C3DAC38D7CB012602F1D5 /* DefaultsAndOverrides.cpp */; }; + EEEE55D167009E5B52017EB7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; + EF8B25A4769EC04362C4D559 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9E63A9A57CB0A4F537AA9E84 /* Forward.ice */; }; + EFE3FDFFCC689FB65371BC90 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2F8371C545BE433208E8DD7 /* Client.swift */; }; + F05CAE7A600D66FEFEB492FF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + F0676320A167101DC1E431E9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + F09310D12E519AE60924BCD6 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E90B07958C12B403F8FF0C /* Collocated.swift */; }; + F0BFE69F3E6EB11FF6C9A215 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D93BB1CEE95D6DBD647C1F66 /* ProtocolInstance.cpp */; }; + F0C7200AE0CEB8E3DD71036C /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBFE1FE5EDAEEC44CD547C8 /* SlicedData.cpp */; }; + F0CEA2E719B332639087A122 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 390FE2A8AA85FA1F066DB95F /* TestI.swift */; }; + F11C89DE74F84A7D67BBEE11 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = D67D8A64DA92416D5A34F56F /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; + F14D90500BF758A100DF4918 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27DB5A110EBA9310691BDEFB /* RFC2253.cpp */; }; + F1719AF12FB78B7049AA9FD0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + F194CDBC2AF32E45AA04AB45 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B6EF30F36318A639D638152 /* Test.ice */; }; + F1C6CF21D2E9B6AF66BA47FA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2951989E4ED79DB5A5BD840 /* Client.swift */; }; + F1D6D8065192F452067CB422 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D4683E4EEA3C7003504AE96 /* Test.ice */; }; + F1E6365515003844B72F5FAD /* Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8DE17663D635E9A4C17FAF76 /* Notifications.mm */; }; + F236DA1A4D2B575460EE9CEF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FCD89BFC87D0D93ADD625C0 /* TestI.swift */; }; + F2427061CF69C098C78D2C90 /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFCBA8D98D4B3EE825A33F52 /* SysLoggerI.cpp */; }; + F27F39F7B04DE92D90D5CB28 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3EA671155BA0EAA870D5F9A /* ValueFactory.swift */; }; + F28792F31B175D0C5EFA9340 /* StreamTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 230B98F91F974374C839BF91 /* StreamTransceiver.cpp */; }; + F2B44C5B98EB645ABE40C16A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 945016AEA0FC7438D19E19B1 /* Client.swift */; }; + F2CC30135189BB8CCEFAE021 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + F2F60590B4B53220278EE1EF /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950579F4E8C4DFF646EF3C51 /* ServantManager.cpp */; }; + F328CF7B99163CF43D402BCF /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7C57A532F569AC857B5BAC2E /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + F38172BEB03F49344B3FA4B7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + F38E57C85B29C7AD0CA293E5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + F39E0F5A881ED716D5FFA86A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; + F3F5E8F7A92DF0ED4C887F9A /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B678F2298413760C49C183ED /* ObjectAdapter.cpp */; }; + F417584E7188CC80E8E277D6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9A65923D521C078DCDBABA31 /* Test.ice */; }; + F4620828FEF5F90B32A5800F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + F46D013DDA2E66DD86E2FB4B /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84BCFC47EF30B1DDA82EB275 /* ValueFactoryManagerI.swift */; }; + F4A4322B62B6CD345E5DB879 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A83C77E4B0D0283CA18020F /* AllTests.swift */; }; + F5519272B5FF97DA83D66E80 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74C4E15A84E6E19C4F7072FE /* TestI.swift */; }; + F557430C1BB366EE08B0B77C /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C004314E294893A903BC059 /* DynamicLibrary.cpp */; }; + F5D528CD0959ED8FBE47D801 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4344142A2FC9DF9B5722AFD5 /* TestAMDI.swift */; }; + F5F6DE14CAD57D389D28AA0F /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ECA877329DEF57B54A08C55 /* ConnectionInfo.cpp */; }; + F60805692BF75F063F8788CA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + F60EB885BE59E46B98CCC18D /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 03DCA74ACCAE41A0ADDF52A1 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + F633A9D43A323F931BCC899B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16484C090CFD38F73675B0C6 /* TestI.swift */; }; + F63F8F55A184BAAE3C16D5BB /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C012332733DA4296E9354F12 /* Router.ice */; }; + F6F9A7163D5CB24FBE765E4E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8857A465B5A01F88B674B7C8 /* Client.swift */; }; + F71B7394848C334C4FC51BFA /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68D9BDAF960BA51A8BF52198 /* ProtocolPluginFacade.cpp */; }; + F75002F0E849D90CB8567BA2 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 724C0E53DAF83BB50C3912A4 /* Endpoint.mm */; }; + F7C188B7CAD692A761D796E8 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D253A2160FCD5C0E019B003 /* SliceInfo.swift */; }; + F7E8D1A74667461F322D5563 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1A0F1FD62421D88BD8F6E24 /* Server.swift */; }; + F7E9924F2C30B7BDCE908009 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1683ABE87E8B25BC9C881B82 /* IceDiscovery.ice */; }; + F802821B381C10DE143B1174 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7806EDFB543369686343312B /* ServerAMD.swift */; }; + F8576A7571826929C57CC91E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + F879712854758F853F1BCA29 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; + F891F1E74DA88E56DA8E50C4 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A86220A97A6EB0CBFC944D /* ArgVector.cpp */; }; + F8B1A0BEF3AB75B1B3B5B0CE /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02BEC5D52B98E16486723B15 /* OpaqueEndpointI.cpp */; }; + F8B4CFF46EC035E9DC16D409 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + F8D058617878D4D9B3E25EDB /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF74B405592DF882FC711C4F /* Plugin.cpp */; }; + F90D8D9879F4143CF8A98257 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + F915629B1F571DFC1A3DC899 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5CB34604AACBE72A2D272966 /* FileParser.ice */; }; + F91B098208997F1EB1299E70 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B77BB5BC36ACDA87B6A69FF /* AllTests.swift */; }; + F930B86AD80EF1CF48C47AB9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83F9EE39111E400F0CF2C17 /* Client.swift */; }; + F953B719B8FD5471D8BE983A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + F968F0B69C9A21BDF84CEA63 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27DB5A110EBA9310691BDEFB /* RFC2253.cpp */; }; + F97B740AC442AC4B0D143E62 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3637F3FA49D41442776DFDA3 /* IncomingAsync.cpp */; }; + F9A678E0D8142B0EAAF58818 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; + F9F79CFA380A6BD76F0256F5 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 54B51F429E8B56A715B61412 /* PropertyDict.ice */; }; + FA136CDF6745B64905666CB8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + FA7EA0C86DB3A74ED62C29DC /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C5527D47B4AA93DCBF5B076 /* Properties.mm */; }; + FAE56358026884E7BD7AD702 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829AECC82389A2F5E05C2960 /* Collocated.swift */; }; + FAE6CDC113ECDCB7CA9E1377 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + FAF775CD4CC584724B6E4BFC /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28BB763CB891D9E198CB4E13 /* LocalObject.swift */; }; + FB17C62388DE6EC5CB5A056D /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D9B018EB339EB9B238FEA4EC /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; + FB4AE4F1A6430ECE8CAD317F /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FEE9254105C73243B44FFE6 /* OutputStream.swift */; }; + FB530E3D167CA5BCDBE9BEC2 /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86A893065E7D543BCF41F626 /* Endpoint.swift */; }; + FB5F2BF62D1A09A6073D031F /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ECA877329DEF57B54A08C55 /* ConnectionInfo.cpp */; }; + FB763296FEBB3F746AEF08A0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + FB826A2836E1BBE93F404820 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5085715D52B4CB7BA1DD1F9E /* AllTests.swift */; }; + FB9F6BB94D193143D0B5E2C6 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2308C88106E21E86B64770B /* LocatorInfo.cpp */; }; + FBB16729EB0F5F7BA5415885 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 933DB0C83248BF059A7F1C20 /* Server.swift */; }; + FBD93475BF07B36B2DB91701 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; + FBF6416D19F7C22FC7C11A7A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + FC155853488B9A0F41E99EFD /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EF15FCC42E00687BF6F16DE /* Communicator.swift */; }; + FC61278C365AAC5B5EB0996B /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 738DC08C9436E513AAF5205F /* ConnectionFactory.cpp */; }; + FC789C6064EEFAC62846CF10 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = EEAE2A3EA52301D744C2238C /* ServerPrivate.ice */; }; + FC7AF2821E75D1B3C11E0EA9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; + FC92FCA370E4FBCA8079ABD1 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3C699CA6ACD42014E3492D1 /* ObjectAdapter.mm */; }; + FCF032C01B28F823A151F4AE /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B0D3189E1EC893F9D4E0 /* Logger.mm */; }; + FD25A7D0C72352EA667FFC58 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; + FDA9DE94F10FC4107F22FAB9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + FDDC5812A0681FC18860451D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; + FE12E1E0B0C51F3449556B9F /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223354CEBDD25407EF26C216 /* SSLConnectionInfo.swift */; }; + FE4887740E46F96A432B6F75 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE1AA28CFE3208D7116FD69 /* NativePropertiesAdmin.swift */; }; + FF341543F93F0A39F6D7EB65 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = D091865931D88D93A031BF38 /* PermissionsVerifier.ice */; }; /* End PBXBuildFile section */ /* Begin PBXBuildRule section */ - 004224CFB509E7C1FC39428F /* 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"; - }; - 0688C0CD4406817FA01FF0FD /* PBXBuildRule */ = { + 01108756FB1E50B366DCC087 /* 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/ami/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/scope/Test.ice, + test/Ice/ami/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/scope/*.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"; }; - 07CE6980CA9698C633E0290B /* PBXBuildRule */ = { + 0224EEAD62D710B0CCFD076E /* 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/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Slice/escape/Clash.ice, - test/Slice/escape/Key.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Slice/escape/*.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"; }; - 0958E402CF051D4C22CB38E7 /* PBXBuildRule */ = { + 026B9995488EA94AC1BEB784 /* 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/adapterDeactivation/*.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/adapterDeactivation/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/objects/*.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"; }; - 0C497AE78CB318C9D8E80C6B /* PBXBuildRule */ = { + 0427B4908F72AEECF55F409E /* 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/services/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/timeout/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/timeout/*.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"; }; - 0DCF0D46E3E230305834ECF7 /* PBXBuildRule */ = { + 052542FF38B26A85BA0EA4CC /* 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/facets/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceStorm/IceStorm.ice", - "$SRCROOT/../slice/IceStorm/Metrics.ice", + test/Ice/facets/Test.ice, ); isEditable = 1; - name = "Slice Compiler for IceStorm/*.ice"; + name = "Slice Compiler for test/Ice/facets/*.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"; }; - 0DDD9C52FD49098F8B3785BD /* PBXBuildRule */ = { + 10ED1FBB2458AE18FF84A3CF /* 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/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/adapterDeactivation/Test.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/Ice/adapterDeactivation/*.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"; }; - 0F9586CF2348081A43AE65D0 /* PBXBuildRule */ = { + 19CAC30D305C213455F0B913 /* 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/scope/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/scope/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/services/*.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"; }; - 0FBF8A09C0F0EDCB96B6EAB6 /* PBXBuildRule */ = { + 1D1CE901804E6FEB2E40314F /* 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/ami/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/ami/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/properties/*.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"; }; - 162A1E09280CE82F4A264925 /* PBXBuildRule */ = { + 1EFAC4D5CFA3C5E69B7EBAE1 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/ami/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/ami/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/ami/*.ice"; + name = "Slice Compiler for Ice/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/Ice_$(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/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"; }; - 189AEA277312C4FDE4F0E0E0 /* PBXBuildRule */ = { + 1F899B47510EE1AF93E55F0B /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultValue/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultValue/*.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"; }; - 1C73735EFAD37D1CFA1D669A /* PBXBuildRule */ = { + 1FE230AEDB37ADA5C1A5F0B2 /* 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/interceptor/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/interceptor/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.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"; }; - 1DD5AA8184DF6DA93A755326 /* PBXBuildRule */ = { + 21338767AF02AA9557A7E132 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/retry/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceStorm/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/retry/Test.ice, + "$SRCROOT/../slice/IceStorm/IceStorm.ice", + "$SRCROOT/../slice/IceStorm/Metrics.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/retry/*.ice"; + name = "Slice Compiler for IceStorm/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(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\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/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"; }; - 23DBFE117A0213EDA0978F3C /* PBXBuildRule */ = { + 21640CB1591AF046394D5538 /* 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/stream/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/hold/Test.ice, + test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/hold/*.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"; }; - 24EFF29543366B1888A17736 /* PBXBuildRule */ = { + 2B5499CC882C269A50E4E91D /* 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/servantLocator/*.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/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for Ice/*.ice"; + name = "Slice Compiler for test/Ice/servantLocator/*.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"; }; - 28DD4EFFB1C9520539DE741D /* PBXBuildRule */ = { + 2C47615478A63B89451FB3F0 /* 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/defaultValue/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/admin/Test.ice, + test/Ice/defaultValue/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/admin/*.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"; }; - 29E4309E99D7B07919B4D720 /* PBXBuildRule */ = { + 2F333406D1D89EE25A9F5B70 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/optional/*.ice"; + filePatterns = "*/test/TestCommon/*.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/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"; }; - 2C73273142987B7C6C0DC25D /* PBXBuildRule */ = { + 301928FC4CFCE81BF608587F /* 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/inheritance/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/interceptor/Test.ice, + test/Ice/inheritance/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/interceptor/*.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"; }; - 34112FA3CAB0CFDBAB99076A /* PBXBuildRule */ = { + 33B7EDB3C15FBDFF0E972DB9 /* 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"; }; - 39718FDCC97D2AF791C4FF7B /* PBXBuildRule */ = { + 37CA4220287721CCCA94A7B6 /* 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/location/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/stream/Test.ice, + test/Ice/location/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/stream/*.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"; }; - 4160F97C6DD6AB072C8E1471 /* PBXBuildRule */ = { + 3B52119A5101E7960F4CF13E /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/admin/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/admin/*.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"; }; - 44AAB332860E31A022811D8C /* PBXBuildRule */ = { + 3C763D5640D0A71C8F9B65E4 /* 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/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/scope/Test.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/scope/*.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"; }; - 47076ACD2D5E157833A7069A /* PBXBuildRule */ = { + 3FF30051062A719E638A7675 /* 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/info/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/info/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - 49AE49184984F4BC11E7A190 /* PBXBuildRule */ = { + 406E2DEE7A5B133E3F08662B /* 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/udp/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/acm/Test.ice, + test/Ice/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/acm/*.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"; }; - 4C469FA3F0E5AD08A4D9A4AF /* PBXBuildRule */ = { + 4358EAC2A49AE9F92DC76B93 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -1916,24 +1897,24 @@ 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"; }; - 4CD37FEA4E1356B16598939F /* PBXBuildRule */ = { + 44DA8E8D55F55A34DC55CB39 /* 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/invoke/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultServant/Test.ice, + test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultServant/*.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"; }; - 5068FEA3DC1C1093B8937B89 /* PBXBuildRule */ = { + 4CD8EBACCF0E243B2EDF4C62 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -1954,367 +1935,308 @@ 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"; }; - 524158F422632D370591A3C8 /* PBXBuildRule */ = { + 4CEF5C0E326A4206091A6352 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/location/*.ice"; + filePatterns = "*/test/Slice/escape/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/location/Test.ice, + test/Slice/escape/Clash.ice, + test/Slice/escape/Key.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/location/*.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"; }; - 52CB70ACF18A2ADFDACECC20 /* PBXBuildRule */ = { + 4F03E75BE283ADAFDDBB4294 /* 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/inheritance/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/inheritance/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - 54945514B316D0C5BE8F1BD7 /* PBXBuildRule */ = { + 4F3B138BAE515ABBE84D61DD /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/TestCommon/*.ice"; + filePatterns = "*/test/Ice/retry/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestCommon/*.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"; }; - 55EAA30E2F1BC82BF4F771D5 /* PBXBuildRule */ = { + 4FC7968C899EC22E4BBC47F3 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/Ice/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/stream/*.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", - ); - isEditable = 1; - name = "Slice Compiler for Ice/*.ice"; - outputFiles = ( - "$(DERIVED_FILE_DIR)/Ice_$(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/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"; - }; - 5CD295F2AB4F6ED4E7481CD4 /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/invoke/*.ice"; - fileType = pattern.proxy; - inputFiles = ( - test/Ice/invoke/Test.ice, + test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/invoke/*.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"; }; - 5D5176301B17E939F7D3BA96 /* PBXBuildRule */ = { + 5320F784202E4F95402C9409 /* 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"; }; - 605130A9C132997054E51A39 /* PBXBuildRule */ = { + 554DC98EDF23F1B66C7CFB63 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/inheritance/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Glacier2/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/inheritance/Test.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 = "Slice Compiler for test/Ice/inheritance/*.ice"; + name = "Slice Compiler for Glacier2/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(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\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/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"; }; - 605A5E76A3A4E8E932681992 /* PBXBuildRule */ = { + 628D091CE6EF08872EB297E0 /* 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)/IceDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceDiscovery/*.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", + "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for IceGrid/*.ice"; + name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceGrid_$(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\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/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"; }; - 6118D9947998D75D49CC2D58 /* PBXBuildRule */ = { + 63596B300BE41853DB663025 /* 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/adapterDeactivation/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/adapterDeactivation/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - 620197F8BBA2706B29E42E10 /* PBXBuildRule */ = { + 6A03A3B0C7B45FD91C4332FB /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; - filePatterns = "*/IceLocatorDiscovery/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice"; + name = "Slice Compiler for test/Ice/exceptions/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(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/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"; + 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"; }; - 62BDB959D414B8733A130CA5 /* PBXBuildRule */ = { + 7181270112EF55C7A473FB8F /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultServant/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultServant/*.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"; }; - 68C2715B73A2D8D20ADB2DA5 /* PBXBuildRule */ = { + 724A1BB4823A83846068F51A /* 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)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceLocatorDiscovery/*.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", + "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for Glacier2/*.ice"; + name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Glacier2_$(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\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/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"; }; - 6EA612880E2BD61FA55791F1 /* PBXBuildRule */ = { + 72D07EB438872CE2049E98D0 /* 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/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/stream/Test.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/stream/*.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"; }; - 72406AFBCC3F4300CD164514 /* PBXBuildRule */ = { + 75059FD2BD70071EDBB2FBC2 /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/udp/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/udp/*.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"; }; - 763D1ED0B8332881198D49B8 /* PBXBuildRule */ = { + 76CBBEA49BAC56302A0429EA /* 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/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.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"; }; - 7970F3E9D6D694AE79CECD41 /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - 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 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"; - }; - 7A8AC688B641270820DEEF2B /* PBXBuildRule */ = { + 7C3C53A9A4E138E38DA558E2 /* 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/admin/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - 7B1BAF201633E1738A131BFA /* PBXBuildRule */ = { + 7CD3E60D98B7646CE30C2CCC /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/proxy/*.ice"; + filePatterns = "*/test/IceSSL/configuration/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - 7B991C6CCABC0AA2E9FB8B02 /* PBXBuildRule */ = { + 7E2BBC5737A234E8D8303FA0 /* 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/retry/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Slice/escape/Clash.ice, - test/Slice/escape/Key.ice, + test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Slice/escape/*.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"; }; - 7BAA2CDB7FE6CFAB268E6F37 /* PBXBuildRule */ = { + 802C39AE39FD920A6263970C /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -2330,96 +2252,95 @@ 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"; }; - 7E9BC15F46E89E69FF3C48E5 /* PBXBuildRule */ = { + 8302F207827ECD75369F66EB /* 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)/IceDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceDiscovery/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/enums/Test.ice, + "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/enums/*.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"; }; - 80947A2FF18E06E5B940ACA0 /* PBXBuildRule */ = { + 83299791E357A7E4FD16A79F /* 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/properties/*.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, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.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"; }; - 840549D991E1A4FD227C6758 /* PBXBuildRule */ = { + 834441FFE4C2351D450E1626 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/timeout/*.ice"; + filePatterns = "*/scripts/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/timeout/Test.ice, + ../scripts/Controller.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/timeout/*.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"; }; - 8511F95A239D531035420376 /* PBXBuildRule */ = { + 8535D8C5726F499728E8C0DD /* 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/interceptor/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultValue/Test.ice, + test/Ice/interceptor/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultValue/*.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"; }; - 865847DA2C67708B4CFE870A /* PBXBuildRule */ = { + 880A1FF72D078D481E1F6266 /* 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/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/interceptor/Test.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/Ice/interceptor/*.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"; }; - 8B137D938FD033910546D033 /* PBXBuildRule */ = { + 89683846F0C742C47E988B73 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -2440,466 +2361,526 @@ 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"; }; - 8C8CC733E29C006823557D53 /* PBXBuildRule */ = { + 8A9AD969E4AC48B3137708A7 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/scripts/*.ice"; + filePatterns = "*/test/Ice/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - ../scripts/Controller.ice, + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestDriver/*.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"; }; - 911BD070DE8A35466F16B31E /* PBXBuildRule */ = { + 906E6E95E73C78CDFE13B1B3 /* 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/operations/*.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/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.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"; }; - 9913D482606672073EF9884B /* PBXBuildRule */ = { + 925E0DFA94B513AAC2D917C9 /* 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/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/info/Test.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/info/*.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"; }; - 9CDAD8CE99953C5570CB5E41 /* PBXBuildRule */ = { + 9272B0A660B5DE99729A198A /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/facets/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/facets/Test.ice, - ); - isEditable = 1; - name = "Slice Compiler for test/Ice/facets/*.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 Ice/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/Ice_$(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/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"; }; - 9E0AF5CFAC8166721B3CF714 /* PBXBuildRule */ = { + 92AE0C908A6F43BE269DFAE5 /* 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/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/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/servantLocator/*.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"; }; - A95C953B51B380A17FA926CB /* PBXBuildRule */ = { + 935EACD88254C732BB9E9A95 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/TestCommon/*.ice"; + filePatterns = "*/test/Ice/acm/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/acm/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestCommon/*.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"; }; - AC517155B65FC1204E85F8CC /* PBXBuildRule */ = { + 9808011BF716973E5127722C /* 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/admin/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/acm/Test.ice, + test/Ice/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/acm/*.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"; }; - AF2534F44B95A47ADDFDF67B /* PBXBuildRule */ = { + 9AF559A596B7B8DD3EEF1CA4 /* 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"; }; - B72BE837295DF17DDFD40108 /* PBXBuildRule */ = { + 9DCADAFEFDB3EBDE12774132 /* 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/facets/*.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/facets/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.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"; }; - B7499AD05BA236E3286AE115 /* PBXBuildRule */ = { + A078EA5628FFB84DF0B0746C /* 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/defaultServant/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/adapterDeactivation/Test.ice, + test/Ice/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/adapterDeactivation/*.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"; }; - BC64AA56465C8FBE08B7179A /* PBXBuildRule */ = { + A0D3544A6366CDEBB70F5523 /* 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)/IceGrid_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceGrid/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + "$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/operations/*.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"; }; - BE80EF3BB4E02CA5EE251A84 /* PBXBuildRule */ = { + A23254B04EF0DFC199809C6E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/operations/*.ice"; + filePatterns = "*/test/IceSSL/configuration/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.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"; }; - BECC26E3DBBF204B7E5927F4 /* PBXBuildRule */ = { + A6BD0CCEAD9F8A1D852393B8 /* 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/hold/*.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/hold/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/objects/*.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"; }; - BFAC9385AF5B1C62CB304049 /* PBXBuildRule */ = { + A94AAB48237DF0C9ACB91F58 /* 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/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/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/operations/*.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"; }; - C258307974147646482ED430 /* PBXBuildRule */ = { + AC509A4977B6A68B18398393 /* 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/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.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"; }; - C523A5A2902F545CFF1BC083 /* PBXBuildRule */ = { + AD50CCBC517A0207432FE63B /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/info/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceGrid/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/info/Test.ice, + "$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/info/*.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"; }; - C5736C2941BE781DDE64631D /* PBXBuildRule */ = { + AD806B330650D3A3CF7F454F /* 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/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/properties/*.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"; }; - C728E6AA53372B98CCCC75A1 /* PBXBuildRule */ = { + AF546237D726CD2250E4A251 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/binding/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Glacier2/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/binding/Test.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 = "Slice Compiler for test/Ice/binding/*.ice"; + name = "Slice Compiler for Glacier2/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(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\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/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"; }; - C7B22BC973A3D0530889FDC4 /* PBXBuildRule */ = { + B23A71024FB1EC235C7BA17C /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/binding/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; + filePatterns = "*/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/binding/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/binding/*.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"; }; - CBC1E6F17724241F37D0F5E5 /* PBXBuildRule */ = { + B63F444955244A1EB61883A0 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/IceSSL/configuration/*.ice"; + filePatterns = "*/test/TestCommon/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/IceSSL/configuration/*.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"; }; - CC080E7B675EE59A2EBB5267 /* PBXBuildRule */ = { + B656093C42BDE2CB471C3E0F /* 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/enums/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/facets/Test.ice, + test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/facets/*.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"; }; - CF38C0C5FCA88D918D126407 /* PBXBuildRule */ = { + B65DF0E5CC3617FCD6495418 /* 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/enums/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.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"; }; - D24C1EFB9554C738FBBFF4A4 /* PBXBuildRule */ = { + BC55EE4522A96DAF80A52E30 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; - filePatterns = "*/IceLocatorDiscovery/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; + filePatterns = "*/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.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 = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice"; + name = "Slice2Cpp Compiler for Ice/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(INPUT_FILE_BASE).h", + "$(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/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"; + 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"; }; - D6040EDFC55D213BAA794052 /* PBXBuildRule */ = { + BDD457CECD546D41165CAA57 /* 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/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/ami/Test.ice, + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/ami/*.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"; }; - D777AFCE3F658CA3EABD87DB /* PBXBuildRule */ = { + BF3B2FC5B3FFADD3BE32B708 /* 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/udp/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/enums/Test.ice, + test/Ice/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/enums/*.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"; }; - D8A4713D3A7254EAA8C5E194 /* PBXBuildRule */ = { + C22ED9CC12162007C4BA9774 /* 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)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/timeout/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", + test/Ice/timeout/Test.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; + name = "Slice Compiler for test/Ice/timeout/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(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/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\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"; }; - DF94B80C79B35D09316699A7 /* PBXBuildRule */ = { + C3260C78D6DFC54BF7C5943F /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -2916,25 +2897,42 @@ 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"; }; - E04915D736AB4D5D74C64119 /* PBXBuildRule */ = { + C5CE763A15C1297A21395D8A /* 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)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/invoke/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", + test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; + name = "Slice Compiler for test/Ice/invoke/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(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/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\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"; + }; + CE6FEFB122A2A0EB2661FDC7 /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + 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/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"; }; - E05145B97E66726EE7A63085 /* PBXBuildRule */ = { + CF919C583BCCE4B98D927A64 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -2951,286 +2949,288 @@ 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"; }; - E3FF2A65AF816E8EBDF4617D /* PBXBuildRule */ = { + D0F6BEA25FBBFCCA4FF875E8 /* 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/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/invoke/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/invoke/*.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"; }; - E556D4E668AC214B1FF3412D /* PBXBuildRule */ = { + D5DB8A3A0A5B9B8BBEB91C59 /* 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/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/IceSSL/configuration/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/IceSSL/configuration/*.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"; }; - E67B7E81577CA0548EDC58B7 /* PBXBuildRule */ = { + D6B5E483B79BB55615965858 /* 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/defaultValue/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/udp/Test.ice, + test/Ice/defaultValue/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/udp/*.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"; }; - E6FA2856755390788BB6DAA2 /* PBXBuildRule */ = { + D75DF2378F1BE3AA82BEFA71 /* 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/defaultServant/*.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/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for Ice/*.ice"; + name = "Slice Compiler for test/Ice/defaultServant/*.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"; }; - ECA001EC16338B375200B5F6 /* PBXBuildRule */ = { + D7844059119B1D96117377BA /* 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/binding/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/location/Test.ice, + test/Ice/binding/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/location/*.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"; }; - EE1B96369E945536DFA93DC8 /* PBXBuildRule */ = { + DB182916D2274E5F2C244539 /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/inheritance/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/inheritance/*.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"; }; - EEDA6000FD40D396D43D25FC /* PBXBuildRule */ = { + DC7FB0E409E0F373AA2DF410 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/Ice/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/properties/*.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", ); isEditable = 1; - name = "Slice Compiler for Ice/*.ice"; + name = "Slice Compiler for test/Ice/properties/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Ice_$(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/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"; + 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"; + }; + E03D72C8E9FF07D01FC7BFB2 /* 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"; }; - F0FB78ABEAFADCDA0762CC8E /* PBXBuildRule */ = { + E8B2F1326E477454FC030D59 /* 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/info/*.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/info/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.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"; }; - F4FF19C8B36BC51E28C1D10F /* PBXBuildRule */ = { + EDB2A44EA2D0787FC0C7DA8D /* 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/servantLocator/*.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/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for Glacier2/*.ice"; + name = "Slice Compiler for test/Ice/servantLocator/*.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"; + }; + EE5C55B0C4EE5B272194CA83 /* 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"; }; - F53C7359C7688256ADE30010 /* PBXBuildRule */ = { + F0977AA6EDB770E8A7BB5F5A /* 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/binding/*.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/binding/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.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"; }; - F5B0EDABA2B7DE5B601FD5F2 /* PBXBuildRule */ = { + F65E53D41F3774164A27A2E3 /* 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/timeout/*.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/timeout/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.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"; }; - F65ADC4709B3D7098379FDB4 /* PBXBuildRule */ = { + F72C9C41A743047D73876627 /* 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"; }; - FD27D7E107BB01688F427A34 /* PBXBuildRule */ = { + F826B3B3C2A53DB7BFB07EDD /* 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/scope/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/scope/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.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"; }; - FEB3111859F1906BC9DD77BA /* PBXBuildRule */ = { + FB4C0218FC99C654D5B6CAA4 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/servantLocator/*.ice"; + filePatterns = "*/test/Slice/escape/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Slice/escape/Clash.ice, + test/Slice/escape/Key.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.ice"; + name = "Slice Compiler for test/Slice/escape/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); @@ -3240,1826 +3240,1826 @@ /* End PBXBuildRule section */ /* Begin PBXContainerItemProxy section */ - 02F1D59BE481F8A321545E57 /* PBXContainerItemProxy */ = { + 017D617F05A79DC3E75E1867 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BB40FADABEB7A74BCFAF8930; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = 9A5B406340D1F54AA6A93582; + remoteInfo = "IceLocation iOS"; }; - 04774B6B043E06B20DDA85EC /* PBXContainerItemProxy */ = { + 036D846A6AF64973488231F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 4D5800AC0A437A45FB0049AB; + remoteInfo = "SliceEscape iOS"; }; - 04E20A5BB846D91BB012068F /* PBXContainerItemProxy */ = { + 04F7EF21288FCCF003111EAD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 8919247F07DEFFC41FDA9486; + remoteInfo = "IceServices iOS"; }; - 05A958A1B7047AB7DD79AF63 /* PBXContainerItemProxy */ = { + 05C361795C27A9E377A5C00E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 02E12A01B24B3B3E6927EAD6; - remoteInfo = "IceStorm iOS"; + remoteGlobalIDString = 15259193E3C55F25AB0F68C2; + remoteInfo = "IceImpl iOS"; }; - 080DA5611BBDFB5DD434C97C /* PBXContainerItemProxy */ = { + 062208D122C76FB49A69BA54 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = FF7948EAFE0A62518B685629; - remoteInfo = "IceAcm iOS"; + remoteGlobalIDString = B0567014FA30FBBFC0E31969; + remoteInfo = "IceAcm macOS"; }; - 088E53D66ADCB77044B68F04 /* PBXContainerItemProxy */ = { + 065709735975E1794527B9B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 0AB1D88FDB0B571F67339DB0 /* PBXContainerItemProxy */ = { + 06E2F46705DA55C6A2B74117 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteGlobalIDString = DEABBE98FF536A890AE33865; + remoteInfo = "IceDefaultServant macOS"; + }; + 07CDF98D8A1B02D1AD19FACC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; remoteInfo = "TestCommon macOS"; }; - 0ADE15174170E0B43C1FEB12 /* PBXContainerItemProxy */ = { + 0949EA22F4B01AD12CBB5979 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = EACA18083EFA62557FBB6215; - remoteInfo = "IceGrid iOS"; + remoteGlobalIDString = 770013F768356B5BE1BB460C; + remoteInfo = "IceGrid macOS"; }; - 0B4C82CA734FA90D97995650 /* PBXContainerItemProxy */ = { + 10DD7D30096FC40DE3F91A69 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; remoteInfo = "TestCommon macOS"; }; - 0B84F4707C85691977B46138 /* PBXContainerItemProxy */ = { + 1191388E89BA38934CD70895 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 137A22811E93D82B716007C8; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 0C3FFB5250946DB2F62ED0B2 /* PBXContainerItemProxy */ = { + 124775A9F6E93C3CF3D7B005 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8FBA8150AB11D2A819C1D2EA; - remoteInfo = "IceAmi iOS"; - }; - 0D1D2EE5267D4EC47BDCC5D4 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 600F66FEB1C8FA05B0D86986; - remoteInfo = "IceBinding macOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 0E84347D1A08F7F15DC27ED3 /* PBXContainerItemProxy */ = { + 12BB418486F51E54CC92F9DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 0ED57033457114F5ED5B4752 /* PBXContainerItemProxy */ = { + 130D31F8BD9124BA58249168 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 836D0AD1DCC62D99CC1CB8EA; - remoteInfo = "IceExceptions macOS"; + remoteGlobalIDString = D09FEEF78E85A083AFB9AA4D; + remoteInfo = "IceSlicingExceptionsAMD iOS"; }; - 0FFEF472F74C83504B38C5DA /* PBXContainerItemProxy */ = { + 1384274EDEE7A7FAA55AD26F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 055B3C0D85846EE14E87127C; + remoteInfo = "IceInterceptor macOS"; }; - 101049B04F050F0556BAEDC1 /* PBXContainerItemProxy */ = { + 154D5E7DD7CCA693A8B80FA1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = E73C245D51F93B4E9024CF4C; + remoteInfo = "IceProxyAMD iOS"; }; - 10454185DE4E6FB837057223 /* PBXContainerItemProxy */ = { + 15879DAC8086124116B6869D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9F316F6F4FE88F030A110125; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 1083543E7C3C54D87729DFFC /* PBXContainerItemProxy */ = { + 16491446254BF6DA0F57E718 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - 10D49A2F0F75754D60170585 /* PBXContainerItemProxy */ = { + 16B38D07EC66222AD1CBE7E1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 124951D212D9706A742AAD8A /* PBXContainerItemProxy */ = { + 1CFB7F5DBEA57A48B2E1171E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 1E5D4D4FE7BB61EAB8ECA266; + remoteInfo = "Ice C++11 iOS"; }; - 12C39D1B6EEC499875CE301C /* PBXContainerItemProxy */ = { + 1CFF3D08008F34CC6B0DED2E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 0DA6226AD5937A1F51BF8750; + remoteInfo = "Ice C++11 macOS"; }; - 1546F78CDC6948BFC536E89F /* PBXContainerItemProxy */ = { + 1F3015AD5B46D646046CD330 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 065FE0308F8C069FEF18896D; - remoteInfo = "IceServices macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 15E475DDE808AF169C09737D /* PBXContainerItemProxy */ = { + 1F4AB26DE65D4BB01E237717 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - 163882765647C8ED7AD33778 /* PBXContainerItemProxy */ = { + 1F6E39B0AF1CA523FE1104ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 1798C04524E372354944B484 /* PBXContainerItemProxy */ = { + 2056098B0E2B55DABA18B8EE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 17A8BFF896953B1998E75E96 /* PBXContainerItemProxy */ = { + 20F7F3CB060E2090ED871F71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AE646D18FFEFFFB65901B9D9; - remoteInfo = "IceLocation iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 1A66F60C8D1392CB576BB6E9 /* PBXContainerItemProxy */ = { + 2119F0153B7672564FDE9352 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8716086DA12B2BDD0A0AB020; - remoteInfo = "IceTimeout macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 1CA7EF0186E289C74677C302 /* PBXContainerItemProxy */ = { + 214F2022F11C51A60354D2FD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 1CF5C6CF222BB3A825FE1731 /* PBXContainerItemProxy */ = { + 22FB592105AF3E82C5B6B392 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 1E5D4D4FE7BB61EAB8ECA266; + remoteInfo = "Ice C++11 iOS"; }; - 1DA75F379586881F62DEC72A /* PBXContainerItemProxy */ = { + 22FF4760559EEC96A48CD0E1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 330758B0C9821D7E1E2243D3; - remoteInfo = "IceProxyAMD iOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 1E0C5D84390243D1F093EAE9 /* PBXContainerItemProxy */ = { + 254EB829A6A55C1191255D58 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 26B6DCD78B127AE4BDB35209; - remoteInfo = "IceRetry iOS"; + remoteGlobalIDString = 5722522ABF0B09D7099DBA1F; + remoteInfo = "IceStorm iOS"; }; - 1E776D0361C6D4CA7ADAA8B3 /* PBXContainerItemProxy */ = { + 254F4C346B84994DAE5A76D5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 1F3CA22617C41E7E5DC92496 /* PBXContainerItemProxy */ = { + 259BAF7AA9AB756835E68D85 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; remoteInfo = "TestCommon macOS"; }; - 1F934DA62B7876554BFE25E3 /* PBXContainerItemProxy */ = { + 26FD4E9CD44C491B6E962790 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = C386F0ADF5BCB591C41D4FFD; - remoteInfo = "IceOperationsAMD iOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 1FDF92C740D86B8DAF02BC71 /* PBXContainerItemProxy */ = { + 27E10F3E72C61E3680C6D05E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 2056ABE6D73F234C39C0A109 /* PBXContainerItemProxy */ = { + 284488109C19406A338C318F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1849F40335AEAFEAB939B520; - remoteInfo = "IceServantLocatorAMD macOS"; + remoteGlobalIDString = 478A8F3068E5FF5F72F783EC; + remoteInfo = "IceSSLConfiguration macOS"; }; - 21073CC71FE922B62C6FA61C /* PBXContainerItemProxy */ = { + 284D5E91C3E666A9474E965D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 78DF05AE60584A8F9A7E374B; + remoteInfo = "IceInheritance iOS"; }; - 22C284711804C2B72408557A /* PBXContainerItemProxy */ = { + 2902CAF1CFE84D4795C4C6B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 74391EA658CAB520F6080EFB; - remoteInfo = "IceDiscovery C++11 macOS"; + remoteGlobalIDString = 263F8736790034DA7D5B83D1; + remoteInfo = "IceDiscovery C++11 iOS"; }; - 237A2AA7222257F643AE591A /* PBXContainerItemProxy */ = { + 291EFFBB81B18BF46AE26242 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BAD99ED95E14E2F53810245D; - remoteInfo = "IceObjects iOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 2406FB9C52A6CD48CF8E7E30 /* PBXContainerItemProxy */ = { + 29AC2C7E0DB10E41A627D4AA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 032E51349714AC140B16B6B4; - remoteInfo = "IceOptionalAMD iOS"; + remoteGlobalIDString = A7EE978EE70DDA201B41538D; + remoteInfo = "IceServantLocator macOS"; }; - 25861C368313982F64FCFCE1 /* PBXContainerItemProxy */ = { + 2A6BCBB826A171FFDBD954A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = CEE926A8FFE81634B9CBA64C; - remoteInfo = "IceProxy iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 2791207B562F08EEDE8694BE /* PBXContainerItemProxy */ = { + 2AFEEC4032840A9398F816FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0FE313AA3347701853A8ACC2; - remoteInfo = "IceScope iOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 28308B058AA8525E4B221564 /* PBXContainerItemProxy */ = { + 2BE57B1E72AABA6197DE52F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A292FEFD4AC0C53DF83589BE; - remoteInfo = "IceProxy macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 2AD592A2235556B7CF68D372 /* PBXContainerItemProxy */ = { + 2D14FA2555165E862E5DFE97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 57641F57B5FDCF62AD0FCD45; - remoteInfo = "IceFacets iOS"; + remoteGlobalIDString = 68BE8ACEDDD7433FDD2E5099; + remoteInfo = "IceScope macOS"; }; - 2BF05714148999A822860758 /* PBXContainerItemProxy */ = { + 2E24BDD2EB699E821381EE6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 02E12A01B24B3B3E6927EAD6; - remoteInfo = "IceStorm iOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 2C1760F84B17A927353B44D7 /* PBXContainerItemProxy */ = { + 2F0B268568A407079B46543E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0520084212F98FC56E36026A; - remoteInfo = "IceLocation macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 2DB10530B98F5C10277BDF10 /* PBXContainerItemProxy */ = { + 2F4791483C4760E90314EFD8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 0CC992ABE92F26754D8B7AC6; + remoteInfo = "IceSlicingObjects iOS"; }; - 2E362D204705D96236DA7308 /* PBXContainerItemProxy */ = { + 2FE96DCC2A6E467FC8B9AD7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 2F7DA7F9AD6E9BB9FD3237DC /* PBXContainerItemProxy */ = { + 2FF1C3EFC1E0BAFB52D6B55E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = C353EC6DD74EF040A9869F1A; - remoteInfo = "IceSlicingExceptions iOS"; + remoteGlobalIDString = E47E556F6FF734E970050937; + remoteInfo = "IceImpl macOS"; }; - 2F8D1CAC651E8D59006EFD72 /* PBXContainerItemProxy */ = { + 31A6C9E7B044CD56F7F4B1BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4A4450AB007BDD9E08CDC48B; - remoteInfo = "IceOperationsAMD macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 31043A801393C80C771D88C3 /* PBXContainerItemProxy */ = { + 31FA4B87FE7AA6F1831B6A28 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - 35640F3820EFC19B6758C50F /* PBXContainerItemProxy */ = { + 31FBBDA3349CA05A02DCB97B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = D52144324A93F3717DC3A4BB; - remoteInfo = "IceInheritance macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 35ED6D2F347DF92D6FE7310B /* PBXContainerItemProxy */ = { + 31FEEE23FA4CF66E31A7A873 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 37B09DA87F27CB7ABE8325BC /* PBXContainerItemProxy */ = { + 32859D088768354421E2C3F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 866E8F0547A584631426B2A5; - remoteInfo = "IceProxyAMD macOS"; + remoteGlobalIDString = 283F1EEEFDF95C8EA1294341; + remoteInfo = "IceHold iOS"; }; - 37F29581EFF202ECB7D4A0D4 /* PBXContainerItemProxy */ = { + 3401CA5F00B4DEB13D644281 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - 3894FA8C71251D14C413F375 /* PBXContainerItemProxy */ = { + 36AA695C134C523B6DD246EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 30CD23A6E9655B858C148892; - remoteInfo = "IceAdapterDeactivation macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 39EFC00272C6203BA2739F55 /* PBXContainerItemProxy */ = { + 3759B96D9D365B8DDB0CEBC7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 3A3907750B192A4164843BD4 /* PBXContainerItemProxy */ = { + 38088E7956F252C3262A6F6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 28A1C2F2EB8DCCF1AFE83661; + remoteInfo = "IceAdapterDeactivation iOS"; }; - 3B24D3755A46DDD29C24B72D /* PBXContainerItemProxy */ = { + 3E6C8981BB05A82E5B46DA22 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = CA4363C4B69F792FD44B1A13; + remoteInfo = "IceRetry macOS"; }; - 3C299AFF4F7BCDF5320774F6 /* PBXContainerItemProxy */ = { + 431323999F9B2609B23DDEB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = F5CD065672396E4209757A74; + remoteInfo = "IceServantLocatorAMD macOS"; }; - 3DDD2A62396435A09C641971 /* PBXContainerItemProxy */ = { + 443297BF76E4DEDA5E7D1E75 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = F18532A4F881321CB6AE2614; - remoteInfo = "IceDefaultValue iOS"; + remoteGlobalIDString = F4DA824A9FD9930888BD262E; + remoteInfo = "IceBinding macOS"; }; - 3E0292931E0236A0D004F053 /* PBXContainerItemProxy */ = { + 452481330D51BBEF58874AAD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 00F4F87A480D875F2C651B81; + remoteInfo = "IceSlicingObjectsAMD macOS"; }; - 4076824240EA3725053168B9 /* PBXContainerItemProxy */ = { + 45E8B8739927241A85B77A0C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - 40EC11FC36AD38007C21C6EB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CFA7C016ADBDBC9AE9AB0FF7; - remoteInfo = "IceGrid macOS"; - }; - 43F27E2455DFDB8B0F43DF75 /* PBXContainerItemProxy */ = { + 46CF9B45AC233FABDD79EFDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 24DFB14E537F560FB7A2C4BB; + remoteInfo = "IceLocation macOS"; }; - 46EF2CE00F01F9EB508A2670 /* PBXContainerItemProxy */ = { + 47522CF62B0BDA6DDA9992C4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 470DB549AF0696DF551E03E8 /* PBXContainerItemProxy */ = { + 47B6C0242181C35322973D86 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A2BA1134828B7EE3273C5D13; - remoteInfo = "IceObjects macOS"; + remoteGlobalIDString = 5E8A324AC0641CA083A50D0F; + remoteInfo = "IceDefaultValue macOS"; }; - 47FAFF9D6569E68CABF65040 /* PBXContainerItemProxy */ = { + 47C1A51B4AD6D01F1A97913A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0210DABE4A3F8E46162FC09A; - remoteInfo = "IceFacets macOS"; + remoteGlobalIDString = 27BA347B00896E18F811823C; + remoteInfo = "Glacier2 macOS"; }; - 483533F0757ED3F22A50F73E /* PBXContainerItemProxy */ = { + 487E2719252E3289C9CC2421 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 205D8173670283F9A6ADDECA; - remoteInfo = "IceOptionalAMD macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 496CC30FB83C3D5689E55992 /* PBXContainerItemProxy */ = { + 48A05C6747E6A0EFD505F916 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD0E7F89F478FE77514A8842; - remoteInfo = "IceServices iOS"; + remoteGlobalIDString = 01B75CEA3EB80A6E664242B0; + remoteInfo = "IceTimeout macOS"; }; - 4B036C207C08D140D8ECDF94 /* PBXContainerItemProxy */ = { + 49D8595FBEE292E8490C19DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9FEDBE2BC73385F81D251350; - remoteInfo = "IceImpl macOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 4D3AF207C2965ADE012D2344 /* PBXContainerItemProxy */ = { + 49DC6ABB392A3D3F4D708706 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1AAB45470D9803BF85F70BF0; - remoteInfo = "IceBinding iOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 4D9DC67DA712ACC2EF7313A5 /* PBXContainerItemProxy */ = { + 4A2DD3FCD2B58B84CEA19C63 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AA9DCC224B96540517FC8217; - remoteInfo = "IceSSLConfiguration iOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 50128C099A3CF7A9D7D34405 /* PBXContainerItemProxy */ = { + 4A7D14E003FE473FDF170A71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 6272130C7E84066D9A3C1C41; + remoteInfo = "IceInvoke iOS"; }; - 5037CE3078B57AB307002568 /* PBXContainerItemProxy */ = { + 4AEF98C694E4398B686F61DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = FA5053DC63D60556D4AF6086; + remoteInfo = "IceTimeout iOS"; }; - 514855FEB49BFD6BB1472BD6 /* PBXContainerItemProxy */ = { + 4BA17AA9E5DDCA68E293DAA9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; remoteInfo = "TestCommon macOS"; }; - 5308F3A03AE16A651E327C44 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; - }; - 53755BAD7B2EA1AD79CAEDBE /* PBXContainerItemProxy */ = { + 4C89D5BB46AD1167F827A1FD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 0D82476565F3AEA63555293E; + remoteInfo = "IceAmi macOS"; }; - 5513FD3EB06702845234B6E6 /* PBXContainerItemProxy */ = { + 4CB60D7AE0828B4C5307A56B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 4E2639095BC1D8AB5CABDD8E; + remoteInfo = "IceBinding iOS"; }; - 55D25AB9B857AE18CCAB5270 /* PBXContainerItemProxy */ = { + 4F697F775AFF7DEC113B1B3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 408FAEC665C8C38D7A2248A7; - remoteInfo = "IceDefaultServant iOS"; + remoteGlobalIDString = E564301A82DF55065D5215D1; + remoteInfo = "IceExceptions iOS"; }; - 587C03CD19778AC277402EC8 /* PBXContainerItemProxy */ = { + 503C194C0BB2C054BB9B4C87 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 5A357832ED6DB437413B159E /* PBXContainerItemProxy */ = { + 50ED7029C813B38C31E4AA07 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 5AA83B738974FE7C022EE611 /* PBXContainerItemProxy */ = { + 53286E42A0BF3C0F24DEDFDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 5B62EB88A0D7C4BC05CF553A /* PBXContainerItemProxy */ = { + 53967316851E8DD578A7CADF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = B6B9D5B730E90977303A8BE3; + remoteInfo = "IceAcm iOS"; }; - 5B79C9D4A01E72B879EDEB10 /* PBXContainerItemProxy */ = { + 54727D84878D2D579323A84A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 85AD9F1A782BBCA078D72ECA; - remoteInfo = "IceDefaultServant macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 5C2BDD1F7CD22C469FF2BC4D /* PBXContainerItemProxy */ = { + 5563B0FB65D1914F101DC69E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = E47E556F6FF734E970050937; + remoteInfo = "IceImpl macOS"; }; - 5DB13D8EE71751CB075CD794 /* PBXContainerItemProxy */ = { + 576C5FBC4CC1D555CF56F894 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F82ACAB074FFBE3B4D8F339; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = 3E00BC6A9646D9FED455066C; + remoteInfo = "IceAdmin macOS"; }; - 5DF3D971056622D31D908176 /* PBXContainerItemProxy */ = { + 58603EC9606806B7A3EA7A1C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 5E92589DEC11FF0774D2FC4C /* PBXContainerItemProxy */ = { + 58E82FCE800E5C3718A52B9B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6204C55F63CC62BE2A2B08C9; - remoteInfo = "IceProperties iOS"; + remoteGlobalIDString = 770013F768356B5BE1BB460C; + remoteInfo = "IceGrid macOS"; }; - 5F13CBE277E8222A756266A1 /* PBXContainerItemProxy */ = { + 5A205E5256B40B6042194080 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 6096BE5870763AC1855E4FEC /* PBXContainerItemProxy */ = { + 5A59BC1ABA375B56BA8F06CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = D7CF9E2B46E63FC31B7A1F92; - remoteInfo = "IceAcm macOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 60B1571F8AEFCD29A0DD20CD /* PBXContainerItemProxy */ = { + 5BADF5D9A4028AEDDFBB748E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 62BBA732C3711A7003559032 /* PBXContainerItemProxy */ = { + 5C7237AFB448374F73E30851 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F82ACAB074FFBE3B4D8F339; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 65E2CA13F3897003E6020246 /* PBXContainerItemProxy */ = { + 5D22FFD629042D7E88A4C6FD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 65E4D69F83161D7FD6CD98D7 /* PBXContainerItemProxy */ = { + 5DF535E937A6D64A50F2F2A3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 5658AB3FB70284E862079845; + remoteInfo = "IceExceptionsAMD iOS"; }; - 66998044C76BFAC007A08089 /* PBXContainerItemProxy */ = { + 5F806804FDC3C3DCB802D603 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 674B5652E10D914DD5AA0D14 /* PBXContainerItemProxy */ = { + 60C71CBF8E99A2D051443F3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 69C0973CE4AC597D87F0CC67 /* PBXContainerItemProxy */ = { + 637B366C15B65850C6F90DCA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; remoteInfo = "TestCommon macOS"; }; - 6E7BAB3FDAAFA5B13D1CC895 /* PBXContainerItemProxy */ = { + 63B459BA47359EAC6C74A3E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 595CBA41E37503369DC5E136; - remoteInfo = "IceEnums iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 6FD91744CC3C92594C713913 /* PBXContainerItemProxy */ = { + 6447F140D3855CB2A934008B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = E4350886F7ECE83389DE7799; + remoteInfo = "IceServices macOS"; }; - 70992C659FB809947542BF98 /* PBXContainerItemProxy */ = { + 650507FC56E67E6424A58185 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - 7113F8F89F2CEA84A61862D9 /* PBXContainerItemProxy */ = { + 659A51CF1221C28304378595 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 7340355D75412875945DEE04 /* PBXContainerItemProxy */ = { + 66D397E6F385363810F73DED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; remoteInfo = "TestCommon macOS"; }; - 73CA73AF92CF2C882906C7EF /* PBXContainerItemProxy */ = { + 69719D3E20250DD8CAE426F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 81EBCBBD81DAA61D4581DF4A; - remoteInfo = "IceTimeout iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 746F0F0BE070900F901A030E /* PBXContainerItemProxy */ = { + 698E4783ACCF8203631D5A4E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - 7475914DC76F68487DDE435E /* PBXContainerItemProxy */ = { + 6A0E20DFD90E56FE5B1721D9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 137A22811E93D82B716007C8; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 74871813383637AD809DB571 /* PBXContainerItemProxy */ = { + 6AA66EDB612628ECEBD99430 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 3EA20E16FBEAA1C5B0DA52BA; + remoteInfo = "IceProxyAMD macOS"; }; - 75CA660A2D6F6AEC6D522233 /* PBXContainerItemProxy */ = { + 6AD2A0060F73499638F052C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 75E30D8BC5881EFBF70EA140 /* PBXContainerItemProxy */ = { + 6B7ECA4BD2F60079BF41B3AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 182B60B239B1CC9AAF97C3ED; - remoteInfo = "IceSSLConfiguration macOS"; + remoteGlobalIDString = 0DA6226AD5937A1F51BF8750; + remoteInfo = "Ice C++11 macOS"; }; - 761A21ECE288F318C0F07F58 /* PBXContainerItemProxy */ = { + 6BC063A5D73FD71B54DA9C89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 77336DB172773086F33DE302 /* PBXContainerItemProxy */ = { + 6C00C204CBF7B1506CE50E8B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 92A668B7841CFDC57756D6E7; + remoteInfo = "IceProxy macOS"; }; - 77DF3890E1786A15A18724C0 /* PBXContainerItemProxy */ = { + 6C2D2F0E813CD0407F4628D6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214682343A5CDC54C07B1A1B; - remoteInfo = "IceHold macOS"; + remoteGlobalIDString = 096C6B1CDEA03B0A33EF7AB7; + remoteInfo = "SliceEscape macOS"; }; - 7815CFBD06551649906B5770 /* PBXContainerItemProxy */ = { + 6DB6FBBEEF9107C0356251CC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6C9760FEBCAAE6CE0FA2DC30; - remoteInfo = "IceHold iOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 785910A02E277731751D94FF /* PBXContainerItemProxy */ = { + 6EBFF7F48E74EF95B563C696 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 61321B12DA134239ABC63556; - remoteInfo = "IceAdapterDeactivation iOS"; + remoteGlobalIDString = 3E1C18FAE5F2A3A2849292E9; + remoteInfo = "IceGrid iOS"; }; - 78B89ACEA5183EDBD231250B /* PBXContainerItemProxy */ = { + 70248659A5F8BBC954BC26E2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 7909541A87A3969E62A8D76D /* PBXContainerItemProxy */ = { + 70F65C9FA842A68DE863558B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6D2A74C3BC8748EAD4AF10CA; - remoteInfo = "IceInvoke macOS"; + remoteGlobalIDString = 969752F2E953B2ED36823477; + remoteInfo = "IceExceptions macOS"; }; - 79291E616A79762AAA043BC8 /* PBXContainerItemProxy */ = { + 713A2BBD74543BE9186E4FF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AF397ABBF2A5A4C1FCF90790; - remoteInfo = "IceServantLocator iOS"; + remoteGlobalIDString = 429CEDF95141D2685FE9AB01; + remoteInfo = "IceEnums iOS"; }; - 79462F2296ABDFB8BD15906C /* PBXContainerItemProxy */ = { + 725FDDE0666ADDEF228E1844 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = F27C8BBF5E4DB22EF58AF515; + remoteInfo = "IceServantLocator iOS"; }; - 7BB5FF0440E7397329F730FF /* PBXContainerItemProxy */ = { + 72E721853B32D87FC4962163 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BC8247889BA776D5F194850C; - remoteInfo = "IceSlicingObjects iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 7D1311CCD0AD0D14DF684101 /* PBXContainerItemProxy */ = { + 731ECB1786180D7229E827DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 7F77B050D8D9177B58C744C6 /* PBXContainerItemProxy */ = { + 74304FDE80AF64C29200E27D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 86D99596C3AC52CDD7C6A937; - remoteInfo = "IceServantLocatorAMD iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 8060445ABDBD1051C1344C96 /* PBXContainerItemProxy */ = { + 75C2A85B36D55E5EEF424BB6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - 826B47DEC92C7B1AA09ABB5C /* PBXContainerItemProxy */ = { + 771D9AA9820D0ED832E73009 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53EC7722C4E553C8B5189060; - remoteInfo = "IceInfo iOS"; + remoteGlobalIDString = 6BA09F6BC0797F624A68E17E; + remoteInfo = "IceOperationsAMD macOS"; }; - 8490387359BE5724994B3D56 /* PBXContainerItemProxy */ = { + 780327C8CE3D30662467C4D5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 137A22811E93D82B716007C8; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 852C05BDD534DB44709C07C3 /* PBXContainerItemProxy */ = { + 7BACB03973B944A4910038F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 96F2227A2D1F58BCEA8ED0F6; - remoteInfo = "IceUdp macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 8569D3B6F0C1240326500260 /* PBXContainerItemProxy */ = { + 7CC54CF37E775799AE523FFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9F316F6F4FE88F030A110125; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 8587E52646DD02D89A81EBF2 /* PBXContainerItemProxy */ = { + 7F26E8F0312AC4387C551222 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 8779B8D8D3BACED7A8A54A9F /* PBXContainerItemProxy */ = { + 7F3F3950F5D4BA9E76C5FC5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - 88E9909EB6F7154046E78033 /* PBXContainerItemProxy */ = { + 80796B2D618056666858C9F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 8991DFD0D88BB4FBC68E3FF7 /* PBXContainerItemProxy */ = { + 8380A0037DB411A405266CD5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - 89BB66CA925FF81CC3C4702D /* PBXContainerItemProxy */ = { + 85E74D5D665AC53235A8BA7B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8B673B53CF2890202D016783; - remoteInfo = "IceInfo macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - 8B18A6C108529E5D0AE08A7C /* PBXContainerItemProxy */ = { + 873CE4E43C3A14151F88412E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1714972356F07102A679833E; - remoteInfo = "IceInterceptor macOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - 8DE974F341AADB664C9BC5F9 /* PBXContainerItemProxy */ = { + 87763892645110E58F8A6899 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - 9045E5A631A69D61EB1F9E8D /* PBXContainerItemProxy */ = { + 87ABD59DFD4BEA6D6A406C73 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; remoteInfo = "TestCommon macOS"; }; - 90611DDF57B019E5E078509F /* PBXContainerItemProxy */ = { + 8A1ED9492B7471048F9E9B5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C7C6F15DD53FB4E2316C8AA3; + remoteInfo = "IceStorm macOS"; }; - 951326359780A13415B74340 /* PBXContainerItemProxy */ = { + 8B6199793E858890BE13B8C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = E2CC2C0A9253A8A9567DA40C; - remoteInfo = "IceOptional macOS"; + remoteGlobalIDString = D3BDE8AC40C1810EB2A14067; + remoteInfo = "IceOperations macOS"; }; - 95898F407A05B5C7BF184F74 /* PBXContainerItemProxy */ = { + 8C51AABB3038D9E5B2902E67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 9B91000B96831D134868EF00; + remoteInfo = "IceInfo macOS"; }; - 97396975E754D36A4408A58E /* PBXContainerItemProxy */ = { + 90EAEEBA767B1E67CDEACCD2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 713B71D014689185E9E05395; + remoteInfo = "IceInvoke macOS"; }; - 978A989313EC93B33642623B /* PBXContainerItemProxy */ = { + 932A74664455DA068E3A15C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9938DD491B5B4A54DB0A80E3; - remoteInfo = "IceDefaultValue macOS"; + remoteGlobalIDString = A69CCF574C4233A49E864528; + remoteInfo = "IceDefaultValue iOS"; }; - 97B35E09FB8379402B16C9B9 /* PBXContainerItemProxy */ = { + 93C12D6F5A8DB5FAD273F5B6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - 9C7171466351C72E76E6896B /* PBXContainerItemProxy */ = { + 9682EE4EEAA6C1E874A6E4E7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = EA1D2D4417E34B61AC64FEE1; - remoteInfo = "IceInterceptor iOS"; + remoteGlobalIDString = 8BCEB954ACECD9E143B3DD52; + remoteInfo = "IceObjects macOS"; }; - 9D65E855E55E1AB1E46C47C1 /* PBXContainerItemProxy */ = { + 991E13A1336380BC10E34B65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = C7C6F15DD53FB4E2316C8AA3; + remoteInfo = "IceStorm macOS"; }; - 9FE3D1A04B09E6CF7F7502C5 /* PBXContainerItemProxy */ = { + 9A16ABC88E61CBD482EF810B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F82ACAB074FFBE3B4D8F339; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = B015EA95DFADDD31E102004C; + remoteInfo = "Glacier2 iOS"; }; - 9FFED967233D448C9D5FCD1E /* PBXContainerItemProxy */ = { + 9BA0C4349EF5EC69F4456D61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 204D17961BE241E9AA6931C4; - remoteInfo = "IceSlicingExceptionsAMD macOS"; + remoteGlobalIDString = 27BA347B00896E18F811823C; + remoteInfo = "Glacier2 macOS"; }; - A0F016AD1E999B7BEEFD079D /* PBXContainerItemProxy */ = { + A013D5E988F0FD2A59503BA5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 39438194D11EA03199C6686E; + remoteInfo = "IceUdp macOS"; }; - A1564C6A6F504130C7B077E4 /* PBXContainerItemProxy */ = { + A0359E061251BE43F67CEEF6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BC8AD08D72ABA5BDCF4A07E3; - remoteInfo = "IceStream macOS"; + remoteGlobalIDString = B8B31D762B3677F746970AF6; + remoteInfo = "IceProperties iOS"; }; - A27C6B11529DF945963C598D /* PBXContainerItemProxy */ = { + A0B964A97E56EA4A520F2D12 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 37631E1832EC47AB18B6F9F8; + remoteInfo = "IceOptionalAMD iOS"; }; - A2ED78FDF2B79D91463F89B8 /* PBXContainerItemProxy */ = { + A0CA1F9B17E30E7BAF26B71C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - A3AFC54E8EA145173239BD48 /* PBXContainerItemProxy */ = { + A100CA95376252E5800514F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - A4BA589A6533E902A79E9953 /* PBXContainerItemProxy */ = { + A157DC24CBE36B244ACB33AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 1564B348BA2786B8C14E7ADE; + remoteInfo = "IceLocatorDiscovery C++11 macOS"; }; - A5D3113454C161DD75477BA5 /* PBXContainerItemProxy */ = { + A2A1E77182CE84BD40C21B16 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BB40FADABEB7A74BCFAF8930; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = C4C1475F0319943EE6BF6CAB; + remoteInfo = "IceOptional iOS"; }; - AA3A356C6953B9401698C4F9 /* PBXContainerItemProxy */ = { + A39C25EFE0F64DB7A9B478A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9FAA9797D207A26125233020; - remoteInfo = "IceProperties macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - AB1F8CB427C7F0F350F353F1 /* PBXContainerItemProxy */ = { + A3BC08A426E1EAF2D3E3C628 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - AB49C261B8E6842F0934E90E /* PBXContainerItemProxy */ = { + A3C1495B32AB5F22BE735595 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 4685FAE2AEBE43E1EEA7F814; + remoteInfo = "IceDefaultServant iOS"; }; - AC1F23397FF990BFB8F67C56 /* PBXContainerItemProxy */ = { + A3DE40439BF5697F6F51FA48 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - AD75D3B0464DD8529292B622 /* PBXContainerItemProxy */ = { + A49B5F2F56F51281018F1781 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 90FA36CD9B0F6F2C3BC99401; - remoteInfo = "IceOperations iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - AE9B904DF12B5B648AE23337 /* PBXContainerItemProxy */ = { + A79F4E7B8C8022F4E4E8E520 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 94D926D5469FBD751BF9B740; - remoteInfo = "IceScope macOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - AF3025EB1D4A3CDF25855D1B /* PBXContainerItemProxy */ = { + A84BFF87D0198C1872FE0CD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - B0486932F2DD45930580B73A /* PBXContainerItemProxy */ = { + A908C6545007DE1E5506F130 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = E84AD21BA9DB06F21E2D3BB3; - remoteInfo = "IceLocatorDiscovery C++11 iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - B19A744D8AB77B2B729518B8 /* PBXContainerItemProxy */ = { + A9329B710B1FB152D0828949 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - B1A28AE71B094403C2C0C8C7 /* PBXContainerItemProxy */ = { + A9514F70D63C6A5A071F30C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1F921787D1BBEBC84AF46F5D; - remoteInfo = "IceSlicingObjectsAMD iOS"; + remoteGlobalIDString = FB42232B69F121EBC030A837; + remoteInfo = "IceOperationsAMD iOS"; }; - B2D94D8BBB319F772FF7C077 /* PBXContainerItemProxy */ = { + AAE46F8A6CE4764CD1EB75C6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = E08F994D81F1404BD2BF4D5A; + remoteInfo = "IceRetry iOS"; }; - B2EF5A0F019D0798C8E56756 /* PBXContainerItemProxy */ = { + ABB6F45CD4ED637CBEED9AB2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BA6B1EBD97713F7883F4CA94; - remoteInfo = "IceSlicingExceptions macOS"; + remoteGlobalIDString = 3639C4450BB9A2FD62EC83B1; + remoteInfo = "IceAdapterDeactivation macOS"; }; - B349CD7089A08FE116851B73 /* PBXContainerItemProxy */ = { + AD112DE19AB3306F14D5B1C1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - B365A4BAEE25960F7C19EF20 /* PBXContainerItemProxy */ = { + AF68E94A7402B6E6732C6E90 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = B0A77BB6DFBFBE8B44E34482; - remoteInfo = "IceOptional iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - B3D3F185D102E0E8FE8D4788 /* PBXContainerItemProxy */ = { + B2D2ED3DAE209ABD4665CF6C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 5722522ABF0B09D7099DBA1F; + remoteInfo = "IceStorm iOS"; }; - B3ECC1E2787AE418FA27994C /* PBXContainerItemProxy */ = { + B41E82BC6E8AA6D7768B6039 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 85DA963BEF597DDF5EBD28D4; - remoteInfo = "IceDiscovery C++11 iOS"; + remoteGlobalIDString = EB3EA3436E39E34BB754ECF1; + remoteInfo = "IceProxy iOS"; }; - B4E319A813799C8D726C4379 /* PBXContainerItemProxy */ = { + B4CEAFEF840521EE5CB279B2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 77D3FCCE81BDE4D86C21D2FC; + remoteInfo = "IceServantLocatorAMD iOS"; }; - B5BFDAAF6AE364DD7061584B /* PBXContainerItemProxy */ = { + B523031CD273161B6D2E776F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - B5F2564776EA1F243AB49D5C /* PBXContainerItemProxy */ = { + B71C584CA75E8A5ED4B1ED58 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - B644051E85864FAFA9B1ADE6 /* PBXContainerItemProxy */ = { + B94FFD3BF72B7B892C425131 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 27F3896A1D44D94EF855517D; + remoteInfo = "IceOperations iOS"; }; - B68C23310174EDAB1C726EE7 /* PBXContainerItemProxy */ = { + B97E399B4A2F2C32AF384EEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - B72EB5F999F616B79B17B6AF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AFBF627FDB9280859A796E95; - remoteInfo = "IceStream iOS"; - }; - B7A43EE3A8546D7831BBE9CD /* PBXContainerItemProxy */ = { + BB3D6DAD19EBA911820ACFD7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A5A118B8D38A8DF773729D3E; - remoteInfo = "IceEnums macOS"; + remoteGlobalIDString = 2B6CEDAE0FF7E5682835597A; + remoteInfo = "IceSlicingExceptions macOS"; }; - B7DAD4A79D1B39A351361B43 /* PBXContainerItemProxy */ = { + BD25CE387C2F7A6673DC1249 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = B502D4DB10FAD01329293155; - remoteInfo = "IceOperations macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - B898B88B9D2370C90091CA70 /* PBXContainerItemProxy */ = { + BD8948999598714FBF24D4CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - B8E082D0B95AECE4310FFBD5 /* PBXContainerItemProxy */ = { + BE56FBD87AA52E5AC92C9110 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = C11F92A0F52BB78CE42B609D; - remoteInfo = "IceInheritance iOS"; + remoteGlobalIDString = B4169718E508CA7736735EF9; + remoteInfo = "IceSSLConfiguration iOS"; }; - B8EC0A4D5ACA3C64100F5519 /* PBXContainerItemProxy */ = { + BE5965ED547B5BA3F3E5EA26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - B9310496AD9B4161E3EFB68F /* PBXContainerItemProxy */ = { + BEFAAB2D9FB1EEE67D4C764A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - BA14EFBEC1ADAC16CFAF4570 /* PBXContainerItemProxy */ = { + BF06298AD8E4646AE89AE32D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 665EE5441D076F90F4516A23; + remoteInfo = "IceDiscovery C++11 macOS"; }; - BADB735E88BEF016E412AC96 /* PBXContainerItemProxy */ = { + BFC9235FE83BA2E248689D61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0763ED05481F11F83E2EE767; - remoteInfo = "IceStorm macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - BC5EC2C581CEA0BED68A07E0 /* PBXContainerItemProxy */ = { + C148D02B6CEDAB28D97CAF65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 0CCC3C20156C399AF82BA12D; + remoteInfo = "IceInterceptor iOS"; }; - BD7EBF2F4BEE5CE80F7FDE34 /* PBXContainerItemProxy */ = { + C34BCDB1C760A2DCC9950149 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9FEDBE2BC73385F81D251350; - remoteInfo = "IceImpl macOS"; + remoteGlobalIDString = 98CD3D7B6AB129005DDDED37; + remoteInfo = "IceOptional macOS"; }; - BE883B87719EC8D076FF6B78 /* PBXContainerItemProxy */ = { + C4AD91397B522AA9E23C597D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - BEB34F0BDDE3C8CE03F2277A /* PBXContainerItemProxy */ = { + C4F17837E68B18F1150A9D09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - BEDBE2EA1EECA7EFB1E39F8B /* PBXContainerItemProxy */ = { + C58DECEDE46042796024EE83 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD5C495F17B512B2D13CC822; - remoteInfo = "IceInvoke iOS"; + remoteGlobalIDString = 1E5D4D4FE7BB61EAB8ECA266; + remoteInfo = "Ice C++11 iOS"; }; - BFC93BE5D1A5B2CFD4575F9C /* PBXContainerItemProxy */ = { + C66710A873A6375613BB94E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8D692CC4BED85D90455B3611; - remoteInfo = "IceLocatorDiscovery C++11 macOS"; + remoteGlobalIDString = 4BB02C0AE52711EB3F20C5D7; + remoteInfo = "IceAmi iOS"; }; - C3DE4AFD27BC034B2AFA89FD /* PBXContainerItemProxy */ = { + C951F048C4F5208A6E9DA412 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 124476FE277A9E3ABE9F4A34; + remoteInfo = "IceObjects iOS"; }; - C454691EF6B4F7655269AFAB /* PBXContainerItemProxy */ = { + C9B59001DFFF30A9E98EE502 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C80A8E405B320E680839566D; + remoteInfo = "IceSlicingObjects macOS"; }; - C53DB7524D834CD967E9FA4D /* PBXContainerItemProxy */ = { + CAE51B4E432EBC708C039700 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A9149583C7CA34903D80B3C4; - remoteInfo = "IceImpl iOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - C5ED53B11A35E611F70CD0BF /* PBXContainerItemProxy */ = { + CC3F335017C739B8F7DFFE67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - C7E6BB3A69B21AA9378983B1 /* PBXContainerItemProxy */ = { + CCE86294CB35A02288A09380 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = F41AE083FE7A390670B538F9; - remoteInfo = "IceServantLocator macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - C8F115F9CA8B54E9534DEEFC /* PBXContainerItemProxy */ = { + CD9099A61B35FDCAC27B5E62 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - CB8D00FE1ED96C2C67C62B36 /* PBXContainerItemProxy */ = { + CD92B8558C26C6D9F51DC698 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = EACA18083EFA62557FBB6215; - remoteInfo = "IceGrid iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - D1C34263362C925446B8169C /* PBXContainerItemProxy */ = { + CE2AE6F980B037377B66B113 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3922C5D52BCDB27B7A0BD1C2; - remoteInfo = "IceExceptionsAMD macOS"; + remoteGlobalIDString = B0416354B0422CE06305497C; + remoteInfo = "IceSlicingExceptions iOS"; }; - D27B32C7AB353D5AE4902D67 /* PBXContainerItemProxy */ = { + CECFB40220DF43A9D4B2475A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - D36C2411C435C799F754506E /* PBXContainerItemProxy */ = { + CEF1ED2A44B2BAE0AE0B676B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4E4074DFF5890EB17098C624; - remoteInfo = "SliceEscape iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - D37C81BBEC64F74D436EC901 /* PBXContainerItemProxy */ = { + CFA71F24E3EF55BB92294A36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - D3D242A6092E087E9C48B054 /* PBXContainerItemProxy */ = { + D204316036368C4278CE7559 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 3C1B36794C4B3EFB2B618967; - remoteInfo = "IceRetry macOS"; + remoteGlobalIDString = 0BE885FE5E5BBE860323877D; + remoteInfo = "IceUdp iOS"; }; - D40E9987316CBD6277131445 /* PBXContainerItemProxy */ = { + D2736822D87D78823604F385 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 9F316F6F4FE88F030A110125; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = 995512D73E07EFE9CD097A94; + remoteInfo = "IceFacets macOS"; }; - D4162EF180337D61BC95E0E3 /* PBXContainerItemProxy */ = { + D39B58791CFE826FC5C0B3CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = CA2ED7A56EF4FAC83454B118; + remoteInfo = "IceOptionalAMD macOS"; }; - D426300D75A672E2E4B19816 /* PBXContainerItemProxy */ = { + D3C23D87DFDCA738814D482C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = EFD2EA453C644DB2E82BF9B6; - remoteInfo = "IceSlicingObjects macOS"; + remoteGlobalIDString = 3682D0A08A431497D8699B03; + remoteInfo = "IceSlicingExceptionsAMD macOS"; }; - D68E9B85F7C0297292175F63 /* PBXContainerItemProxy */ = { + D4F4E1CE75C1E6E9EEED1551 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - D7446F13E4963912133B5474 /* PBXContainerItemProxy */ = { + D650A6A6607044C14838039D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = D2C1A9BA75231D8469946A3C; + remoteInfo = "IceHold macOS"; }; - D75D41C2BE55D0728A6B69A5 /* PBXContainerItemProxy */ = { + D7E079C305C44DE9B4CD61BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A58A9C1B02FC1B2964645F6D; + remoteInfo = "IceAdmin iOS"; }; - D8A4B24B1515F28B19D2FAF9 /* PBXContainerItemProxy */ = { + D8416E33B6CD2C36AD8B6C5E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = E3479E14717F19236E306587; - remoteInfo = "IceSlicingObjectsAMD macOS"; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteInfo = "TestCommon macOS"; }; - D8F6F2757A01AC13B5411B8B /* PBXContainerItemProxy */ = { + D9A193151B4BA9E858011342 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - D8FC56D106C26473144FAB83 /* PBXContainerItemProxy */ = { + DE9F785118DDEF3B4D7CFAC0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = D62438E4F1A3CC9836A8E287; - remoteInfo = "IceSlicingExceptionsAMD iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - DA826583F9B7BF0EEBF2FB41 /* PBXContainerItemProxy */ = { + E074E4486CC1CB2F8544E30B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7E8564022216773735645574; - remoteInfo = "SliceEscape macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - DAC1B85E691C0D40E8D1F5FC /* PBXContainerItemProxy */ = { + E0BE0570BFAF46ED9153321D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 14E9DB904AE22B49F37C4175; + remoteInfo = "IceEnums macOS"; }; - DC335AD85FEA67D0DFA5E868 /* PBXContainerItemProxy */ = { + E14468F9EC4A90BE63C326F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 15259193E3C55F25AB0F68C2; + remoteInfo = "IceImpl iOS"; }; - DE066803381D22096C90B687 /* PBXContainerItemProxy */ = { + E2C6757F98AD2F3BCFA443AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 9F8CD7854A90F92273855E8E; + remoteInfo = "IceExceptionsAMD macOS"; }; - DFA5BCC169F4D1EAE539311E /* PBXContainerItemProxy */ = { + E32897EE35C8CACD0A7F8480 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - DFB7D5AA00C0BB078188829E /* PBXContainerItemProxy */ = { + E32CCBD20385AB74896F5913 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BB40FADABEB7A74BCFAF8930; + remoteGlobalIDString = B015EA95DFADDD31E102004C; remoteInfo = "Glacier2 iOS"; }; - E0482DF36F85D8040DD1A018 /* PBXContainerItemProxy */ = { + E5B684721705FCA27DC73170 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - E251CA04F82003BCE485A5CC /* PBXContainerItemProxy */ = { + E5EDE10DBD743B2B88272616 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - E334451CB20D9C36CF4DAF28 /* PBXContainerItemProxy */ = { + E695A78610E3BF21AF2E469C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - E33E7B8EB30DF9BB129AA6C3 /* PBXContainerItemProxy */ = { + E77E183E549A254F40DE3B02 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - E4E19538F1C589FEC4A22691 /* PBXContainerItemProxy */ = { + E7EE39CAA698BC3A8AAC4904 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = BCECD790F76F93F791126123; + remoteInfo = "IceStream macOS"; }; - E6440D29EAE62D986D6FC567 /* PBXContainerItemProxy */ = { + EA43F5A92F5981734F841172 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0CB5D7E1779A34D43B5B89E; - remoteInfo = "IceUdp iOS"; + remoteGlobalIDString = 21CBD45E7CE90BF8C75C80EB; + remoteInfo = "IceFacets iOS"; }; - E69E5BCED226C2529340C152 /* PBXContainerItemProxy */ = { + EBDF70525CF268A20F7D6539 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - EAE2CB011D2B1E218EBD8ED0 /* PBXContainerItemProxy */ = { + EC5119E3EC0EF3AD72305691 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - ED10296BB17D4CD063607027 /* PBXContainerItemProxy */ = { + EDB765EAF9B6F87E4B6F972C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A1278D024EC2ADD3E42D968; - remoteInfo = "IceExceptions iOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - EFB6982D58325AEC0E826519 /* PBXContainerItemProxy */ = { + EE042DB16B155396659BCB8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 27BA347B00896E18F811823C; + remoteInfo = "Glacier2 macOS"; + }; + EEB85058AAB0ED8D1F09CA5B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; }; - F000AFFB3A25C7ABC28E92B3 /* PBXContainerItemProxy */ = { + EF17EE72FA310A0624E0A94F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; remoteInfo = "TestCommon iOS"; }; - F10FBFB1C1BCBACCAD0EF873 /* PBXContainerItemProxy */ = { + EFDC1B11E41C9B68528DA3AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - F11C9AD6C3166B60D9EAB0D7 /* PBXContainerItemProxy */ = { + EFFE91856D641568551E0037 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = C6AFD5D37CF11FE461D86DD8; + remoteInfo = "IceStream iOS"; }; - F1763831D933F47A6857F5FB /* PBXContainerItemProxy */ = { + F0CAC9CB4CB4C06E1BE93C9E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 68767C0FE145D39DE4D88779; - remoteInfo = "IceAmi macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - F2B3FE6B4DECBBFC3B769C20 /* PBXContainerItemProxy */ = { + F16177A362E8400BCAED17B7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A9149583C7CA34903D80B3C4; - remoteInfo = "IceImpl iOS"; + remoteGlobalIDString = 6ABC458490AA5F904B381F7D; + remoteInfo = "IceScope iOS"; }; - F33737401446C0666AA11215 /* PBXContainerItemProxy */ = { + F1D462422970113630813AAE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 0DA6226AD5937A1F51BF8750; + remoteInfo = "Ice C++11 macOS"; }; - F4326B28E318075CA66DF1E8 /* PBXContainerItemProxy */ = { + F29B89EA6B0E2094CEA3BB00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 45F2051058E66C596838C08E; - remoteInfo = "IceAdmin iOS"; + remoteGlobalIDString = B015EA95DFADDD31E102004C; + remoteInfo = "Glacier2 iOS"; + }; + F2B2A9DEA03772448940BD96 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + proxyType = 1; + remoteGlobalIDString = FFD3EBD911A26B666F11DC8C; + remoteInfo = "IceInfo iOS"; }; - F697CB11BE5CDAEE843BFD83 /* PBXContainerItemProxy */ = { + F40C812FFC2DDF6D46FFC42D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; + remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; remoteInfo = "TestCommon macOS"; }; - F6C5BC7691501CEE31FF8230 /* PBXContainerItemProxy */ = { + F4338620F6575E0B75D4964F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1B61C6EBFA17380F9C3CC36E; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; remoteInfo = "Ice macOS"; }; - F6CC7D98224224CD6B4D1B39 /* PBXContainerItemProxy */ = { + F686607852CB67216AA7BB52 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteInfo = "TestCommon iOS"; + }; + F6A28F925DEE920CAA8D477F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; remoteInfo = "Ice iOS"; }; - F78DD79E88AA7C72D2C7630B /* PBXContainerItemProxy */ = { + F7ACA790D939A0F3860CFBFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 287E9414F6A74860FF1188EE; - remoteInfo = "IceExceptionsAMD iOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - F825B993E634C733D44A5574 /* PBXContainerItemProxy */ = { + F7E75593187CF84DFF596746 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = A06E150DA767B6FC743BAF10; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteInfo = "Ice macOS"; }; - F84548D90CFD4FE124DF0010 /* PBXContainerItemProxy */ = { + F882422A1D0EA82F4DB7EEB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0763ED05481F11F83E2EE767; - remoteInfo = "IceStorm macOS"; + remoteGlobalIDString = CBED3CEC107C5D8FD12D1423; + remoteInfo = "IceLocatorDiscovery C++11 iOS"; }; - FA116D1FBBE97D6621713DEC /* PBXContainerItemProxy */ = { + FAB4BD8100D683B13DF8CD38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EA20FD9B92B4F4A508F0738F; + remoteInfo = "IceSlicingObjectsAMD iOS"; }; - FA303C60AEC916F5237A3111 /* PBXContainerItemProxy */ = { + FBD1556FF95503AFAD857D61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = BDB1F608C841B14238DB67CF; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C01CDDFC69A3BAEE2DBC5560; + remoteInfo = "IceProperties macOS"; }; - FD38DE0D1285459EBF5C368C /* PBXContainerItemProxy */ = { + FCAC7B70417844AE5079A64E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = CFA7C016ADBDBC9AE9AB0FF7; - remoteInfo = "IceGrid macOS"; + remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteInfo = "Ice iOS"; }; - FF1E1593F0B50EF869897059 /* PBXContainerItemProxy */ = { + FDA7520F217E9DCD8734D732 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = AD2702EF42AD7DDA05EC2083; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = B3DD3174FEA726C76B98C914; + remoteInfo = "IceInheritance macOS"; }; - FFE50197D1F8471ADAEC705D /* PBXContainerItemProxy */ = { + FEA730C593FB853B9D5918F5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 2FC1D43765A7F931D9DC5184 /* Project object */; + containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC69EEBE9D64F07481829BFA; - remoteInfo = "IceAdmin macOS"; + remoteGlobalIDString = 3E1C18FAE5F2A3A2849292E9; + remoteInfo = "IceGrid iOS"; }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ - 0635600956BBB7B4E2F71046 /* Copy Frameworks */ = { + 1A7952D3F70EC49CDEE66AD5 /* Copy Symbols */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; - dstSubfolderSpec = 10; + dstSubfolderSpec = 16; files = ( - EB4B274437E107D0C67AC046 /* Glacier2.framework in Copy Frameworks */, - 8E97031B28FCA915CDDD4A5E /* Ice.framework in Copy Frameworks */, - CA90EC3044CF03BEE0A79E98 /* IceAcm.bundle in Copy Frameworks */, - A84195F835C0EE4FB4785717 /* IceAdapterDeactivation.bundle in Copy Frameworks */, - D2C1332796532EC9D13F2A01 /* IceAdmin.bundle in Copy Frameworks */, - 9ADA0F6235539F8F26919051 /* IceAmi.bundle in Copy Frameworks */, - 4D4E22B2077F9937C031C5CE /* IceBinding.bundle in Copy Frameworks */, - 46D6175F2BA05EDE03AE80F5 /* IceDefaultServant.bundle in Copy Frameworks */, - 512B06413F6FFC00EF9E639E /* IceDefaultValue.bundle in Copy Frameworks */, - 9A89F20EFF48B5A0A01E4860 /* IceEnums.bundle in Copy Frameworks */, - 7C967026CF877781CF90F55E /* IceExceptions.bundle in Copy Frameworks */, - 666B594E9BB773EA22623170 /* IceExceptionsAMD.bundle in Copy Frameworks */, - 0A225A1465272A8C992BEBE8 /* IceFacets.bundle in Copy Frameworks */, - 917E14572AE0B2E97F541042 /* IceGrid.framework in Copy Frameworks */, - D76544D05F02CC68167E8FF7 /* IceHold.bundle in Copy Frameworks */, - 77CC7C7DEDF87C5E2B010FE7 /* IceImpl.framework in Copy Frameworks */, - BB42E17D60B59344EDBD9D56 /* IceInfo.bundle in Copy Frameworks */, - 3953A1F48B71061302B559D7 /* IceInheritance.bundle in Copy Frameworks */, - DB2D614A5808D193088DE541 /* IceInterceptor.bundle in Copy Frameworks */, - E8693CAB4DA65B12C05C6B97 /* IceInvoke.bundle in Copy Frameworks */, - 60E42FD8D5C59731BADC40C9 /* IceLocation.bundle in Copy Frameworks */, - 07B21E2CAB7DBC84FFCC7754 /* IceObjects.bundle in Copy Frameworks */, - 9670FBA186530E35DAC0DDCA /* IceOperations.bundle in Copy Frameworks */, - 45FCAA660699E603A4291A08 /* IceOperationsAMD.bundle in Copy Frameworks */, - E33606D9A1D3FC4166231FEE /* IceOptional.bundle in Copy Frameworks */, - 1EBC94A168E5CAF124CF1E33 /* IceOptionalAMD.bundle in Copy Frameworks */, - 596F9AFEEA41228FA193E260 /* IceProperties.bundle in Copy Frameworks */, - 9E01A5E11A073ECCBA820D92 /* IceProxy.bundle in Copy Frameworks */, - 41359D3BBD5E94768E60773F /* IceProxyAMD.bundle in Copy Frameworks */, - 2013749497D255BA483932F3 /* IceRetry.bundle in Copy Frameworks */, - 922CC8214A0218AA4015C20D /* IceScope.bundle in Copy Frameworks */, - 9A6797228E8FABD723BAEF2E /* IceServantLocator.bundle in Copy Frameworks */, - 2FD71F0C1BBFC6EA7B19AA9E /* IceServantLocatorAMD.bundle in Copy Frameworks */, - DB4F725DB292A3B29DA0D1B5 /* IceServices.bundle in Copy Frameworks */, - EF6B600C01360A3E77570577 /* IceSlicingExceptions.bundle in Copy Frameworks */, - 563FC8ABBBD015DE9C469C56 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, - B53337A63B03967706AC3204 /* IceSlicingObjects.bundle in Copy Frameworks */, - C4F1E9325871166B577761BD /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, - 3BF9E4CC841F0653549B0515 /* IceSSLConfiguration.bundle in Copy Frameworks */, - 3134465808476C2B9AF5A1E7 /* IceStorm.framework in Copy Frameworks */, - 6BA413B384BE48782FD4106A /* IceStream.bundle in Copy Frameworks */, - 97648C6132A20AE515ECB787 /* IceTimeout.bundle in Copy Frameworks */, - D88E2F85B135A0BC74FF48D3 /* IceUdp.bundle in Copy Frameworks */, - 7EC26B1196E7D01F695B4BF7 /* PromiseKit.xcframework in Copy Frameworks */, - 8F90919FDD9BDB3330814400 /* SliceEscape.bundle in Copy Frameworks */, - 07B9860625BA278EB29B60F8 /* TestCommon.framework in Copy Frameworks */, ); - name = "Copy Frameworks"; + name = "Copy Symbols"; runOnlyForDeploymentPostprocessing = 0; }; - 440CDC3992F6F8DEDC8FF875 /* Copy Frameworks */ = { + 2E68AF26B73DB2B867826B67 /* Copy Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; dstSubfolderSpec = 10; files = ( - A0B9342FC17498B8E4E2679D /* Glacier2.framework in Copy Frameworks */, - 487A5360D29674F9324E6A81 /* Ice.framework in Copy Frameworks */, - B8EB08195365B3764B9F0777 /* IceAcm.bundle in Copy Frameworks */, - 20E0EC9B72ED0F188C3CA3A3 /* IceAdapterDeactivation.bundle in Copy Frameworks */, - 184CCCDE951AC454A534BCE7 /* IceAdmin.bundle in Copy Frameworks */, - 895DBBE4ED47839BFB80E431 /* IceAmi.bundle in Copy Frameworks */, - CC2E3D87471BBA696973522B /* IceBinding.bundle in Copy Frameworks */, - 71580E5F4321782220583BF6 /* IceDefaultServant.bundle in Copy Frameworks */, - 75DF6D77AB9E216E1BFB7164 /* IceDefaultValue.bundle in Copy Frameworks */, - DB77761A15E27B58B5FED5AC /* IceEnums.bundle in Copy Frameworks */, - 6F54ACB5C499213640C15344 /* IceExceptions.bundle in Copy Frameworks */, - 6D75D9051192FCD409BB41B4 /* IceExceptionsAMD.bundle in Copy Frameworks */, - 22FFD2A3F595ED46AC2E0958 /* IceFacets.bundle in Copy Frameworks */, - 78FED968098DFDB32666A53A /* IceGrid.framework in Copy Frameworks */, - 324DE06DE3737E59D4BA2BB5 /* IceHold.bundle in Copy Frameworks */, - 6B247546FF2E0F8C92352C81 /* IceImpl.framework in Copy Frameworks */, - BF192091BB537835893B6097 /* IceInfo.bundle in Copy Frameworks */, - 37D41A2F3CF119CC39F8222E /* IceInheritance.bundle in Copy Frameworks */, - A5B856E9E86689D24951DD67 /* IceInterceptor.bundle in Copy Frameworks */, - A02F4BA9CDA144203FA206F1 /* IceInvoke.bundle in Copy Frameworks */, - 461823AD45D5FBE8BC6E9588 /* IceLocation.bundle in Copy Frameworks */, - 846C177F4AD7FF27D8B66A83 /* IceObjects.bundle in Copy Frameworks */, - AFB9E6C201C3912182FCA333 /* IceOperations.bundle in Copy Frameworks */, - 263A1187B3AE86850045620D /* IceOperationsAMD.bundle in Copy Frameworks */, - 96A327804FE56315FA908FBC /* IceOptional.bundle in Copy Frameworks */, - AED4F17F4BD2F1F9BD1A1834 /* IceOptionalAMD.bundle in Copy Frameworks */, - F606445AA2CA160F522C5A99 /* IceProperties.bundle in Copy Frameworks */, - 3E32C2500353BC9AB51D92D7 /* IceProxy.bundle in Copy Frameworks */, - C409F4A89EA4DBA75ACECAC0 /* IceProxyAMD.bundle in Copy Frameworks */, - 3C7DA4CD086A31722B14C6AF /* IceRetry.bundle in Copy Frameworks */, - 0D22F62905B784D9B736C643 /* IceScope.bundle in Copy Frameworks */, - 9B631B8D1B0D1E314639EC85 /* IceServantLocator.bundle in Copy Frameworks */, - 04B6E589A0CFC15B1324287A /* IceServantLocatorAMD.bundle in Copy Frameworks */, - 63568851267BB6756FA339EC /* IceServices.bundle in Copy Frameworks */, - EF1418198F7ECD2729A37969 /* IceSlicingExceptions.bundle in Copy Frameworks */, - 4D9C2C7F08BDCED4939C8CA4 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, - 759A80CED591A7990CCF8CD9 /* IceSlicingObjects.bundle in Copy Frameworks */, - 4EAD393284CCF137A487D040 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, - 3BEE80BD6285446BA2128FB4 /* IceSSLConfiguration.bundle in Copy Frameworks */, - A19B83EBFC52D54B327152DA /* IceStorm.framework in Copy Frameworks */, - B4BE891DFDFF27AE72183B50 /* IceStream.bundle in Copy Frameworks */, - F7C97C18DD83300CB84462EE /* IceTimeout.bundle in Copy Frameworks */, - E080250FCAB43DD84603268D /* IceUdp.bundle in Copy Frameworks */, - E823D510B3477722C248DCC7 /* PromiseKit.xcframework in Copy Frameworks */, - 70AB12AD44C972293921A90E /* SliceEscape.bundle in Copy Frameworks */, - 671518A946A0761D8E02FB3E /* TestCommon.framework in Copy Frameworks */, + 75227D518ADE0FDD8BB56EC0 /* Glacier2.framework in Copy Frameworks */, + BCC0808B177FAE9FEABE3637 /* Ice.framework in Copy Frameworks */, + 4582943A45BCCFF48F5781A0 /* IceAcm.bundle in Copy Frameworks */, + C4A9911E857795CC98245C08 /* IceAdapterDeactivation.bundle in Copy Frameworks */, + 939E3C8EF6821939BB399260 /* IceAdmin.bundle in Copy Frameworks */, + 16DD456DFAA5CCD7214C4A22 /* IceAmi.bundle in Copy Frameworks */, + 06D3D4E5620CA3A6A493BEE9 /* IceBinding.bundle in Copy Frameworks */, + 2693EEA463DCA2747EDF41AB /* IceDefaultServant.bundle in Copy Frameworks */, + 6BF60F183E75B000A497D876 /* IceDefaultValue.bundle in Copy Frameworks */, + 262F1A7BECD5EACD2CC40FDF /* IceEnums.bundle in Copy Frameworks */, + 35FFAA7246FD899886CFC418 /* IceExceptions.bundle in Copy Frameworks */, + 11414641E84F1809DDD3B613 /* IceExceptionsAMD.bundle in Copy Frameworks */, + CFA7149771E4E05F86CACAEC /* IceFacets.bundle in Copy Frameworks */, + E53053B6B36580F1FACF54E6 /* IceGrid.framework in Copy Frameworks */, + 0792D6EF94B03FBB419E442C /* IceHold.bundle in Copy Frameworks */, + E6CADC0AEA94CB6E36899759 /* IceImpl.framework in Copy Frameworks */, + 13D94D7919F7C5CFD506420B /* IceInfo.bundle in Copy Frameworks */, + 41E0DA93CD81990203545959 /* IceInheritance.bundle in Copy Frameworks */, + 4CE8A1AED2F78DBC7A6F5911 /* IceInterceptor.bundle in Copy Frameworks */, + AC74D2E9FA0C3AAD47C2DA14 /* IceInvoke.bundle in Copy Frameworks */, + 8C405EBA1694D7FF455A53FC /* IceLocation.bundle in Copy Frameworks */, + CBC4997044D30BC6B745F59C /* IceObjects.bundle in Copy Frameworks */, + C8A271A6B9E2A3B373DEA321 /* IceOperations.bundle in Copy Frameworks */, + CE3A38CCDF2197E61C9E474D /* IceOperationsAMD.bundle in Copy Frameworks */, + 2DBE706E25A1D98BAF735316 /* IceOptional.bundle in Copy Frameworks */, + 346E08396546C485F32F403D /* IceOptionalAMD.bundle in Copy Frameworks */, + 947D36770B7E41C0CF6070AF /* IceProperties.bundle in Copy Frameworks */, + 47EBE96207D7DAD1B4A05816 /* IceProxy.bundle in Copy Frameworks */, + 27181703FBC2E1DA0369B011 /* IceProxyAMD.bundle in Copy Frameworks */, + CE332DB5B59EF340DF237C87 /* IceRetry.bundle in Copy Frameworks */, + B33093C6C7B960A8B169B494 /* IceScope.bundle in Copy Frameworks */, + 4A60F317B7C57A4BA4276CD5 /* IceServantLocator.bundle in Copy Frameworks */, + 6193DB215E30BDE1EE5C02A5 /* IceServantLocatorAMD.bundle in Copy Frameworks */, + 92EB5200C3F206225868057F /* IceServices.bundle in Copy Frameworks */, + B0906221F3F02F1FBAAC361F /* IceSlicingExceptions.bundle in Copy Frameworks */, + 9DA06B2460129485D0D0FC13 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, + 5A7ADD214B9F2723C29FC653 /* IceSlicingObjects.bundle in Copy Frameworks */, + D98DDBE334D3B4A22B0E7877 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, + B66607F1562CDE6DE5F645A2 /* IceSSLConfiguration.bundle in Copy Frameworks */, + 59D55BBECC6B6E3C99441DD9 /* IceStorm.framework in Copy Frameworks */, + F328CF7B99163CF43D402BCF /* IceStream.bundle in Copy Frameworks */, + 39A90996478580DFA113B50C /* IceTimeout.bundle in Copy Frameworks */, + F60EB885BE59E46B98CCC18D /* IceUdp.bundle in Copy Frameworks */, + BCCA590876E281C9161D5EC3 /* PromiseKit.xcframework in Copy Frameworks */, + EBF0FFBC4582779DAE204736 /* SliceEscape.bundle in Copy Frameworks */, + 41DCD9F3CBE93222E74B7929 /* TestCommon.framework in Copy Frameworks */, ); name = "Copy Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; - B8CBC486347FCEEA7EEA81CD /* Copy Symbols */ = { + 7265DF301F6A8C870B07C87B /* Copy Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; - dstSubfolderSpec = 16; + dstSubfolderSpec = 10; files = ( + 286DBDDCA7308C38785E37B6 /* Glacier2.framework in Copy Frameworks */, + 7226352D625E5F3A323F6544 /* Ice.framework in Copy Frameworks */, + 19157D1B47D51F5EEAD12A62 /* IceAcm.bundle in Copy Frameworks */, + D579E0158CD7C7A74B599CEF /* IceAdapterDeactivation.bundle in Copy Frameworks */, + 334E0154C5339FA9329AA0B0 /* IceAdmin.bundle in Copy Frameworks */, + 0D383F343BD3B56CF3D71B12 /* IceAmi.bundle in Copy Frameworks */, + CD1F9DFF380D7F1443D4FEF0 /* IceBinding.bundle in Copy Frameworks */, + 8B072745B9D1BFB4FC07A09C /* IceDefaultServant.bundle in Copy Frameworks */, + 2A1BF705C2694060F11F41CD /* IceDefaultValue.bundle in Copy Frameworks */, + 98B2A6FDFCCAF3D6A739C75D /* IceEnums.bundle in Copy Frameworks */, + A0F0419D7371A0309C002C7D /* IceExceptions.bundle in Copy Frameworks */, + 002761C37FEC1BD863FA8E09 /* IceExceptionsAMD.bundle in Copy Frameworks */, + A0E4424A99CD859FD8FD25E7 /* IceFacets.bundle in Copy Frameworks */, + D9345ED4DE66A2BAA85CA059 /* IceGrid.framework in Copy Frameworks */, + 0446C65D43F18EBBF3567AB3 /* IceHold.bundle in Copy Frameworks */, + BFF4B06A3B63F0E279CB791A /* IceImpl.framework in Copy Frameworks */, + BD3417F2E2FBD12FD4B69013 /* IceInfo.bundle in Copy Frameworks */, + 2EC1ACB1D1AED9D08FB2C85C /* IceInheritance.bundle in Copy Frameworks */, + EE0C58EBA222F0AA0F4C23DD /* IceInterceptor.bundle in Copy Frameworks */, + 05F6543EDFBED1EBFC008F2B /* IceInvoke.bundle in Copy Frameworks */, + 34A5FAF205B1C97960404164 /* IceLocation.bundle in Copy Frameworks */, + 8E94CBFE7990DA554FD8486B /* IceObjects.bundle in Copy Frameworks */, + A0F6CDD4D0492D0F76120C5E /* IceOperations.bundle in Copy Frameworks */, + FB17C62388DE6EC5CB5A056D /* IceOperationsAMD.bundle in Copy Frameworks */, + E02F6DDDD2ED9F8653D657CE /* IceOptional.bundle in Copy Frameworks */, + 11EE9AE06E06C28E26C86ABF /* IceOptionalAMD.bundle in Copy Frameworks */, + 2F5E8687DACCC41271E739BD /* IceProperties.bundle in Copy Frameworks */, + CD7938B5EBA8E41CE6BB84C0 /* IceProxy.bundle in Copy Frameworks */, + C6F645B973A0595EE324BCA1 /* IceProxyAMD.bundle in Copy Frameworks */, + 0B1C6B9A74ACC04B0A179DB8 /* IceRetry.bundle in Copy Frameworks */, + C8448ED4409CF9EBF0C49970 /* IceScope.bundle in Copy Frameworks */, + 930D5DC8FE58F79C670C4B53 /* IceServantLocator.bundle in Copy Frameworks */, + 9B97D6477B5DA5D0B6B6CBE1 /* IceServantLocatorAMD.bundle in Copy Frameworks */, + 205960CCD9421E7A27191DF8 /* IceServices.bundle in Copy Frameworks */, + 6A5DD9246DBD3A1F04ED77E2 /* IceSlicingExceptions.bundle in Copy Frameworks */, + AF2890B36A3BA35B274E95FD /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, + 8A60D09C00842CA98676C01D /* IceSlicingObjects.bundle in Copy Frameworks */, + CE927DA9106DD63E68BAF7C8 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, + DF94FB33F38943155FBEB05A /* IceSSLConfiguration.bundle in Copy Frameworks */, + 6EC44E0D9D10E523E6D87478 /* IceStorm.framework in Copy Frameworks */, + 03BF29AA9F7A17F23A9C1835 /* IceStream.bundle in Copy Frameworks */, + 480AB36ADFC17F0A48F9C061 /* IceTimeout.bundle in Copy Frameworks */, + 91F97CED743E6596CC82D08F /* IceUdp.bundle in Copy Frameworks */, + 752E35B46EA4505EC83EC1B4 /* PromiseKit.xcframework in Copy Frameworks */, + 2F32133784FFFE60DDB6CF8E /* SliceEscape.bundle in Copy Frameworks */, + AFFE613A4380B21C593CC677 /* TestCommon.framework in Copy Frameworks */, ); - name = "Copy Symbols"; + name = "Copy Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; - DF80F5FE8BC3363CBD19BE84 /* Copy Symbols */ = { + 7C24181BC1E542A189342A05 /* Copy Symbols */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; @@ -5072,5330 +5072,5330 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 000611DF33CB4304F42A33BE /* RetryQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RetryQueue.cpp; path = ../cpp/src/Ice/RetryQueue.cpp; sourceTree = ""; }; - 006CF4F54F5E4A89A3C663B0 /* RouterInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RouterInfo.cpp; path = ../cpp/src/Ice/RouterInfo.cpp; sourceTree = ""; }; - 00909CBA5C2223CED4ED9381 /* SSLInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLInfo.ice; path = ../slice/Glacier2/SSLInfo.ice; sourceTree = ""; }; - 014D0EE5D267E432DA21670A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/ami/Client.swift; sourceTree = ""; }; - 01CD17E5927E812D8DD3EAC1 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/operations/TestAMD.ice; sourceTree = ""; }; - 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocatorI.swift; path = test/Ice/servantLocator/ServantLocatorI.swift; sourceTree = ""; }; - 0205F3DB3D2A802285F11C8B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/servantLocator/AllTests.swift; sourceTree = ""; }; - 02C7023576B21B0B085453B7 /* Initialize.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Initialize.cpp; path = ../cpp/src/Ice/Initialize.cpp; sourceTree = ""; }; - 02CB2CD05CEE1E2166255186 /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceSSL/ConnectionInfo.cpp; sourceTree = ""; }; - 0367F5C787891BBE1B298343 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/inheritance/TestI.swift; sourceTree = ""; }; - 042B09E718B4AF7FEC08C931 /* Communicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Communicator.h; path = src/IceImpl/Communicator.h; sourceTree = ""; }; - 043AB17C4C069B93FA1E7D41 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/optional/Server.swift; sourceTree = ""; }; - 04CC49DCD0D4C30286DEACE3 /* InstrumentationI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationI.cpp; path = ../cpp/src/Ice/InstrumentationI.cpp; sourceTree = ""; }; - 053E3EA43764388B8A0304F1 /* LocalObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.mm; path = src/IceImpl/LocalObject.mm; sourceTree = ""; }; - 0542741E3D6987968EDC3A03 /* ObjectAdapterI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapterI.swift; path = src/Ice/ObjectAdapterI.swift; sourceTree = ""; }; - 065B949882E18BDEB1485FC1 /* Registry.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Registry.ice; path = ../slice/IceGrid/Registry.ice; sourceTree = ""; }; - 069D6D873DB12806A4A9705F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/operations/Server.swift; sourceTree = ""; }; - 07391C2F2F17BEF451562D52 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = ../cpp/src/IceUtil/FileUtil.cpp; sourceTree = ""; }; - 07B40D097E062D485AF3F394 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/objects/TestAMD.ice; sourceTree = ""; }; - 08397788AB99AF6585C187A4 /* Endpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Endpoint.cpp; path = ../cpp/src/Ice/Endpoint.cpp; sourceTree = ""; }; - 0841109EAF658FE8F75F1D35 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = test/IceSSL/configuration/../../../../cpp/test/IceSSL/certs; sourceTree = ""; }; - 08422DB9B8A6F7BEF0B9659B /* SSLEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLEngine.cpp; path = ../cpp/src/IceSSL/SSLEngine.cpp; sourceTree = ""; }; - 08733FFC27D163E7A610C567 /* NetworkProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkProxy.cpp; path = ../cpp/src/Ice/NetworkProxy.cpp; sourceTree = ""; }; - 08F114BAF6B711459E6438F1 /* ConsoleUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsoleUtil.cpp; path = ../cpp/src/IceUtil/ConsoleUtil.cpp; sourceTree = ""; }; - 09486704DD4EBAC0DD6677C8 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 09A12C7A25EC939F04AC6CB8 /* ValueFactoryManagerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactoryManagerI.swift; path = src/Ice/ValueFactoryManagerI.swift; sourceTree = ""; }; - 0AE548BE00DBF796605CE418 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/objects/TestAMDI.swift; sourceTree = ""; }; - 0AF49C110C762F572C744977 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0D075D441DE8B7DA8AA330C5 /* BlobjectAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlobjectAsync.swift; path = src/Ice/BlobjectAsync.swift; sourceTree = ""; }; - 0DB36F16689B898D5396DE89 /* SSLEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLEndpointInfo.swift; path = src/Ice/SSLEndpointInfo.swift; sourceTree = ""; }; - 0EF3EED5D49B0E829BC0E03A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/hold/TestI.swift; sourceTree = ""; }; - 0EF9EA920CDA248C30B741E3 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/servantLocator/Collocated.swift; sourceTree = ""; }; - 0F25A5B87F1D6D4DE443C3F7 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0F2C3F356F0573D576A925FB /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/exceptions/ServerPrivateAMD.ice; sourceTree = ""; }; - 0F7401C2CE09807582FF593E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/objects/Client.swift; sourceTree = ""; }; - 0F77C35360BC168A8EE3C849 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 101D000CFC727409838DEE04 /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = test/TestDriver/iOS/Assets.xcassets; sourceTree = ""; }; - 1026DA33ACD08DBDEFF45AC4 /* EndpointF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointF.cpp; path = ../cpp/src/Ice/EndpointF.cpp; sourceTree = ""; }; - 102C8EBB7B156230C64E8D84 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 10E29D53CB33DDBF93C9D34C /* InputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStream.swift; path = src/Ice/InputStream.swift; sourceTree = ""; }; - 10FBAC0DE50DD8520BF0D494 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/udp/Test.ice; sourceTree = ""; }; - 11093968C1A0F59042CD7D5B /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/objects/Test.ice; sourceTree = ""; }; - 11AEDF0E03E10480338D6773 /* ServantLocatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocatorF.cpp; path = ../cpp/src/Ice/ServantLocatorF.cpp; sourceTree = ""; }; - 135C5232085BDE2604DFEE21 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = src/IceImpl/Config.h; sourceTree = ""; }; - 145489AECBBABC46B13BBD6F /* ObjectAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.mm; path = src/IceImpl/ObjectAdapter.mm; sourceTree = ""; }; - 1515A9EBA05A025707FA0A5B /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = test/TestDriver/macOS/main.swift; sourceTree = ""; }; - 1570CABD05CE88D0D442FBAA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/hold/AllTests.swift; sourceTree = ""; }; - 1599141F395131410355644A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/adapterDeactivation/TestI.swift; sourceTree = ""; }; - 164143EB3C130B0FA5630E59 /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Connection.h; path = src/IceImpl/Connection.h; sourceTree = ""; }; - 17D15FE0C359907D9E73E508 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/ami/Test.ice; sourceTree = ""; }; - 17E2F182F3B77EE5965C3F59 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/operations/TestI.swift; sourceTree = ""; }; - 182630D7EE2E9D527F3E7FC2 /* 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; }; - 187ED1A448C608EC15DF698C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/optional/AllTests.swift; sourceTree = ""; }; - 18CE168298CE80608E0B6DCD /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/adapterDeactivation/Collocated.swift; sourceTree = ""; }; - 18F600B75D092C22922DC97C /* LocalExceptionFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionFactory.swift; path = src/Ice/LocalExceptionFactory.swift; sourceTree = ""; }; - 1962FCE8C13AAA1EDB246D78 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/operations/Client.swift; sourceTree = ""; }; - 197DFA765AE77FC51AEF8CC3 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 19AA73005971E2B69755A399 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/objects/ServerPrivate.ice; sourceTree = ""; }; - 1A303F7D2349A2BAAF06FBA7 /* PluginF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginF.cpp; path = ../cpp/src/Ice/PluginF.cpp; sourceTree = ""; }; - 1B2E875251FF8233F5415E48 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1B54FF32B84CD34A3EAA00EE /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/TestCommon/Info.plist; sourceTree = ""; }; - 1B71BDB8210B42A2FC5F0C82 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1BC454AFBA15995FFFE08DBA /* Protocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Protocol.cpp; path = ../cpp/src/Ice/Protocol.cpp; sourceTree = ""; }; - 1BEC5A912505A2D0739F41AE /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/proxy/Collocated.swift; sourceTree = ""; }; - 1C1A5C984E086E684382E966 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 1C48DE3037CF4AE7BFD44F84 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1D30AE0D95CE0B8136368F33 /* ObjectPrx.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectPrx.mm; path = src/IceImpl/ObjectPrx.mm; sourceTree = ""; }; - 1D652FBDA58B2A88C9EE9351 /* Proxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Proxy.swift; path = src/Ice/Proxy.swift; sourceTree = ""; }; - 1D731F95822FEE54CA546BF4 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/objects/ServerPrivateAMD.ice; sourceTree = ""; }; - 1DAF6712CD8911F10A5971E9 /* Reference.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Reference.cpp; path = ../cpp/src/Ice/Reference.cpp; sourceTree = ""; }; - 1E498B9EBD907E4FAD93351F /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/hold/Client.swift; sourceTree = ""; }; - 1FD8BF102CBDEA4AE9A1BEF0 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 203BF667EB7502A11DAAD293 /* OptionalFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalFormat.swift; path = src/Ice/OptionalFormat.swift; sourceTree = ""; }; - 206401F7B7D85C2E662248F5 /* RegisterPluginsInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RegisterPluginsInit.cpp; path = ../cpp/src/Ice/RegisterPluginsInit.cpp; sourceTree = ""; }; - 20BCB9D60D449CB2F6D37702 /* AdminFacetFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdminFacetFactory.swift; path = src/Ice/AdminFacetFactory.swift; sourceTree = ""; }; - 2110B3C9B21AE73C0BD6ECBD /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 21D15D6C8E3919123C989D88 /* StringConverterPlugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverterPlugin.cpp; path = ../cpp/src/Ice/StringConverterPlugin.cpp; sourceTree = ""; }; - 23234EE76F12BDE06765390A /* 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; }; - 238D7DBD94628C8E32119E5B /* IncomingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IncomingAsync.cpp; path = ../cpp/src/Ice/IncomingAsync.cpp; sourceTree = ""; }; - 2424727B01DAAE130B238EF7 /* InitializationData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InitializationData.swift; path = src/Ice/InitializationData.swift; sourceTree = ""; }; - 2437C8A597A1CE438BEDEC3D /* LocalExceptionDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionDescription.swift; path = src/Ice/LocalExceptionDescription.swift; sourceTree = ""; }; - 24511A349B3AC892968F3C7E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/proxy/Test.ice; sourceTree = ""; }; - 246925D469B0CD3F19FC5EF4 /* SysLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysLoggerI.cpp; path = ../cpp/src/Ice/SysLoggerI.cpp; sourceTree = ""; }; - 248A46E1415A6C79670BA017 /* IconvStringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IconvStringConverter.cpp; path = ../cpp/src/Ice/IconvStringConverter.cpp; sourceTree = ""; }; - 24EEF303A9F8E4869A064E55 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/objects/ClientPrivate.ice; sourceTree = ""; }; - 2591D7770A25B731A7D961B0 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/retry/Server.swift; sourceTree = ""; }; - 259E1CFC2597003F39AF9275 /* CountDownLatch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CountDownLatch.cpp; path = ../cpp/src/Ice/CountDownLatch.cpp; sourceTree = ""; }; - 25C7F6C8A9023BB604FCC8C6 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 25D7EE2BD98457D481B8B3BC /* StreamAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamAcceptor.cpp; path = ../cpp/src/Ice/ios/StreamAcceptor.cpp; sourceTree = ""; }; - 27196B5B3415DF6ED7D4A3A5 /* Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Properties.swift; path = src/Ice/Properties.swift; sourceTree = ""; }; - 2725188194A8D2470DBF46F5 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/interceptor/Client.swift; sourceTree = ""; }; - 273E5195A6D681AF9C343F47 /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = src/IceImpl/Exception.h; sourceTree = ""; }; - 278EEAB3360C6F45AF0BA345 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/timeout/Client.swift; sourceTree = ""; }; - 27B24624FBC0D46B2E71D96A /* CtrlCHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CtrlCHandler.cpp; path = ../cpp/src/IceUtil/CtrlCHandler.cpp; sourceTree = ""; }; - 27D7B1673A591C9B7CAF8808 /* Forward.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Forward.ice; path = test/Ice/objects/Forward.ice; sourceTree = ""; }; - 28F6EBEDD7E3BB7D5EA9FBD4 /* ObserverHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverHelper.cpp; path = ../cpp/src/Ice/ObserverHelper.cpp; sourceTree = ""; }; - 29114B3DD6DE83F72CE4BEF6 /* TestCommon.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestCommon.swift; path = test/TestCommon/TestCommon.swift; sourceTree = ""; }; - 292810AEFEB4C7B5B49D1C98 /* RequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandler.cpp; path = ../cpp/src/Ice/RequestHandler.cpp; sourceTree = ""; }; - 294AC4A94D492076FFDEF664 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2967E04C4326091B1910DB93 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2981BE0BA9E535D4E8738D6C /* SecureTransportPluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportPluginI.cpp; path = ../cpp/src/IceSSL/SecureTransportPluginI.cpp; sourceTree = ""; }; - 2A2E598EF61DF473F6F1896D /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.ice; path = ../slice/Ice/PropertiesAdmin.ice; sourceTree = ""; }; - 2A5AD5A8F56E90F0DF1C96F2 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/facets/Client.swift; sourceTree = ""; }; - 2AB45D97CBDA0FAEFF65A6AE /* ConnectionInfoF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfoF.cpp; path = ../cpp/src/IceSSL/ConnectionInfoF.cpp; sourceTree = ""; }; - 2B0A74331F696DA324EE12AF /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/proxy/TestAMDI.swift; sourceTree = ""; }; - 2D63C2A77F018D37B047CFA9 /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2DA8717C158AFF4CF60E6E87 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 2EB971FEE56EA31F7716F3AD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/exceptions/AllTests.swift; sourceTree = ""; }; - 2EEC8F950880BA5D14A58ACE /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/exceptions/AllTests.swift; sourceTree = ""; }; - 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorF.ice; path = ../slice/Ice/LocatorF.ice; sourceTree = ""; }; - 3159C7F956674DA8F082423D /* Base64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Base64.cpp; path = ../cpp/src/Ice/Base64.cpp; sourceTree = ""; }; - 31807FCC8B102E3BA2E0BBC5 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/exceptions/ClientPrivate.ice; sourceTree = ""; }; - 31917CC0A13FF7C85862B2F0 /* OutputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputStream.cpp; path = ../cpp/src/Ice/OutputStream.cpp; sourceTree = ""; }; - 31C92631DA6DA4BADFE8C59F /* EndpointFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactory.cpp; path = ../cpp/src/Ice/EndpointFactory.cpp; sourceTree = ""; }; - 31CCAAEF9A0D8BD94D02FADD /* DispatchInterceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DispatchInterceptor.cpp; path = ../cpp/src/Ice/DispatchInterceptor.cpp; sourceTree = ""; }; - 323B42FB5AD8FC12D8AE7CDE /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/proxy/Server.swift; sourceTree = ""; }; - 3240EAAE31EEEE2C1A979DF8 /* NativePropertiesAdmin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NativePropertiesAdmin.swift; path = src/Ice/NativePropertiesAdmin.swift; sourceTree = ""; }; - 346EA4E8BF5EBE984DAF0872 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/exceptions/TestAMDI.swift; sourceTree = ""; }; - 3573CD4E6D9EB58A37C88DBF /* LocalObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocalObject.h; path = src/IceImpl/LocalObject.h; sourceTree = ""; }; - 358B68004AEA4DEE9CC643DF /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceIAP/ConnectionInfo.cpp; sourceTree = ""; }; - 35AE9823C665F00939098688 /* Identity.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Identity.ice; path = ../slice/Ice/Identity.ice; sourceTree = ""; }; - 36A3DD415DB5D47F3DD67986 /* Util.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Util.cpp; path = ../cpp/src/IceSSL/Util.cpp; sourceTree = ""; }; - 37F91A4DE4998C11CD9FA265 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/adapterDeactivation/Client.swift; sourceTree = ""; }; - 38D102721EA6D00E46DBB85E /* Cond.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cond.cpp; path = ../cpp/src/Ice/Cond.cpp; sourceTree = ""; }; - 3979D5422F89387622D2651D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/binding/TestI.swift; sourceTree = ""; }; - 397D6E5EA9E00485DEEDF569 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 39B7FD86E7AAB2B74EA0F79A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/adapterDeactivation/AllTests.swift; sourceTree = ""; }; - 3A18E1A90F712D013DEBAD12 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/info/TestI.swift; sourceTree = ""; }; - 3A90857F1CD31FC2193C9C89 /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 3B8AD33CAF2513831F190948 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/adapterDeactivation/Server.swift; sourceTree = ""; }; - 3B986932C2925F4F85570A5B /* Mutex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mutex.swift; path = src/Ice/Mutex.swift; sourceTree = ""; }; - 3C30A1A1C29802757EAC98B0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/proxy/Client.swift; sourceTree = ""; }; - 3C54DFAFDC0223F71EBCA048 /* OpaqueEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpaqueEndpointI.cpp; path = ../cpp/src/Ice/OpaqueEndpointI.cpp; sourceTree = ""; }; - 3D23950CABD458FD84101A42 /* Properties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Properties.h; path = src/IceImpl/Properties.h; sourceTree = ""; }; - 3D62D9A3A91168A2CA52AAE8 /* Endpoint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Endpoint.swift; path = src/Ice/Endpoint.swift; sourceTree = ""; }; - 3D98CE77652346A9B41B4831 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3E18A66D20FAB52A8017CFEC /* PluginManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginManagerI.cpp; path = ../cpp/src/Ice/PluginManagerI.cpp; sourceTree = ""; }; - 3E80F236FF9CC3D3ABDABC94 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/timeout/Test.ice; sourceTree = ""; }; - 3F98C3CA8C685D2666897D25 /* StringUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringUtil.cpp; path = ../cpp/src/IceUtil/StringUtil.cpp; sourceTree = ""; }; - 401D314CEA8878CFB3F1674F /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/retry/Collocated.swift; sourceTree = ""; }; - 40F0848AD5E921D3D29D8E5F /* MetricsObserverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsObserverI.cpp; path = ../cpp/src/Ice/MetricsObserverI.cpp; sourceTree = ""; }; - 41D003139C78BDCDD6F24440 /* TcpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpTransceiver.cpp; path = ../cpp/src/Ice/TcpTransceiver.cpp; sourceTree = ""; }; - 41F405B3502079EE7591BD56 /* Communicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Communicator.swift; path = src/Ice/Communicator.swift; sourceTree = ""; }; - 4219AE5EE1189E920E1A77AA /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/exceptions/TestAMD.ice; sourceTree = ""; }; - 42B9B7D2C864B2D316ADE535 /* Exception.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Exception.swift; path = src/Ice/Exception.swift; sourceTree = ""; }; - 4307C8F5994221221EAA83D5 /* ObjectAdapterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterFactory.cpp; path = ../cpp/src/Ice/ObjectAdapterFactory.cpp; sourceTree = ""; }; - 43931C1667BC9E1EB9EBE642 /* ImplicitContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContext.cpp; path = ../cpp/src/Ice/ImplicitContext.cpp; sourceTree = ""; }; - 4487959432B7C792830C5266 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 44B4CA994280A6DA16BE5B80 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/binding/Test.ice; sourceTree = ""; }; - 44D64D7DE7F59927CC720908 /* ServantLocator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocator.swift; path = src/Ice/ServantLocator.swift; sourceTree = ""; }; - 45C8F6FB616A194C3B2F51F4 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/servantLocator/TestI.swift; sourceTree = ""; }; - 4749A84AF39751728F692314 /* ConnectorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectorI.cpp; path = ../cpp/src/IceSSL/ConnectorI.cpp; sourceTree = ""; }; - 4804F5E00E5C966AE7D9FD34 /* BatchOneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOneways.swift; path = test/Ice/operations/BatchOneways.swift; sourceTree = ""; }; - 48FF8C7FFEC75A3D1F598354 /* ProcessI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProcessI.swift; path = src/Ice/ProcessI.swift; sourceTree = ""; }; - 4A7049303E4CC0D79196E584 /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/Ice/EndpointI.cpp; sourceTree = ""; }; - 4AB7DEF69D88E4196C6C38C6 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultValue/Client.swift; sourceTree = ""; }; - 4BA8D617819FF713F80CE4A0 /* Blobject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Blobject.swift; path = src/Ice/Blobject.swift; sourceTree = ""; }; - 4CF51F5BA92DBCFB19276E79 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4D9F47C5F7E714936213E615 /* Current.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Current.cpp; path = ../cpp/src/Ice/Current.cpp; sourceTree = ""; }; - 4DF3479CC49100449C494653 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/operations/Test.ice; sourceTree = ""; }; - 4DF443F93429C08880793844 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/exceptions/TestI.swift; sourceTree = ""; }; - 4E2510934C92262E6420D091 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultValue/Test.ice; sourceTree = ""; }; - 4E7FD5CE013170C15DA09A31 /* LoggerAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerAdminI.cpp; path = ../cpp/src/Ice/LoggerAdminI.cpp; sourceTree = ""; }; - 4E829B55DFE27094ED4A1790 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceSSL/EndpointInfo.cpp; sourceTree = ""; }; - 4EDA8B46CA1A0F1CFC1E283B /* SystemdJournalI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SystemdJournalI.cpp; path = ../cpp/src/Ice/SystemdJournalI.cpp; sourceTree = ""; }; - 4F294A7B72FAF1011CB416FA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/udp/AllTests.swift; sourceTree = ""; }; - 4F365747574374068F56B9FD /* libIceLocatorDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 4F546DCC7DF65F50BED56636 /* PropertiesAdminI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesAdminI.swift; path = src/Ice/PropertiesAdminI.swift; sourceTree = ""; }; - 5042D96FAC79ED86972DEF0A /* LocalException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalException.cpp; path = ../cpp/src/Ice/LocalException.cpp; sourceTree = ""; }; - 5052AC8588F0B21D8BE3AD20 /* LoggerF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerF.cpp; path = ../cpp/src/Ice/LoggerF.cpp; sourceTree = ""; }; - 50727E8340FCAC13BECEC831 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Slice/escape/Client.swift; sourceTree = ""; }; - 50E98EEC1CF21AF6E6D15DE7 /* ObjectAdapterF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterF.cpp; path = ../cpp/src/Ice/ObjectAdapterF.cpp; sourceTree = ""; }; - 511AD3135337E08B90F9C34B /* BatchRequestQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchRequestQueue.cpp; path = ../cpp/src/Ice/BatchRequestQueue.cpp; sourceTree = ""; }; - 5124560E2C8D4CA6F32B121F /* ClassResolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassResolver.swift; path = src/Ice/ClassResolver.swift; sourceTree = ""; }; - 5206DD21F8DF743B9A61B14B /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/interceptor/Test.ice; sourceTree = ""; }; - 5248E12595EE33145909A5D9 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/objects/AllTests.swift; sourceTree = ""; }; - 5292AB6BD873695825E1758E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/servantLocator/Test.ice; sourceTree = ""; }; - 52B6920962BB40484351B828 /* LoggerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoggerWrapper.swift; path = src/Ice/LoggerWrapper.swift; sourceTree = ""; }; - 533D65B77DD79A97AE2A1A8F /* SecureTransportUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportUtil.cpp; path = ../cpp/src/IceSSL/SecureTransportUtil.cpp; sourceTree = ""; }; - 53A5BF7BE1E27774AE055437 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5400703129C16CEB55676316 /* ConnectionInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionInfoFactory.swift; path = src/Ice/ConnectionInfoFactory.swift; sourceTree = ""; }; - 540A7B3104F684B945E4E393 /* MutexProtocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MutexProtocol.cpp; path = ../cpp/src/IceUtil/MutexProtocol.cpp; sourceTree = ""; }; - 543206D99800E30AAB5B257D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/binding/AllTests.swift; sourceTree = ""; }; - 54E9AF62DC5520A54B0CF2AA /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = ../cpp/src/IceUtil/Random.cpp; sourceTree = ""; }; - 5507FC7D9307D1B742D67CE8 /* Clash.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Clash.ice; path = test/Slice/escape/Clash.ice; sourceTree = ""; }; - 5721BA6A8AE743A4B2FF95A5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/admin/Server.swift; sourceTree = ""; }; - 5784A651E1A32B4749128DE1 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/info/AllTests.swift; sourceTree = ""; }; - 57CF891C000E31222368C816 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/ami/Server.swift; sourceTree = ""; }; - 585EAAAD1DD963A893315BD6 /* ServantManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantManager.cpp; path = ../cpp/src/Ice/ServantManager.cpp; sourceTree = ""; }; - 58A46161AB366B92156533D6 /* IceDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceDiscovery.ice; path = ../slice/IceDiscovery/IceDiscovery.ice; sourceTree = ""; }; - 5923FFFFBE73677A77330996 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/info/Server.swift; sourceTree = ""; }; - 59C46080488C352EA3B5E078 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/proxy/ServerAMD.swift; sourceTree = ""; }; - 59DDE7B5BC8DF0F3AD836E76 /* SecureTransportCertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportCertificateI.cpp; path = ../cpp/src/IceSSL/SecureTransportCertificateI.cpp; sourceTree = ""; }; - 59F4F79624A15326B17E88ED /* PropertyNames.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyNames.cpp; path = ../cpp/src/Ice/PropertyNames.cpp; sourceTree = ""; }; - 59FC3375D6E90AE4E3134B50 /* CommunicatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorI.cpp; path = ../cpp/src/Ice/CommunicatorI.cpp; sourceTree = ""; }; - 5A500C7A9434EE6B7B6007E2 /* IceGridSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceGridSwift.h; path = src/IceGrid/IceGridSwift.h; sourceTree = ""; }; - 5A6BCE84AFC62FA7351297E6 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5A9928AEF2ED41ECB96691AF /* TcpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpEndpointI.cpp; path = ../cpp/src/Ice/TcpEndpointI.cpp; sourceTree = ""; }; - 5AA45CDF58CA91E2E635F08A /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/ami/TestI.swift; sourceTree = ""; }; - 5AE3DC5C68BCF7B63AA95F6F /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/IceStorm/Metrics.ice; sourceTree = ""; }; - 5B0C61085F906AE19C4D73ED /* Logger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Logger.swift; path = src/Ice/Logger.swift; sourceTree = ""; }; - 5B643EA2D961B5A046DA618B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/acm/AllTests.swift; sourceTree = ""; }; - 5BEA81A87699651060DB2E4A /* StreamSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamSocket.cpp; path = ../cpp/src/Ice/StreamSocket.cpp; sourceTree = ""; }; - 5C265F58DECCDAB36E4CD6A6 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultServant/Client.swift; sourceTree = ""; }; - 5C37059709E53268E7C14372 /* ImplicitContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImplicitContext.h; path = src/IceImpl/ImplicitContext.h; sourceTree = ""; }; - 5CA31F719AC415E991FB8790 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5CF2439A128695F8D08C60D1 /* IAPConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPConnectionInfo.swift; path = src/Ice/IAPConnectionInfo.swift; sourceTree = ""; }; - 5D75F8E6BDE3707D84F90250 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/retry/Test.ice; sourceTree = ""; }; - 5DABF3352FC370E8C8424646 /* FileParser.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FileParser.ice; path = ../slice/IceGrid/FileParser.ice; sourceTree = ""; }; - 5DAC9DE9BB0E7BD3C95B7C6D /* OutgoingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutgoingAsync.cpp; path = ../cpp/src/Ice/OutgoingAsync.cpp; sourceTree = ""; }; - 5DEE9BBFD65F9CC3DD2E91F5 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/servantLocator/Client.swift; sourceTree = ""; }; - 5E7A0432DEA9466221C423F5 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/optional/TestI.swift; sourceTree = ""; }; - 5F8110A6A605EABCCC95B70C /* Current.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Current.swift; path = src/Ice/Current.swift; sourceTree = ""; }; - 5F8D90EA61D510888A922C76 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/services/Client.swift; sourceTree = ""; }; - 5F9757AB402E520F6A127C8D /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5FC1B1B7E470DA1817C0EEA4 /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 60C72DE758D50EEE330E214C /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Ice/Metrics.ice; sourceTree = ""; }; - 60EDA02B0B44B95EBB2841F9 /* IceImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceImpl.h; path = src/IceImpl/IceImpl.h; sourceTree = ""; }; - 614B4EEEE8D6EC764E4CB54B /* FacetMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacetMap.swift; path = src/Ice/FacetMap.swift; sourceTree = ""; }; - 615E8464EAAEA906EF0953DE /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/IceSSL/EndpointI.cpp; sourceTree = ""; }; - 61B80662080CB423CE83029C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/enums/AllTests.swift; sourceTree = ""; }; - 61F67EA48B40D8217803F572 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6232FC65AC888C2919A29D4A /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6297BCCEF80EEAA0E5BB22A7 /* ConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionFactory.cpp; path = ../cpp/src/Ice/ConnectionFactory.cpp; sourceTree = ""; }; - 62BD73733BF5EF5838784676 /* LoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerI.cpp; path = ../cpp/src/Ice/LoggerI.cpp; sourceTree = ""; }; - 63086CCB688E11EB58FA8847 /* BlobjectFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlobjectFacade.h; path = src/IceImpl/BlobjectFacade.h; sourceTree = ""; }; - 63DF48DC6AC320881942F9D2 /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 63EFA6A9F175C4F63D612486 /* TraceUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceUtil.cpp; path = ../cpp/src/Ice/TraceUtil.cpp; sourceTree = ""; }; - 64826F8AA2F1B443C0AEFD5C /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 654CCEC599E0A9552262BFF6 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Ice/RouterF.ice; sourceTree = ""; }; - 65ADD8278D737094AD85D73B /* InputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputStream.cpp; path = ../cpp/src/Ice/InputStream.cpp; sourceTree = ""; }; - 65E69FAE81A29C4237DF3017 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/objects/TestI.swift; sourceTree = ""; }; - 66677779E376C6BC1CB257CB /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/info/Client.swift; sourceTree = ""; }; - 66EBE19FA36E23B906766A85 /* WSTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSTransceiver.cpp; path = ../cpp/src/Ice/WSTransceiver.cpp; sourceTree = ""; }; - 681AABFFA977FBCD95B43311 /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/Ice/Instance.cpp; sourceTree = ""; }; - 685C908500567FED302500C2 /* ACM.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ACM.cpp; path = ../cpp/src/Ice/ACM.cpp; sourceTree = ""; }; - 688574A0631176251901C5D7 /* ServantManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantManager.swift; path = src/Ice/ServantManager.swift; sourceTree = ""; }; - 68A1DF0813FCFD98C103C20D /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/objects/ServerAMD.swift; sourceTree = ""; }; - 68FE5BEC43DB70CE488BA78C /* SSLConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLConnectionInfo.swift; path = src/Ice/SSLConnectionInfo.swift; sourceTree = ""; }; - 698CE5506A44CD12B6835C88 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6AB42DA37A87829961E185A1 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/timeout/Server.swift; sourceTree = ""; }; - 6ACA341F8D22FF154D2C3631 /* Plugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Plugin.swift; path = src/Ice/Plugin.swift; sourceTree = ""; }; - 6C14840E2D26E13A7C5D6AC9 /* OutputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputStream.swift; path = src/Ice/OutputStream.swift; sourceTree = ""; }; - 6C1CDE26751507399301F945 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6C2B5BBCC468EFCF6C706DDF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/udp/Client.swift; sourceTree = ""; }; - 6C6D0DC6E65F5AE88EB1701F /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/scope/AllTests.swift; sourceTree = ""; }; - 6C9EE6928D91D3DD502B5B8C /* ConnectRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectRequestHandler.cpp; path = ../cpp/src/Ice/ConnectRequestHandler.cpp; sourceTree = ""; }; - 6CF5F747C703C2E26BCF3A54 /* Connection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Connection.swift; path = src/Ice/Connection.swift; sourceTree = ""; }; - 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointTypes.ice; path = ../slice/Ice/EndpointTypes.ice; sourceTree = ""; }; - 6E0FC8B916544739F08DBD2A /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6EC196F1092D9A40472D0F1A /* InputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputUtil.cpp; path = ../cpp/src/IceUtil/InputUtil.cpp; sourceTree = ""; }; - 6F01F4D0DA57D647E4189538 /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 6F0E8376C2AD9B7DDE63D13E /* Properties.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Properties.cpp; path = ../cpp/src/Ice/Properties.cpp; sourceTree = ""; }; - 6F38DD25FC0B9CF9834644C9 /* Locator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Locator.ice; path = ../slice/Ice/Locator.ice; sourceTree = ""; }; - 6FBE489334E0ED23D774B550 /* LoggerUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerUtil.cpp; path = ../cpp/src/Ice/LoggerUtil.cpp; sourceTree = ""; }; - 7009D84B5EA234435C031C1D /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 700EF0543089A6F52A51D7E7 /* HttpParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HttpParser.cpp; path = ../cpp/src/Ice/HttpParser.cpp; sourceTree = ""; }; - 7101B26D06079EE4319D8BB4 /* UdpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpEndpointI.cpp; path = ../cpp/src/Ice/UdpEndpointI.cpp; sourceTree = ""; }; - 714EC172B42055EC5BF98E11 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/exceptions/TestI.swift; sourceTree = ""; }; - 71C219D846F1B5B1FDD3578E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/stream/Test.ice; sourceTree = ""; }; - 737C8B48855EE4342128C161 /* PropertiesF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesF.cpp; path = ../cpp/src/Ice/PropertiesF.cpp; sourceTree = ""; }; - 73E30F6985B146225B2F0177 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 746535D89AE46CEA581E57AF /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/admin/Test.ice; sourceTree = ""; }; - 748EE12499322EB81A8498E8 /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/exceptions/ServerPrivate.ice; sourceTree = ""; }; - 7490F0360E314E9C5FF89F3C /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Ice/Router.ice; sourceTree = ""; }; - 74C18BC9905EB667A2B8518D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/exceptions/Test.ice; sourceTree = ""; }; - 74D6726513624795759A7851 /* 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; }; - 753E12D3EE11FCE2B8E3B8F9 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/servantLocator/Server.swift; sourceTree = ""; }; - 770F579715615C54D53ABF72 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/exceptions/TestAMDI.swift; sourceTree = ""; }; - 77242285508C579CC5B0D48D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/exceptions/Server.swift; sourceTree = ""; }; - 77413C0CE48FA70D463B327C /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7771C966A95A75444CDD9607 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/facets/AllTests.swift; sourceTree = ""; }; - 77A833C278A8A075161EBAA8 /* Exception.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.mm; path = src/IceImpl/Exception.mm; sourceTree = ""; }; - 77EC8521AFDAD69584F76199 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 7896AFF2A6A7C311E7C0DBBA /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/objects/Test.ice; sourceTree = ""; }; - 78B6F5E512D86BC4BDC8026B /* Object.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../cpp/src/Ice/Object.cpp; sourceTree = ""; }; - 7966445621B396BC50FEFDAF /* Service.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Service.cpp; path = ../cpp/src/Ice/Service.cpp; sourceTree = ""; }; - 79ABC993469B3E7832F12F25 /* ConnectionI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionI.swift; path = src/Ice/ConnectionI.swift; sourceTree = ""; }; - 79B44ECCFF08BDD9E83A886B /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 79E564BB39566F3CAD8B878F /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 79F3ED290282BD409F3522BE /* SliceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceInfo.swift; path = src/Ice/SliceInfo.swift; sourceTree = ""; }; - 7A0A8197B967AFCB434D4FE1 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7A38C5090BFC9479B5774794 /* ProtocolPluginFacade.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolPluginFacade.cpp; path = ../cpp/src/Ice/ProtocolPluginFacade.cpp; sourceTree = ""; }; - 7A542194ED490F2D450FBE00 /* CollocatedRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CollocatedRequestHandler.cpp; path = ../cpp/src/Ice/CollocatedRequestHandler.cpp; sourceTree = ""; }; - 7AAAA99233AA95D5E2D8623D /* Admin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Admin.ice; path = ../slice/IceGrid/Admin.ice; sourceTree = ""; }; - 7AD25AF9E04E7237D00DA079 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Glacier2/Metrics.ice; sourceTree = ""; }; - 7C38FF5F290399FD2A575BC5 /* Incoming.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Incoming.swift; path = src/Ice/Incoming.swift; sourceTree = ""; }; - 7DEDA8D23AD6801409BD6D10 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceSSL/PluginI.cpp; sourceTree = ""; }; - 7E2557828DF2EF804720B5DF /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/retry/TestI.swift; sourceTree = ""; }; - 7E2F05661007A6DA5ACB1A9C /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/adapterDeactivation/Test.ice; sourceTree = ""; }; - 7E5BC150A7E6BE558ECEA251 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7EA959FB1AE1C0215813F162 /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = test/TestDriver/iOS/Base.lproj/Main.storyboard; sourceTree = ""; }; - 7EB7AAB041B597E34A71548A /* EndpointI.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.mm; path = ../cpp/src/IceIAP/EndpointI.mm; sourceTree = ""; }; - 7F0F1C0C87F3118B4B5673E1 /* PropertiesAdmin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropertiesAdmin.h; path = src/IceImpl/PropertiesAdmin.h; sourceTree = ""; }; - 7F6624BB6F4570C1B15B7C59 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7FC1B02BF28CB20BA8607932 /* LocatorInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorInfo.cpp; path = ../cpp/src/Ice/LocatorInfo.cpp; sourceTree = ""; }; - 7FCC0E3729F4A0124693C97A /* ObjectPrx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectPrx.h; path = src/IceImpl/ObjectPrx.h; sourceTree = ""; }; - 8044616B12D739F37275B163 /* Logger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.mm; path = src/IceImpl/Logger.mm; sourceTree = ""; }; - 80BDC773852878159B385AA8 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/IceSSL/configuration/Server.swift; sourceTree = ""; }; - 80C813147DFCDC62BE24AD6F /* ThreadPool.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPool.cpp; path = ../cpp/src/Ice/ThreadPool.cpp; sourceTree = ""; }; - 8131692BCB1B7FD451C01F8B /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/inheritance/Server.swift; sourceTree = ""; }; - 814042ADB97F55EAA8E0BEE4 /* PropertiesAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesAdminI.cpp; path = ../cpp/src/Ice/PropertiesAdminI.cpp; sourceTree = ""; }; - 8188FC2EE67FAC79B3DDD184 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/admin/AllTests.swift; sourceTree = ""; }; - 8288E572CC1605192A1F1696 /* WSEndpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSEndpoint.cpp; path = ../cpp/src/Ice/WSEndpoint.cpp; sourceTree = ""; }; - 82B698D2AA00D8433E829B6C /* DefaultsAndOverrides.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultsAndOverrides.cpp; path = ../cpp/src/Ice/DefaultsAndOverrides.cpp; sourceTree = ""; }; - 82BA2AD0516BDC1B952A1A16 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 83F50C58BF53491B5A2519D6 /* SecureTransportEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportEngine.cpp; path = ../cpp/src/IceSSL/SecureTransportEngine.cpp; sourceTree = ""; }; - 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = BuiltinSequences.ice; path = ../slice/Ice/BuiltinSequences.ice; sourceTree = ""; }; - 848049457E74A1C8BA343A1D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/objects/Server.swift; sourceTree = ""; }; - 855BA3CF130D0F9747BDA673 /* 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; }; - 85A919E5EEB0EC42C4BAF17A /* Options.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Options.cpp; path = ../cpp/src/IceUtil/Options.cpp; sourceTree = ""; }; - 85B515A196F89D779308CAD1 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 87172D22D512BAFF0B704A27 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Ice/Info.plist; sourceTree = ""; }; - 873DDDDA9C1B2827C2427670 /* OnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnewaysAMI.swift; path = test/Ice/operations/OnewaysAMI.swift; sourceTree = ""; }; - 876D9FFC7CC704C0504BCB91 /* SHA1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SHA1.cpp; path = ../cpp/src/Ice/SHA1.cpp; sourceTree = ""; }; - 879BBBB407F7C87AA23FEFB0 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/scope/TestI.swift; sourceTree = ""; }; - 87C7BBC6F22A9A903F1FB5A4 /* BatchOnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOnewaysAMI.swift; path = test/Ice/operations/BatchOnewaysAMI.swift; sourceTree = ""; }; - 87EF303B4F48EAFE426CB832 /* Key.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Key.ice; path = test/Slice/escape/Key.ice; sourceTree = ""; }; - 88E0874AAF62BEBDEAA903B2 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/IceSSL/configuration/Test.ice; sourceTree = ""; }; - 89430DABC966D657CAA11785 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/acm/Test.ice; sourceTree = ""; }; - 8960D717D9673447C68F61D7 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceIAP/EndpointInfo.cpp; sourceTree = ""; }; - 89C8AEE905086856134C860E /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/operations/Collocated.swift; sourceTree = ""; }; - 8A14118D0E57AF0A5F37755A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/proxy/AllTests.swift; sourceTree = ""; }; - 8A35C4E163EB55AE186B1AF8 /* Logger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Logger.cpp; path = ../cpp/src/Ice/Logger.cpp; sourceTree = ""; }; - 8A51F31391447E13718ECF7F /* UdpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpTransceiver.cpp; path = ../cpp/src/Ice/UdpTransceiver.cpp; sourceTree = ""; }; - 8AC23262A7AC04461F4A4BFD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/retry/AllTests.swift; sourceTree = ""; }; - 8B6B06FDB50B258D64C0C1B5 /* Value.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Value.swift; path = src/Ice/Value.swift; sourceTree = ""; }; - 8B7F6F6014A25D3EA8088D4D /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/ami/Collocated.swift; sourceTree = ""; }; - 8BDD768C41EE98F60B1ADFD6 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/facets/TestI.swift; sourceTree = ""; }; - 8BF3A34243EBCF0033484450 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceLocatorDiscovery/PluginI.cpp; sourceTree = ""; }; - 8C321C7D5D3EEBFF6B77950C /* FactoryTableInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTableInit.cpp; path = ../cpp/src/Ice/FactoryTableInit.cpp; sourceTree = ""; }; - 8C4AA43D47071643F9248425 /* ConnectionI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionI.cpp; path = ../cpp/src/Ice/ConnectionI.cpp; sourceTree = ""; }; - 8E07F2808B7ABBDDF36A6614 /* Controller.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Controller.ice; path = ../scripts/Controller.ice; sourceTree = ""; }; - 8EEDB1FF955CF9544E65EAC7 /* 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; }; - 90C90B96D25DD719CC60E168 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/inheritance/Collocated.swift; sourceTree = ""; }; - 925C43BB0C5ED12BA8492EA3 /* IceSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceSwift.h; path = src/Ice/IceSwift.h; sourceTree = ""; }; - 92E658D78C379EAA3ED57897 /* SlicedData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SlicedData.swift; path = src/Ice/SlicedData.swift; sourceTree = ""; }; - 94750ED6B82F0F0C0E7243D1 /* TraceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.mm; path = src/IceImpl/TraceUtil.mm; sourceTree = ""; }; - 94FDF54850CD30639F5F2A76 /* Proxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Proxy.cpp; path = ../cpp/src/Ice/Proxy.cpp; sourceTree = ""; }; - 953B936F6C84AD4413F0837A /* Connection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.mm; path = src/IceImpl/Connection.mm; sourceTree = ""; }; - 95E105439BA21E7D9534BAA3 /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 96057073F871C88A9A437E6C /* RemoteLogger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RemoteLogger.ice; path = ../slice/Ice/RemoteLogger.ice; sourceTree = ""; }; - 9668122A663485B283D6E354 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/IceSSL/configuration/AllTests.swift; sourceTree = ""; }; - 977C1FE11405DDDBFB5775A2 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 978FF0AEF23EE4E31F7CB0BE /* FormatType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatType.swift; path = src/Ice/FormatType.swift; sourceTree = ""; }; - 97E37D3215AA9BB8DD87E7B4 /* Connector.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.mm; path = ../cpp/src/IceIAP/Connector.mm; sourceTree = ""; }; - 97E99C2AEE0BD9BF770175D4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultServant/AllTests.swift; sourceTree = ""; }; - 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 990C9617CC26B0961E520996 /* LocalObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalObject.swift; path = src/Ice/LocalObject.swift; sourceTree = ""; }; - 99B5902E632A1305ED246DA8 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/exceptions/Test.ice; sourceTree = ""; }; - 99B9776ADB255F1973621C98 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/objects/TestI.swift; sourceTree = ""; }; - 99BB692606D808F7F66B6446 /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/Glacier2/Session.ice; sourceTree = ""; }; - 99CDD3BEF9831A379194BA9E /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 99F9D2D3C733AFDB4D23EB00 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 9B722E075AEEBEA3D471A855 /* ObjectAdapterI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterI.cpp; path = ../cpp/src/Ice/ObjectAdapterI.cpp; sourceTree = ""; }; - 9CD9C4FF6B42F14CAB807960 /* libIce C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 9D50C3279384F2AA6BA994E0 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Glacier2/Router.ice; sourceTree = ""; }; - 9ED8B6B4E62F9D71D312B66F /* Value.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../cpp/src/Ice/Value.cpp; sourceTree = ""; }; - 9F84FD475359A48442829A39 /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; - 9F93205A8C96574AF482B2AB /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A09BB09CBD110F5A9A95C3BC /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/exceptions/Server.swift; sourceTree = ""; }; - A0E153E7D44172EC94A37022 /* IceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceUtil.h; path = src/IceImpl/IceUtil.h; sourceTree = ""; }; - A19D8983C8F5E4BF02AA82C4 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/inheritance/Test.ice; sourceTree = ""; }; - A1D1560CEE1155BFFA1F9B22 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/optional/TestAMD.ice; sourceTree = ""; }; - A2028B9FE566140E37F6A80E /* ProxyFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProxyFactory.cpp; path = ../cpp/src/Ice/ProxyFactory.cpp; sourceTree = ""; }; - A26B127504B1411F9A44E917 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = ../cpp/src/IceUtil/Time.cpp; sourceTree = ""; }; - A28E723AB3710F4B62B6B303 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = ../cpp/src/Ice/Exception.cpp; sourceTree = ""; }; - A2BADF2E71C4E31C2545EBD7 /* PropertiesAdmin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.mm; path = src/IceImpl/PropertiesAdmin.mm; sourceTree = ""; }; - A321E613C2308FD17E0C2E6D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/timeout/TestI.swift; sourceTree = ""; }; - A3DCD2329D6CC0E7D1A67304 /* SliceFlags.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceFlags.swift; path = src/Ice/SliceFlags.swift; sourceTree = ""; }; - A47964EE995DCCF12193A7C8 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/enums/TestI.swift; sourceTree = ""; }; - A4E73A61A877F2E6823B7907 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/admin/TestI.swift; sourceTree = ""; }; - A53A47B49B4866AB8EE69620 /* ReferenceFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReferenceFactory.cpp; path = ../cpp/src/Ice/ReferenceFactory.cpp; sourceTree = ""; }; - A558073E4D0060993986E950 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/inheritance/Client.swift; sourceTree = ""; }; - A590A314799E84457E6B723C /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A5B27506E526D876D902739A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/timeout/AllTests.swift; sourceTree = ""; }; - A5DB117E9F7CD97246E362D0 /* LocalObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalObject.cpp; path = ../cpp/src/Ice/LocalObject.cpp; sourceTree = ""; }; - A6D9088DAAB107784DA16DE0 /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A72C73AF071E66FC94B9C561 /* TcpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnector.cpp; path = ../cpp/src/Ice/TcpConnector.cpp; sourceTree = ""; }; - A7987BEF538197F4846537BC /* UnknownSlicedValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnknownSlicedValue.swift; path = src/Ice/UnknownSlicedValue.swift; sourceTree = ""; }; - A7E3DA05928304B5AC220E13 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/optional/TestAMDI.swift; sourceTree = ""; }; - A7F4197C8123883ABAF8C85D /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A84471908266098F39B2D842 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A8697F5EF8C512BDD2D230A1 /* PermissionsVerifier.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifier.ice; path = ../slice/Glacier2/PermissionsVerifier.ice; sourceTree = ""; }; - A896AB8FC799C78576276217 /* OutputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputUtil.cpp; path = ../cpp/src/IceUtil/OutputUtil.cpp; sourceTree = ""; }; - A8AFF8F311501C1902F407B9 /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A8B3B91893CDE2FCE46DB8C3 /* ValueFactoryManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactoryManagerI.cpp; path = ../cpp/src/Ice/ValueFactoryManagerI.cpp; sourceTree = ""; }; - A8F5945F8AFC7C9F3E86F3D4 /* Endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Endpoint.h; path = src/IceImpl/Endpoint.h; sourceTree = ""; }; - A9E418725A7536BFB1BF5F9E /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - AADAF4F2A9298B55860DC8AB /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/scope/Client.swift; sourceTree = ""; }; - AB4A17E1D7AFC814618AE832 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/acm/Client.swift; sourceTree = ""; }; - AB841745F334BE569AAC2791 /* InstrumentationF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationF.cpp; path = ../cpp/src/Ice/InstrumentationF.cpp; sourceTree = ""; }; - ABB7C1A5CA7A5D473338E96D /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceStorm/Info.plist; sourceTree = ""; }; - ACB9AA204E947072B6089FC4 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertyDict.ice; path = ../slice/Ice/PropertyDict.ice; sourceTree = ""; }; - ADA2F94E4EDD0ADEEE713717 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/invoke/Test.ice; sourceTree = ""; }; - ADE78EC4CCE93F2E0C1D0DD3 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - ADEE63F9B0ACFD0462CA86EB /* OutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OutputStream.h; path = src/IceImpl/OutputStream.h; sourceTree = ""; }; - AE017E010C3B64228A0758B7 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connection.cpp; path = ../cpp/src/Ice/Connection.cpp; sourceTree = ""; }; - AE623D75A48D156E4410F1AD /* libIceLocatorDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AEAA1F26027433EC0170129E /* CommunicatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorF.cpp; path = ../cpp/src/Ice/CommunicatorF.cpp; sourceTree = ""; }; - AF5E56D13752DB41032C1BAB /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/invoke/AllTests.swift; sourceTree = ""; }; - AF698C2D5D97DCCFC7D85451 /* Endpoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.mm; path = src/IceImpl/Endpoint.mm; sourceTree = ""; }; - AFF94B5C18B237C5BCC2586A /* IceStorm.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceStorm.ice; path = ../slice/IceStorm/IceStorm.ice; sourceTree = ""; }; - B05047B0A67FBB7433C356E2 /* OSLogLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OSLogLoggerI.cpp; path = ../cpp/src/Ice/OSLogLoggerI.cpp; sourceTree = ""; }; - B07EBD95BDC4C8F2D8598B89 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/exceptions/TestAMD.ice; sourceTree = ""; }; - B0C70BDF91875EC6706AE12C /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/invoke/TestI.swift; sourceTree = ""; }; - B17B4B38AC0363CAFA24A9E4 /* Shared.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shared.cpp; path = ../cpp/src/IceUtil/Shared.cpp; sourceTree = ""; }; - B183D8B5CE1435DBB960167D /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = test/TestDriver/iOS/AppDelegate.swift; sourceTree = ""; }; - B1925D4741CC08B26DFD1621 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/acm/Server.swift; sourceTree = ""; }; - B1BD6C158D137668766182C6 /* CertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateI.cpp; path = ../cpp/src/IceSSL/CertificateI.cpp; sourceTree = ""; }; - B1D68FCE2A561F7EC2ACDCAA /* ImplicitContextI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContextI.swift; path = src/Ice/ImplicitContextI.swift; sourceTree = ""; }; - B2C1876280F446CCE7B816D9 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B306F3D24CD60364FAF42DBD /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/invoke/Client.swift; sourceTree = ""; }; - B3089717B2724FA70B62A07E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/IceSSL/configuration/Client.swift; sourceTree = ""; }; - B324F3F918968083524C839F /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B33CD6B53C345AC42929BAAC /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B38EBAF76FAFE72C64335C5B /* UtilException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UtilException.cpp; path = ../cpp/src/IceUtil/UtilException.cpp; sourceTree = ""; }; - B396B2BC10CC618A54890177 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/optional/Test.ice; sourceTree = ""; }; - B3D95F9289578400C8DD7B0E /* MetricsAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsAdminI.cpp; path = ../cpp/src/Ice/MetricsAdminI.cpp; sourceTree = ""; }; - B3D9E5A1FEF7356081B23255 /* SlicedData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SlicedData.cpp; path = ../cpp/src/Ice/SlicedData.cpp; sourceTree = ""; }; - B40AB91DB677ED424B70FA69 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/stream/Client.swift; sourceTree = ""; }; - B4E7A74CCB2DED35DB6A1B93 /* Communicator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Communicator.cpp; path = ../cpp/src/Ice/Communicator.cpp; sourceTree = ""; }; - B570B45B289F7B6C00BF559D /* ProtocolInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolInstance.cpp; path = ../cpp/src/Ice/ProtocolInstance.cpp; sourceTree = ""; }; - B68896EE6832BCFFC1CDEA85 /* EndpointSelectionType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointSelectionType.swift; path = src/Ice/EndpointSelectionType.swift; sourceTree = ""; }; - B80DE963F4B8A8CE7A086F4B /* ServantLocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocator.cpp; path = ../cpp/src/Ice/ServantLocator.cpp; sourceTree = ""; }; - B848104E80383628C5A2CF73 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultServant/Test.ice; sourceTree = ""; }; - B972748A398232A92FC108CB /* Buffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Buffer.cpp; path = ../cpp/src/Ice/Buffer.cpp; sourceTree = ""; }; - B99A0FA92B5EA56DCB41FC92 /* EndpointFactoryManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactoryManager.cpp; path = ../cpp/src/Ice/EndpointFactoryManager.cpp; sourceTree = ""; }; - BA03B082E40C34B986B183E0 /* TraceLevels.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceLevels.cpp; path = ../cpp/src/Ice/TraceLevels.cpp; sourceTree = ""; }; - BA23EE95BEDA285AEE6F8A0D /* IceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IceUtil.mm; path = src/IceImpl/IceUtil.mm; sourceTree = ""; }; - BA38B6705BC845C06AFE3CD7 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/udp/TestI.swift; sourceTree = ""; }; - BB2A63494B776FCB8C2A0BCF /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/servantLocator/ServerAMD.swift; sourceTree = ""; }; - BB5D02829AEAB23FFABB5B4F /* WSConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSConnector.cpp; path = ../cpp/src/Ice/WSConnector.cpp; sourceTree = ""; }; - BC33F4F1A32F4DFE8EBB12A9 /* PropertiesI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesI.swift; path = src/Ice/PropertiesI.swift; sourceTree = ""; }; - BC6EBC91E36FD1E5EEDDEA5F /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/facets/Collocated.swift; sourceTree = ""; }; - BCCD7A2776EFD0C816828644 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; - BCF77AA38122CC9F97CA697A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/properties/Client.swift; sourceTree = ""; }; - BD917785198D9351B3909F60 /* ImplicitContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContext.swift; path = src/Ice/ImplicitContext.swift; sourceTree = ""; }; - BDA44D2D537AF18875B1AF6E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/hold/Server.swift; sourceTree = ""; }; - BDF027FA6FECE2B7A5046271 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Glacier2/Info.plist; sourceTree = ""; }; - BE284562963BDD32CEEF2902 /* Timer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Timer.cpp; path = ../cpp/src/Ice/Timer.cpp; sourceTree = ""; }; - BE336D44832D3B066ECDDB06 /* Glacier2Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Glacier2Swift.h; path = src/Glacier2/Glacier2Swift.h; sourceTree = ""; }; - BE4880C3857E46FDB8466BDA /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/location/Server.swift; sourceTree = ""; }; - BECB73EA046F28161933053C /* Notifications.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Notifications.mm; path = ../cpp/src/Ice/ios/Notifications.mm; sourceTree = ""; }; - BF3F7C97E46FF31D7DBAFF42 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BFF0ED34748664151B72A1D2 /* Incoming.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Incoming.cpp; path = ../cpp/src/Ice/Incoming.cpp; sourceTree = ""; }; - C0093783F41BC3D488E98600 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/enums/Test.ice; sourceTree = ""; }; - C045207B0CFBEA2826456197 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = test/TestDriver/iOS/Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - C0AF15B4EEC648C875D97939 /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C0CBBD39BB0BC5077AC80C4D /* AcceptorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AcceptorI.cpp; path = ../cpp/src/IceSSL/AcceptorI.cpp; sourceTree = ""; }; - C0F99C57D798B822698572DE /* BlobjectFacade.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = BlobjectFacade.mm; path = src/IceImpl/BlobjectFacade.mm; sourceTree = ""; }; - C19ED6991B81D0F741D8B390 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C1D0DCF81BE7E3A82E4C8306 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/proxy/TestI.swift; sourceTree = ""; }; - C291B1D3FF41716E62FE1B66 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C32566337C1211D2262DE5B8 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultValue/AllTests.swift; sourceTree = ""; }; - C3665BE59BB614AAE0CDF2FE /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = ../cpp/src/Ice/EventHandler.cpp; sourceTree = ""; }; - C37E81FE388B9D7FAB3C7C2C /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/objects/Server.swift; sourceTree = ""; }; - C4077CF4E039DFF0D6A22D3D /* StringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverter.cpp; path = ../cpp/src/IceUtil/StringConverter.cpp; sourceTree = ""; }; - C42E3590E041824F3DCB8EB0 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/proxy/TestAMD.ice; sourceTree = ""; }; - C4321B1EC69E230431008038 /* Connector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connector.cpp; path = ../cpp/src/Ice/Connector.cpp; sourceTree = ""; }; - C4477AA6B5501589EC90C4F2 /* ValueFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactory.swift; path = src/Ice/ValueFactory.swift; sourceTree = ""; }; - C4920C3131DE43086740705E /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C4B3812EC86A075A591325CD /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C4E36FFCFD779F3349E0B808 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/location/Test.ice; sourceTree = ""; }; - C50755E3F26CA6D9CC706FDC /* TwowaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwowaysAMI.swift; path = test/Ice/operations/TwowaysAMI.swift; sourceTree = ""; }; - C520CFEA9E7F6ABF0BB8DEFE /* LookupI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LookupI.cpp; path = ../cpp/src/IceDiscovery/LookupI.cpp; sourceTree = ""; }; - C5242AA08870B9E96219670E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/optional/Client.swift; sourceTree = ""; }; - C536B3A8A8CD276788EE5A1A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/objects/AllTests.swift; sourceTree = ""; }; - C5E35C99046C1F715F4B4E5F /* Initialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Initialize.swift; path = src/Ice/Initialize.swift; sourceTree = ""; }; - C6DE61C2A91224378F513C93 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/info/Test.ice; sourceTree = ""; }; - C7342B8BA9FB0E6A989E0B06 /* ObjectAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapter.cpp; path = ../cpp/src/Ice/ObjectAdapter.cpp; sourceTree = ""; }; - C7529E7D6E0CE82CABE0D45B /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C91F21E0EC4A9AB95D7E569A /* StreamEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamEndpointI.cpp; path = ../cpp/src/Ice/ios/StreamEndpointI.cpp; sourceTree = ""; }; - C9268509E17D41945A7D998E /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = src/IceImpl/Logger.h; sourceTree = ""; }; - C9DAF4E6A6A0734D36C7039E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/enums/Server.swift; sourceTree = ""; }; - CA042305E180817575383DD8 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/servantLocator/TestAMD.ice; sourceTree = ""; }; - CA06581C1F468D6DFACFA9C2 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CA2F862F15E33C84D1C777E3 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/acm/TestI.swift; sourceTree = ""; }; - CA44AC521456FBE35AC0D96D /* UUID.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UUID.cpp; path = ../cpp/src/IceUtil/UUID.cpp; sourceTree = ""; }; - CA94963DA4E9C2C6BC9D3A1C /* StreamTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamTransceiver.cpp; path = ../cpp/src/Ice/ios/StreamTransceiver.cpp; sourceTree = ""; }; - CABAAA81FDF2158619AA51BB /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CB2C9FFB0BA6BBA3E848504F /* Convert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Convert.mm; path = src/IceImpl/Convert.mm; sourceTree = ""; }; - CB330C24F7E1E7F765F5B40D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/exceptions/Client.swift; sourceTree = ""; }; - CBAE1ADE6A6A3C9DACBF2C68 /* LocatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorI.cpp; path = ../cpp/src/IceDiscovery/LocatorI.cpp; sourceTree = ""; }; - CC8C2F843887BE982892CC85 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/inheritance/AllTests.swift; sourceTree = ""; }; - CD76D50BBE665C06B63D8EA0 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/operations/AllTests.swift; sourceTree = ""; }; - CE3EFB47219D60018ECBCE1B /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CE5EF72F93C8A48F13699E40 /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CF2604CFDFD9F02C2548D7C4 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Thread.cpp; path = ../cpp/src/Ice/Thread.cpp; sourceTree = ""; }; - CF5C1DB557360C9F09A15BB8 /* UdpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpConnector.cpp; path = ../cpp/src/Ice/UdpConnector.cpp; sourceTree = ""; }; - CF60B8793F769C8446821BF9 /* TraceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceUtil.h; path = src/IceImpl/TraceUtil.h; sourceTree = ""; }; - D08B05FD08F60E1D3870BBF2 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/scope/Test.ice; sourceTree = ""; }; - D097943C4BAC00D7111D073F /* PropertiesI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesI.cpp; path = ../cpp/src/Ice/PropertiesI.cpp; sourceTree = ""; }; - D16C752C89102255A084815B /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = src/IceImpl/Convert.h; sourceTree = ""; }; - D1F8FE1A0E059D0118539988 /* FactoryTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTable.cpp; path = ../cpp/src/Ice/FactoryTable.cpp; sourceTree = ""; }; - D238D915AA7B2C9AAA51674C /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - D26101A37129FDCC7F02DE6A /* IceStormSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceStormSwift.h; path = src/IceStorm/IceStormSwift.h; sourceTree = ""; }; - D2DB1A2EBE508ADA82D566B4 /* TrustManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TrustManager.cpp; path = ../cpp/src/IceSSL/TrustManager.cpp; sourceTree = ""; }; - D3548229461616CC182BCEBD /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/binding/Client.swift; sourceTree = ""; }; - D447784B77B4412B60FCFC03 /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/IceGrid/Session.ice; sourceTree = ""; }; - D51058046137C699E489643B /* DynamicLibrary.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DynamicLibrary.cpp; path = ../cpp/src/Ice/DynamicLibrary.cpp; sourceTree = ""; }; - D53779F0A96B303BCCEAEFCD /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = test/TestDriver/iOS/ViewController.swift; sourceTree = ""; }; - D7847B096AC0D34F6A6A83F0 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/servantLocator/TestAMDI.swift; sourceTree = ""; }; - D7A933D36328C77B1C03028B /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceDiscovery/PluginI.cpp; sourceTree = ""; }; - D7FCFB7E350304BE48F9AB70 /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = src/Ice/Object.swift; sourceTree = ""; }; - D82A4CA54A5484DD964DFE39 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/location/AllTests.swift; sourceTree = ""; }; - D8766C6DCAB7BABFE071D77E /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - D8C536D312B9304B2D44C277 /* IPEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPEndpointI.cpp; path = ../cpp/src/Ice/IPEndpointI.cpp; sourceTree = ""; }; - D8DED3CCF7ABF57CB61A22DE /* Plugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Plugin.cpp; path = ../cpp/src/Ice/Plugin.cpp; sourceTree = ""; }; - D8E86E1134A0E4313F11F025 /* RequestHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandlerFactory.cpp; path = ../cpp/src/Ice/RequestHandlerFactory.cpp; sourceTree = ""; }; - D8F7B24CE59A1F99506ABFA9 /* UnsupportedAdminFacet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnsupportedAdminFacet.h; path = src/IceImpl/UnsupportedAdminFacet.h; sourceTree = ""; }; - D90B76046F6620FA39EB66FA /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/IceSSL/configuration/TestI.swift; sourceTree = ""; }; - D92A55DB4A2264AEEDC97D5D /* ImplicitContextI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextI.cpp; path = ../cpp/src/Ice/ImplicitContextI.cpp; sourceTree = ""; }; - DC2321024BC76972FDBEF190 /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = src/Ice/Util.swift; sourceTree = ""; }; - DC52095091A14C3F13099644 /* OperationMode.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = OperationMode.ice; path = ../slice/Ice/OperationMode.ice; sourceTree = ""; }; - DD7C821443F5E0607D4DE6F8 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/facets/Test.ice; sourceTree = ""; }; - DD976A623B36B1B8928E4F84 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/binding/Server.swift; sourceTree = ""; }; - DD9A6F271F1D24C181329DEC /* ConnectionRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionRequestHandler.cpp; path = ../cpp/src/Ice/ConnectionRequestHandler.cpp; sourceTree = ""; }; - DDCD573A768D574A4F55647D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/udp/Server.swift; sourceTree = ""; }; - DE0294898D1572E655754A5B /* IceLocatorDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceLocatorDiscovery.ice; path = ../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice; sourceTree = ""; }; - DE0FE67A381FD4FD9F7DD015 /* Transceiver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.mm; path = ../cpp/src/IceIAP/Transceiver.mm; sourceTree = ""; }; - DE7F0BCED1A80C49DD69EED5 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/ami/AllTests.swift; sourceTree = ""; }; - DE81698975B33852370169B0 /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - DEC08CE6FC9829FC76970ABF /* ObjectAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapter.swift; path = src/Ice/ObjectAdapter.swift; sourceTree = ""; }; - DEE6C673CF16E6CD4116CC12 /* ThreadException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadException.cpp; path = ../cpp/src/IceUtil/ThreadException.cpp; sourceTree = ""; }; - DF00A0B8905692CA5CB21851 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/admin/Client.swift; sourceTree = ""; }; - DF1CA6ABA240EB1DCE0DCA9E /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - DF38F1C85E466EEC07C46EE0 /* RecMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecMutex.cpp; path = ../cpp/src/IceUtil/RecMutex.cpp; sourceTree = ""; }; - DF969510683D898EFE4084C0 /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - DFCE210A780A814AEE2A57AC /* ObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectAdapter.h; path = src/IceImpl/ObjectAdapter.h; sourceTree = ""; }; - E00667716A1C103FAC5F4862 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E00AE826AA0B6D12DE8A593B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/enums/Client.swift; sourceTree = ""; }; - E0417ABE38D6F16A1223B078 /* 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; }; - E12D95BAB303CB972B193B0D /* ControllerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControllerI.swift; path = test/TestDriver/iOS/ControllerI.swift; sourceTree = ""; }; - E22C0DF633DFF1F13E530965 /* Twoways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Twoways.swift; path = test/Ice/operations/Twoways.swift; sourceTree = ""; }; - E3077BF706F4E5C8BA2500DA /* ImplicitContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.mm; path = src/IceImpl/ImplicitContext.mm; sourceTree = ""; }; - E39E0C1B10E19B51E2A7B2E4 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E400CBFEEB7A5C82AA30E765 /* Process.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.mm; path = src/IceImpl/Process.mm; sourceTree = ""; }; - E4387BB8D14955178CF59D4F /* Acceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Acceptor.cpp; path = ../cpp/src/Ice/Acceptor.cpp; sourceTree = ""; }; - E580B9D9CC76D53B7B18272C /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E58B32872CC6A0C1048F6248 /* Descriptor.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Descriptor.ice; path = ../slice/IceGrid/Descriptor.ice; sourceTree = ""; }; - E597DC759086A689098B811C /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/optional/ServerAMD.swift; sourceTree = ""; }; - E5F90D823F008079DDF85638 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/operations/TestAMDI.swift; sourceTree = ""; }; - E67BFC86E01DD26387F81954 /* 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; }; - E70AFD8DC408D542FD307AB5 /* Instrumentation.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instrumentation.cpp; path = ../cpp/src/Ice/Instrumentation.cpp; sourceTree = ""; }; - E73324B4E2A13F9EFC446206 /* EndpointInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointInfoFactory.swift; path = src/Ice/EndpointInfoFactory.swift; sourceTree = ""; }; - E78C7100074203EDD9A86A1A /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/exceptions/Collocated.swift; sourceTree = ""; }; - E7B4AD1931A23E635750A562 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E9082BACB853874884EA0C9C /* StreamConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamConnector.cpp; path = ../cpp/src/Ice/ios/StreamConnector.cpp; sourceTree = ""; }; - E9490D97D26F54E2DE96FE5E /* ValueFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactory.cpp; path = ../cpp/src/Ice/ValueFactory.cpp; sourceTree = ""; }; - EA0E2961E11E1150BA971DB0 /* EndpointI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointI.swift; path = src/Ice/EndpointI.swift; sourceTree = ""; }; - EA6C41DF9E4B34FCEDC9493A /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/objects/Client.swift; sourceTree = ""; }; - EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.ice; path = ../slice/Ice/Process.ice; sourceTree = ""; }; - EB11AE63135A23028AE12F90 /* libIce C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - EB4A88B7EE541CB6AEC177AB /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceGrid/Info.plist; sourceTree = ""; }; - EC2D223A5415E0568A67FC72 /* SecureTransportTransceiverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportTransceiverI.cpp; path = ../cpp/src/IceSSL/SecureTransportTransceiverI.cpp; sourceTree = ""; }; - EC56C57F4AF048D4B7528E44 /* UnsupportedAdminFacet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = UnsupportedAdminFacet.mm; path = src/IceImpl/UnsupportedAdminFacet.mm; sourceTree = ""; }; - ECB41582845B643446FFF5A0 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/objects/Collocated.swift; sourceTree = ""; }; - EDA15621A632772E70EF9DE9 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/scope/Server.swift; sourceTree = ""; }; - EDC332916E29C4DB70EDDC09 /* Process.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Process.h; path = src/IceImpl/Process.h; sourceTree = ""; }; - EE56A762315F2E6B866D2172 /* AdminFacetFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AdminFacetFactory.h; path = src/IceImpl/AdminFacetFactory.h; sourceTree = ""; }; - EE85799B50D901E7EE91B724 /* Communicator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.mm; path = src/IceImpl/Communicator.mm; sourceTree = ""; }; - EFBB16D3C8E2986C4EB8D12D /* Network.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Network.cpp; path = ../cpp/src/Ice/Network.cpp; sourceTree = ""; }; - EFDF1AFD3FE00EFB8D0F40DF /* Properties.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.mm; path = src/IceImpl/Properties.mm; sourceTree = ""; }; - EFE318F6CB3960BD10185486 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/location/TestI.swift; sourceTree = ""; }; - F07B1686893281A6AD084966 /* ImplicitContextF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextF.cpp; path = ../cpp/src/Ice/ImplicitContextF.cpp; sourceTree = ""; }; - F0DB50962CCFE3F777DFA679 /* Context.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Context.ice; path = ../slice/Ice/Context.ice; sourceTree = ""; }; - F0F1E9B04036C7A1BB7003EF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/location/Client.swift; sourceTree = ""; }; - F1096EF87824C8D901CB7EB0 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/operations/ServerAMD.swift; sourceTree = ""; }; - F15FB749EF455BD7CA108204 /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F18DA127CFF3E191C1169914 /* Selector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Selector.cpp; path = ../cpp/src/Ice/Selector.cpp; sourceTree = ""; }; - F20CF9182023E2AB477F4A39 /* libIceDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F2CC389E3BAC5C77C6DFC3B2 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/retry/Client.swift; sourceTree = ""; }; - F32E0BF2C8C888EC8ADD08A9 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/exceptions/Client.swift; sourceTree = ""; }; - F47009097AD17B454D6780A7 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/hold/Test.ice; sourceTree = ""; }; - F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; - F562D9D8A7515B35C2F58350 /* TcpAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpAcceptor.cpp; path = ../cpp/src/Ice/TcpAcceptor.cpp; sourceTree = ""; }; - F5D80A2F30612934EEB5E8AA /* WSAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSAcceptor.cpp; path = ../cpp/src/Ice/WSAcceptor.cpp; sourceTree = ""; }; - F6CE4D7AF84FCCEB30AEE82D /* CommunicatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommunicatorI.swift; path = src/Ice/CommunicatorI.swift; sourceTree = ""; }; - F7CA3B0771AAB23FD2BBAB32 /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F844C21E5E941FB173DD616C /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/IceSSL/Instance.cpp; sourceTree = ""; }; - F84548B73653D4C1742C2AD9 /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = ../certs; sourceTree = ""; }; - F8AC47855542E0FC1068E3A9 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/facets/Server.swift; sourceTree = ""; }; - F8AFAAB080FEF12A06662C69 /* LoggerWrapperI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerWrapperI.h; path = src/IceImpl/LoggerWrapperI.h; sourceTree = ""; }; - F8EC734E3ABEC1B9F8ED7E1C /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/exceptions/ServerAMD.swift; sourceTree = ""; }; - F94A73A9390A0C781AE4A324 /* IAPEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPEndpointInfo.swift; path = src/Ice/IAPEndpointInfo.swift; sourceTree = ""; }; - F95B39360BF7A5A8F3336C02 /* ConnectionF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionF.cpp; path = ../cpp/src/Ice/ConnectionF.cpp; sourceTree = ""; }; - F97826A9DCAFE51593E3E836 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FB64C1942DFC8ACD03DC7591 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - FC48F3FEB7298E0C6FB9C9BD /* Oneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Oneways.swift; path = test/Ice/operations/Oneways.swift; sourceTree = ""; }; - FC6572D6D1B9BB5AD0EBFF57 /* ArgVector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ArgVector.cpp; path = ../cpp/src/Ice/ArgVector.cpp; sourceTree = ""; }; - FC8043E62037681FA6B23AE1 /* RFC2253.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RFC2253.cpp; path = ../cpp/src/IceSSL/RFC2253.cpp; sourceTree = ""; }; - FC93FDF7BB0162F351F94E98 /* LocalException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalException.swift; path = src/Ice/LocalException.swift; sourceTree = ""; }; - FD7C6AB26C45ABFC92DDB247 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/invoke/Server.swift; sourceTree = ""; }; - FD8ABC24EC401B3963964DB0 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/exceptions/ServerAMD.swift; sourceTree = ""; }; - FDD74C1D5D68EB2943068DA2 /* Version.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Version.ice; path = ../slice/Ice/Version.ice; sourceTree = ""; }; - FDF3426F5F604EA6AD6D67FF /* Instrumentation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Instrumentation.swift; path = src/Ice/Instrumentation.swift; sourceTree = ""; }; - FE732A9CB17BA09E4B52F143 /* Transceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Transceiver.cpp; path = ../cpp/src/Ice/Transceiver.cpp; sourceTree = ""; }; - FEB045E2BE5B2791729997F6 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FF2875AE0E0680CDB9C9B1B8 /* libIceDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FFC58AB4E1C5B5964CD9F8D3 /* UserAccountMapper.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = UserAccountMapper.ice; path = ../slice/IceGrid/UserAccountMapper.ice; sourceTree = ""; }; - FFD565105BC4E6A56DCB1853 /* Exception.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.ice; path = ../slice/IceGrid/Exception.ice; sourceTree = ""; }; + 00EA1D526F07AB7E2403ACDE /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/exceptions/TestAMD.ice; sourceTree = ""; }; + 01024283C896A201E69A8C38 /* EndpointF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointF.cpp; path = ../cpp/src/Ice/EndpointF.cpp; sourceTree = ""; }; + 01EC749BC2A7D4FCA7490B47 /* Endpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Endpoint.cpp; path = ../cpp/src/Ice/Endpoint.cpp; sourceTree = ""; }; + 01FA7B3F816F4E1BBAC6D837 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 021E511AD9C9C3E31BB6E815 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 02BEC5D52B98E16486723B15 /* OpaqueEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpaqueEndpointI.cpp; path = ../cpp/src/Ice/OpaqueEndpointI.cpp; sourceTree = ""; }; + 03031EB4AE5379FF32A3AE17 /* WSAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSAcceptor.cpp; path = ../cpp/src/Ice/WSAcceptor.cpp; sourceTree = ""; }; + 030DE03918D9D61428E52F76 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0351F96883BE42489669584D /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0367CC264BC70C8FAE95481D /* OnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnewaysAMI.swift; path = test/Ice/operations/OnewaysAMI.swift; sourceTree = ""; }; + 039C029EE5082592E88E387D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/objects/Test.ice; sourceTree = ""; }; + 03A03F30C5444AE9322EB66F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/hold/Test.ice; sourceTree = ""; }; + 03BAC263458A1F99AADFE0B5 /* InstrumentationI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationI.cpp; path = ../cpp/src/Ice/InstrumentationI.cpp; sourceTree = ""; }; + 03DCA74ACCAE41A0ADDF52A1 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 04ACFF850FB52C42D1D0256D /* SecureTransportUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportUtil.cpp; path = ../cpp/src/IceSSL/SecureTransportUtil.cpp; sourceTree = ""; }; + 055E1371140F03C46BE4933C /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 059F06CFD18E4BA02BA0E025 /* IPEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPEndpointI.cpp; path = ../cpp/src/Ice/IPEndpointI.cpp; sourceTree = ""; }; + 07A58E70155739B4065E5FFC /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Glacier2/Metrics.ice; sourceTree = ""; }; + 07E2F60461505D97899C6536 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 07F1F50A48CFD4DA0680F11B /* 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; }; + 0832C0FE4DD00F57DBF41A23 /* StringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverter.cpp; path = ../cpp/src/IceUtil/StringConverter.cpp; sourceTree = ""; }; + 0875A1294F5D23AA2CB7EB75 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/info/TestI.swift; sourceTree = ""; }; + 0A0A432A404B1F07E7108C66 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0A20490EA6CDB84BD5F7B138 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Ice/Info.plist; sourceTree = ""; }; + 0AE9DC976389286FF16B21B0 /* ProcessI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProcessI.swift; path = src/Ice/ProcessI.swift; sourceTree = ""; }; + 0AFA47DD3A3466A544964C35 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/exceptions/Server.swift; sourceTree = ""; }; + 0B930854633BDF8CF5FFE22C /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/exceptions/TestAMDI.swift; sourceTree = ""; }; + 0C14F40BEFB46405B9613959 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/exceptions/Client.swift; sourceTree = ""; }; + 0C651862FD101870CF346580 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0CD6F8266C083D7C5841D1E9 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/enums/TestI.swift; sourceTree = ""; }; + 0D0C50C25B4B163B7098033F /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0D168BB468F0B9234386530C /* EndpointInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointInfoFactory.swift; path = src/Ice/EndpointInfoFactory.swift; sourceTree = ""; }; + 0D1A1C798CA5E03EACE7C337 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultValue/Client.swift; sourceTree = ""; }; + 0E218220353976A1D5C07CF1 /* Current.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Current.swift; path = src/Ice/Current.swift; sourceTree = ""; }; + 0F1198C1D619743981CCBB42 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 0FE38FC76D319902C8A9D90F /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0FEAB4A7EE835A05B2C8DBB4 /* TraceLevels.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceLevels.cpp; path = ../cpp/src/Ice/TraceLevels.cpp; sourceTree = ""; }; + 0FEE34A113E3DC71D9DB8450 /* BatchOneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOneways.swift; path = test/Ice/operations/BatchOneways.swift; sourceTree = ""; }; + 104B3F85E85A1F464938A580 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/objects/AllTests.swift; sourceTree = ""; }; + 107BEF97F3E06320E00B46A6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Glacier2/Info.plist; sourceTree = ""; }; + 116A9F625EC4AC51F7044FFA /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1239FA44EA72DF60C02E90F3 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/location/Test.ice; sourceTree = ""; }; + 136C9F1CB0181AA674220B28 /* WSEndpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSEndpoint.cpp; path = ../cpp/src/Ice/WSEndpoint.cpp; sourceTree = ""; }; + 137ED7A94BB9E11CC053CEEF /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/servantLocator/Test.ice; sourceTree = ""; }; + 14422400D546329D7D9926DF /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = src/IceImpl/Exception.h; sourceTree = ""; }; + 145ACBB9D8EC5ABDF5109CD9 /* LoggerUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerUtil.cpp; path = ../cpp/src/Ice/LoggerUtil.cpp; sourceTree = ""; }; + 148E0EF0FB954A41B9CB2C83 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 14C3C55AD97EAC4C2C236144 /* EndpointFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactory.cpp; path = ../cpp/src/Ice/EndpointFactory.cpp; sourceTree = ""; }; + 1504B193CDECAF18F430FF2B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/info/Client.swift; sourceTree = ""; }; + 15530AE76DACDC2FD0C54C11 /* FacetMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacetMap.swift; path = src/Ice/FacetMap.swift; sourceTree = ""; }; + 15D305717C35A677E3D0BF24 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/scope/TestI.swift; sourceTree = ""; }; + 16484C090CFD38F73675B0C6 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/objects/TestI.swift; sourceTree = ""; }; + 1683ABE87E8B25BC9C881B82 /* IceDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceDiscovery.ice; path = ../slice/IceDiscovery/IceDiscovery.ice; sourceTree = ""; }; + 17A01CF5F8BB77C282B69730 /* ObjectPrx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectPrx.h; path = src/IceImpl/ObjectPrx.h; sourceTree = ""; }; + 18123528674C5DBEFE8DC183 /* ConnectionInfoF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfoF.cpp; path = ../cpp/src/IceSSL/ConnectionInfoF.cpp; sourceTree = ""; }; + 1A6263E6EB0712A439E75D09 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/acm/Server.swift; sourceTree = ""; }; + 1A8FB36F298F50F55357C8BA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/acm/AllTests.swift; sourceTree = ""; }; + 1AC4B3614730C36B93E6CE83 /* CertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateI.cpp; path = ../cpp/src/IceSSL/CertificateI.cpp; sourceTree = ""; }; + 1B507EB7D03295B2920C11D7 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/objects/Server.swift; sourceTree = ""; }; + 1B68A5626BF6AEC2DC151AA9 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connection.cpp; path = ../cpp/src/Ice/Connection.cpp; sourceTree = ""; }; + 1B6EF30F36318A639D638152 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/optional/Test.ice; sourceTree = ""; }; + 1B7B8369877501337E9D5211 /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1B91C23CCEBC74093AC64126 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultValue/Test.ice; sourceTree = ""; }; + 1BB1E5488617EE9721803F5E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/admin/Server.swift; sourceTree = ""; }; + 1C216F290E9890052BC928A0 /* ServantLocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocator.cpp; path = ../cpp/src/Ice/ServantLocator.cpp; sourceTree = ""; }; + 1C3992E2FB7D669B8812B76F /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 1CA0FCE8D4431A2B65028231 /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1CACDF62E69944DB57D56E47 /* BlobjectFacade.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = BlobjectFacade.mm; path = src/IceImpl/BlobjectFacade.mm; sourceTree = ""; }; + 1CCF2A334B2BAF9588A6DB42 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 1D406B3CFFDCECBDD678B23A /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/stream/Test.ice; sourceTree = ""; }; + 1E052D5C173FB6BC71D76D94 /* Identity.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Identity.ice; path = ../slice/Ice/Identity.ice; sourceTree = ""; }; + 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocatorI.swift; path = test/Ice/servantLocator/ServantLocatorI.swift; sourceTree = ""; }; + 1ED43BAF74AEE3D118146F5D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/scope/Test.ice; sourceTree = ""; }; + 1FF3BD3182DC2FD23143C3E5 /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 20B1410DBC821FBE25FF0338 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/adapterDeactivation/AllTests.swift; sourceTree = ""; }; + 212F6BD6C0162AF0C8440224 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/objects/ServerPrivateAMD.ice; sourceTree = ""; }; + 216CADE6B58D39565FA60EB2 /* ControllerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControllerI.swift; path = test/TestDriver/iOS/ControllerI.swift; sourceTree = ""; }; + 223354CEBDD25407EF26C216 /* SSLConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLConnectionInfo.swift; path = src/Ice/SSLConnectionInfo.swift; sourceTree = ""; }; + 227169D88E42D03490D191BE /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/proxy/AllTests.swift; sourceTree = ""; }; + 22BA0A2A8A538610278E1A67 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/objects/Client.swift; sourceTree = ""; }; + 22EB15880754E559CBAD530E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/IceSSL/configuration/Client.swift; sourceTree = ""; }; + 230B98F91F974374C839BF91 /* StreamTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamTransceiver.cpp; path = ../cpp/src/Ice/ios/StreamTransceiver.cpp; sourceTree = ""; }; + 23F70E58CAF1EDFC2272E758 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 242E9F50378F7C12B118349B /* ObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectAdapter.h; path = src/IceImpl/ObjectAdapter.h; sourceTree = ""; }; + 24630F961292732B29C6782C /* 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; }; + 24DEF718003A036A8518D89B /* 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; }; + 250055BA1C62F324250B2548 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/IceSSL/configuration/Server.swift; sourceTree = ""; }; + 2527DF77271CA0B2E6A8E151 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/IceSSL/configuration/Test.ice; sourceTree = ""; }; + 25F81F514862521A7077DBE1 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/stream/Client.swift; sourceTree = ""; }; + 25FB164477089E05881BEDAF /* IceImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceImpl.h; path = src/IceImpl/IceImpl.h; sourceTree = ""; }; + 261E69F6A52C94909DF014AC /* UnsupportedAdminFacet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnsupportedAdminFacet.h; path = src/IceImpl/UnsupportedAdminFacet.h; sourceTree = ""; }; + 265E767F5805E36FCC9CB2A0 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultServant/AllTests.swift; sourceTree = ""; }; + 272A8F85D1DA874AFB64025B /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/operations/TestAMD.ice; sourceTree = ""; }; + 27DB5A110EBA9310691BDEFB /* RFC2253.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RFC2253.cpp; path = ../cpp/src/IceSSL/RFC2253.cpp; sourceTree = ""; }; + 284CD0E7A9CF17BA732ECF6B /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceIAP/EndpointInfo.cpp; sourceTree = ""; }; + 28BB763CB891D9E198CB4E13 /* LocalObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalObject.swift; path = src/Ice/LocalObject.swift; sourceTree = ""; }; + 28DF745A2D928C90F9F4419D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/admin/Test.ice; sourceTree = ""; }; + 2A2C21B3DB0E4BE665D1475F /* SSLEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLEndpointInfo.swift; path = src/Ice/SSLEndpointInfo.swift; sourceTree = ""; }; + 2A5CBC38E08DDBAA7ABAEF6E /* LoggerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoggerWrapper.swift; path = src/Ice/LoggerWrapper.swift; sourceTree = ""; }; + 2A65FC585E09C2A76B625463 /* Process.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.mm; path = src/IceImpl/Process.mm; sourceTree = ""; }; + 2B615C29B6876A457E770F75 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 2C0D102CF3F4701F3AE046D7 /* BlobjectFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlobjectFacade.h; path = src/IceImpl/BlobjectFacade.h; sourceTree = ""; }; + 2D3CBEB67344D577D334AFA7 /* Selector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Selector.cpp; path = ../cpp/src/Ice/Selector.cpp; sourceTree = ""; }; + 2D5A45BA52FE831A3ADA94B1 /* ValueFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactory.cpp; path = ../cpp/src/Ice/ValueFactory.cpp; sourceTree = ""; }; + 2E5EBCC2B8851DB99485BB9D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/udp/Test.ice; sourceTree = ""; }; + 2F59158F7D5C392A0D1D7CE8 /* ACM.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ACM.cpp; path = ../cpp/src/Ice/ACM.cpp; sourceTree = ""; }; + 2F6CB1CBABB18103F23A7D3B /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/optional/TestAMD.ice; sourceTree = ""; }; + 2FB7753A8D2686CAE06B2CE4 /* ImplicitContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.mm; path = src/IceImpl/ImplicitContext.mm; sourceTree = ""; }; + 2FF3B3842F37F3295343B6C4 /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 301D621EB654AC9C3E4E4E28 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 30561094206DE7E5EB3B1E5B /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 307A532F3C4EB11FF4260F44 /* ServantManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantManager.swift; path = src/Ice/ServantManager.swift; sourceTree = ""; }; + 318B426F0ED72A433F61DD1B /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/operations/Collocated.swift; sourceTree = ""; }; + 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 3207B48B98719A7CBFD2337B /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 322A1089B56E24F412CCAD3A /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceDiscovery/PluginI.cpp; sourceTree = ""; }; + 32C784477F9A73A13FD21C65 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/exceptions/Server.swift; sourceTree = ""; }; + 336BA488F873C8ED6AC70009 /* ObjectAdapterI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapterI.swift; path = src/Ice/ObjectAdapterI.swift; sourceTree = ""; }; + 33E7FA0C07F541066A9CE1C7 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/hold/Client.swift; sourceTree = ""; }; + 344C21FB7DF7176184125859 /* SystemdJournalI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SystemdJournalI.cpp; path = ../cpp/src/Ice/SystemdJournalI.cpp; sourceTree = ""; }; + 34811EA9E8187AFA7F8C8D41 /* TcpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpEndpointI.cpp; path = ../cpp/src/Ice/TcpEndpointI.cpp; sourceTree = ""; }; + 34E8CB61ABA1F28BB7E698FA /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/IceSSL/EndpointI.cpp; sourceTree = ""; }; + 3547A6F171E6B76B9FC63BAE /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/exceptions/TestAMD.ice; sourceTree = ""; }; + 3637F3FA49D41442776DFDA3 /* IncomingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IncomingAsync.cpp; path = ../cpp/src/Ice/IncomingAsync.cpp; sourceTree = ""; }; + 36463ABF4A88FE5854D32E77 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Thread.cpp; path = ../cpp/src/Ice/Thread.cpp; sourceTree = ""; }; + 368C3BEB6491D68E441DBB33 /* StreamEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamEndpointI.cpp; path = ../cpp/src/Ice/ios/StreamEndpointI.cpp; sourceTree = ""; }; + 36A67621EF8B41A02D1A5852 /* IAPEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPEndpointInfo.swift; path = src/Ice/IAPEndpointInfo.swift; sourceTree = ""; }; + 37ABE7A8D0AB189693887A28 /* LocalException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalException.cpp; path = ../cpp/src/Ice/LocalException.cpp; sourceTree = ""; }; + 37F1FC9323F6C45B1AC35F58 /* LoggerAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerAdminI.cpp; path = ../cpp/src/Ice/LoggerAdminI.cpp; sourceTree = ""; }; + 37F4F28FF6999FB92889AECC /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/facets/Server.swift; sourceTree = ""; }; + 38D440D5894319742F272192 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/location/TestI.swift; sourceTree = ""; }; + 390FE2A8AA85FA1F066DB95F /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/exceptions/TestI.swift; sourceTree = ""; }; + 39513FAD1AB0E49430E2633E /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/proxy/ServerAMD.swift; sourceTree = ""; }; + 398A19BC7513CD91E69E4025 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceSSL/EndpointInfo.cpp; sourceTree = ""; }; + 3B77BB5BC36ACDA87B6A69FF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/scope/AllTests.swift; sourceTree = ""; }; + 3BDD0F141EA94FBF630E95CA /* InitializationData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InitializationData.swift; path = src/Ice/InitializationData.swift; sourceTree = ""; }; + 3E03FB734840AA5D7A8F37DA /* IceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceUtil.h; path = src/IceImpl/IceUtil.h; sourceTree = ""; }; + 3E8D76449FAFB649E9E74273 /* LoggerF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerF.cpp; path = ../cpp/src/Ice/LoggerF.cpp; sourceTree = ""; }; + 3ECA877329DEF57B54A08C55 /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceSSL/ConnectionInfo.cpp; sourceTree = ""; }; + 3F0C20EFBCAFF52B67C7AD11 /* BatchOnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOnewaysAMI.swift; path = test/Ice/operations/BatchOnewaysAMI.swift; sourceTree = ""; }; + 3F23A1CF4CB61B7741942A35 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/ami/AllTests.swift; sourceTree = ""; }; + 4067CCA4E285628C8AF454D9 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = src/IceImpl/Config.h; sourceTree = ""; }; + 407EDDBF73A172C9F18D2E55 /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/Ice/EndpointI.cpp; sourceTree = ""; }; + 40E032E865784822992B0432 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/objects/TestAMD.ice; sourceTree = ""; }; + 40EB3E43A832B13BDE8D4720 /* PropertiesAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesAdminI.cpp; path = ../cpp/src/Ice/PropertiesAdminI.cpp; sourceTree = ""; }; + 41551E09D595E50A24EF5892 /* Incoming.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Incoming.cpp; path = ../cpp/src/Ice/Incoming.cpp; sourceTree = ""; }; + 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 419431F09AEC1476FE7B4EFC /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/IceSSL/Instance.cpp; sourceTree = ""; }; + 41ECD3890AF22A95E9667E8F /* ConnectionRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionRequestHandler.cpp; path = ../cpp/src/Ice/ConnectionRequestHandler.cpp; sourceTree = ""; }; + 42391EF6184A353552A00883 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 42A2439DC6CA50093CA51089 /* Admin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Admin.ice; path = ../slice/IceGrid/Admin.ice; sourceTree = ""; }; + 431D8C7B1791F56014305D03 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 4344142A2FC9DF9B5722AFD5 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/servantLocator/TestAMDI.swift; sourceTree = ""; }; + 436D4DDD3929D36CB74E51A9 /* ObjectAdapterI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterI.cpp; path = ../cpp/src/Ice/ObjectAdapterI.cpp; sourceTree = ""; }; + 4419CDC00A0E26DD43BE74BD /* Exception.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.mm; path = src/IceImpl/Exception.mm; sourceTree = ""; }; + 442DF01B56EA1176B35EB3BB /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/info/Test.ice; sourceTree = ""; }; + 44837E3321ED1322DA4D4AE9 /* Current.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Current.cpp; path = ../cpp/src/Ice/Current.cpp; sourceTree = ""; }; + 44BC740D6506C3F1C8458122 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/servantLocator/Client.swift; sourceTree = ""; }; + 44DB441A5970DCEF394351B7 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/binding/Test.ice; sourceTree = ""; }; + 4584337E9DC542C82D3CFB88 /* TestCommon.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestCommon.swift; path = test/TestCommon/TestCommon.swift; sourceTree = ""; }; + 461937D2DA4EABD1399760BD /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 46F06EE2B5CE1BD96013A0E1 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 47085E57F8BA1CB63A56B0BD /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/objects/Test.ice; sourceTree = ""; }; + 47144CDB90451B47BF3BCB58 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/exceptions/Test.ice; sourceTree = ""; }; + 474135D6386C100AE4286B3D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/info/Server.swift; sourceTree = ""; }; + 474923F0179531C32355FF66 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; + 49F7B52E1EBFD001EE29C9E6 /* Descriptor.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Descriptor.ice; path = ../slice/IceGrid/Descriptor.ice; sourceTree = ""; }; + 4A1629C3A24F66265F742150 /* Instrumentation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Instrumentation.swift; path = src/Ice/Instrumentation.swift; sourceTree = ""; }; + 4A1722EBDE6AC496F748A964 /* ImplicitContextF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextF.cpp; path = ../cpp/src/Ice/ImplicitContextF.cpp; sourceTree = ""; }; + 4AEEFDD3BB442CB6663CD683 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/inheritance/Collocated.swift; sourceTree = ""; }; + 4B584730D968F098A9E3D59A /* ConnectionInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionInfoFactory.swift; path = src/Ice/ConnectionInfoFactory.swift; sourceTree = ""; }; + 4D2DBA835FDF24BF6450F945 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/optional/ServerAMD.swift; sourceTree = ""; }; + 4D3E7C6DAF7A1136E094036E /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 4D590A59E3F6155EADC253B1 /* OutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OutputStream.h; path = src/IceImpl/OutputStream.h; sourceTree = ""; }; + 4E783E25173DD3CB4652293E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/interceptor/Client.swift; sourceTree = ""; }; + 4E880F031CD68893D2F69EFB /* IconvStringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IconvStringConverter.cpp; path = ../cpp/src/Ice/IconvStringConverter.cpp; sourceTree = ""; }; + 4EE29237269F09AE7E678DB3 /* Registry.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Registry.ice; path = ../slice/IceGrid/Registry.ice; sourceTree = ""; }; + 4FE15755ADD9B5EE9808D8C1 /* AdminFacetFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdminFacetFactory.swift; path = src/Ice/AdminFacetFactory.swift; sourceTree = ""; }; + 5085715D52B4CB7BA1DD1F9E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/objects/AllTests.swift; sourceTree = ""; }; + 50D65B51261AD566166DB14B /* CollocatedRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CollocatedRequestHandler.cpp; path = ../cpp/src/Ice/CollocatedRequestHandler.cpp; sourceTree = ""; }; + 51106D60A56141EBC49C9318 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/retry/Server.swift; sourceTree = ""; }; + 52104DAB06FD2367D5F4159A /* TcpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpTransceiver.cpp; path = ../cpp/src/Ice/TcpTransceiver.cpp; sourceTree = ""; }; + 52122170F02276E3275AAE2B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultServant/Client.swift; sourceTree = ""; }; + 525EFBA91C000927B6DE6289 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 52675C01C923B38208A8C760 /* SSLInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLInfo.ice; path = ../slice/Glacier2/SSLInfo.ice; sourceTree = ""; }; + 526B263C4E63A5FD88236538 /* UnsupportedAdminFacet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = UnsupportedAdminFacet.mm; path = src/IceImpl/UnsupportedAdminFacet.mm; sourceTree = ""; }; + 52C032A6AC0462FD61E22750 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/timeout/AllTests.swift; sourceTree = ""; }; + 5300396B18CE9C2FCA0A8E2F /* Transceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Transceiver.cpp; path = ../cpp/src/Ice/Transceiver.cpp; sourceTree = ""; }; + 53016732D7F1EE45D95136EB /* AcceptorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AcceptorI.cpp; path = ../cpp/src/IceSSL/AcceptorI.cpp; sourceTree = ""; }; + 532C14EE7E6458905C05203B /* Connector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connector.cpp; path = ../cpp/src/Ice/Connector.cpp; sourceTree = ""; }; + 5349B4AD3076D48E54DF2ADC /* IAPConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPConnectionInfo.swift; path = src/Ice/IAPConnectionInfo.swift; sourceTree = ""; }; + 54B51F429E8B56A715B61412 /* PropertyDict.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertyDict.ice; path = ../slice/Ice/PropertyDict.ice; sourceTree = ""; }; + 54D06539D647623F84D3C475 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/binding/Server.swift; sourceTree = ""; }; + 55A1E522AC3532C58222E061 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/facets/Test.ice; sourceTree = ""; }; + 5621C5105CF819261AA00022 /* UnknownSlicedValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnknownSlicedValue.swift; path = src/Ice/UnknownSlicedValue.swift; sourceTree = ""; }; + 56AD8F95D9A540F5AD97E976 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/invoke/TestI.swift; sourceTree = ""; }; + 5794745FC0FAEAA72EC1AD49 /* PropertiesI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesI.swift; path = src/Ice/PropertiesI.swift; sourceTree = ""; }; + 57B34B2AE4E0AB6BD04A92F0 /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 57EB6F28F663DF2D21006713 /* Value.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../cpp/src/Ice/Value.cpp; sourceTree = ""; }; + 57EE371E56576A8317C8E490 /* IceLocatorDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceLocatorDiscovery.ice; path = ../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice; sourceTree = ""; }; + 5873A42F0D248A8146E98350 /* StringConverterPlugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverterPlugin.cpp; path = ../cpp/src/Ice/StringConverterPlugin.cpp; sourceTree = ""; }; + 59519EE11AE42BA7F6AF270A /* RecMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecMutex.cpp; path = ../cpp/src/IceUtil/RecMutex.cpp; sourceTree = ""; }; + 5A030366430881927186CFFF /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = src/Ice/Util.swift; sourceTree = ""; }; + 5A11FDE12E0158896D2902C2 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 5A1210D169DA5033BD26A6D9 /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 5A2D266EA2336769024DD2B4 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/objects/TestI.swift; sourceTree = ""; }; + 5A3C4393F89E82FE9B0092C3 /* 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; }; + 5A577A9FBA08AE185D53C990 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/acm/TestI.swift; sourceTree = ""; }; + 5A83C77E4B0D0283CA18020F /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/facets/AllTests.swift; sourceTree = ""; }; + 5B2DF10CBEFF10D1055C9690 /* IceStorm.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceStorm.ice; path = ../slice/IceStorm/IceStorm.ice; sourceTree = ""; }; + 5C0743CBF803A996FBBFE2C5 /* Blobject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Blobject.swift; path = src/Ice/Blobject.swift; sourceTree = ""; }; + 5CB34604AACBE72A2D272966 /* FileParser.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FileParser.ice; path = ../slice/IceGrid/FileParser.ice; sourceTree = ""; }; + 5CD54C2AA8BE23781C057132 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/exceptions/ClientPrivate.ice; sourceTree = ""; }; + 5D1D431EC03874A83605E840 /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.ice; path = ../slice/Ice/PropertiesAdmin.ice; sourceTree = ""; }; + 5DC88A1165E0648123E7B24E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/operations/Server.swift; sourceTree = ""; }; + 5E1178133F12C06313829C9E /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/IceGrid/Session.ice; sourceTree = ""; }; + 5E41A2284123652035B9626D /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5E45A803280C9975C7D2D5B6 /* PropertiesAdmin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropertiesAdmin.h; path = src/IceImpl/PropertiesAdmin.h; sourceTree = ""; }; + 5E51180718D104ED58F2E78A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceGrid/Info.plist; sourceTree = ""; }; + 5EB90003DBB8FFCE6E52AB05 /* TrustManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TrustManager.cpp; path = ../cpp/src/IceSSL/TrustManager.cpp; sourceTree = ""; }; + 5F67CEA524FF25FE6949915A /* Acceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Acceptor.cpp; path = ../cpp/src/Ice/Acceptor.cpp; sourceTree = ""; }; + 5FABA39878E8DF7941FB168E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/exceptions/Test.ice; sourceTree = ""; }; + 60F7DD828BF511AA7D9F0CFF /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6229E6CA09F91C68DAB3EBD2 /* InstrumentationF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationF.cpp; path = ../cpp/src/Ice/InstrumentationF.cpp; sourceTree = ""; }; + 622CDB9E04A43DA05E046991 /* libIceDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 623BF93B592B69730EBB8EDA /* MetricsAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsAdminI.cpp; path = ../cpp/src/Ice/MetricsAdminI.cpp; sourceTree = ""; }; + 627B9BCC0B4AD0B6A1F666D2 /* Communicator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.mm; path = src/IceImpl/Communicator.mm; sourceTree = ""; }; + 628F9CA7D6D383137FC355E3 /* Initialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Initialize.swift; path = src/Ice/Initialize.swift; sourceTree = ""; }; + 62FF3521D46F685DF4E667C3 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = ../cpp/src/Ice/Exception.cpp; sourceTree = ""; }; + 6328AE24A94F7B78F7B70026 /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = src/IceImpl/Convert.h; sourceTree = ""; }; + 6331AC6AD612A19D131621A7 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 638F85E5C6C7085DF46F390B /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/exceptions/TestAMDI.swift; sourceTree = ""; }; + 63B3CE5DAEFF4FCC9EC9707D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/properties/Client.swift; sourceTree = ""; }; + 64802AF97D0C116399E87B38 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/optional/TestAMDI.swift; sourceTree = ""; }; + 64B510708D04016FA459B8AA /* Base64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Base64.cpp; path = ../cpp/src/Ice/Base64.cpp; sourceTree = ""; }; + 64F29DD7C25FD1D8C1FBF3CD /* TcpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnector.cpp; path = ../cpp/src/Ice/TcpConnector.cpp; sourceTree = ""; }; + 668C6C0361ED4E7B91231D65 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/exceptions/ServerPrivateAMD.ice; sourceTree = ""; }; + 67DA500D7FCA7E4FCAAEBE8B /* Convert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Convert.mm; path = src/IceImpl/Convert.mm; sourceTree = ""; }; + 680CE9BA4A204FA3FAC93375 /* ImplicitContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImplicitContext.h; path = src/IceImpl/ImplicitContext.h; sourceTree = ""; }; + 68D9BDAF960BA51A8BF52198 /* ProtocolPluginFacade.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolPluginFacade.cpp; path = ../cpp/src/Ice/ProtocolPluginFacade.cpp; sourceTree = ""; }; + 694A7AEF1BC68DE001EACE83 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/IceStorm/Metrics.ice; sourceTree = ""; }; + 695139937807444B932DB3F3 /* UdpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpTransceiver.cpp; path = ../cpp/src/Ice/UdpTransceiver.cpp; sourceTree = ""; }; + 6A3AF2E27A291665E3020008 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/exceptions/ServerAMD.swift; sourceTree = ""; }; + 6AE2E85C3FD16B73660AEE0A /* ConnectorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectorI.cpp; path = ../cpp/src/IceSSL/ConnectorI.cpp; sourceTree = ""; }; + 6B5589624E8C18A764174736 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6B94A0EF9213206745C31CC8 /* ConsoleUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsoleUtil.cpp; path = ../cpp/src/IceUtil/ConsoleUtil.cpp; sourceTree = ""; }; + 6D4683E4EEA3C7003504AE96 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/ami/Test.ice; sourceTree = ""; }; + 6D8A172CCED325773F9ACA7A /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6DA216EEEB74D482231E9424 /* SecureTransportTransceiverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportTransceiverI.cpp; path = ../cpp/src/IceSSL/SecureTransportTransceiverI.cpp; sourceTree = ""; }; + 6DD1ECACDD717AF71AF60969 /* Properties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Properties.h; path = src/IceImpl/Properties.h; sourceTree = ""; }; + 6E18609323F580043357FC2C /* Buffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Buffer.cpp; path = ../cpp/src/Ice/Buffer.cpp; sourceTree = ""; }; + 6E9093C94D6596E3660EDFBB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/proxy/TestI.swift; sourceTree = ""; }; + 6F7C2EFAAD90AF05C836E8AD /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; + 6FB36E85F6FA876D88996239 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/enums/AllTests.swift; sourceTree = ""; }; + 6FCD89BFC87D0D93ADD625C0 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/operations/TestI.swift; sourceTree = ""; }; + 7026D4F8367154C1BE4B7F26 /* ServantLocator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocator.swift; path = src/Ice/ServantLocator.swift; sourceTree = ""; }; + 71DC04F4318C243C54C6708F /* ImplicitContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContext.swift; path = src/Ice/ImplicitContext.swift; sourceTree = ""; }; + 72083FEA504B3EAD2B1B6FE2 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7226B2863E023A530714AEFD /* InputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStream.swift; path = src/Ice/InputStream.swift; sourceTree = ""; }; + 724325600514092A8D262EAA /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/udp/Server.swift; sourceTree = ""; }; + 724C0E53DAF83BB50C3912A4 /* Endpoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.mm; path = src/IceImpl/Endpoint.mm; sourceTree = ""; }; + 72BF04B404B4A6ABFA18A71A /* Connection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Connection.swift; path = src/Ice/Connection.swift; sourceTree = ""; }; + 738DC08C9436E513AAF5205F /* ConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionFactory.cpp; path = ../cpp/src/Ice/ConnectionFactory.cpp; sourceTree = ""; }; + 73CDB2D5673ECFD9B238AAB9 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = ../cpp/src/IceUtil/Time.cpp; sourceTree = ""; }; + 73E18D1ADAE4685486879439 /* OutputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputStream.cpp; path = ../cpp/src/Ice/OutputStream.cpp; sourceTree = ""; }; + 73EC11AA0D472514A88B1245 /* BlobjectAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlobjectAsync.swift; path = src/Ice/BlobjectAsync.swift; sourceTree = ""; }; + 74C4E15A84E6E19C4F7072FE /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/ami/TestI.swift; sourceTree = ""; }; + 762976DF5DE13C4200542E0F /* 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; }; + 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointTypes.ice; path = ../slice/Ice/EndpointTypes.ice; sourceTree = ""; }; + 773839314982B481FB9A5F0B /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 77E66F7A0331FF21333AE3FB /* BatchRequestQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchRequestQueue.cpp; path = ../cpp/src/Ice/BatchRequestQueue.cpp; sourceTree = ""; }; + 7806EDFB543369686343312B /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/exceptions/ServerAMD.swift; sourceTree = ""; }; + 787DA99C9345BD9AFAFE23BC /* MetricsObserverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsObserverI.cpp; path = ../cpp/src/Ice/MetricsObserverI.cpp; sourceTree = ""; }; + 78A482E000141177A98F078F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/proxy/Server.swift; sourceTree = ""; }; + 78E2A2D2066C58262F423252 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/scope/Client.swift; sourceTree = ""; }; + 79108D2FF0232C16468D88DE /* RetryQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RetryQueue.cpp; path = ../cpp/src/Ice/RetryQueue.cpp; sourceTree = ""; }; + 79B81F0D55617DE7F0F891F6 /* Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Properties.swift; path = src/Ice/Properties.swift; sourceTree = ""; }; + 79CF8D4448CD8F1D2AB9367C /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7A5C5A1DEA6B7BB5ABC8C7DA /* InputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputStream.cpp; path = ../cpp/src/Ice/InputStream.cpp; sourceTree = ""; }; + 7AA4D36E0018BED4FBB96979 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/invoke/Server.swift; sourceTree = ""; }; + 7AD3A474B7A1D069CCFC0AFF /* RouterInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RouterInfo.cpp; path = ../cpp/src/Ice/RouterInfo.cpp; sourceTree = ""; }; + 7C3C842B0893C4AC6BA6C676 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7C5527D47B4AA93DCBF5B076 /* Properties.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.mm; path = src/IceImpl/Properties.mm; sourceTree = ""; }; + 7C57A532F569AC857B5BAC2E /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = BuiltinSequences.ice; path = ../slice/Ice/BuiltinSequences.ice; sourceTree = ""; }; + 7CC8B0D3189E1EC893F9D4E0 /* Logger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.mm; path = src/IceImpl/Logger.mm; sourceTree = ""; }; + 7D253A2160FCD5C0E019B003 /* SliceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceInfo.swift; path = src/Ice/SliceInfo.swift; sourceTree = ""; }; + 7DB4E7AC16E22943F389DA62 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/operations/Test.ice; sourceTree = ""; }; + 7DDD904763300878E12820E2 /* Properties.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Properties.cpp; path = ../cpp/src/Ice/Properties.cpp; sourceTree = ""; }; + 7E05BB1F95B7599533D83026 /* Oneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Oneways.swift; path = test/Ice/operations/Oneways.swift; sourceTree = ""; }; + 7E2686345DB372E56936CAA9 /* RequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandler.cpp; path = ../cpp/src/Ice/RequestHandler.cpp; sourceTree = ""; }; + 7E5AB0FB42BD3A39396266AC /* SecureTransportPluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportPluginI.cpp; path = ../cpp/src/IceSSL/SecureTransportPluginI.cpp; sourceTree = ""; }; + 7EC92AF3F5FC050268FC433B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/info/AllTests.swift; sourceTree = ""; }; + 7F87F4E054DCB94D81AF2BE4 /* LocalObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocalObject.h; path = src/IceImpl/LocalObject.h; sourceTree = ""; }; + 7FEE9254105C73243B44FFE6 /* OutputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputStream.swift; path = src/Ice/OutputStream.swift; sourceTree = ""; }; + 7FF54833864397ACE8E797E1 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/retry/Test.ice; sourceTree = ""; }; + 800A52A540F1DA8547B1D22A /* ConnectionF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionF.cpp; path = ../cpp/src/Ice/ConnectionF.cpp; sourceTree = ""; }; + 803EE4274BE0AA9170794297 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceSSL/PluginI.cpp; sourceTree = ""; }; + 806B7171CB7F0D3E6F836117 /* ObjectPrx.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectPrx.mm; path = src/IceImpl/ObjectPrx.mm; sourceTree = ""; }; + 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Ice/Metrics.ice; sourceTree = ""; }; + 80FAAEBFCC3A3BCA918A1783 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 817336550425E7439ECF507B /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 8188B41289F2C073375F3D48 /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 829AECC82389A2F5E05C2960 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/retry/Collocated.swift; sourceTree = ""; }; + 849D140524843186122E2B5D /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 84BCFC47EF30B1DDA82EB275 /* ValueFactoryManagerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactoryManagerI.swift; path = src/Ice/ValueFactoryManagerI.swift; sourceTree = ""; }; + 84E90B07958C12B403F8FF0C /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/ami/Collocated.swift; sourceTree = ""; }; + 850A2787B4B4A3CB3C74175F /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/Glacier2/Session.ice; sourceTree = ""; }; + 85132CE480BFBD047F6718C3 /* LocalException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalException.swift; path = src/Ice/LocalException.swift; sourceTree = ""; }; + 863A6469470E9F1912BC6E4F /* Mutex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mutex.swift; path = src/Ice/Mutex.swift; sourceTree = ""; }; + 864A6D958111A066271C2056 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/objects/TestAMDI.swift; sourceTree = ""; }; + 86A893065E7D543BCF41F626 /* Endpoint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Endpoint.swift; path = src/Ice/Endpoint.swift; sourceTree = ""; }; + 86B4DBD2E99AD2E1D9D13F26 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Glacier2/Router.ice; sourceTree = ""; }; + 86BEC7DFBDFA7D664AA2948F /* Proxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Proxy.swift; path = src/Ice/Proxy.swift; sourceTree = ""; }; + 8748EAC5BFE5A97A4085F0DB /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/location/Client.swift; sourceTree = ""; }; + 8750D48101851C84B89B330A /* LoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerI.cpp; path = ../cpp/src/Ice/LoggerI.cpp; sourceTree = ""; }; + 87DF00D7836869F2204A3283 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 8857A465B5A01F88B674B7C8 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/retry/Client.swift; sourceTree = ""; }; + 88D78672154E80AA54EA998A /* ProxyFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProxyFactory.cpp; path = ../cpp/src/Ice/ProxyFactory.cpp; sourceTree = ""; }; + 89260FC783CBA8E95B993CBB /* Glacier2Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Glacier2Swift.h; path = src/Glacier2/Glacier2Swift.h; sourceTree = ""; }; + 89DACACD2C1AD4F3469CA088 /* SSLEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLEngine.cpp; path = ../cpp/src/IceSSL/SSLEngine.cpp; sourceTree = ""; }; + 8A635A54F2740AA6A0345900 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/hold/TestI.swift; sourceTree = ""; }; + 8AF093375A28D692055B8973 /* libIce C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8D10DFF57F34E081EBF41AFF /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 8D2B953157D627C928A6037A /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/scope/Server.swift; sourceTree = ""; }; + 8D32C52389F2ECA0048EE141 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/proxy/Test.ice; sourceTree = ""; }; + 8DE17663D635E9A4C17FAF76 /* Notifications.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Notifications.mm; path = ../cpp/src/Ice/ios/Notifications.mm; sourceTree = ""; }; + 8E312FEE4E94C01795C8BBD9 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/adapterDeactivation/Test.ice; sourceTree = ""; }; + 8F6E31AAAA244C75D4675291 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/exceptions/Client.swift; sourceTree = ""; }; + 90D35835E18D79ADAB716A16 /* Options.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Options.cpp; path = ../cpp/src/IceUtil/Options.cpp; sourceTree = ""; }; + 910BCA66868673D701E802CE /* Logger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Logger.swift; path = src/Ice/Logger.swift; sourceTree = ""; }; + 911DD6C3D079AAD2A68FE941 /* EndpointFactoryManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactoryManager.cpp; path = ../cpp/src/Ice/EndpointFactoryManager.cpp; sourceTree = ""; }; + 914E1A04B42CF82EDA413850 /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = src/Ice/Object.swift; sourceTree = ""; }; + 9158AF482E818BC8C94168F9 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 91D39023FE37EB3ACD51A678 /* PropertiesAdminI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesAdminI.swift; path = src/Ice/PropertiesAdminI.swift; sourceTree = ""; }; + 9226ABAA5FAF037A4782672D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/servantLocator/TestI.swift; sourceTree = ""; }; + 92A86220A97A6EB0CBFC944D /* ArgVector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ArgVector.cpp; path = ../cpp/src/Ice/ArgVector.cpp; sourceTree = ""; }; + 9330809B9C47D804EF5BC5E3 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 933DB0C83248BF059A7F1C20 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/inheritance/Server.swift; sourceTree = ""; }; + 945016AEA0FC7438D19E19B1 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/enums/Client.swift; sourceTree = ""; }; + 9460E602C8D4CFFC14B8BCDD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/admin/AllTests.swift; sourceTree = ""; }; + 9467375F0E35C0FBB7688528 /* CtrlCHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CtrlCHandler.cpp; path = ../cpp/src/IceUtil/CtrlCHandler.cpp; sourceTree = ""; }; + 94E1968DB24F7AF587425A1C /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/binding/TestI.swift; sourceTree = ""; }; + 9502656F9828A55BF15B904F /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/objects/ClientPrivate.ice; sourceTree = ""; }; + 950579F4E8C4DFF646EF3C51 /* ServantManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantManager.cpp; path = ../cpp/src/Ice/ServantManager.cpp; sourceTree = ""; }; + 950F3E962351FD9CFB2B4F24 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 95F4BB6C69D370E2E329C2E7 /* Object.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../cpp/src/Ice/Object.cpp; sourceTree = ""; }; + 9600C016070409DE6568A37E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/interceptor/Test.ice; sourceTree = ""; }; + 96EF425FFAE7ADC67DD3FD81 /* PluginF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginF.cpp; path = ../cpp/src/Ice/PluginF.cpp; sourceTree = ""; }; + 983A2CBA8E5E46F1AEE78B78 /* Util.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Util.cpp; path = ../cpp/src/IceSSL/Util.cpp; sourceTree = ""; }; + 9883142AAE78B0D29D622EEB /* UdpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpEndpointI.cpp; path = ../cpp/src/Ice/UdpEndpointI.cpp; sourceTree = ""; }; + 98A6F84D22ACDB0E77E825ED /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/exceptions/ServerPrivate.ice; sourceTree = ""; }; + 9947265006AE43D802120A4E /* LocalExceptionFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionFactory.swift; path = src/Ice/LocalExceptionFactory.swift; sourceTree = ""; }; + 998084A78E611312ABCE0CC7 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 99AF422C184D4E445CBFDCA9 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = test/TestDriver/iOS/Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 9A343A525055E169CE399ADF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/acm/Client.swift; sourceTree = ""; }; + 9A65923D521C078DCDBABA31 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/enums/Test.ice; sourceTree = ""; }; + 9ABB967DFEE9C5D24F7C42A2 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/proxy/Collocated.swift; sourceTree = ""; }; + 9B07536035C11C1E0934299F /* LocalObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.mm; path = src/IceImpl/LocalObject.mm; sourceTree = ""; }; + 9B5064B9C0DABEB987B39730 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/adapterDeactivation/TestI.swift; sourceTree = ""; }; + 9B8BE69409380DAA8F3C39DC /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/servantLocator/ServerAMD.swift; sourceTree = ""; }; + 9BDEAE47C449BAB487924895 /* EndpointSelectionType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointSelectionType.swift; path = src/Ice/EndpointSelectionType.swift; sourceTree = ""; }; + 9C004314E294893A903BC059 /* DynamicLibrary.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DynamicLibrary.cpp; path = ../cpp/src/Ice/DynamicLibrary.cpp; sourceTree = ""; }; + 9C83A2E19EDF012C6703AB53 /* OutputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputUtil.cpp; path = ../cpp/src/IceUtil/OutputUtil.cpp; sourceTree = ""; }; + 9C991DFF2AAC0B41C6A1F408 /* CommunicatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommunicatorI.swift; path = src/Ice/CommunicatorI.swift; sourceTree = ""; }; + 9CF9391197314E2751FD072B /* FormatType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatType.swift; path = src/Ice/FormatType.swift; sourceTree = ""; }; + 9D8A8D9D48C0A5E19D013CFA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/inheritance/AllTests.swift; sourceTree = ""; }; + 9E386E5939BE4E20022B34C8 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/operations/Client.swift; sourceTree = ""; }; + 9E63A9A57CB0A4F537AA9E84 /* Forward.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Forward.ice; path = test/Ice/objects/Forward.ice; sourceTree = ""; }; + 9EEEF7EF10C88BEAC2595F7E /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + 9EF15FCC42E00687BF6F16DE /* Communicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Communicator.swift; path = src/Ice/Communicator.swift; sourceTree = ""; }; + 9F972A8E2DD097AC08C4A781 /* Context.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Context.ice; path = ../slice/Ice/Context.ice; sourceTree = ""; }; + 9FADED3C1D00A9AFBE02DACB /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/servantLocator/TestAMD.ice; sourceTree = ""; }; + 9FF873ABC0C688353DDDFBD8 /* libIce C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + A05F7539468832F6A1D1FE8E /* Twoways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Twoways.swift; path = test/Ice/operations/Twoways.swift; sourceTree = ""; }; + A076886379887427EF43CAB5 /* TraceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.mm; path = src/IceImpl/TraceUtil.mm; sourceTree = ""; }; + A0C68422D8FEA96E3FB21520 /* UtilException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UtilException.cpp; path = ../cpp/src/IceUtil/UtilException.cpp; sourceTree = ""; }; + A0D2E40EB5EB722B76219B03 /* Exception.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.ice; path = ../slice/IceGrid/Exception.ice; sourceTree = ""; }; + A18062BD1E33BA800FDE662D /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/proxy/TestAMDI.swift; sourceTree = ""; }; + A1A0F1FD62421D88BD8F6E24 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/objects/Server.swift; sourceTree = ""; }; + A202DC196498CA41452751D4 /* 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; }; + A21AF317B8CCD5205D8A9013 /* ConnectionI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionI.swift; path = src/Ice/ConnectionI.swift; sourceTree = ""; }; + A2308C88106E21E86B64770B /* LocatorInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorInfo.cpp; path = ../cpp/src/Ice/LocatorInfo.cpp; sourceTree = ""; }; + A26AA7659D06EBA6062EF982 /* UdpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpConnector.cpp; path = ../cpp/src/Ice/UdpConnector.cpp; sourceTree = ""; }; + A345098C97240AE15EE3E355 /* HttpParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HttpParser.cpp; path = ../cpp/src/Ice/HttpParser.cpp; sourceTree = ""; }; + A3B0B441C377169B54CEB0DC /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/exceptions/AllTests.swift; sourceTree = ""; }; + A3BB783984531DDB15DA995D /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A3C699CA6ACD42014E3492D1 /* ObjectAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.mm; path = src/IceImpl/ObjectAdapter.mm; sourceTree = ""; }; + A46BEB423DACD76BF4A68A19 /* ObserverHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverHelper.cpp; path = ../cpp/src/Ice/ObserverHelper.cpp; sourceTree = ""; }; + A4E4652309AE1C7E4EEE2D6D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/optional/AllTests.swift; sourceTree = ""; }; + A594F0C1849CEE5DE3E665BC /* SliceFlags.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceFlags.swift; path = src/Ice/SliceFlags.swift; sourceTree = ""; }; + A7091E2B84A51D7D4E990597 /* Controller.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Controller.ice; path = ../scripts/Controller.ice; sourceTree = ""; }; + A70C14B2E0E746A0591AF1D5 /* Service.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Service.cpp; path = ../cpp/src/Ice/Service.cpp; sourceTree = ""; }; + A763F1E9B20B68CAD1D62D3F /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A7CAB2E9D70B8A29FA66E759 /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + A83AFD09B0973C33E42BBA73 /* Value.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Value.swift; path = src/Ice/Value.swift; sourceTree = ""; }; + A83F9EE39111E400F0CF2C17 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/ami/Client.swift; sourceTree = ""; }; + A90D21866BAE0181F737C83C /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = src/IceImpl/Logger.h; sourceTree = ""; }; + A9732906011677017B8FE8A9 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/objects/ServerAMD.swift; sourceTree = ""; }; + AA4F363A3C06C04C4B7E187E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/Ice/Instance.cpp; sourceTree = ""; }; + AA5FA8A0E09A3F3BC61D2909 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/inheritance/Client.swift; sourceTree = ""; }; + AB6A7BC8F66C9728566A553B /* ValueFactoryManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactoryManagerI.cpp; path = ../cpp/src/Ice/ValueFactoryManagerI.cpp; sourceTree = ""; }; + AD5E4ECB4BECCE515728C9F0 /* IceGridSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceGridSwift.h; path = src/IceGrid/IceGridSwift.h; sourceTree = ""; }; + AD73F53FFF7497EA96B009D6 /* libIceDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + AE6FDA00BFC81B40451B476D /* TraceUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceUtil.cpp; path = ../cpp/src/Ice/TraceUtil.cpp; sourceTree = ""; }; + AEAEF19C75C1808D288CE761 /* PropertiesI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesI.cpp; path = ../cpp/src/Ice/PropertiesI.cpp; sourceTree = ""; }; + AEE1AA28CFE3208D7116FD69 /* NativePropertiesAdmin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NativePropertiesAdmin.swift; path = src/Ice/NativePropertiesAdmin.swift; sourceTree = ""; }; + AF198F1B7E492421D2764DC7 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; + AFA7ECC88F49663429276843 /* ObjectAdapterF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterF.cpp; path = ../cpp/src/Ice/ObjectAdapterF.cpp; sourceTree = ""; }; + AFCD3E590B98FDDB60A31C5B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/binding/Client.swift; sourceTree = ""; }; + B08D997BB8E4794D4200FB23 /* PluginManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginManagerI.cpp; path = ../cpp/src/Ice/PluginManagerI.cpp; sourceTree = ""; }; + B15F39FC8689FC1FCB89F477 /* LocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorF.ice; path = ../slice/Ice/LocatorF.ice; sourceTree = ""; }; + B17547CF25F9F6D499E59F4A /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B1834CCC901B15A44359D42A /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/proxy/TestAMD.ice; sourceTree = ""; }; + B19E7F86972D806170B222DD /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/facets/TestI.swift; sourceTree = ""; }; + B1E2C99A6DBB9132B74F4845 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/timeout/Client.swift; sourceTree = ""; }; + B1EAC7DC09EDCDE664A6D412 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/timeout/TestI.swift; sourceTree = ""; }; + B1EB3F3DCA4EBE0AC85EF8E1 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + B2C7879A807808CED706CF2E /* StreamAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamAcceptor.cpp; path = ../cpp/src/Ice/ios/StreamAcceptor.cpp; sourceTree = ""; }; + B2D7894B631B2D78882A8F57 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/invoke/Test.ice; sourceTree = ""; }; + B33C3DAC38D7CB012602F1D5 /* DefaultsAndOverrides.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultsAndOverrides.cpp; path = ../cpp/src/Ice/DefaultsAndOverrides.cpp; sourceTree = ""; }; + B33CD8E30BD014F5C4CA9222 /* Endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Endpoint.h; path = src/IceImpl/Endpoint.h; sourceTree = ""; }; + B354AAD31C61053198AA6359 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/exceptions/Collocated.swift; sourceTree = ""; }; + B3BBBD22CE72373968131654 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/location/AllTests.swift; sourceTree = ""; }; + B47DEFE1E23FC897465087A3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/TestCommon/Info.plist; sourceTree = ""; }; + B4C555F0C2B146AF8D5EC356 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultServant/Test.ice; sourceTree = ""; }; + B51AC77641CEE54D03AFFE1D /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = test/TestDriver/iOS/Assets.xcassets; sourceTree = ""; }; + B51E89BDF16FF1D23C5FFD2F /* ConnectRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectRequestHandler.cpp; path = ../cpp/src/Ice/ConnectRequestHandler.cpp; sourceTree = ""; }; + B538A5094459696C1D929F20 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/inheritance/Test.ice; sourceTree = ""; }; + B5F7B7EC6A1313D15C1D5F60 /* Incoming.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Incoming.swift; path = src/Ice/Incoming.swift; sourceTree = ""; }; + B678F2298413760C49C183ED /* ObjectAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapter.cpp; path = ../cpp/src/Ice/ObjectAdapter.cpp; sourceTree = ""; }; + B67D5EFC0BB322E8EF9ED64C /* NetworkProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkProxy.cpp; path = ../cpp/src/Ice/NetworkProxy.cpp; sourceTree = ""; }; + B6927471763F231278861844 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/ami/Server.swift; sourceTree = ""; }; + B73411F554849A6348D021C0 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/hold/Server.swift; sourceTree = ""; }; + B73CE8E39782ED96D9A0DEE2 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/IceSSL/configuration/AllTests.swift; sourceTree = ""; }; + B7A67EB9002C23EFFD4F4331 /* LocalExceptionDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionDescription.swift; path = src/Ice/LocalExceptionDescription.swift; sourceTree = ""; }; + B7D8895A590B0D9627121789 /* ImplicitContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContext.cpp; path = ../cpp/src/Ice/ImplicitContext.cpp; sourceTree = ""; }; + B7D9D973870D744362BE6CD5 /* Version.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Version.ice; path = ../slice/Ice/Version.ice; sourceTree = ""; }; + B89D7DF2F9D676F96CB9635E /* IceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IceUtil.mm; path = src/IceImpl/IceUtil.mm; sourceTree = ""; }; + BAA42C2BC75B14E584DC7925 /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = test/TestDriver/iOS/AppDelegate.swift; sourceTree = ""; }; + BAEED543910AAE7DB26F2B2E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/timeout/Server.swift; sourceTree = ""; }; + BB0CC3A93C44880C5C9C63D8 /* InputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputUtil.cpp; path = ../cpp/src/IceUtil/InputUtil.cpp; sourceTree = ""; }; + BB0D9576EB2595A8BB30BC3A /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + BBBE5C0E398A59FC82DA5B22 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + BD2FED021766EC049A1603D9 /* ThreadPool.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPool.cpp; path = ../cpp/src/Ice/ThreadPool.cpp; sourceTree = ""; }; + BDC9CA0C36333F0F3089E6C1 /* libIceLocatorDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + BDD807A24DFE6B5DE7A2B384 /* PropertyNames.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyNames.cpp; path = ../cpp/src/Ice/PropertyNames.cpp; sourceTree = ""; }; + BDFC1CF071BE8BC5D2E9356F /* Instrumentation.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instrumentation.cpp; path = ../cpp/src/Ice/Instrumentation.cpp; sourceTree = ""; }; + BE0FC793581C11E605079EEC /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/enums/Server.swift; sourceTree = ""; }; + BE65FDBC053C9E1724BD1F80 /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + BF8E0CCA4C7037506934137C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/retry/AllTests.swift; sourceTree = ""; }; + BFC3A3040FFC8B6EAFCA158D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/acm/Test.ice; sourceTree = ""; }; + BFCBA8D98D4B3EE825A33F52 /* SysLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysLoggerI.cpp; path = ../cpp/src/Ice/SysLoggerI.cpp; sourceTree = ""; }; + BFD8E68C39A86BCA8855BE97 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/operations/TestAMDI.swift; sourceTree = ""; }; + BFE26B6B169CD5B24ED29BB6 /* Communicator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Communicator.cpp; path = ../cpp/src/Ice/Communicator.cpp; sourceTree = ""; }; + C012332733DA4296E9354F12 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Ice/Router.ice; sourceTree = ""; }; + C08D8DDDF0EA2D26B0BC84AF /* IceStormSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceStormSwift.h; path = src/IceStorm/IceStormSwift.h; sourceTree = ""; }; + C121A644BFC70CEBB7B25F34 /* AdminFacetFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AdminFacetFactory.h; path = src/IceImpl/AdminFacetFactory.h; sourceTree = ""; }; + C1389F21CDF06949902AA2EA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultValue/AllTests.swift; sourceTree = ""; }; + C171909B3BA6EDB94DFE7617 /* CommunicatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorF.cpp; path = ../cpp/src/Ice/CommunicatorF.cpp; sourceTree = ""; }; + C18CB03DD5155C1C2B2E8A8D /* Proxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Proxy.cpp; path = ../cpp/src/Ice/Proxy.cpp; sourceTree = ""; }; + C1AF990F79450A9C081DB784 /* libIceLocatorDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C2F6024DEF147BA264B75062 /* Timer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Timer.cpp; path = ../cpp/src/Ice/Timer.cpp; sourceTree = ""; }; + C30C6AF5ACDFF5254E06CAC6 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = ../cpp/src/Ice/EventHandler.cpp; sourceTree = ""; }; + C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C41EA629E4C3C316AA9FF1EC /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/IceSSL/configuration/TestI.swift; sourceTree = ""; }; + C4D165404C1661A879CC7DD9 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/udp/TestI.swift; sourceTree = ""; }; + C56F9DD18C4DA39D6933343C /* Reference.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Reference.cpp; path = ../cpp/src/Ice/Reference.cpp; sourceTree = ""; }; + C57D6F7125325B748CB60975 /* Process.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.ice; path = ../slice/Ice/Process.ice; sourceTree = ""; }; + C61C5DA6F7F7080FC83FE964 /* Exception.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Exception.swift; path = src/Ice/Exception.swift; sourceTree = ""; }; + C630DCAC52483EE71792F541 /* OutgoingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutgoingAsync.cpp; path = ../cpp/src/Ice/OutgoingAsync.cpp; sourceTree = ""; }; + C6BBD6CC1E3C2A7CCF12C722 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/facets/Collocated.swift; sourceTree = ""; }; + C7716384B8702730F154043B /* Protocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Protocol.cpp; path = ../cpp/src/Ice/Protocol.cpp; sourceTree = ""; }; + C7DAB3F7C68697A828A55533 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C7F2189733BCF9C8B454DB75 /* LocalObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalObject.cpp; path = ../cpp/src/Ice/LocalObject.cpp; sourceTree = ""; }; + C86CB8DA4BE954C9B5E50C78 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + C990D1538CF08ABB45003017 /* StringUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringUtil.cpp; path = ../cpp/src/IceUtil/StringUtil.cpp; sourceTree = ""; }; + C99CAAF3E88E8B7B746C43A4 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/adapterDeactivation/Server.swift; sourceTree = ""; }; + C9A9B49B4C419054A03A217A /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/adapterDeactivation/Collocated.swift; sourceTree = ""; }; + CA7BA874372EE36F4313939C /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/udp/Client.swift; sourceTree = ""; }; + CAACEF4FECAF35BE85C20620 /* CommunicatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorI.cpp; path = ../cpp/src/Ice/CommunicatorI.cpp; sourceTree = ""; }; + CABC46485C8349B0AD18EB39 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/proxy/Client.swift; sourceTree = ""; }; + CAD340E5FDD75011A7A85118 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/objects/Collocated.swift; sourceTree = ""; }; + CAE482789CF229EB04641D21 /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceIAP/ConnectionInfo.cpp; sourceTree = ""; }; + CB750BB47FEA9559FDA7DBDF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/servantLocator/AllTests.swift; sourceTree = ""; }; + CCE36EC139B06D18C0C74BA7 /* EndpointI.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.mm; path = ../cpp/src/IceIAP/EndpointI.mm; sourceTree = ""; }; + CD61825057BFBFBB41D39597 /* ServantLocatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocatorF.cpp; path = ../cpp/src/Ice/ServantLocatorF.cpp; sourceTree = ""; }; + CDAA337977433E1B2F9235CA /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/facets/Client.swift; sourceTree = ""; }; + CE088400874CD0479C5DBEB2 /* SlicedData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SlicedData.swift; path = src/Ice/SlicedData.swift; sourceTree = ""; }; + CE428CC2328F83A0C7CF327B /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + CEF23AEA09540063DC96EA21 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/servantLocator/Collocated.swift; sourceTree = ""; }; + CF1DF22CB01FFA62872EB861 /* EndpointI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointI.swift; path = src/Ice/EndpointI.swift; sourceTree = ""; }; + CF258BC66CA2B0FD8CAE93F4 /* Process.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Process.h; path = src/IceImpl/Process.h; sourceTree = ""; }; + CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RemoteLogger.ice; path = ../slice/Ice/RemoteLogger.ice; sourceTree = ""; }; + CF74B405592DF882FC711C4F /* Plugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Plugin.cpp; path = ../cpp/src/Ice/Plugin.cpp; sourceTree = ""; }; + D091865931D88D93A031BF38 /* PermissionsVerifier.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifier.ice; path = ../slice/Glacier2/PermissionsVerifier.ice; sourceTree = ""; }; + D0D533DA9ED4A5E4635718FB /* RequestHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandlerFactory.cpp; path = ../cpp/src/Ice/RequestHandlerFactory.cpp; sourceTree = ""; }; + D2744013C529D8F086422990 /* Locator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Locator.ice; path = ../slice/Ice/Locator.ice; sourceTree = ""; }; + D2951989E4ED79DB5A5BD840 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/invoke/Client.swift; sourceTree = ""; }; + D3D29F00E18E96EA4BA99C36 /* LookupI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LookupI.cpp; path = ../cpp/src/IceDiscovery/LookupI.cpp; sourceTree = ""; }; + D566AB986C3B8546B20A2AE0 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + D59C9EF4D725171D05DFB4A4 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/admin/Client.swift; sourceTree = ""; }; + D678FFB619CCB86A3BC95515 /* RegisterPluginsInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RegisterPluginsInit.cpp; path = ../cpp/src/Ice/RegisterPluginsInit.cpp; sourceTree = ""; }; + D67D8A64DA92416D5A34F56F /* LoggerWrapperI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerWrapperI.h; path = src/IceImpl/LoggerWrapperI.h; sourceTree = ""; }; + D6C1FECEA4BD0E885787FD4F /* OSLogLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OSLogLoggerI.cpp; path = ../cpp/src/Ice/OSLogLoggerI.cpp; sourceTree = ""; }; + D78BFDA010F774B68B1D0943 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + D7B75346EB6CBAA407B78C44 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + D93BB1CEE95D6DBD647C1F66 /* ProtocolInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolInstance.cpp; path = ../cpp/src/Ice/ProtocolInstance.cpp; sourceTree = ""; }; + D9AB56DEA09A30139787C127 /* ImplicitContextI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextI.cpp; path = ../cpp/src/Ice/ImplicitContextI.cpp; sourceTree = ""; }; + D9B018EB339EB9B238FEA4EC /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + D9C8139F340DD5FDBEB54718 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceStorm/Info.plist; sourceTree = ""; }; + D9CB8DB9B6B0E2D1D5F87503 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/optional/Client.swift; sourceTree = ""; }; + DA48BF39278DC0F70FC216F1 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DAE2612261AFAD9F126ABB05 /* PropertiesF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesF.cpp; path = ../cpp/src/Ice/PropertiesF.cpp; sourceTree = ""; }; + DAF9FCD3ACA9EEA864C2B86E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/hold/AllTests.swift; sourceTree = ""; }; + DB8F279A2779E598731A5601 /* DispatchInterceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DispatchInterceptor.cpp; path = ../cpp/src/Ice/DispatchInterceptor.cpp; sourceTree = ""; }; + DB925F57794F16F2734D08B4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/invoke/AllTests.swift; sourceTree = ""; }; + DBCA8B1BC5811A9ADA86ED97 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/inheritance/TestI.swift; sourceTree = ""; }; + DC4BB865E8CEF17247111E25 /* UUID.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UUID.cpp; path = ../cpp/src/IceUtil/UUID.cpp; sourceTree = ""; }; + DC6A10305F53DC63F7512C53 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DC845309A10111AC9F465C23 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/timeout/Test.ice; sourceTree = ""; }; + DC8A0F90321653214F836FE0 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/exceptions/TestI.swift; sourceTree = ""; }; + DCD020CA509B152C8FCE8798 /* SHA1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SHA1.cpp; path = ../cpp/src/Ice/SHA1.cpp; sourceTree = ""; }; + DCD2DF2F490C333AFC34E403 /* Clash.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Clash.ice; path = test/Slice/escape/Clash.ice; sourceTree = ""; }; + DD36CD2D320F5953C219BB79 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/objects/Client.swift; sourceTree = ""; }; + DD94218AB8FC82917266BC56 /* PropertiesAdmin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.mm; path = src/IceImpl/PropertiesAdmin.mm; sourceTree = ""; }; + DDA135F8EED8A314941972ED /* Connector.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.mm; path = ../cpp/src/IceIAP/Connector.mm; sourceTree = ""; }; + DDC1C3A7852A6CED90889B91 /* ImplicitContextI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContextI.swift; path = src/Ice/ImplicitContextI.swift; sourceTree = ""; }; + DDC7FB9EE1A071911E227CCB /* IceSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceSwift.h; path = src/Ice/IceSwift.h; sourceTree = ""; }; + DED512BF02792FFCA52AE9E7 /* Initialize.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Initialize.cpp; path = ../cpp/src/Ice/Initialize.cpp; sourceTree = ""; }; + DF136F6E80A01F3C0C176C6D /* ReferenceFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReferenceFactory.cpp; path = ../cpp/src/Ice/ReferenceFactory.cpp; sourceTree = ""; }; + DF62AE44540279291FBE8D46 /* WSConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSConnector.cpp; path = ../cpp/src/Ice/WSConnector.cpp; sourceTree = ""; }; + DFC73C8E6BFAEC766CD5D25C /* ObjectAdapterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterFactory.cpp; path = ../cpp/src/Ice/ObjectAdapterFactory.cpp; sourceTree = ""; }; + E14A708807768953B2379FD5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/optional/Server.swift; sourceTree = ""; }; + E1EFF9091F708E5F6F0704B3 /* CountDownLatch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CountDownLatch.cpp; path = ../cpp/src/Ice/CountDownLatch.cpp; sourceTree = ""; }; + E2F8371C545BE433208E8DD7 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/adapterDeactivation/Client.swift; sourceTree = ""; }; + E2FA87620B046FCEDC51EC6F /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + E301CB7A257886B9F8760B6A /* TraceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceUtil.h; path = src/IceImpl/TraceUtil.h; sourceTree = ""; }; + E3CCDC8C722C7D08EBC696FC /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/optional/TestI.swift; sourceTree = ""; }; + E3EA671155BA0EAA870D5F9A /* ValueFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactory.swift; path = src/Ice/ValueFactory.swift; sourceTree = ""; }; + E4538B61358B8FF03922527F /* Transceiver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.mm; path = ../cpp/src/IceIAP/Transceiver.mm; sourceTree = ""; }; + E47484D1D3DDA643748FDA4D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Slice/escape/Client.swift; sourceTree = ""; }; + E4CF2077C814A7377DDEE06A /* ClassResolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassResolver.swift; path = src/Ice/ClassResolver.swift; sourceTree = ""; }; + E59CE567CD0339935ECE174A /* StreamSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamSocket.cpp; path = ../cpp/src/Ice/StreamSocket.cpp; sourceTree = ""; }; + E69319811BB2583A562A6C15 /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = test/TestDriver/iOS/ViewController.swift; sourceTree = ""; }; + E6DE756B8F16EAC3E04B2798 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/admin/TestI.swift; sourceTree = ""; }; + E73B68A6243CD1C6AED87DFC /* SecureTransportEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportEngine.cpp; path = ../cpp/src/IceSSL/SecureTransportEngine.cpp; sourceTree = ""; }; + E8132A588131377350457A8A /* Logger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Logger.cpp; path = ../cpp/src/Ice/Logger.cpp; sourceTree = ""; }; + E826DFF464DFB4529E54EDC3 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + E83D440DF808EEF167018B4F /* Cond.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cond.cpp; path = ../cpp/src/Ice/Cond.cpp; sourceTree = ""; }; + EAD58C233C507C35334F1CC6 /* ThreadException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadException.cpp; path = ../cpp/src/IceUtil/ThreadException.cpp; sourceTree = ""; }; + EB3E29E74373ED5837D69F8F /* Shared.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shared.cpp; path = ../cpp/src/IceUtil/Shared.cpp; sourceTree = ""; }; + EBFF2AF509B1E71159DAECB0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/services/Client.swift; sourceTree = ""; }; + EC5127D1D96F5CE76CAD417D /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = ../cpp/src/IceUtil/Random.cpp; sourceTree = ""; }; + EC5A98A70A93BDFDEE865FFA /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = test/TestDriver/macOS/main.swift; sourceTree = ""; }; + ECBCA68A7DF08B26236F860F /* Connection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.mm; path = src/IceImpl/Connection.mm; sourceTree = ""; }; + ECDDA9E457926810C0ACEE3D /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + ED06DCDDD71F35AD778BBAFD /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + ED3424BFB9925A53577998FB /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + EDBFE1FE5EDAEEC44CD547C8 /* SlicedData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SlicedData.cpp; path = ../cpp/src/Ice/SlicedData.cpp; sourceTree = ""; }; + EDC1F699D0173A3262ED8783 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + EE247C4C7515E78416734AE3 /* TwowaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwowaysAMI.swift; path = test/Ice/operations/TwowaysAMI.swift; sourceTree = ""; }; + EE7ED7DB9B386CE9925025BF /* FactoryTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTable.cpp; path = ../cpp/src/Ice/FactoryTable.cpp; sourceTree = ""; }; + EEAE2A3EA52301D744C2238C /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/objects/ServerPrivate.ice; sourceTree = ""; }; + EEBC1443F0873050E5877725 /* TcpAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpAcceptor.cpp; path = ../cpp/src/Ice/TcpAcceptor.cpp; sourceTree = ""; }; + EEF3B6F7FB1EF2FF9ED73F1C /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = ../certs; sourceTree = ""; }; + F0972B81E52AE5219A0359F6 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/servantLocator/Server.swift; sourceTree = ""; }; + F0C7FC0099BBEEB7A76312E5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/location/Server.swift; sourceTree = ""; }; + F189089F52472441A777F912 /* 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; }; + F1C224C87B599183A478B5D2 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F214226923D4CB01CC6D14A1 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = ../cpp/src/IceUtil/FileUtil.cpp; sourceTree = ""; }; + F28FEA3804836A76EBCC3C60 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/operations/AllTests.swift; sourceTree = ""; }; + F2A40A64B4DEF4BDCD6C4742 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/retry/TestI.swift; sourceTree = ""; }; + F33540D27F8ABA588FF9CFCF /* Communicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Communicator.h; path = src/IceImpl/Communicator.h; sourceTree = ""; }; + F345F9DBACA2072E0A394485 /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = test/TestDriver/iOS/Base.lproj/Main.storyboard; sourceTree = ""; }; + F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = OperationMode.ice; path = ../slice/Ice/OperationMode.ice; sourceTree = ""; }; + F48616BFFA819BAF3F8B2FB8 /* Key.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Key.ice; path = test/Slice/escape/Key.ice; sourceTree = ""; }; + F4BB047ECA2C8C6E40017B49 /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F4F40F40EF79D1EFF0672F1C /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceLocatorDiscovery/PluginI.cpp; sourceTree = ""; }; + F52E3E551A8F8B3901BECC9B /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = test/IceSSL/configuration/../../../../cpp/test/IceSSL/certs; sourceTree = ""; }; + F5453037F24499786E84EA5C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/binding/AllTests.swift; sourceTree = ""; }; + F5C15610EC1017BFB49E9711 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F5FA2C9600E75B1FCD46907F /* UserAccountMapper.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = UserAccountMapper.ice; path = ../slice/IceGrid/UserAccountMapper.ice; sourceTree = ""; }; + F674217427A6BB4384E16370 /* Plugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Plugin.swift; path = src/Ice/Plugin.swift; sourceTree = ""; }; + F71C3042386918BE757DF8CE /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Connection.h; path = src/IceImpl/Connection.h; sourceTree = ""; }; + F71CAE50CD7CB4E7134D9FF3 /* FactoryTableInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTableInit.cpp; path = ../cpp/src/Ice/FactoryTableInit.cpp; sourceTree = ""; }; + F7449FB4230AD540975DB4BA /* SecureTransportCertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportCertificateI.cpp; path = ../cpp/src/IceSSL/SecureTransportCertificateI.cpp; sourceTree = ""; }; + F790BD181E9C75D456202B50 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Ice/RouterF.ice; sourceTree = ""; }; + F7D45D866B9B71FB7B57D0E6 /* WSTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSTransceiver.cpp; path = ../cpp/src/Ice/WSTransceiver.cpp; sourceTree = ""; }; + F81F55C1F60FE16B0090352D /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F8335B51360FAD4A3774DBDC /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + F9015DB7A4BC8F5780598C5B /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + F904E8A5B6258EDDEAF27A63 /* Network.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Network.cpp; path = ../cpp/src/Ice/Network.cpp; sourceTree = ""; }; + F90B2EAB5D9DCC4178F8B5B4 /* ObjectAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapter.swift; path = src/Ice/ObjectAdapter.swift; sourceTree = ""; }; + FA5C303C571C95B5220FFF77 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/operations/ServerAMD.swift; sourceTree = ""; }; + FC642EC1944D582B3C794113 /* ConnectionI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionI.cpp; path = ../cpp/src/Ice/ConnectionI.cpp; sourceTree = ""; }; + FCAD591DFA056E0732E8B3CD /* StreamConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamConnector.cpp; path = ../cpp/src/Ice/ios/StreamConnector.cpp; sourceTree = ""; }; + FCB4094FE32B8606EBB93BFB /* OptionalFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalFormat.swift; path = src/Ice/OptionalFormat.swift; sourceTree = ""; }; + FCD16A3852D0DAB23E0EE5DB /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; + FE6326CC8423A7AB2E011674 /* LocatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorI.cpp; path = ../cpp/src/IceDiscovery/LocatorI.cpp; sourceTree = ""; }; + FEF066D96D048F2BABE04F9D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/exceptions/AllTests.swift; sourceTree = ""; }; + FF2962E761A9438BFEC2D88A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/udp/AllTests.swift; sourceTree = ""; }; + FFC516B10AAE738541716320 /* MutexProtocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MutexProtocol.cpp; path = ../cpp/src/IceUtil/MutexProtocol.cpp; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 02145A4BA1F1929F98277F3F /* Frameworks */ = { + 005B437BB6B9EA9D3B1560FC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 4C24A8CD9D0C8D7685AD6971 /* Foundation.framework in Frameworks */, + E9D4065FB98B8BA5D1CF4CF2 /* Ice.framework in Frameworks */, + 2DCC8625E26DFEBB97885357 /* PromiseKit.xcframework in Frameworks */, + 876383C8BA8FB8C7D16C9EC7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 03969FEBBB361D750052E277 /* Frameworks */ = { + 025B6189E378EB18C2A71A5A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 886792273848EFE3371AF4A0 /* Foundation.framework in Frameworks */, - 95308B332BCF771798ACDEC4 /* Ice.framework in Frameworks */, - A2054992B8CE70C1D425598A /* PromiseKit.xcframework in Frameworks */, - A70BDA756A9B7A42C3D2E7A6 /* TestCommon.framework in Frameworks */, + 261B9A566F38A036CDB8DE0E /* Foundation.framework in Frameworks */, + 884F27683269E2801ACE7C0A /* Ice.framework in Frameworks */, + C70348CFD282CD7E9956F6B2 /* PromiseKit.xcframework in Frameworks */, + 86C17A041AA408728024B6FC /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 064811FE756C489F622F4CD2 /* Frameworks */ = { + 037E516FE64DE570D02254C1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + AF8FE0C50A15AC26FA776A54 /* Foundation.framework in Frameworks */, + C56FDA0CA4EF0501C54973D7 /* Ice.framework in Frameworks */, + BA21EFBD517019D1C6150A7E /* PromiseKit.xcframework in Frameworks */, + F2CC30135189BB8CCEFAE021 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 087369FE5CBF4571DF972817 /* Frameworks */ = { + 069414FE53A2F019B35C8575 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - ADF9112F19AD07C8800D540D /* Foundation.framework in Frameworks */, - BFCE75841F61F771CAF746A0 /* Ice.framework in Frameworks */, - B442190D15696E1BD40AC0FA /* PromiseKit.xcframework in Frameworks */, - 8FAA4DFC51B140E7F4A29684 /* TestCommon.framework in Frameworks */, + 56AD68617C9B97CE16FE249C /* Foundation.framework in Frameworks */, + 1128B88B961ACEA596CB93AD /* Glacier2.framework in Frameworks */, + 349E070F6B2DE7E59497C907 /* Ice.framework in Frameworks */, + CF6AB1F9705D6C8677FF89CE /* IceGrid.framework in Frameworks */, + 8C2809F5A2251554B81E0B1E /* IceImpl.framework in Frameworks */, + 2EDD058114B565BAEDC043DA /* IceStorm.framework in Frameworks */, + B22FBD4C587015173AD9D77D /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 08D5DEC763216EFC1714B04D /* Frameworks */ = { + 081497A296EC3CCA4C40B339 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9D547612C029D152FB04C251 /* Foundation.framework in Frameworks */, - 1CD23F61AA300C404E3EDF16 /* Ice.framework in Frameworks */, - D4A1C9D30C746269BFA9A55B /* PromiseKit.xcframework in Frameworks */, - 0DF8356374955C9B994ED912 /* TestCommon.framework in Frameworks */, + 032977B58E34C07E224720B1 /* Foundation.framework in Frameworks */, + 5431C4CE5BB733E53F0F9203 /* Ice.framework in Frameworks */, + 8FD90978C32771C60C66A1B3 /* PromiseKit.xcframework in Frameworks */, + 6D763E251CF4A3EDA13C0878 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0B2EA7B0E2BF1399F90BE3D3 /* Frameworks */ = { + 0A5A6F26717A3996E52368C1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E3AE7D6BB6F62823F1F29326 /* Cocoa.framework in Frameworks */, - B6A9C7628EAFE90B4E3A712C /* Ice.framework in Frameworks */, - 995CFAC19FD43A7F67F2805C /* PromiseKit.xcframework in Frameworks */, - A08EA856B344D8B4281F2EA9 /* TestCommon.framework in Frameworks */, + 31F9687277498B7F842EB5FD /* Cocoa.framework in Frameworks */, + 3325ADD3479FEC8BA570AF2F /* Ice.framework in Frameworks */, + 58081577C9F8D17931A251CC /* PromiseKit.xcframework in Frameworks */, + BA286EB1F512C5B543AF5AC4 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 175CCCC5FCB49F902F463E46 /* Frameworks */ = { + 0C3751B66DB52BE417ACB866 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D05E6544BA2CB7987F563B1F /* Cocoa.framework in Frameworks */, - 892E2CEDBBCFBCA1F9E5E748 /* Ice.framework in Frameworks */, - F6D94346785E7673ABB2546C /* PromiseKit.xcframework in Frameworks */, - A51F2D0C28544E74C78FF985 /* TestCommon.framework in Frameworks */, + 0E9CAFCAAF91B99E5E3B78AA /* Cocoa.framework in Frameworks */, + 102C37E47846D0EF9C75646F /* Ice.framework in Frameworks */, + 8C96F0589C61C0B6A80E2344 /* PromiseKit.xcframework in Frameworks */, + C010724525B52C5A463A8FDB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 178A5969AEF5E652580EBB8E /* Frameworks */ = { + 19E0136E5E3D6011F179469E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A0E4EE3E2A26F93DD54B7C0E /* Foundation.framework in Frameworks */, - 9A2CF04ECC8D5D4C2D846B51 /* Ice.framework in Frameworks */, - 71E7FD03D2194AEEBD0238D4 /* PromiseKit.xcframework in Frameworks */, - 3E74B978028C2095E79EB6F2 /* TestCommon.framework in Frameworks */, + AAD2FE4692EF082485AF00E2 /* Foundation.framework in Frameworks */, + 7DE141A9B23DA02F0F055EDD /* Ice.framework in Frameworks */, + D278E7D277416C7F214529E1 /* PromiseKit.xcframework in Frameworks */, + CD0DB9D40B994E3361586193 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1E65DBE7DC8A2E40F2C43394 /* Frameworks */ = { + 1B6AD232686499FD379C8D3A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 032CDFAF5171057955003F6F /* Cocoa.framework in Frameworks */, - CF06DF1CD1F897F0B4FC9334 /* Ice.framework in Frameworks */, - 1679AD08C0C9C2C1F16F34D5 /* PromiseKit.xcframework in Frameworks */, + 34B480D08F5C42E959C213B6 /* Cocoa.framework in Frameworks */, + BDD293FFBBCAF18CE46EAACC /* Ice.framework in Frameworks */, + D47DEAD489D43174DEC9EAA7 /* PromiseKit.xcframework in Frameworks */, + 091491A97A97617EBEAD6299 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2082B5F21E7931D8FA85345F /* Frameworks */ = { + 1C2F5D9DD80E131EDDDFDE86 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 77A5A85603F8961F35C8AF6F /* Cocoa.framework in Frameworks */, - 6AB4C973B7D16E7747B38FA1 /* Ice.framework in Frameworks */, - 04A1DA6F0688902360376C8B /* PromiseKit.xcframework in Frameworks */, - A299361F94B7BFDD16C90C78 /* TestCommon.framework in Frameworks */, + FA136CDF6745B64905666CB8 /* Ice.framework in Frameworks */, + E3FAC91AC3A221C72A12F062 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 21510EAF7B78BB23AC67243D /* Frameworks */ = { + 1D5ADA908DE06BC749FE9250 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 71D95D2B091D6FBAFDF2CEA2 /* Cocoa.framework in Frameworks */, + B9F9B086A2833382BF004F04 /* Ice.framework in Frameworks */, + 588EA7C63CAEBB5D835D832E /* PromiseKit.xcframework in Frameworks */, + D788154F37EAF6DC77E8A713 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 21C4C789E5F3EA71CD5CF519 /* Frameworks */ = { + 263422E847C3519A29D2E784 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F318F86CFB6818B759FC35CB /* Foundation.framework in Frameworks */, - 23B13295432D1028F187ACBB /* Ice.framework in Frameworks */, - 508534B8EF19FD5FEFDAB249 /* PromiseKit.xcframework in Frameworks */, - E3BED76CFEA93576EE34FA5D /* TestCommon.framework in Frameworks */, + 4D93CBB4538E3DA31B4D9509 /* Cocoa.framework in Frameworks */, + 3522FABD1EAB55A5FCD80BAD /* Ice.framework in Frameworks */, + B483ED17520E297AC2B9B39D /* PromiseKit.xcframework in Frameworks */, + CD75B00F0A0905F76163A248 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2427D63A3B5F1BB78ECD9AF4 /* Frameworks */ = { + 26527728902FD83C9C57750B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B51C69F89B80DA2E1B401184 /* Cocoa.framework in Frameworks */, - DFC84089EB6C7C3DDCD8C1DA /* Ice.framework in Frameworks */, - 012112A57534E1CE8702B653 /* PromiseKit.xcframework in Frameworks */, - 838BFA0588472EC15995940E /* TestCommon.framework in Frameworks */, + A584340DA436567581A583C4 /* Cocoa.framework in Frameworks */, + DF5AF2DB0CD91E715F08042F /* Ice.framework in Frameworks */, + 3995F0DB81BD82BF3885934B /* PromiseKit.xcframework in Frameworks */, + 22F2D81B8BC499073EEA3139 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 276DBE3784B7F1938128A4AA /* Frameworks */ = { + 272C3895D070D354391C8BA6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5F4F659E54E72A3923BA7E05 /* Cocoa.framework in Frameworks */, - EAC6DC63B415344EA963D8EF /* Ice.framework in Frameworks */, - DA2350D29732E5C260DE2CA3 /* PromiseKit.xcframework in Frameworks */, - 097C6736BC34ABC39A8351DE /* TestCommon.framework in Frameworks */, + C133EBD074843BFA71B97D18 /* Cocoa.framework in Frameworks */, + AFFF5BDE06F6577570923410 /* Ice.framework in Frameworks */, + 7FF35CA4033D4C38B644418F /* PromiseKit.xcframework in Frameworks */, + 37770D76CEE3C0C488D51DB9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 29E7FE84EEFDD7AABA0F0BC6 /* Frameworks */ = { + 2A98404D5208BD65E3DB6CFE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 99691C23E18FA58A76148837 /* Foundation.framework in Frameworks */, - 2E45A5F32909E7742E003A3E /* Glacier2.framework in Frameworks */, - 6160F950A58B054D12D963B3 /* Ice.framework in Frameworks */, - 24764EDFE67BB619256DB8A1 /* IceGrid.framework in Frameworks */, - 53DBB4E9FCB30BF1603CDD09 /* IceImpl.framework in Frameworks */, - FF0B5151635EB14F6DD91125 /* IceStorm.framework in Frameworks */, - 14746EC5AA5E6852B4CF1A09 /* PromiseKit.xcframework in Frameworks */, + 597EA71AA303CB1111E243AC /* CFNetwork.framework in Frameworks */, + 803E001EC76589670027F378 /* ExternalAccessory.framework in Frameworks */, + F1719AF12FB78B7049AA9FD0 /* Foundation.framework in Frameworks */, + A937746D7A9A826BCE10211D /* libIce C++11 iOS.a in Frameworks */, + 06B2695071931FFA1A1464F1 /* libIceDiscovery C++11 iOS.a in Frameworks */, + DB3C3EE5FE1AAA6E08A2EFF7 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */, + 1810E68E33A0ACFD934AFB00 /* Security.framework in Frameworks */, + 9840A8A84FFBAAB19CAD7ED2 /* UIKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 29F7D70D4B2EECA821F5FD18 /* Frameworks */ = { + 2B9175E1C1EA89B3C928F148 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1903737A0771106A96717857 /* Cocoa.framework in Frameworks */, - 2050EC34186FAE6CB7F93137 /* Glacier2.framework in Frameworks */, - BB5A13609DB215E6583AE660 /* Ice.framework in Frameworks */, - B751C81FEFAFDD39434EE7D0 /* IceGrid.framework in Frameworks */, - F380C17C1B690A521FF15647 /* IceImpl.framework in Frameworks */, - 7B32D189930B4349E8C9426A /* IceStorm.framework in Frameworks */, - E1C1934BB4D16C16FA11BF0F /* PromiseKit.xcframework in Frameworks */, + A662F061162797200A98E0EC /* Foundation.framework in Frameworks */, + 5AAA4A39F5881DFE802FFC5A /* Ice.framework in Frameworks */, + 5B740A799439BF031F3F8F4C /* PromiseKit.xcframework in Frameworks */, + 078873E8343ED44589D57347 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2A26AFD76C88C4ED00EC5A87 /* Frameworks */ = { + 2BDFA0906C8CC084EDE73074 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A61F4624E2918A651B93C920 /* Cocoa.framework in Frameworks */, - 11AC317527695E10D90CCF69 /* Ice.framework in Frameworks */, - 6C1F10D34E51D607BD0F87B3 /* PromiseKit.xcframework in Frameworks */, - 619741963C59007C6D22C8E3 /* TestCommon.framework in Frameworks */, + D3B3D1B2437C0DD09B6CEE9A /* Cocoa.framework in Frameworks */, + 33AFEF0D5E65901C071C1C94 /* Ice.framework in Frameworks */, + 45DFE7C0805EDAD8916ACA5D /* PromiseKit.xcframework in Frameworks */, + 17F49F00DA7907DF1A4E0251 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2A44D1A66AB186DC218C9267 /* Frameworks */ = { + 31CB0600F2CAEE6EA284EA25 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 45D97239DCB34F0BBA90095C /* Foundation.framework in Frameworks */, - 5F90BC3E8434F37052D21747 /* Ice.framework in Frameworks */, - ACB7DB01983490A9612C897F /* PromiseKit.xcframework in Frameworks */, - 83B35AF48C1D0E68EEA97C55 /* TestCommon.framework in Frameworks */, + 82B32CCF10B1F159B23F414C /* Foundation.framework in Frameworks */, + C229FBDBE235645EB6EFCFB1 /* Ice.framework in Frameworks */, + 9204AB6155317BC251CAD0A0 /* PromiseKit.xcframework in Frameworks */, + 2690FE6928C7301F1171F909 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2B00EBB47E4EAC248DDA3414 /* Frameworks */ = { + 3325493FAA42575AE19695CA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 312CC70877750CBB72C8F7E1 /* CFNetwork.framework in Frameworks */, - 9EEDE9281FF63C59FC1F4F61 /* ExternalAccessory.framework in Frameworks */, - A6A4F6000E0E0B56DE6090AD /* Foundation.framework in Frameworks */, - 73BA33E3EFB8A6AA4EA8370A /* libIce C++11 iOS.a in Frameworks */, - 693E823DD3F152A5CADF56ED /* libIceDiscovery C++11 iOS.a in Frameworks */, - BC10A8AD3F1353F4DE35FE57 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */, - EBB341E040CC4BB228CA4D2A /* Security.framework in Frameworks */, - D73AB114429EB5C8F292E4DC /* UIKit.framework in Frameworks */, + CEC11090BE9E6A05461EA506 /* Foundation.framework in Frameworks */, + DA8014084036AD0878EFE6B4 /* Ice.framework in Frameworks */, + 152A2F71AF65CC663076A8DF /* PromiseKit.xcframework in Frameworks */, + 146EBA16C94B5008FDE7403F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2CE99FB7116C174046BE3325 /* Frameworks */ = { + 3550CE4A87D9A268B0F8D568 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7D9A72846D731A74B0073C3F /* Foundation.framework in Frameworks */, - 42A86FABE59B3FE293E609BD /* Ice.framework in Frameworks */, - 871F735E7EAB7F895E82DC66 /* PromiseKit.xcframework in Frameworks */, - FAED9875AA5B9E82F4A02F8C /* TestCommon.framework in Frameworks */, + 42623FB3A22D5A9F538E4DC8 /* Foundation.framework in Frameworks */, + 11A48FF3B68288AB5E816FF6 /* Ice.framework in Frameworks */, + 7B0C4BBE8B0F40F09EF7E559 /* PromiseKit.xcframework in Frameworks */, + C9CBD4B8E1EDB9F225E35A75 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2D9A966D2716D3CFC47D3599 /* Frameworks */ = { + 36AE2A39F37E56B4843D2E8E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 555CB23B8C24752C88C5B6EA /* Ice.framework in Frameworks */, - 320718ACEB70681D16ED8ECD /* PromiseKit.xcframework in Frameworks */, + BD58792E9664068AC18DB148 /* Cocoa.framework in Frameworks */, + D5FD92490339073AB667D41E /* Ice.framework in Frameworks */, + D14A961DE90957A1DE3ECFB3 /* PromiseKit.xcframework in Frameworks */, + 0645496C3D42A3DC78DD91A3 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 302D051B046B3E092DA99465 /* Frameworks */ = { + 3790CD79595DF06C45CEE0FF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8038411DFDFD19DB768C7556 /* Foundation.framework in Frameworks */, - 2D871DDE4EE8354CDB49D4DD /* Ice.framework in Frameworks */, - 29756C9388DCC609F53AA0EE /* PromiseKit.xcframework in Frameworks */, - E40F05BA8489AAB761152686 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3084CA5812893FCE6D836435 /* Frameworks */ = { + 39742AA4710C285CB1EFE2D3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4FF9C92D07C52E796BDDAB09 /* Cocoa.framework in Frameworks */, - 763D4BF738EB436A2FBA4012 /* Ice.framework in Frameworks */, - 3022D517E87995A09D4BC94B /* PromiseKit.xcframework in Frameworks */, - 2663574BFC2BBB885AD1EB71 /* TestCommon.framework in Frameworks */, + CCC5479C72B8428C472A3F11 /* Glacier2.framework in Frameworks */, + E6034BDF230D6B0B34DABAEA /* Ice.framework in Frameworks */, + EB41A9285C877C256F1A70B3 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 34E048EEB77B533379B37619 /* Frameworks */ = { + 3BF962457683C43CAE343F04 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2428C45CF7F8C77251D81519 /* Cocoa.framework in Frameworks */, - 46D59D884D1C0E7DC99CDD01 /* Ice.framework in Frameworks */, - 223A3C463C46FFB1A1C7A729 /* PromiseKit.xcframework in Frameworks */, - D857103C966CAC42C206AD91 /* TestCommon.framework in Frameworks */, + 448B14F91C6D399FDA3014C9 /* Cocoa.framework in Frameworks */, + A32E44E679E01526BD2A5F58 /* Ice.framework in Frameworks */, + F4620828FEF5F90B32A5800F /* PromiseKit.xcframework in Frameworks */, + 82C6992869FA3F7AEEFB8028 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 35CB773F3DD0BA966844D75D /* Frameworks */ = { + 3C210FAAB58E0C567CD28F01 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B57E0BFEFD3ADCAA3672C527 /* Foundation.framework in Frameworks */, - 1B7FB8AA326578FE9F3B8CB6 /* Ice.framework in Frameworks */, - FC9A18D11F913E0934D5A0B1 /* PromiseKit.xcframework in Frameworks */, - 25ED7008DC9D4BCB5FB028A6 /* TestCommon.framework in Frameworks */, + 1521C12DDE5DAE9FE9AB3F30 /* Cocoa.framework in Frameworks */, + 8E49509F5EDD277F127B6B68 /* Ice.framework in Frameworks */, + 1FEE55628BA976D57C338860 /* PromiseKit.xcframework in Frameworks */, + 222664EF561E9C7447CD18FA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 388E9580B94953505195FEBE /* Frameworks */ = { + 40A269BD9826552BC032BC09 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C64011C9443A5988B170EEFA /* Foundation.framework in Frameworks */, - FD4D122A3A32EFED9A1AD109 /* Ice.framework in Frameworks */, - F4ECCD3D34061B012E0217C9 /* PromiseKit.xcframework in Frameworks */, - 61CE9D15ACE85029660C1E95 /* TestCommon.framework in Frameworks */, + 00C09BF817F1FC244083540A /* Foundation.framework in Frameworks */, + 1C94225DAECAEB72F170D53E /* Ice.framework in Frameworks */, + AE02E09E476B221CF30F36F9 /* PromiseKit.xcframework in Frameworks */, + 5E8AA985162D4E0887DEEC48 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3D7A25D1EE4C9E48E88051CC /* Frameworks */ = { + 41FA3FD769D91A0E8AE7454A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 14364F4CC32A010ABCF07B23 /* Foundation.framework in Frameworks */, - 1A4A097C8ADF70A2A325F054 /* Ice.framework in Frameworks */, - 646707A36F91F0631B887A31 /* PromiseKit.xcframework in Frameworks */, - A4BA56050938ECDC2307189C /* TestCommon.framework in Frameworks */, + 01901D0CA9AB329495A1E95C /* Foundation.framework in Frameworks */, + 9C8E0442382FED4435A53AD0 /* Ice.framework in Frameworks */, + CD710D8A5348968E403F003D /* PromiseKit.xcframework in Frameworks */, + C2B40613244370A8EDB5DCDA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 40F7429554A2A9A4849030D6 /* Frameworks */ = { + 4684350444729A6A319E1284 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8ED527CE33CD5E98D4395F3B /* Foundation.framework in Frameworks */, - ADF818ED72CA48CD036E5C7A /* Ice.framework in Frameworks */, - 0CD0FD273978A1755A6B4970 /* PromiseKit.xcframework in Frameworks */, - 88252DBE558C77A619038DA4 /* TestCommon.framework in Frameworks */, + 9272CDC35077990FA0FC3DCE /* Foundation.framework in Frameworks */, + 81BE959AA332DC19671071D5 /* Ice.framework in Frameworks */, + 5918480D42F258D0ACB415D9 /* PromiseKit.xcframework in Frameworks */, + 85D9C620E963F263940E25BA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 411BC2E979F16D9840188D82 /* Frameworks */ = { + 49FD36C12156CBE1BCDA70BA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 69D52BE18FAD6179243A7A8D /* Glacier2.framework in Frameworks */, - EA6F9A7E36D0151F968863D5 /* Ice.framework in Frameworks */, - 9CF2EC8A140F3674CD8B4181 /* PromiseKit.xcframework in Frameworks */, + 003712874379D9EE3808F9E4 /* Cocoa.framework in Frameworks */, + 8A6F23CC7C2EA4096E2BD01A /* Ice.framework in Frameworks */, + 04ECAF5D65B993AA6FEC994B /* PromiseKit.xcframework in Frameworks */, + 051D59C471FDC1528AE471E0 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 420529DB53BBF371DAE6E507 /* Frameworks */ = { + 508B96393867923BC906A09E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 224D05F8A42170C8A0D3E680 /* Foundation.framework in Frameworks */, - AB8E4E81E5F4E854A6C82F46 /* Glacier2.framework in Frameworks */, - 21B635C52B34460B49A820BF /* Ice.framework in Frameworks */, - 820CF3DC6B93BFB98EFF91A7 /* IceGrid.framework in Frameworks */, - C614BDC1295291BDCF41EC71 /* IceStorm.framework in Frameworks */, - D55538B35122E4FB0FB98280 /* PromiseKit.xcframework in Frameworks */, - EB89F1F6CBD6E83E06BB9DBB /* TestCommon.framework in Frameworks */, + A360FF1048E84450C8886EE0 /* Cocoa.framework in Frameworks */, + 2D142331D29BB284AC8162D4 /* Glacier2.framework in Frameworks */, + BF11A2E22C96DF6D2F20C2E8 /* Ice.framework in Frameworks */, + 4BB6AD5396EB3BFB1C7CFEE2 /* IceGrid.framework in Frameworks */, + 28B350177A5BD9DD6EF6B94B /* IceImpl.framework in Frameworks */, + 1D986F77322F7C729F6DA3CB /* IceStorm.framework in Frameworks */, + A24BCC7D7FAF0CCB238BA4CF /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4C3C29F984E93E0100AB7AFE /* Frameworks */ = { + 50B0F1CB22D8E290284E2335 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 662B2AD968F77F28EA555291 /* Foundation.framework in Frameworks */, + 52DABF5017CEBE347B8FF3DF /* Ice.framework in Frameworks */, + 20AF9AF75EC41050513EC67E /* PromiseKit.xcframework in Frameworks */, + 3930F2425131AD14D8FF8A43 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4EC993DF9E8B39A33AE23F57 /* Frameworks */ = { + 5269BCF68D782B17111EB24C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9A9846D0A51010D3639834DC /* Ice.framework in Frameworks */, - 54393BFF1D83F3E981FC1B7F /* PromiseKit.xcframework in Frameworks */, + 2D8A2B0415C308C0966E225C /* Foundation.framework in Frameworks */, + 349CE6230F2A35214A748F97 /* Ice.framework in Frameworks */, + 61418C2C561D98E1C1F6B9B8 /* PromiseKit.xcframework in Frameworks */, + 4B50AADFE0DFF81D7EC0883E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5343EC8E9CB2335071D16552 /* Frameworks */ = { + 5E97C010CB866337653CFB8F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DB6297628D1095BCA0E76407 /* Foundation.framework in Frameworks */, - C93FBD32CB01DCF0DD912B6B /* Ice.framework in Frameworks */, - 577DA2B9A1B14718E505178F /* PromiseKit.xcframework in Frameworks */, - 35EB6B845246A5713F9BBFD7 /* TestCommon.framework in Frameworks */, + AA86ECCB42291589A2FA8685 /* Cocoa.framework in Frameworks */, + 2471D7580A492BA30C327A3B /* Ice.framework in Frameworks */, + 7035E7C74D577600296FC4EC /* PromiseKit.xcframework in Frameworks */, + E16774B99E16AD2190AB35F9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 546F9C744238A6F9072920D3 /* Frameworks */ = { + 60ABDADDDC38AA635910F2CA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3C02A4508CD8276D0BC6AE3B /* Foundation.framework in Frameworks */, - 7073B348FF70E9085EB2A77D /* Ice.framework in Frameworks */, - 145F9CA921B6F461C83FCAF5 /* PromiseKit.xcframework in Frameworks */, - 65ECC0458CBF7904A506CDAE /* TestCommon.framework in Frameworks */, + E2713AC292F225DC79A9B3E2 /* Cocoa.framework in Frameworks */, + 2A37350E682D5A065F5B6DDB /* Ice.framework in Frameworks */, + 1AD6E3BB5F9392CE05DEBC03 /* PromiseKit.xcframework in Frameworks */, + 9DEDEAC427E2D4CC5FA01358 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 54B7DC8576899174CD5F5E11 /* Frameworks */ = { + 62133C0C24515EE7545AB9AE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6A2B255A91EC1F933473BFC4 /* Cocoa.framework in Frameworks */, - 8044DF34E086E9207057E6AC /* Ice.framework in Frameworks */, - 3F0A65C9CFB288F98E19799B /* PromiseKit.xcframework in Frameworks */, - 6A2E71B1352408738F0F77AB /* TestCommon.framework in Frameworks */, + 0D88CA2C06D1F4F887B5AD7C /* Cocoa.framework in Frameworks */, + C14C7601DEFF28252384A909 /* Ice.framework in Frameworks */, + 062DBE92B3468C7729A921A8 /* PromiseKit.xcframework in Frameworks */, + 58C9E17F05FC8E47E55F4734 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58A231E3D638B9E194D10CE9 /* Frameworks */ = { + 6382299CF1FDF5AD99DD38D2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 218C0D1499948F72482D3D56 /* Cocoa.framework in Frameworks */, - 147A63836AD5956D3ECEC6AC /* Ice.framework in Frameworks */, - 8DA3A5C96FF54B27DA669C22 /* PromiseKit.xcframework in Frameworks */, - 59EB77479D063ADC9B2D323B /* TestCommon.framework in Frameworks */, + A00DBD175CCF5E771E9AB871 /* Cocoa.framework in Frameworks */, + 8747793A01A5290FCF7E9443 /* Ice.framework in Frameworks */, + 8CD5F889DC3FF2A42135DB08 /* PromiseKit.xcframework in Frameworks */, + 4EF1CFD1E2EE8924554E5C30 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58E259C652EBBA9CD409A673 /* Frameworks */ = { + 68F4EF15A024D9AC4E1FC830 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DAC9E92FDB209CC2D715EBEF /* Cocoa.framework in Frameworks */, - 908E05CD6BF7384E988465D4 /* Ice.framework in Frameworks */, - F2FB54DF4CFFC0C16DFC2A9A /* PromiseKit.xcframework in Frameworks */, - AA903940404A6CF2F522CABE /* TestCommon.framework in Frameworks */, + 0963E3DCFF980E77CD4D47CD /* Cocoa.framework in Frameworks */, + 811836C9C6097B09684DFADF /* Ice.framework in Frameworks */, + AD33B193FA912407F5246BC2 /* PromiseKit.xcframework in Frameworks */, + 0CE0F813D4862C914D0C9E72 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5A4A7A62BEC7614262A688B0 /* Frameworks */ = { + 695749BABD39ACED89E9C8D9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3B719984FE998AA0FB6BBDA3 /* Cocoa.framework in Frameworks */, - 1D6832EE3EF206F282899D92 /* Ice.framework in Frameworks */, - 3DACF73B85EFF125789135F2 /* PromiseKit.xcframework in Frameworks */, - CBF3C2474A9C447BA9905F4E /* TestCommon.framework in Frameworks */, + 820B6CBB783F9CEFD62E1D50 /* Foundation.framework in Frameworks */, + 837206647A5313B84B7F7F8E /* Ice.framework in Frameworks */, + 0FB5C078A576612E4E33EB1C /* PromiseKit.xcframework in Frameworks */, + 48DE4F93CF3D8599F8ED2897 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5D3DFFC3743FCAF57F57CE46 /* Frameworks */ = { + 6F0DD81F4EBEBA7C063C23F2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B5B9BBB7EE1A047FC5216ECB /* Cocoa.framework in Frameworks */, - 79EE0B3F30DD627D8DAE8E41 /* Ice.framework in Frameworks */, - BD4486E46D3800D9836FEBBF /* PromiseKit.xcframework in Frameworks */, - 1D1E1580C280FCD5F7E083C5 /* TestCommon.framework in Frameworks */, + 6730EEF5F5B89AE65927B627 /* Cocoa.framework in Frameworks */, + 21F58D3D37C9BD39EF88E7F0 /* Ice.framework in Frameworks */, + 8907AF3381428A2BD48E84F6 /* PromiseKit.xcframework in Frameworks */, + A6CE25350F236044EE002834 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5F05253C5A8A79C321DDCB72 /* Frameworks */ = { + 6F8A42B394C3B6FE549EAB36 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8B7711A7F655C504F16447D7 /* Cocoa.framework in Frameworks */, - 3C37A292CA67085CEE563AB3 /* Ice.framework in Frameworks */, - 6E9B566339D8E8339FD384F7 /* PromiseKit.xcframework in Frameworks */, - 07D1B834520C1898CBA51C6A /* TestCommon.framework in Frameworks */, + D18E260F1A9A7066AE2CC205 /* Foundation.framework in Frameworks */, + 1D0BDB269D00BAFC70F46DD0 /* Ice.framework in Frameworks */, + 1C47E77C80C89D12679DF230 /* PromiseKit.xcframework in Frameworks */, + 1BD2E3999984D85A4EF3D0C4 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 661293AD0849287E44FB3DCA /* Frameworks */ = { + 701D5A05AC73B5E99EDDB98D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E7A7932B3C78022433B7A206 /* Foundation.framework in Frameworks */, - A3C813D0284A183F2C9013D2 /* Ice.framework in Frameworks */, - 139F52A98D1CCD15770A0116 /* PromiseKit.xcframework in Frameworks */, - 853CD8ABEAC9F6D9859387F1 /* TestCommon.framework in Frameworks */, + 63AB354CFAB355710CBFC26E /* Cocoa.framework in Frameworks */, + 773F119B5F739641ED07115E /* Ice.framework in Frameworks */, + 791772C90FDE29215C4F2171 /* PromiseKit.xcframework in Frameworks */, + 59BC1051CB1DA24224ED354E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 674D555CD654C7FBFE580E45 /* Frameworks */ = { + 728C617FAC0D36682AF6F66B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 52917832550139896AF4EB59 /* Foundation.framework in Frameworks */, - 31D90E02CD1D5F627995B0C4 /* Ice.framework in Frameworks */, - 24117E70E408C9928171B08E /* PromiseKit.xcframework in Frameworks */, - D2512B6E3C43F4F50507FD7A /* TestCommon.framework in Frameworks */, + D09BD849E9D7E5ED34430C35 /* IceImpl.framework in Frameworks */, + BEBC27F6443E69C633906888 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6BC6831B4A3610FAEB76BA80 /* Frameworks */ = { + 76A4F6532798D1C82908625F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3CA9BFC67A994E2EB8C16368 /* Foundation.framework in Frameworks */, - 9B73A6F077FB75A43F7DAE02 /* Ice.framework in Frameworks */, - 0AACFC0CB4701C0AEC238865 /* PromiseKit.xcframework in Frameworks */, + E7AE9FD4848A0DEA84955812 /* Cocoa.framework in Frameworks */, + 16B2DAB7DE56037E06A5CBB0 /* Ice.framework in Frameworks */, + 6B998AE3EED188FC283FAD7D /* PromiseKit.xcframework in Frameworks */, + 74E30723342E074FA9B5FC62 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6BE280D99DD511DCADE857EC /* Frameworks */ = { + 797DA8AF647A2A9F25C35A1D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 578E85F2ACBF6FE077558453 /* Foundation.framework in Frameworks */, - 267222EAE40D9DA3C9C180FC /* Ice.framework in Frameworks */, - 1162E9441073AA4F6A9DF60B /* PromiseKit.xcframework in Frameworks */, - 71B3704D98093EDE2A1731A9 /* TestCommon.framework in Frameworks */, + 3C7DBC6F0CD83B98E01D4CD7 /* libIce C++11 macOS.a in Frameworks */, + 2944A746A0AD5BCC69AB906E /* libIceDiscovery C++11 macOS.a in Frameworks */, + DDBC1A2ECE67BCE6A3AB284C /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */, + BF82F5A44B264BBAF92AB412 /* Security.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6BECAD3E97375981EE3515ED /* Frameworks */ = { + 7AC019BA153CC3CDA1B7BEA1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2380BC330BB2CA8F85F10D07 /* Foundation.framework in Frameworks */, - 9204A2F66BD793877C2C1FBF /* Ice.framework in Frameworks */, - D547B10B9B0582311BAAB31A /* PromiseKit.xcframework in Frameworks */, - 2C0BD819B021415A2B55D8EF /* TestCommon.framework in Frameworks */, + 0E000047E932B1183B39C94E /* Foundation.framework in Frameworks */, + F8B4CFF46EC035E9DC16D409 /* Ice.framework in Frameworks */, + 97686E8519D1BA7C21C8B3FF /* PromiseKit.xcframework in Frameworks */, + 3DB2DC5A60D2FEF8C7AEBF0B /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6C415DBE0B9BAD7355AC1C82 /* Frameworks */ = { + 7DD5C3E0177ECE6F29D32A29 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4EA6D84C757D5BE591C26638 /* Cocoa.framework in Frameworks */, - 16C00F03E881EF04CBC89C27 /* Ice.framework in Frameworks */, - E634E724E3309B5C4CD661DB /* PromiseKit.xcframework in Frameworks */, - DB75EB4EE7CE66C80C5EE26C /* TestCommon.framework in Frameworks */, + A02F2F29E635A0818DAF6DF6 /* Foundation.framework in Frameworks */, + BF4C3C6393D615E64998F9C5 /* Ice.framework in Frameworks */, + 40A42C5D3C188B503233C8B7 /* PromiseKit.xcframework in Frameworks */, + 573E061CC78DFC9E0D5B62B6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6EE23CD5E6D19F5FB0EF8DD5 /* Frameworks */ = { + 7EDB7FDCBBAED3744E467F30 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D2EFEB9E0E91C48FBDE17656 /* Foundation.framework in Frameworks */, - 17C7F68FAB5E3D3EFE5570B5 /* Ice.framework in Frameworks */, - 65982AA7C6095AD8475F8D4F /* PromiseKit.xcframework in Frameworks */, - E91FC07C9A154CE7C6F5689F /* TestCommon.framework in Frameworks */, + 4C316D1D7AC7677AEF8E39CA /* IceImpl.framework in Frameworks */, + AA679D0494B1BE11F9957A54 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 74AD6CC9618C6D38756D66C6 /* Frameworks */ = { + 83BD0D83E2FC3631EC13D1C0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 190E4907D07E6FEA0FDAEA14 /* Foundation.framework in Frameworks */, - F72F1331B81005123FEB13DC /* Ice.framework in Frameworks */, - 5C953EC1A4D29E2D3FC233B1 /* PromiseKit.xcframework in Frameworks */, - 9D45C5E5D8433A8C25F178F7 /* TestCommon.framework in Frameworks */, + 076BC5E8463ED699DC235A28 /* Glacier2.framework in Frameworks */, + CEB0D53A4A329405D2FF00FC /* Ice.framework in Frameworks */, + B35831336B9C8525C5766A9C /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7A628065EC2915DCE28B89DF /* Frameworks */ = { + 846C353E64D36876248ED510 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9990F28A57C58C7DED5AC285 /* Cocoa.framework in Frameworks */, - 1577BE946FF741D2C8024A12 /* Ice.framework in Frameworks */, - 1DDDC080F31CA429D204E8A6 /* PromiseKit.xcframework in Frameworks */, - A216308FFA7F4D18363061AB /* TestCommon.framework in Frameworks */, + 8B54F2D56D337B2A5F4BF378 /* Cocoa.framework in Frameworks */, + BEA7F85366FA14A434C73117 /* Ice.framework in Frameworks */, + C584B5702105825549FB4F80 /* PromiseKit.xcframework in Frameworks */, + 34D0F93C003DC567F3914394 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7E8D149538FE376E6FFABB85 /* Frameworks */ = { + 8483359526C8FBDD033C8253 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A9A2C6A2EAABE0514D916CFA /* Foundation.framework in Frameworks */, - CF646D3A12CB83166392CEE6 /* Ice.framework in Frameworks */, - 62B29A312B8F55B653D9664A /* PromiseKit.xcframework in Frameworks */, - EC67DE80E989A1BBCA6D2E7A /* TestCommon.framework in Frameworks */, + 097470873DDB97B92F0BA0AE /* Foundation.framework in Frameworks */, + 26D98B6E9BC254A41188AF39 /* Ice.framework in Frameworks */, + 5711DF87DE433AC4C316D958 /* PromiseKit.xcframework in Frameworks */, + 522382E5C10D04C87636A854 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 806C0D38FBCA56C743153425 /* Frameworks */ = { + 88958F34BE3FFCC4CEAE3537 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3F118C82349E685F75AA3C92 /* Cocoa.framework in Frameworks */, - BF3495F443BA537B55E419BA /* Ice.framework in Frameworks */, - EF3919AD2952F7B3755AAF76 /* PromiseKit.xcframework in Frameworks */, - 73B3F11FA4E2E153E1EFCA77 /* TestCommon.framework in Frameworks */, + F879712854758F853F1BCA29 /* Cocoa.framework in Frameworks */, + 8C050D5071D18D46B1CA3401 /* Ice.framework in Frameworks */, + 43F10B231BDC3A276EDC475F /* PromiseKit.xcframework in Frameworks */, + 0437614A624B265C6C91294E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 81D5B9AC37AD06D7F36426CC /* Frameworks */ = { + 8C0497F3F6397B74F75333FB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 01586D48B85E01D0587A5BA2 /* Cocoa.framework in Frameworks */, - 307ADE8C6F9D5E0713B0F416 /* Ice.framework in Frameworks */, - 9619F8AA58E59D7BDE10E213 /* PromiseKit.xcframework in Frameworks */, - 99B0FE475C82FD4103A59330 /* TestCommon.framework in Frameworks */, + 62DC095A2754C6118B0166E4 /* Cocoa.framework in Frameworks */, + B493ACC09E287003922989ED /* Ice.framework in Frameworks */, + BD8DDC19C1647AE129C36A07 /* PromiseKit.xcframework in Frameworks */, + 287A26E9212E1D0E2A5C8FD9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8285ACBBC123F8FEB453E86C /* Frameworks */ = { + 8EE96C8FC60FF9E8EAF0ADF2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 40094C3EAB990523863BA5E8 /* Foundation.framework in Frameworks */, - 8AA0A446F9EF18611E79D8D1 /* Ice.framework in Frameworks */, - E9B6B5DD581F17C55F3746FB /* PromiseKit.xcframework in Frameworks */, - CEB1AE999611FBFA57C54C12 /* TestCommon.framework in Frameworks */, + CBB08BCE424AA196283AE1BB /* Cocoa.framework in Frameworks */, + 1522E7E67E7F5EA1FEB64AD7 /* Ice.framework in Frameworks */, + 137C1A5092681CB3AFD8A25D /* PromiseKit.xcframework in Frameworks */, + 83993416308A2A5AD3C61067 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8460563DABEDFA47B835BE67 /* Frameworks */ = { + 8FD85DAC494692521FE3D118 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - FF32105E110C3C169B476D0C /* Cocoa.framework in Frameworks */, - 256B36A1C395209309ECDD5B /* Ice.framework in Frameworks */, - E3F3F343ED7740DD59F18110 /* PromiseKit.xcframework in Frameworks */, - 21DEE1870E95B360F902116A /* TestCommon.framework in Frameworks */, + 4E494762C46A37CDE3C4DFDB /* Cocoa.framework in Frameworks */, + E19DFBCAD181CF1C79CF3383 /* Ice.framework in Frameworks */, + 5AFCF7ACD7E7F9BC3668F91E /* PromiseKit.xcframework in Frameworks */, + 9AC815A0E12A1B2FF66100B0 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 85697C9D74BC35EB0F16A4C5 /* Frameworks */ = { + 935E6B5A7462CBBADD77F680 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 126C849738AF6323B384E086 /* Foundation.framework in Frameworks */, - 57DF162FC6CFAF34105C6347 /* Ice.framework in Frameworks */, - CC93901E1D8CB7948402ADFC /* PromiseKit.xcframework in Frameworks */, - 01808FC6BF917FA6CC60DA77 /* TestCommon.framework in Frameworks */, + D6B688373BBC43036B7FE9AF /* Foundation.framework in Frameworks */, + FDA9DE94F10FC4107F22FAB9 /* Ice.framework in Frameworks */, + 77A3E9F059780D8DFBAA3DC4 /* PromiseKit.xcframework in Frameworks */, + F953B719B8FD5471D8BE983A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8AEF83E0BFF4065824AF31D9 /* Frameworks */ = { + 96F5B639D380BFAE10B20DEF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 69111FD172BDB8E174C7365A /* Cocoa.framework in Frameworks */, - F55F952FA802F099EB0C65AA /* Ice.framework in Frameworks */, - 3E092E58009E2A1614D58825 /* PromiseKit.xcframework in Frameworks */, - 34D7D317ECB499DB09F9F639 /* TestCommon.framework in Frameworks */, + 13696A5AAC9DA9EFEDBC76C1 /* Foundation.framework in Frameworks */, + 7C5213F0AB4E84CD18A07676 /* Ice.framework in Frameworks */, + 2F8AE514AB33E0B549023000 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 900CAB0C794A4C30D7148876 /* Frameworks */ = { + 9909050AA6F90417BBEA7F28 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - CA0F36142EBD4397EE7622CD /* Cocoa.framework in Frameworks */, - 545A7478618FA7277C12C6C7 /* Ice.framework in Frameworks */, - 29FB77B26D54802EBE61E134 /* PromiseKit.xcframework in Frameworks */, - 2F4C30CB0E62214A96149D20 /* TestCommon.framework in Frameworks */, + 040A2963B9F96DED942BF394 /* Foundation.framework in Frameworks */, + CFFC7B30EF171CFF9B6DCC09 /* Ice.framework in Frameworks */, + D17F5D68F23CF1FA942D82A4 /* PromiseKit.xcframework in Frameworks */, + 5437389FCE14EF4107E150A2 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 924D5876DD828924714EEF85 /* Frameworks */ = { + A0899A079D953C8B3733ECE6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7853F06192F28AF6AB408E41 /* Foundation.framework in Frameworks */, - 66EB6C5BEA8ABD459CD1C5DF /* Ice.framework in Frameworks */, - 4F3613958F9EE0BF75AB64C1 /* PromiseKit.xcframework in Frameworks */, - 259AFF67FB76BBAD098ABE7F /* TestCommon.framework in Frameworks */, + 1EC42A7BFF0FE4B4F2F355D9 /* Cocoa.framework in Frameworks */, + 7F091880CC2BE16653F5C59B /* Ice.framework in Frameworks */, + 926C330CAA2AF8AA9434FBD1 /* PromiseKit.xcframework in Frameworks */, + DC65D9C12980318991DC0B67 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 92905898A9681A2AAF2E77A7 /* Frameworks */ = { + A0E77756D74837A7B15AD0E4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8FC01AE4D5A702BC8A31783E /* Foundation.framework in Frameworks */, - 8A7860F817320C324C588ACA /* Ice.framework in Frameworks */, - AF5A80243991E5AA16E0D227 /* PromiseKit.xcframework in Frameworks */, - 8B6404C0117C60D6BCFDA8CC /* TestCommon.framework in Frameworks */, + 88F0C8A134460E85871730DA /* Cocoa.framework in Frameworks */, + D5765BB9B0FB122402F10B7C /* Ice.framework in Frameworks */, + 9D51E686F366773ACCC7178F /* PromiseKit.xcframework in Frameworks */, + 67EAAF7D96E5E6C24CEFF97F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9749DBB85A01DF036830A5A8 /* Frameworks */ = { + A503E9F74ED2137A844CBCA9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E254C9DB9C32B839FB1ED073 /* Foundation.framework in Frameworks */, - 955C4B5851FC27BD076098AF /* Ice.framework in Frameworks */, - 7F871A8C8D80A4C9D8942B16 /* PromiseKit.xcframework in Frameworks */, - 97D40FCE27599C22E56DF214 /* TestCommon.framework in Frameworks */, + 2D8F31685029DE1A3E5BE883 /* Cocoa.framework in Frameworks */, + 242B6F8412F43F68427F852B /* Ice.framework in Frameworks */, + B39C9E6A53FAFD8517C24023 /* PromiseKit.xcframework in Frameworks */, + 2A1DB428E8E4B213D629E6C4 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9BD0369787C3CDCC832E8410 /* Frameworks */ = { + A698BD56302069302025FC88 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A627FA2E306B19A78BE077B5 /* Foundation.framework in Frameworks */, - 29DC460D1F6252227B4576F9 /* Ice.framework in Frameworks */, - 671C5DC6CF676112E82E6E28 /* PromiseKit.xcframework in Frameworks */, - 560834AD1A197083C8BE8942 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9FDFDF965240137388DC5008 /* Frameworks */ = { + AC4437CFD49892537E7B3177 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3AAAC42656BCF859E342EF5C /* libIce C++11 macOS.a in Frameworks */, - C7AAC21D23FB9C7F4D7306AD /* libIceDiscovery C++11 macOS.a in Frameworks */, - 5A65AF9F96CF139CF41BECDD /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */, - F412B716233F6DC5B5F06E83 /* Security.framework in Frameworks */, + 4FDF4241D3A950D22006028D /* Cocoa.framework in Frameworks */, + A0E0182092093DD6E61C134F /* Ice.framework in Frameworks */, + 67413B15492AF4E88F2C127D /* PromiseKit.xcframework in Frameworks */, + 7F840956F13F990D305C24D7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A020276890DFF410B8A9A9D0 /* Frameworks */ = { + ADFECDD3C5009F1D174CC517 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 35593D1DC9FD62BACFE5C054 /* Cocoa.framework in Frameworks */, - 4C654FF1266E98B906EDCCEC /* Ice.framework in Frameworks */, - 20CBBB3E58A156A8A7EE646C /* PromiseKit.xcframework in Frameworks */, - EAAB4C91C36CE3F2DE37D235 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A69A460CEF11FDC219381533 /* Frameworks */ = { + AEA7A4801ECB475EFAE6A085 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8FFF1D48A4993384E286D04A /* Cocoa.framework in Frameworks */, - C25732180D01695CFA011678 /* Ice.framework in Frameworks */, - 47E530BA383A469D57F3AD2B /* PromiseKit.xcframework in Frameworks */, - C99C0FAC4856145800CB6948 /* TestCommon.framework in Frameworks */, + 2998ECF0FFAD5226217BB355 /* Ice.framework in Frameworks */, + 958F12473CEF81A81BBA41D4 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A70F167DF9A2BFDFA2F109FB /* Frameworks */ = { + B086170187254B6C38BD9BBE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 98DE3F717107A1F542CE0648 /* Cocoa.framework in Frameworks */, - 2158F7AEE895DE6CB59909EA /* Ice.framework in Frameworks */, - 85DEA81A55CB3E4104D24E29 /* PromiseKit.xcframework in Frameworks */, - E90DFA944181471958D118D0 /* TestCommon.framework in Frameworks */, + 9201C71F9C04EB74313690A2 /* Foundation.framework in Frameworks */, + A0D16DF3351D17928E3FC8EC /* Ice.framework in Frameworks */, + 78C42332584409B255BCB2DD /* PromiseKit.xcframework in Frameworks */, + FAE6CDC113ECDCB7CA9E1377 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A76F18309B0B491F92E1A728 /* Frameworks */ = { + B23C11469E61ABD0EDC6FC34 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B6B30C6F69C46D9769464518 /* Foundation.framework in Frameworks */, - 2BFE2D6E0DC4F32FF78CFBF9 /* Ice.framework in Frameworks */, - 21886F50FD91B7CEBF441CBC /* PromiseKit.xcframework in Frameworks */, - BDDCE26BD7594406AF5A5A70 /* TestCommon.framework in Frameworks */, + B72C238DEEB8B6E1BAECA9E0 /* Foundation.framework in Frameworks */, + 8D7025DD6B71DCCFCD9D8C22 /* Ice.framework in Frameworks */, + 95A408FCF21100A8326796CF /* PromiseKit.xcframework in Frameworks */, + 4ECFCAD561920DC45A770E30 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A7D83AF2396D9E893D2FA565 /* Frameworks */ = { + B4544514F441BC1AFD28374F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5D20890C7DD2538AB7E70DB3 /* Cocoa.framework in Frameworks */, - B142EFD0673F101282671532 /* Ice.framework in Frameworks */, - 074A20086ECE8EA68179360C /* PromiseKit.xcframework in Frameworks */, - AC3C703D291DA979F3C915DA /* TestCommon.framework in Frameworks */, + F38E57C85B29C7AD0CA293E5 /* Cocoa.framework in Frameworks */, + 48B12429F98610666A92254E /* Ice.framework in Frameworks */, + 4A16A9260EB179A795E4A1B3 /* PromiseKit.xcframework in Frameworks */, + C3B4C1E3513CDFE981269530 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - AD17D36FCAD1C1D0249C4216 /* Frameworks */ = { + B54B106594DCA06CB094EFC7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8FD7EB5AEC4912BEEEDAEED2 /* Foundation.framework in Frameworks */, - E3048FA6DCBF6AE977F880C9 /* Ice.framework in Frameworks */, - 9A4B7BDB0CF51BF38A70D353 /* PromiseKit.xcframework in Frameworks */, - A7B42343AC9E2951EC59C338 /* TestCommon.framework in Frameworks */, + 65A4E903594F5CA87CA1B6DE /* Foundation.framework in Frameworks */, + CF98398C8D9504749631ADBE /* Ice.framework in Frameworks */, + 47676F6C4415D7C2396021E0 /* PromiseKit.xcframework in Frameworks */, + F0676320A167101DC1E431E9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B667EB713F062D2AF378EDC0 /* Frameworks */ = { + B862D6E5F716780AED3C2D8C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0EBFC940981F4AE361EEB597 /* Cocoa.framework in Frameworks */, - A554EF63FA4E6A5D761F981F /* Ice.framework in Frameworks */, - CCCDEE08F99C171111B5EB86 /* PromiseKit.xcframework in Frameworks */, - 3BFE460683D8559E6A8101AC /* TestCommon.framework in Frameworks */, + 5D0E6032C6B38E1265DDFE2E /* Cocoa.framework in Frameworks */, + A8C766B134EA6FBA6AD2FB4D /* Ice.framework in Frameworks */, + 7D5B78742101708CFAA63B90 /* PromiseKit.xcframework in Frameworks */, + 3449B9201FDBCB134E91E359 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B66E63AC3A61DC1C7818DE0D /* Frameworks */ = { + B92875871868C537E6638BF6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + FBD93475BF07B36B2DB91701 /* Foundation.framework in Frameworks */, + 68DC867AF4A533D05F1F47F9 /* Ice.framework in Frameworks */, + FBF6416D19F7C22FC7C11A7A /* PromiseKit.xcframework in Frameworks */, + 4AD70268730EF7733C819FD0 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - BCA5BF6A710C8DDB182F84DF /* Frameworks */ = { + BD978DCE67C32A8CBB5F07BC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 55FF45BCE5599DE5C5C0A73B /* Foundation.framework in Frameworks */, - B24B1B3B4D615A89A141EE46 /* Ice.framework in Frameworks */, - 865A4A6FB3D81631DEDDA54D /* PromiseKit.xcframework in Frameworks */, - FAD4FFF37B2141B2899DF603 /* TestCommon.framework in Frameworks */, + 188D33D572864891FB2C6AD3 /* Cocoa.framework in Frameworks */, + 8C92FDD3BB0828C5B8823621 /* Ice.framework in Frameworks */, + DF658B608E89DC95748E9022 /* PromiseKit.xcframework in Frameworks */, + 67430986416ABE999B11F823 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - BDDB8118BD2E41D589C48638 /* Frameworks */ = { + BE11D834A9A91386E9184019 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 93E82A4FF25EBC7EDD3858D1 /* Foundation.framework in Frameworks */, - 2F65C8A9D24FB473F2B67BE6 /* Ice.framework in Frameworks */, - DDFFAA38F6E8DA644E395A20 /* PromiseKit.xcframework in Frameworks */, - 8329CA5C26C5132A2F162417 /* TestCommon.framework in Frameworks */, + 3CB5C6939CE6B301FD9E1657 /* Foundation.framework in Frameworks */, + 08EAF643A2653FD89ABB7D42 /* Glacier2.framework in Frameworks */, + 52078C9A5B75240335B04E85 /* Ice.framework in Frameworks */, + BF86CC5BB50C374E2DD482E3 /* IceGrid.framework in Frameworks */, + D379195C8850680F7F9B72CE /* IceStorm.framework in Frameworks */, + 13281101D2A03AF0E39CEB91 /* PromiseKit.xcframework in Frameworks */, + FC7AF2821E75D1B3C11E0EA9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C0446FB501EFBD6035BCDFE1 /* Frameworks */ = { + C09156DD1A85FA6AF9DCF9B5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AC543328F191EEF6FD7A8983 /* Cocoa.framework in Frameworks */, - DBB7F84496509ED6498EF3DA /* Ice.framework in Frameworks */, - 653850FF0CFE825110E58AA0 /* PromiseKit.xcframework in Frameworks */, - A1D0719594430445F69D5943 /* TestCommon.framework in Frameworks */, + 812EBC02D2A477A03EC2DDA3 /* Foundation.framework in Frameworks */, + 319400CD6F1733AC4A5C67A5 /* Ice.framework in Frameworks */, + 815C651DE541122FE74E3CE5 /* PromiseKit.xcframework in Frameworks */, + F05CAE7A600D66FEFEB492FF /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C5BE5834A1E5B9502F92849C /* Frameworks */ = { + C1543030B9BF65F895BC9163 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 68F86A82194C13E7CCC45FF2 /* Cocoa.framework in Frameworks */, - 87224A54B03EFE9729904FFF /* Ice.framework in Frameworks */, - 9E9CB4E5940E527D09BC3F0B /* PromiseKit.xcframework in Frameworks */, - 04490F3CC1B2F69D1CF40F78 /* TestCommon.framework in Frameworks */, + 0A4EA454CDC37B237D4D0068 /* Ice.framework in Frameworks */, + B309C311C3D80AB65DF93231 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C639112EA1AD1B0B61A09EA2 /* Frameworks */ = { + C218E742F5D307158924EA76 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 732C986A3AE8629CAF57AC36 /* Cocoa.framework in Frameworks */, - 4786ECF6B6C742E04D341284 /* Ice.framework in Frameworks */, - D1A5973A5392B9F0A7D551FF /* PromiseKit.xcframework in Frameworks */, - 3FD5E94297204866ECEA47C2 /* TestCommon.framework in Frameworks */, + 4AD38C3F3E071A3224EEB4A0 /* Foundation.framework in Frameworks */, + 1C2566EF8DCE13602549EC96 /* Ice.framework in Frameworks */, + 1B5FE007B263C0C5CE21B0EC /* PromiseKit.xcframework in Frameworks */, + CF8B43B1EB3FF02ADD78BA43 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C671EB95C66849845262E6F1 /* Frameworks */ = { + C558CF5EF4E33983782AC27A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 135912851A957FF91A21D58C /* Cocoa.framework in Frameworks */, - 11157DE47B322BCA72356E25 /* Ice.framework in Frameworks */, - 1A9B2F9F146CEB43F63FAEE6 /* PromiseKit.xcframework in Frameworks */, - E22D1E64BBBE6C060473ED19 /* TestCommon.framework in Frameworks */, + 35AEC3F894DDA7F8F781BCE5 /* Foundation.framework in Frameworks */, + 78D18BEA8C1E658FCED01C2C /* Ice.framework in Frameworks */, + FD25A7D0C72352EA667FFC58 /* PromiseKit.xcframework in Frameworks */, + F38172BEB03F49344B3FA4B7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C92627ADB79BCA30657E405C /* Frameworks */ = { + C81DC1A228E7251EE49CD9A0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9F9D995257C6956AC279FF3D /* Foundation.framework in Frameworks */, - 63469B17D875A7DAAF873C97 /* Ice.framework in Frameworks */, - 90396689FED2BE972C518274 /* PromiseKit.xcframework in Frameworks */, - 959931FF252BA4696D793D30 /* TestCommon.framework in Frameworks */, + 0525B9C6B3463614F468B342 /* Cocoa.framework in Frameworks */, + C76FDB1D1DA0DA1D7C15C8B9 /* Ice.framework in Frameworks */, + BAC78B4F595BD0F319B02618 /* PromiseKit.xcframework in Frameworks */, + E1F5AF99B627FEC2E8714A88 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D1922509B68585A46413BE2E /* Frameworks */ = { + C87B421850A37441282C7EFF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 62572F0A0E64E238AE4041ED /* Foundation.framework in Frameworks */, - 470344329175105E480A6526 /* Ice.framework in Frameworks */, - CE718F0554CDFCF1ED39FB7A /* PromiseKit.xcframework in Frameworks */, - 5662E8863A145D1CA6D929B5 /* TestCommon.framework in Frameworks */, + 168BBC0D92DF7FCD60D03C5B /* Foundation.framework in Frameworks */, + F8576A7571826929C57CC91E /* Ice.framework in Frameworks */, + 4417A48F1C9C2AF14B7EA611 /* PromiseKit.xcframework in Frameworks */, + 3E36C9FA26A5630D5673273F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D675B054FD409E45A804E723 /* Frameworks */ = { + CEAC8C07ABFA3535880712A2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 29137332A16C86118EDA1E2C /* Foundation.framework in Frameworks */, - 175A82560F6DAFF08F73E180 /* Ice.framework in Frameworks */, - F7690849B01BF1B6ACD65602 /* PromiseKit.xcframework in Frameworks */, - 54D449931AD3D789593DEADC /* TestCommon.framework in Frameworks */, + 2C832AC371BCFF33D4BC6346 /* Cocoa.framework in Frameworks */, + A0D01250B56FF47A79DEED94 /* Ice.framework in Frameworks */, + B9C2DD2D5613D775575C333B /* PromiseKit.xcframework in Frameworks */, + 535AA68DEA4DE9AA044CF914 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D75B2EC24305B59D2E2BEE1D /* Frameworks */ = { + CFFD04D7334DE7F83630BCFE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8D4BD3FB0759473D2489E8BE /* Cocoa.framework in Frameworks */, - CBA2586558C473108D1842F5 /* Ice.framework in Frameworks */, - F9E490F4986A69522B970470 /* PromiseKit.xcframework in Frameworks */, - 59227CB2B5242F8633F368B4 /* TestCommon.framework in Frameworks */, + 446C2528778DF27ACAD2F032 /* Cocoa.framework in Frameworks */, + 02189358E3DEAA3352126308 /* Ice.framework in Frameworks */, + 2B58D579C89BC7384E631448 /* PromiseKit.xcframework in Frameworks */, + 34A8AE509874E979426723FC /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - DC40E825EE8F0BA639C29C8D /* Frameworks */ = { + D145478BF7DA75E8E2B48784 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 772CA57DE3BE1FE47025F228 /* Foundation.framework in Frameworks */, - FBD8E146BB674CE428406901 /* Ice.framework in Frameworks */, - 157BCF7102A1CE6EEDEF5F29 /* PromiseKit.xcframework in Frameworks */, - 525F9365A999DFAFDBB720B3 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - DD384BAA07FF49EC8CDCEA71 /* Frameworks */ = { + D2F76D4ED0D3915212A80E04 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AE32C55E7D9EE564F84EDB43 /* Cocoa.framework in Frameworks */, - B1D78D559C48248DEE45CE22 /* Ice.framework in Frameworks */, - 35C5A534D7AC3BB2AA85E2F3 /* PromiseKit.xcframework in Frameworks */, - 63A6AE967BECEE6E91432B91 /* TestCommon.framework in Frameworks */, + 5E83FB3F97A360E252C55FBD /* Foundation.framework in Frameworks */, + FDDC5812A0681FC18860451D /* Ice.framework in Frameworks */, + F90D8D9879F4143CF8A98257 /* PromiseKit.xcframework in Frameworks */, + F60805692BF75F063F8788CA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - DF829A4FCBF653D53EFA8ECA /* Frameworks */ = { + D50E77E4CE80C269BD9776D0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 74B6D0915C42A96499E0191C /* Cocoa.framework in Frameworks */, - F79F0E9568D388C01B9EE3E3 /* Ice.framework in Frameworks */, - 0825802796D8ECBA83F8CD73 /* PromiseKit.xcframework in Frameworks */, - F918003040F10A93E73FA52F /* TestCommon.framework in Frameworks */, + DFE644290C720C34A146AAEC /* Cocoa.framework in Frameworks */, + 06D6D868235FD52567DE309B /* Glacier2.framework in Frameworks */, + 43B04F48C318CB003D00F36C /* Ice.framework in Frameworks */, + 342D8CF48C45CE057CE74D6D /* IceGrid.framework in Frameworks */, + 91DD1B6F9C757E9D1932DF5B /* IceStorm.framework in Frameworks */, + AFF652ACDFD4F86D15C78356 /* PromiseKit.xcframework in Frameworks */, + EEEE55D167009E5B52017EB7 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E1227AEBECE21D1CC01C02B6 /* Frameworks */ = { + D792278D9EE599FE0B8B825F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F9E1CF73FB5D607F2B0B496D /* Glacier2.framework in Frameworks */, - DBE6458D34651589E7720E78 /* Ice.framework in Frameworks */, - 74179549A179708EC1F30CF7 /* PromiseKit.xcframework in Frameworks */, + 8081F030A606ECD461F96BF4 /* Foundation.framework in Frameworks */, + 8E2A2651032B58C66F114454 /* Ice.framework in Frameworks */, + 056A13A487D0269009F489FB /* PromiseKit.xcframework in Frameworks */, + BBA7C9CA4A8AD0F8AE0C7C6B /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E13F2754E63755D244B6DFE9 /* Frameworks */ = { + D8F2D365A25E223F62CAD35C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8FDA09F45B9AB6BD1E411872 /* Ice.framework in Frameworks */, - 6833FA2587B83E832DF0757A /* PromiseKit.xcframework in Frameworks */, + 6958A19EC00CB8C4F59FEC37 /* Cocoa.framework in Frameworks */, + E684A9254F746D25D8F52B8A /* Ice.framework in Frameworks */, + 59CE05A8316A450D8348A5F6 /* PromiseKit.xcframework in Frameworks */, + BE17229417D9AA1D213B521D /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E2174B22E1A853074D86D4D2 /* Frameworks */ = { + D9A3F7D9D92764B98B3123A8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 49F7CDDFA1E4CEBE301FAD6E /* Cocoa.framework in Frameworks */, - 49301E54077F72EF4C17EF94 /* Glacier2.framework in Frameworks */, - 8A2FB80DAF4057C43165F948 /* Ice.framework in Frameworks */, - 0D6795ED5818F1BA7304C6D6 /* IceGrid.framework in Frameworks */, - 479CA0789624646DFAA32548 /* IceStorm.framework in Frameworks */, - 8E03445E92185967E8DD12C0 /* PromiseKit.xcframework in Frameworks */, - 4D6DE19AB3C8A36450960C2E /* TestCommon.framework in Frameworks */, + AA3009A96E6750777D48DBB1 /* Foundation.framework in Frameworks */, + DE11B8B721005376E35AEB71 /* Ice.framework in Frameworks */, + 1CD1D38A42A59FA95C281B9A /* PromiseKit.xcframework in Frameworks */, + AFCB7A1C5AC5640DC7AD8058 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E2988144001FB558C7913EA1 /* Frameworks */ = { + DC327B0FA8203F2D96C5CA8B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0464FD639B7E64C401CD0F66 /* Cocoa.framework in Frameworks */, - 17EE7DF3C192B5AAAA088776 /* Ice.framework in Frameworks */, - 67F343A920ECA0C6C8F798A2 /* PromiseKit.xcframework in Frameworks */, - C13E142A45648F7040E3EB1F /* TestCommon.framework in Frameworks */, + DC030D1A25ADC2A17F7AC392 /* Foundation.framework in Frameworks */, + 648B5E9CE7EF05D4186DB43E /* Ice.framework in Frameworks */, + 121807157EC413FB87069F3F /* PromiseKit.xcframework in Frameworks */, + 5C868AEA4D30A635B6550F25 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E769335C5E25A7AD50EF77D8 /* Frameworks */ = { + E30612C910C44AD368450089 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 0BF9304D519575F887C0D95B /* Foundation.framework in Frameworks */, + 9D4B7F981422D4405C24BE23 /* Ice.framework in Frameworks */, + A073B6BB6331F5F166A7C157 /* PromiseKit.xcframework in Frameworks */, + B0E914E71BCCE5ACDEF86913 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E834D2A2201449AA539C8B3A /* Frameworks */ = { + E3C3083DE135A1C425F49493 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EC28468FB6DCDBBB3A2F5939 /* IceImpl.framework in Frameworks */, - 8D18DC057A5D72091A6DFBE4 /* PromiseKit.xcframework in Frameworks */, + C1343CBE720B2DC256CD1478 /* Cocoa.framework in Frameworks */, + B721015E7D1AAB5D755A8808 /* Ice.framework in Frameworks */, + E51AA40B2A63B7E6D2EB463C /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - ECFC62CBBB3A9E4054304BCA /* Frameworks */ = { + E43D3258D7895A717CE8EBA2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2EBDF9888333DC98CEC4904F /* Foundation.framework in Frameworks */, - 8D86DD29625A7FAC9080713B /* Ice.framework in Frameworks */, - 1277130DC1A6B2D74FC034FD /* PromiseKit.xcframework in Frameworks */, - 9ACBDB87668CADF95E2D9FC1 /* TestCommon.framework in Frameworks */, + 7D83FB69615A158017998208 /* Foundation.framework in Frameworks */, + DBD1FF2867013D1CF374444E /* Ice.framework in Frameworks */, + DB91D7BC5E5818F7E8F40859 /* PromiseKit.xcframework in Frameworks */, + 0AD7E8F712B6552BBAE3E0EC /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F05A9409CE78B39D983E8E79 /* Frameworks */ = { + E64738021C8CBF0389A3135D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 94F4CFFA6DB0A2C7508E550A /* Cocoa.framework in Frameworks */, - 6702C6BCF912D1445DFA5380 /* Ice.framework in Frameworks */, - D44E98F08362136B999A176A /* PromiseKit.xcframework in Frameworks */, - 7535D4607A3ECC358A421FEA /* TestCommon.framework in Frameworks */, + 406926F796CB77DBF6FA3561 /* Cocoa.framework in Frameworks */, + 6530FF9E0CD891FD42A2E037 /* Ice.framework in Frameworks */, + F9A678E0D8142B0EAAF58818 /* PromiseKit.xcframework in Frameworks */, + 234E7A5FBA79D5798940A9C9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F0D515AF7A5C27A881B2DA68 /* Frameworks */ = { + E7946541CD8706DFA4CC9055 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B6F50BA90185C68282A3573B /* IceImpl.framework in Frameworks */, - 834066F3E00F8A8149DDCA41 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F3B97AAC1B79B680842B6D1B /* Frameworks */ = { + E968A28CD4DAF0118A700EB5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 56352A4EB5A199C170B61599 /* Cocoa.framework in Frameworks */, - D1750FB93060EF4C23FCA4CE /* Ice.framework in Frameworks */, - 28540770D6ED1942FA05F49C /* PromiseKit.xcframework in Frameworks */, - AEBFBD3E02A9FFBD8FFDBF3F /* TestCommon.framework in Frameworks */, + EE92D40F019F418F57F47E97 /* Foundation.framework in Frameworks */, + 8993C3461E4B72B1B4B9469B /* Ice.framework in Frameworks */, + 5B67AE7059D8DB516B629E14 /* PromiseKit.xcframework in Frameworks */, + E046306C3015C877A3BE9084 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F7386CB42707112CB1B8A967 /* Frameworks */ = { + E9E5406CDF46D57109C05BCB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0E18F54173D74AD248051490 /* Foundation.framework in Frameworks */, - 2AB59934F0DA4947BC3C7C07 /* Ice.framework in Frameworks */, - 1AB8E91259048E7AB1876ED5 /* PromiseKit.xcframework in Frameworks */, - 5FB5335AA0332FFE9F80D568 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F9F9B52103E8278DDAA8D1C8 /* Frameworks */ = { + F081689B32024C4405BF64ED /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F33FD946C46440BB04E2C977 /* Cocoa.framework in Frameworks */, - FDAD5D7CD773EC05A012585B /* Ice.framework in Frameworks */, - 14AF48A72280B8084D647D69 /* PromiseKit.xcframework in Frameworks */, - F3989FFBEA39D4B805F2A109 /* TestCommon.framework in Frameworks */, + B8454674D8DEC49DD27A5CAB /* Cocoa.framework in Frameworks */, + F39E0F5A881ED716D5FFA86A /* Ice.framework in Frameworks */, + CCF0474FF11F73D43AD97785 /* PromiseKit.xcframework in Frameworks */, + 706D46FADF7E67C19DD42C35 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - FC522ABDE41AE6BB07D375F9 /* Frameworks */ = { + F686E94DE59E1050B4F45B23 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4954FD2AC663B8C418A39FEC /* Foundation.framework in Frameworks */, - EA7D0BAD39C7346EB632D6BE /* Ice.framework in Frameworks */, - 8237C181EE1CB5F17024B315 /* PromiseKit.xcframework in Frameworks */, - 60DE445CD9C49D62E8D5521A /* TestCommon.framework in Frameworks */, + 76D98EEF70E83DFAF18537D3 /* Foundation.framework in Frameworks */, + E1AB202BFCF1D5BB293C3560 /* Ice.framework in Frameworks */, + D107F7D49FBB8D2A50E1CC8A /* PromiseKit.xcframework in Frameworks */, + 876094B239F28C2B4D5E461A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - FC929A90BD1CA4E9A4C2FD74 /* Frameworks */ = { + F9B9CA343281FDF313A50EC2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EC281258A1E8C93527EE8192 /* Cocoa.framework in Frameworks */, - 7CC88F908182D3BC48437B75 /* Ice.framework in Frameworks */, - 51C24535F43ED7568BD3C4D8 /* PromiseKit.xcframework in Frameworks */, - D17C7CCF486CFFB13A7E4F8A /* TestCommon.framework in Frameworks */, + FB763296FEBB3F746AEF08A0 /* Foundation.framework in Frameworks */, + E80F03AADD7FDE54CBD7DCC2 /* Ice.framework in Frameworks */, + 0EA185C86B7350E72419B0AC /* PromiseKit.xcframework in Frameworks */, + 3A1DB79600F0C7ADE8B85F30 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - FCF71E3C27BBBE5D6E66044C /* Frameworks */ = { + FCBEA5B3F2725D44C6BCEAE1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 36C3EC4400DDA8402ACC6AD8 /* Ice.framework in Frameworks */, - 9DEC69361646694ADE128FE9 /* PromiseKit.xcframework in Frameworks */, + 4EC5E9F6697A9843D9714C53 /* Ice.framework in Frameworks */, + DE94840EAE0950C8BA79F949 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 070FD7523C6704FBF560C535 /* Slice */ = { + 01DCB11F0A6CCBED66E8AEEE /* admin */ = { isa = PBXGroup; children = ( - 80C4ABEC9B3E3B9864D6E0B8 /* escape */, + 9460E602C8D4CFFC14B8BCDD /* AllTests.swift */, + D59C9EF4D725171D05DFB4A4 /* Client.swift */, + 1BB1E5488617EE9721803F5E /* Server.swift */, + 28DF745A2D928C90F9F4419D /* Test.ice */, + E6DE756B8F16EAC3E04B2798 /* TestI.swift */, ); - name = Slice; + name = admin; sourceTree = ""; }; - 150C9EB5B4E9E968F7694734 /* IceDiscovery */ = { + 0203486A671386BC5E6CC041 /* Ice */ = { isa = PBXGroup; children = ( - 58A46161AB366B92156533D6 /* IceDiscovery.ice */, + 4FE15755ADD9B5EE9808D8C1 /* AdminFacetFactory.swift */, + 5C0743CBF803A996FBBFE2C5 /* Blobject.swift */, + 73EC11AA0D472514A88B1245 /* BlobjectAsync.swift */, + E4CF2077C814A7377DDEE06A /* ClassResolver.swift */, + 9EF15FCC42E00687BF6F16DE /* Communicator.swift */, + 9C991DFF2AAC0B41C6A1F408 /* CommunicatorI.swift */, + 72BF04B404B4A6ABFA18A71A /* Connection.swift */, + A21AF317B8CCD5205D8A9013 /* ConnectionI.swift */, + 4B584730D968F098A9E3D59A /* ConnectionInfoFactory.swift */, + 0E218220353976A1D5C07CF1 /* Current.swift */, + 86A893065E7D543BCF41F626 /* Endpoint.swift */, + CF1DF22CB01FFA62872EB861 /* EndpointI.swift */, + 0D168BB468F0B9234386530C /* EndpointInfoFactory.swift */, + 9BDEAE47C449BAB487924895 /* EndpointSelectionType.swift */, + C61C5DA6F7F7080FC83FE964 /* Exception.swift */, + 15530AE76DACDC2FD0C54C11 /* FacetMap.swift */, + 9CF9391197314E2751FD072B /* FormatType.swift */, + 5349B4AD3076D48E54DF2ADC /* IAPConnectionInfo.swift */, + 36A67621EF8B41A02D1A5852 /* IAPEndpointInfo.swift */, + DDC7FB9EE1A071911E227CCB /* IceSwift.h */, + 71DC04F4318C243C54C6708F /* ImplicitContext.swift */, + DDC1C3A7852A6CED90889B91 /* ImplicitContextI.swift */, + B5F7B7EC6A1313D15C1D5F60 /* Incoming.swift */, + 0A20490EA6CDB84BD5F7B138 /* Info.plist */, + 3BDD0F141EA94FBF630E95CA /* InitializationData.swift */, + 628F9CA7D6D383137FC355E3 /* Initialize.swift */, + 7226B2863E023A530714AEFD /* InputStream.swift */, + 4A1629C3A24F66265F742150 /* Instrumentation.swift */, + 85132CE480BFBD047F6718C3 /* LocalException.swift */, + B7A67EB9002C23EFFD4F4331 /* LocalExceptionDescription.swift */, + 9947265006AE43D802120A4E /* LocalExceptionFactory.swift */, + 28BB763CB891D9E198CB4E13 /* LocalObject.swift */, + 910BCA66868673D701E802CE /* Logger.swift */, + 2A5CBC38E08DDBAA7ABAEF6E /* LoggerWrapper.swift */, + 863A6469470E9F1912BC6E4F /* Mutex.swift */, + AEE1AA28CFE3208D7116FD69 /* NativePropertiesAdmin.swift */, + 914E1A04B42CF82EDA413850 /* Object.swift */, + F90B2EAB5D9DCC4178F8B5B4 /* ObjectAdapter.swift */, + 336BA488F873C8ED6AC70009 /* ObjectAdapterI.swift */, + FCB4094FE32B8606EBB93BFB /* OptionalFormat.swift */, + 7FEE9254105C73243B44FFE6 /* OutputStream.swift */, + F674217427A6BB4384E16370 /* Plugin.swift */, + 0AE9DC976389286FF16B21B0 /* ProcessI.swift */, + 79B81F0D55617DE7F0F891F6 /* Properties.swift */, + 91D39023FE37EB3ACD51A678 /* PropertiesAdminI.swift */, + 5794745FC0FAEAA72EC1AD49 /* PropertiesI.swift */, + 86BEC7DFBDFA7D664AA2948F /* Proxy.swift */, + 7026D4F8367154C1BE4B7F26 /* ServantLocator.swift */, + 307A532F3C4EB11FF4260F44 /* ServantManager.swift */, + CE088400874CD0479C5DBEB2 /* SlicedData.swift */, + A594F0C1849CEE5DE3E665BC /* SliceFlags.swift */, + 7D253A2160FCD5C0E019B003 /* SliceInfo.swift */, + 223354CEBDD25407EF26C216 /* SSLConnectionInfo.swift */, + 2A2C21B3DB0E4BE665D1475F /* SSLEndpointInfo.swift */, + 5621C5105CF819261AA00022 /* UnknownSlicedValue.swift */, + 5A030366430881927186CFFF /* Util.swift */, + A83AFD09B0973C33E42BBA73 /* Value.swift */, + E3EA671155BA0EAA870D5F9A /* ValueFactory.swift */, + 84BCFC47EF30B1DDA82EB275 /* ValueFactoryManagerI.swift */, ); - name = IceDiscovery; + name = Ice; sourceTree = ""; }; - 18C53985A7A2615FF93D3A6E /* IceLocatorDiscovery */ = { + 02FFB213B211BB6EA4736DF5 /* slicing */ = { isa = PBXGroup; children = ( - DE0294898D1572E655754A5B /* IceLocatorDiscovery.ice */, + FF39250451D3480417DFABB5 /* exceptions */, + DECEDE24FCBA50A18958C76E /* objects */, ); - name = IceLocatorDiscovery; + name = slicing; sourceTree = ""; }; - 19345B3939782A1CC51438EA /* Frameworks */ = { + 0704DE1A9EDDAC204C1C734A /* cpp */ = { isa = PBXGroup; children = ( - 22B76A2653FB333FADD15ECE /* iOS */, - 3EA0ABAEE71732BE6A9196C3 /* OS X */, + 0762ADFFC06F47A3F209BE44 /* src */, ); - name = Frameworks; + name = cpp; sourceTree = ""; }; - 1B3D037730139C27FEAD7FE8 /* adapterDeactivation */ = { + 0762ADFFC06F47A3F209BE44 /* src */ = { isa = PBXGroup; children = ( - 39B7FD86E7AAB2B74EA0F79A /* AllTests.swift */, - 37F91A4DE4998C11CD9FA265 /* Client.swift */, - 18CE168298CE80608E0B6DCD /* Collocated.swift */, - 3B8AD33CAF2513831F190948 /* Server.swift */, - 7E2F05661007A6DA5ACB1A9C /* Test.ice */, - 1599141F395131410355644A /* TestI.swift */, + 25A34B94DD5F0D4551ABB813 /* Ice */, + B23138DE599D6190D025EC35 /* IceDiscovery */, + 845C009AD243984328F62EF8 /* IceIAP */, + 192A9052BCD54F6B70A9DD0B /* IceLocatorDiscovery */, + B94FA1A21E64157AA91D7058 /* IceSSL */, + 1467A57CBC477C4E7A502F3A /* IceUtil */, ); - name = adapterDeactivation; + name = src; sourceTree = ""; }; - 22B76A2653FB333FADD15ECE /* iOS */ = { + 09AC1CD0EC466EF62E033116 /* iOS */ = { isa = PBXGroup; children = ( - E67BFC86E01DD26387F81954 /* CFNetwork.framework */, - 182630D7EE2E9D527F3E7FC2 /* ExternalAccessory.framework */, - 74D6726513624795759A7851 /* Foundation.framework */, - F4CDFF5E0228A5513610ECB3 /* PromiseKit.xcframework */, - 23234EE76F12BDE06765390A /* Security.framework */, - E0417ABE38D6F16A1223B078 /* UIKit.framework */, + BAA42C2BC75B14E584DC7925 /* AppDelegate.swift */, + B51AC77641CEE54D03AFFE1D /* Assets.xcassets */, + EEF3B6F7FB1EF2FF9ED73F1C /* certs */, + A7091E2B84A51D7D4E990597 /* Controller.ice */, + 216CADE6B58D39565FA60EB2 /* ControllerI.swift */, + 99AF422C184D4E445CBFDCA9 /* LaunchScreen.storyboard */, + F345F9DBACA2072E0A394485 /* Main.storyboard */, + E69319811BB2583A562A6C15 /* ViewController.swift */, ); name = iOS; sourceTree = ""; }; - 25ACC671DDE1C0C6E7D18583 /* IceLocatorDiscovery */ = { + 0E98370670AB8B497FDF99B4 /* Ice */ = { isa = PBXGroup; children = ( - 8BF3A34243EBCF0033484450 /* PluginI.cpp */, + A8110928E44217AE00E68044 /* acm */, + 22A9ECDF963BEB065CFE78DF /* adapterDeactivation */, + 01DCB11F0A6CCBED66E8AEEE /* admin */, + 50EA37E38F94F5346E6B6FB0 /* ami */, + C4813196EAAB00571C0DCF08 /* binding */, + 8FE3E5E86A0748D16F720372 /* defaultServant */, + A28AF875F8270C3AD46343B1 /* defaultValue */, + 8F4CD1B3451289BB614F387A /* enums */, + 64A45E066F4EA91902861CC3 /* exceptions */, + 0F046EC52BBF8CB629F9CED9 /* facets */, + D391EEC690DFAB6B56B19F2D /* hold */, + F128824761873631208E9FF6 /* info */, + 84BB5F9EA28D03EEADC31E5F /* inheritance */, + 5033CCAC73DD5283B0954217 /* interceptor */, + 292D50159F6223AC6F01218E /* invoke */, + 9F2CB7D5DCA937E4F4C5FAEA /* location */, + 75203057D98D54301A096BA0 /* objects */, + A070E7E11E371C095EE8C5DB /* operations */, + 3E19054B11B30C0A59682595 /* optional */, + 7638AAF2E2565BB74666D44F /* properties */, + 699675A45FD3238C3D134DC1 /* proxy */, + 1CFEEF262DADBDB12080F56A /* retry */, + 1D05F8633D855064A5689E6B /* scope */, + 528BC0704E58BF67B14EE862 /* servantLocator */, + 87F98F788906BAA62315FE3F /* services */, + 02FFB213B211BB6EA4736DF5 /* slicing */, + AAFFDFE26DCFE929B2FFE70B /* stream */, + 7F251C26A977F6D66DD7DB5E /* timeout */, + 71C3633FA3B78DEF019A98A7 /* udp */, ); - name = IceLocatorDiscovery; + name = Ice; sourceTree = ""; }; - 2C447E115DC5649C9E4D4790 /* facets */ = { + 0F046EC52BBF8CB629F9CED9 /* facets */ = { isa = PBXGroup; children = ( - 7771C966A95A75444CDD9607 /* AllTests.swift */, - 2A5AD5A8F56E90F0DF1C96F2 /* Client.swift */, - BC6EBC91E36FD1E5EEDDEA5F /* Collocated.swift */, - F8AC47855542E0FC1068E3A9 /* Server.swift */, - DD7C821443F5E0607D4DE6F8 /* Test.ice */, - 8BDD768C41EE98F60B1ADFD6 /* TestI.swift */, + 5A83C77E4B0D0283CA18020F /* AllTests.swift */, + CDAA337977433E1B2F9235CA /* Client.swift */, + C6BBD6CC1E3C2A7CCF12C722 /* Collocated.swift */, + 37F4F28FF6999FB92889AECC /* Server.swift */, + 55A1E522AC3532C58222E061 /* Test.ice */, + B19E7F86972D806170B222DD /* TestI.swift */, ); name = facets; sourceTree = ""; }; - 2EDB59AC703C5D4269749C45 /* src */ = { + 0F4CD8CE9931A0ED5AF7DC3A /* OS X */ = { isa = PBXGroup; children = ( - 77129A7BEFEF32A94CD9E682 /* Ice */, - 9CE1B9AED2C23CF572B9E2F7 /* IceDiscovery */, - B291025306FBA05D0DEDE43E /* IceIAP */, - 25ACC671DDE1C0C6E7D18583 /* IceLocatorDiscovery */, - C87C78120FD959D6A4CF9536 /* IceSSL */, - 61F67305A7720F0E285A0E19 /* IceUtil */, + 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */, + 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */, + A202DC196498CA41452751D4 /* Security.framework */, ); - name = src; + name = "OS X"; sourceTree = ""; }; - 3059B08B6D77373D2E7E80FB /* Ice */ = { + 103FDA3C298F28EEBB273247 /* escape */ = { isa = PBXGroup; children = ( - 20BCB9D60D449CB2F6D37702 /* AdminFacetFactory.swift */, - 4BA8D617819FF713F80CE4A0 /* Blobject.swift */, - 0D075D441DE8B7DA8AA330C5 /* BlobjectAsync.swift */, - 5124560E2C8D4CA6F32B121F /* ClassResolver.swift */, - 41F405B3502079EE7591BD56 /* Communicator.swift */, - F6CE4D7AF84FCCEB30AEE82D /* CommunicatorI.swift */, - 6CF5F747C703C2E26BCF3A54 /* Connection.swift */, - 79ABC993469B3E7832F12F25 /* ConnectionI.swift */, - 5400703129C16CEB55676316 /* ConnectionInfoFactory.swift */, - 5F8110A6A605EABCCC95B70C /* Current.swift */, - 3D62D9A3A91168A2CA52AAE8 /* Endpoint.swift */, - EA0E2961E11E1150BA971DB0 /* EndpointI.swift */, - E73324B4E2A13F9EFC446206 /* EndpointInfoFactory.swift */, - B68896EE6832BCFFC1CDEA85 /* EndpointSelectionType.swift */, - 42B9B7D2C864B2D316ADE535 /* Exception.swift */, - 614B4EEEE8D6EC764E4CB54B /* FacetMap.swift */, - 978FF0AEF23EE4E31F7CB0BE /* FormatType.swift */, - 5CF2439A128695F8D08C60D1 /* IAPConnectionInfo.swift */, - F94A73A9390A0C781AE4A324 /* IAPEndpointInfo.swift */, - 925C43BB0C5ED12BA8492EA3 /* IceSwift.h */, - BD917785198D9351B3909F60 /* ImplicitContext.swift */, - B1D68FCE2A561F7EC2ACDCAA /* ImplicitContextI.swift */, - 7C38FF5F290399FD2A575BC5 /* Incoming.swift */, - 87172D22D512BAFF0B704A27 /* Info.plist */, - 2424727B01DAAE130B238EF7 /* InitializationData.swift */, - C5E35C99046C1F715F4B4E5F /* Initialize.swift */, - 10E29D53CB33DDBF93C9D34C /* InputStream.swift */, - FDF3426F5F604EA6AD6D67FF /* Instrumentation.swift */, - FC93FDF7BB0162F351F94E98 /* LocalException.swift */, - 2437C8A597A1CE438BEDEC3D /* LocalExceptionDescription.swift */, - 18F600B75D092C22922DC97C /* LocalExceptionFactory.swift */, - 990C9617CC26B0961E520996 /* LocalObject.swift */, - 5B0C61085F906AE19C4D73ED /* Logger.swift */, - 52B6920962BB40484351B828 /* LoggerWrapper.swift */, - 3B986932C2925F4F85570A5B /* Mutex.swift */, - 3240EAAE31EEEE2C1A979DF8 /* NativePropertiesAdmin.swift */, - D7FCFB7E350304BE48F9AB70 /* Object.swift */, - DEC08CE6FC9829FC76970ABF /* ObjectAdapter.swift */, - 0542741E3D6987968EDC3A03 /* ObjectAdapterI.swift */, - 203BF667EB7502A11DAAD293 /* OptionalFormat.swift */, - 6C14840E2D26E13A7C5D6AC9 /* OutputStream.swift */, - 6ACA341F8D22FF154D2C3631 /* Plugin.swift */, - 48FF8C7FFEC75A3D1F598354 /* ProcessI.swift */, - 27196B5B3415DF6ED7D4A3A5 /* Properties.swift */, - 4F546DCC7DF65F50BED56636 /* PropertiesAdminI.swift */, - BC33F4F1A32F4DFE8EBB12A9 /* PropertiesI.swift */, - 1D652FBDA58B2A88C9EE9351 /* Proxy.swift */, - 44D64D7DE7F59927CC720908 /* ServantLocator.swift */, - 688574A0631176251901C5D7 /* ServantManager.swift */, - 92E658D78C379EAA3ED57897 /* SlicedData.swift */, - A3DCD2329D6CC0E7D1A67304 /* SliceFlags.swift */, - 79F3ED290282BD409F3522BE /* SliceInfo.swift */, - 68FE5BEC43DB70CE488BA78C /* SSLConnectionInfo.swift */, - 0DB36F16689B898D5396DE89 /* SSLEndpointInfo.swift */, - A7987BEF538197F4846537BC /* UnknownSlicedValue.swift */, - DC2321024BC76972FDBEF190 /* Util.swift */, - 8B6B06FDB50B258D64C0C1B5 /* Value.swift */, - C4477AA6B5501589EC90C4F2 /* ValueFactory.swift */, - 09A12C7A25EC939F04AC6CB8 /* ValueFactoryManagerI.swift */, + DCD2DF2F490C333AFC34E403 /* Clash.ice */, + E47484D1D3DDA643748FDA4D /* Client.swift */, + F48616BFFA819BAF3F8B2FB8 /* Key.ice */, ); - name = Ice; + name = escape; sourceTree = ""; }; - 30A1D1B75747D15AEFA8F50E /* IceSSL */ = { + 111FA65BCD5EF270EE40E0A1 /* ios */ = { isa = PBXGroup; children = ( - 6E3DB7120D2ED76B7DCD7EE1 /* configuration */, + 8DE17663D635E9A4C17FAF76 /* Notifications.mm */, + B2C7879A807808CED706CF2E /* StreamAcceptor.cpp */, + FCAD591DFA056E0732E8B3CD /* StreamConnector.cpp */, + 368C3BEB6491D68E441DBB33 /* StreamEndpointI.cpp */, + 230B98F91F974374C839BF91 /* StreamTransceiver.cpp */, ); - name = IceSSL; + name = ios; sourceTree = ""; }; - 3C77010308AE53DCFB2CD5D5 /* timeout */ = { + 129D1EA97125CF934132FA9C /* IceStorm */ = { isa = PBXGroup; children = ( - A5B27506E526D876D902739A /* AllTests.swift */, - 278EEAB3360C6F45AF0BA345 /* Client.swift */, - 6AB42DA37A87829961E185A1 /* Server.swift */, - 3E80F236FF9CC3D3ABDABC94 /* Test.ice */, - A321E613C2308FD17E0C2E6D /* TestI.swift */, + C08D8DDDF0EA2D26B0BC84AF /* IceStormSwift.h */, + D9C8139F340DD5FDBEB54718 /* Info.plist */, ); - name = timeout; + name = IceStorm; sourceTree = ""; }; - 3CF527CC27DEFAFEF5D02745 /* Glacier2 */ = { + 12F1C32F4732D8A53F774458 /* IceGrid */ = { isa = PBXGroup; children = ( - 7AD25AF9E04E7237D00DA079 /* Metrics.ice */, - A8697F5EF8C512BDD2D230A1 /* PermissionsVerifier.ice */, - 9D50C3279384F2AA6BA994E0 /* Router.ice */, - 99BB692606D808F7F66B6446 /* Session.ice */, - 00909CBA5C2223CED4ED9381 /* SSLInfo.ice */, + AD5E4ECB4BECCE515728C9F0 /* IceGridSwift.h */, + 5E51180718D104ED58F2E78A /* Info.plist */, ); - name = Glacier2; + name = IceGrid; sourceTree = ""; }; - 3EA0ABAEE71732BE6A9196C3 /* OS X */ = { + 1467A57CBC477C4E7A502F3A /* IceUtil */ = { isa = PBXGroup; children = ( - 8EEDB1FF955CF9544E65EAC7 /* Cocoa.framework */, - 9F84FD475359A48442829A39 /* PromiseKit.xcframework */, - 855BA3CF130D0F9747BDA673 /* Security.framework */, + 6B94A0EF9213206745C31CC8 /* ConsoleUtil.cpp */, + 9467375F0E35C0FBB7688528 /* CtrlCHandler.cpp */, + F214226923D4CB01CC6D14A1 /* FileUtil.cpp */, + BB0CC3A93C44880C5C9C63D8 /* InputUtil.cpp */, + FFC516B10AAE738541716320 /* MutexProtocol.cpp */, + 90D35835E18D79ADAB716A16 /* Options.cpp */, + 9C83A2E19EDF012C6703AB53 /* OutputUtil.cpp */, + EC5127D1D96F5CE76CAD417D /* Random.cpp */, + 59519EE11AE42BA7F6AF270A /* RecMutex.cpp */, + EB3E29E74373ED5837D69F8F /* Shared.cpp */, + 0832C0FE4DD00F57DBF41A23 /* StringConverter.cpp */, + C990D1538CF08ABB45003017 /* StringUtil.cpp */, + EAD58C233C507C35334F1CC6 /* ThreadException.cpp */, + 73CDB2D5673ECFD9B238AAB9 /* Time.cpp */, + A0C68422D8FEA96E3FB21520 /* UtilException.cpp */, + DC4BB865E8CEF17247111E25 /* UUID.cpp */, ); - name = "OS X"; + name = IceUtil; sourceTree = ""; }; - 3EA8A8BE7C5292233BD37025 /* retry */ = { + 159B1E6FD88EB8053C6B85E4 /* Glacier2 */ = { isa = PBXGroup; children = ( - 8AC23262A7AC04461F4A4BFD /* AllTests.swift */, - F2CC389E3BAC5C77C6DFC3B2 /* Client.swift */, - 401D314CEA8878CFB3F1674F /* Collocated.swift */, - 2591D7770A25B731A7D961B0 /* Server.swift */, - 5D75F8E6BDE3707D84F90250 /* Test.ice */, - 7E2557828DF2EF804720B5DF /* TestI.swift */, + 07A58E70155739B4065E5FFC /* Metrics.ice */, + D091865931D88D93A031BF38 /* PermissionsVerifier.ice */, + 86B4DBD2E99AD2E1D9D13F26 /* Router.ice */, + 850A2787B4B4A3CB3C74175F /* Session.ice */, + 52675C01C923B38208A8C760 /* SSLInfo.ice */, ); - name = retry; + name = Glacier2; sourceTree = ""; }; - 3F68898273D3C9EF5CB10054 /* scope */ = { + 192A9052BCD54F6B70A9DD0B /* IceLocatorDiscovery */ = { isa = PBXGroup; children = ( - 6C6D0DC6E65F5AE88EB1701F /* AllTests.swift */, - AADAF4F2A9298B55860DC8AB /* Client.swift */, - EDA15621A632772E70EF9DE9 /* Server.swift */, - D08B05FD08F60E1D3870BBF2 /* Test.ice */, - 879BBBB407F7C87AA23FEFB0 /* TestI.swift */, + F4F40F40EF79D1EFF0672F1C /* PluginI.cpp */, ); - name = scope; + name = IceLocatorDiscovery; sourceTree = ""; }; - 4263DB43DF2F54C6E7B1E329 /* stream */ = { + 1A29BB8AD325B8F12D32FF03 /* Products */ = { isa = PBXGroup; children = ( - B40AB91DB677ED424B70FA69 /* Client.swift */, - 71C219D846F1B5B1FDD3578E /* Test.ice */, + 5E41A2284123652035B9626D /* Glacier2.framework */, + C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */, + 148E0EF0FB954A41B9CB2C83 /* Ice.framework */, + ED06DCDDD71F35AD778BBAFD /* Ice.framework */, + 773839314982B481FB9A5F0B /* IceAcm.bundle */, + ECDDA9E457926810C0ACEE3D /* IceAcm.bundle */, + 0F1198C1D619743981CCBB42 /* IceAdapterDeactivation.bundle */, + 0C651862FD101870CF346580 /* IceAdapterDeactivation.bundle */, + 72083FEA504B3EAD2B1B6FE2 /* IceAdmin.bundle */, + 3207B48B98719A7CBFD2337B /* IceAdmin.bundle */, + C86CB8DA4BE954C9B5E50C78 /* IceAmi.bundle */, + 9158AF482E818BC8C94168F9 /* IceAmi.bundle */, + 80FAAEBFCC3A3BCA918A1783 /* IceBinding.bundle */, + 021E511AD9C9C3E31BB6E815 /* IceBinding.bundle */, + CE428CC2328F83A0C7CF327B /* IceDefaultServant.bundle */, + 5A11FDE12E0158896D2902C2 /* IceDefaultServant.bundle */, + BE65FDBC053C9E1724BD1F80 /* IceDefaultValue.bundle */, + 817336550425E7439ECF507B /* IceDefaultValue.bundle */, + F5C15610EC1017BFB49E9711 /* IceEnums.bundle */, + 998084A78E611312ABCE0CC7 /* IceEnums.bundle */, + 6F7C2EFAAD90AF05C836E8AD /* IceExceptions.bundle */, + 461937D2DA4EABD1399760BD /* IceExceptions.bundle */, + 60F7DD828BF511AA7D9F0CFF /* IceExceptionsAMD.bundle */, + 2FF3B3842F37F3295343B6C4 /* IceExceptionsAMD.bundle */, + 8188B41289F2C073375F3D48 /* IceFacets.bundle */, + A763F1E9B20B68CAD1D62D3F /* IceFacets.bundle */, + B17547CF25F9F6D499E59F4A /* IceGrid.framework */, + F8335B51360FAD4A3774DBDC /* IceGrid.framework */, + BB0D9576EB2595A8BB30BC3A /* IceHold.bundle */, + 4D3E7C6DAF7A1136E094036E /* IceHold.bundle */, + DA48BF39278DC0F70FC216F1 /* IceImpl.framework */, + 42391EF6184A353552A00883 /* IceImpl.framework */, + 2B615C29B6876A457E770F75 /* IceInfo.bundle */, + 0A0A432A404B1F07E7108C66 /* IceInfo.bundle */, + C7DAB3F7C68697A828A55533 /* IceInheritance.bundle */, + 01FA7B3F816F4E1BBAC6D837 /* IceInheritance.bundle */, + EDC1F699D0173A3262ED8783 /* IceInterceptor.bundle */, + 030DE03918D9D61428E52F76 /* IceInterceptor.bundle */, + B1EB3F3DCA4EBE0AC85EF8E1 /* IceInvoke.bundle */, + FCD16A3852D0DAB23E0EE5DB /* IceInvoke.bundle */, + 0351F96883BE42489669584D /* IceLocation.bundle */, + 87DF00D7836869F2204A3283 /* IceLocation.bundle */, + 116A9F625EC4AC51F7044FFA /* IceObjects.bundle */, + 0D0C50C25B4B163B7098033F /* IceObjects.bundle */, + 849D140524843186122E2B5D /* IceOperations.bundle */, + 950F3E962351FD9CFB2B4F24 /* IceOperations.bundle */, + 5A1210D169DA5033BD26A6D9 /* IceOperationsAMD.bundle */, + D9B018EB339EB9B238FEA4EC /* IceOperationsAMD.bundle */, + 07E2F60461505D97899C6536 /* IceOptional.bundle */, + 30561094206DE7E5EB3B1E5B /* IceOptional.bundle */, + 6B5589624E8C18A764174736 /* IceOptionalAMD.bundle */, + 6331AC6AD612A19D131621A7 /* IceOptionalAMD.bundle */, + ED3424BFB9925A53577998FB /* IceProperties.bundle */, + 301D621EB654AC9C3E4E4E28 /* IceProperties.bundle */, + F1C224C87B599183A478B5D2 /* IceProxy.bundle */, + 9330809B9C47D804EF5BC5E3 /* IceProxy.bundle */, + F4BB047ECA2C8C6E40017B49 /* IceProxyAMD.bundle */, + F81F55C1F60FE16B0090352D /* IceProxyAMD.bundle */, + 1B7B8369877501337E9D5211 /* IceRetry.bundle */, + F9015DB7A4BC8F5780598C5B /* IceRetry.bundle */, + 8D10DFF57F34E081EBF41AFF /* IceScope.bundle */, + BBBE5C0E398A59FC82DA5B22 /* IceScope.bundle */, + 5D1D431EC03874A83605E840 /* IceServantLocator.bundle */, + 055E1371140F03C46BE4933C /* IceServantLocator.bundle */, + 1CA0FCE8D4431A2B65028231 /* IceServantLocatorAMD.bundle */, + 6D8A172CCED325773F9ACA7A /* IceServantLocatorAMD.bundle */, + 1FF3BD3182DC2FD23143C3E5 /* IceServices.bundle */, + 79CF8D4448CD8F1D2AB9367C /* IceServices.bundle */, + 9EEEF7EF10C88BEAC2595F7E /* IceSlicingExceptions.bundle */, + 431D8C7B1791F56014305D03 /* IceSlicingExceptions.bundle */, + E826DFF464DFB4529E54EDC3 /* IceSlicingExceptionsAMD.bundle */, + 46F06EE2B5CE1BD96013A0E1 /* IceSlicingExceptionsAMD.bundle */, + 474923F0179531C32355FF66 /* IceSlicingObjects.bundle */, + D7B75346EB6CBAA407B78C44 /* IceSlicingObjects.bundle */, + D78BFDA010F774B68B1D0943 /* IceSlicingObjectsAMD.bundle */, + A3BB783984531DDB15DA995D /* IceSlicingObjectsAMD.bundle */, + 1CCF2A334B2BAF9588A6DB42 /* IceSSLConfiguration.bundle */, + 525EFBA91C000927B6DE6289 /* IceSSLConfiguration.bundle */, + 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */, + DC6A10305F53DC63F7512C53 /* IceStorm.framework */, + 57B34B2AE4E0AB6BD04A92F0 /* IceStream.bundle */, + 7C57A532F569AC857B5BAC2E /* IceStream.bundle */, + 7C3C842B0893C4AC6BA6C676 /* IceTimeout.bundle */, + 23F70E58CAF1EDFC2272E758 /* IceTimeout.bundle */, + 03DCA74ACCAE41A0ADDF52A1 /* IceUdp.bundle */, + D566AB986C3B8546B20A2AE0 /* IceUdp.bundle */, + 8AF093375A28D692055B8973 /* libIce C++11 iOS.a */, + 9FF873ABC0C688353DDDFBD8 /* libIce C++11 macOS.a */, + AD73F53FFF7497EA96B009D6 /* libIceDiscovery C++11 iOS.a */, + 622CDB9E04A43DA05E046991 /* libIceDiscovery C++11 macOS.a */, + C1AF990F79450A9C081DB784 /* libIceLocatorDiscovery C++11 iOS.a */, + BDC9CA0C36333F0F3089E6C1 /* libIceLocatorDiscovery C++11 macOS.a */, + E2FA87620B046FCEDC51EC6F /* SliceEscape.bundle */, + A7CAB2E9D70B8A29FA66E759 /* SliceEscape.bundle */, + 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */, + 0FE38FC76D319902C8A9D90F /* TestCommon.framework */, + AF198F1B7E492421D2764DC7 /* TestDriver.app */, + 1C3992E2FB7D669B8812B76F /* TestDriver.app */, ); - name = stream; + name = Products; sourceTree = ""; }; - 429727EF2CE74E889DD9C9C3 /* Products */ = { + 1A534B7D482B3A831A6E40F7 = { isa = PBXGroup; children = ( - 77EC8521AFDAD69584F76199 /* Glacier2.framework */, - E00667716A1C103FAC5F4862 /* Glacier2.framework */, - FB64C1942DFC8ACD03DC7591 /* Ice.framework */, - 1C1A5C984E086E684382E966 /* Ice.framework */, - C7529E7D6E0CE82CABE0D45B /* IceAcm.bundle */, - DE81698975B33852370169B0 /* IceAcm.bundle */, - 4CF51F5BA92DBCFB19276E79 /* IceAdapterDeactivation.bundle */, - 7E5BC150A7E6BE558ECEA251 /* IceAdapterDeactivation.bundle */, - 61F67EA48B40D8217803F572 /* IceAdmin.bundle */, - ACB9AA204E947072B6089FC4 /* IceAdmin.bundle */, - 2110B3C9B21AE73C0BD6ECBD /* IceAmi.bundle */, - B324F3F918968083524C839F /* IceAmi.bundle */, - FEB045E2BE5B2791729997F6 /* IceBinding.bundle */, - 1FD8BF102CBDEA4AE9A1BEF0 /* IceBinding.bundle */, - C291B1D3FF41716E62FE1B66 /* IceDefaultServant.bundle */, - A84471908266098F39B2D842 /* IceDefaultServant.bundle */, - 6232FC65AC888C2919A29D4A /* IceDefaultValue.bundle */, - A9E418725A7536BFB1BF5F9E /* IceDefaultValue.bundle */, - 4487959432B7C792830C5266 /* IceEnums.bundle */, - 1B71BDB8210B42A2FC5F0C82 /* IceEnums.bundle */, - C4920C3131DE43086740705E /* IceExceptions.bundle */, - DF969510683D898EFE4084C0 /* IceExceptions.bundle */, - F15FB749EF455BD7CA108204 /* IceExceptionsAMD.bundle */, - CE3EFB47219D60018ECBCE1B /* IceExceptionsAMD.bundle */, - 7009D84B5EA234435C031C1D /* IceFacets.bundle */, - 5FC1B1B7E470DA1817C0EEA4 /* IceFacets.bundle */, - C0AF15B4EEC648C875D97939 /* IceGrid.framework */, - 3D98CE77652346A9B41B4831 /* IceGrid.framework */, - F7CA3B0771AAB23FD2BBAB32 /* IceHold.bundle */, - D8766C6DCAB7BABFE071D77E /* IceHold.bundle */, - 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */, - E580B9D9CC76D53B7B18272C /* IceImpl.framework */, - 7F6624BB6F4570C1B15B7C59 /* IceInfo.bundle */, - 197DFA765AE77FC51AEF8CC3 /* IceInfo.bundle */, - 79E564BB39566F3CAD8B878F /* IceInheritance.bundle */, - B2C1876280F446CCE7B816D9 /* IceInheritance.bundle */, - 698CE5506A44CD12B6835C88 /* IceInterceptor.bundle */, - 5F9757AB402E520F6A127C8D /* IceInterceptor.bundle */, - 82BA2AD0516BDC1B952A1A16 /* IceInvoke.bundle */, - C19ED6991B81D0F741D8B390 /* IceInvoke.bundle */, - 5CA31F719AC415E991FB8790 /* IceLocation.bundle */, - 53A5BF7BE1E27774AE055437 /* IceLocation.bundle */, - A8AFF8F311501C1902F407B9 /* IceObjects.bundle */, - 73E30F6985B146225B2F0177 /* IceObjects.bundle */, - D238D915AA7B2C9AAA51674C /* IceOperations.bundle */, - F97826A9DCAFE51593E3E836 /* IceOperations.bundle */, - A590A314799E84457E6B723C /* IceOperationsAMD.bundle */, - 79B44ECCFF08BDD9E83A886B /* IceOperationsAMD.bundle */, - A7F4197C8123883ABAF8C85D /* IceOptional.bundle */, - 6C1CDE26751507399301F945 /* IceOptional.bundle */, - BF3F7C97E46FF31D7DBAFF42 /* IceOptionalAMD.bundle */, - 977C1FE11405DDDBFB5775A2 /* IceOptionalAMD.bundle */, - ADE78EC4CCE93F2E0C1D0DD3 /* IceProperties.bundle */, - 1C48DE3037CF4AE7BFD44F84 /* IceProperties.bundle */, - 7A0A8197B967AFCB434D4FE1 /* IceProxy.bundle */, - 99F9D2D3C733AFDB4D23EB00 /* IceProxy.bundle */, - 2A2E598EF61DF473F6F1896D /* IceProxyAMD.bundle */, - 95E105439BA21E7D9534BAA3 /* IceProxyAMD.bundle */, - CABAAA81FDF2158619AA51BB /* IceRetry.bundle */, - 3A90857F1CD31FC2193C9C89 /* IceRetry.bundle */, - 0AF49C110C762F572C744977 /* IceScope.bundle */, - 294AC4A94D492076FFDEF664 /* IceScope.bundle */, - 2D63C2A77F018D37B047CFA9 /* IceServantLocator.bundle */, - 9F93205A8C96574AF482B2AB /* IceServantLocator.bundle */, - B33CD6B53C345AC42929BAAC /* IceServantLocatorAMD.bundle */, - DF1CA6ABA240EB1DCE0DCA9E /* IceServantLocatorAMD.bundle */, - 77413C0CE48FA70D463B327C /* IceServices.bundle */, - 64826F8AA2F1B443C0AEFD5C /* IceServices.bundle */, - 99CDD3BEF9831A379194BA9E /* IceSlicingExceptions.bundle */, - E39E0C1B10E19B51E2A7B2E4 /* IceSlicingExceptions.bundle */, - 2967E04C4326091B1910DB93 /* IceSlicingExceptionsAMD.bundle */, - 5A6BCE84AFC62FA7351297E6 /* IceSlicingExceptionsAMD.bundle */, - 6E0FC8B916544739F08DBD2A /* IceSlicingObjects.bundle */, - 0F77C35360BC168A8EE3C849 /* IceSlicingObjects.bundle */, - 09486704DD4EBAC0DD6677C8 /* IceSlicingObjectsAMD.bundle */, - E7B4AD1931A23E635750A562 /* IceSlicingObjectsAMD.bundle */, - 0F25A5B87F1D6D4DE443C3F7 /* IceSSLConfiguration.bundle */, - 397D6E5EA9E00485DEEDF569 /* IceSSLConfiguration.bundle */, - 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */, - 102C8EBB7B156230C64E8D84 /* IceStorm.framework */, - 63DF48DC6AC320881942F9D2 /* IceStream.bundle */, - CE5EF72F93C8A48F13699E40 /* IceStream.bundle */, - 25C7F6C8A9023BB604FCC8C6 /* IceTimeout.bundle */, - 1B2E875251FF8233F5415E48 /* IceTimeout.bundle */, - CA06581C1F468D6DFACFA9C2 /* IceUdp.bundle */, - 85B515A196F89D779308CAD1 /* IceUdp.bundle */, - EB11AE63135A23028AE12F90 /* libIce C++11 iOS.a */, - 9CD9C4FF6B42F14CAB807960 /* libIce C++11 macOS.a */, - F20CF9182023E2AB477F4A39 /* libIceDiscovery C++11 iOS.a */, - FF2875AE0E0680CDB9C9B1B8 /* libIceDiscovery C++11 macOS.a */, - 4F365747574374068F56B9FD /* libIceLocatorDiscovery C++11 iOS.a */, - AE623D75A48D156E4410F1AD /* libIceLocatorDiscovery C++11 macOS.a */, - C4B3812EC86A075A591325CD /* SliceEscape.bundle */, - A6D9088DAAB107784DA16DE0 /* SliceEscape.bundle */, - 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */, - 6F01F4D0DA57D647E4189538 /* TestCommon.framework */, - BCCD7A2776EFD0C816828644 /* TestDriver.app */, - 2DA8717C158AFF4CF60E6E87 /* TestDriver.app */, + 0704DE1A9EDDAC204C1C734A /* cpp */, + 84AD8BB3144E78CF053E9070 /* Frameworks */, + 1A29BB8AD325B8F12D32FF03 /* Products */, + ED4EF05B26F2BD8E7CE727A2 /* slice */, + E2CEB916183D82E69C80961C /* src */, + 1B19FE8698F14FE7A63E21B4 /* test */, ); - name = Products; sourceTree = ""; }; - 4B9D52C9C16D81092D2393AE /* TestCommon */ = { + 1B19FE8698F14FE7A63E21B4 /* test */ = { isa = PBXGroup; children = ( - 1B54FF32B84CD34A3EAA00EE /* Info.plist */, - 29114B3DD6DE83F72CE4BEF6 /* TestCommon.swift */, + 0E98370670AB8B497FDF99B4 /* Ice */, + 73A6DF23A193BC451A2836D2 /* IceSSL */, + F74302DC201C6A5AD396D58D /* Slice */, + CEB08CCA9C6FEB6098096851 /* TestCommon */, + 776721D71145A90B37FCAB9E /* TestDriver */, ); - name = TestCommon; + name = test; sourceTree = ""; }; - 51D0369BE4C6DCD07D91371E /* exceptions */ = { + 1CFEEF262DADBDB12080F56A /* retry */ = { isa = PBXGroup; children = ( - 2EEC8F950880BA5D14A58ACE /* AllTests.swift */, - F32E0BF2C8C888EC8ADD08A9 /* Client.swift */, - 31807FCC8B102E3BA2E0BBC5 /* ClientPrivate.ice */, - A09BB09CBD110F5A9A95C3BC /* Server.swift */, - FD8ABC24EC401B3963964DB0 /* ServerAMD.swift */, - 748EE12499322EB81A8498E8 /* ServerPrivate.ice */, - 0F2C3F356F0573D576A925FB /* ServerPrivateAMD.ice */, - 99B5902E632A1305ED246DA8 /* Test.ice */, - B07EBD95BDC4C8F2D8598B89 /* TestAMD.ice */, - 770F579715615C54D53ABF72 /* TestAMDI.swift */, - 4DF443F93429C08880793844 /* TestI.swift */, + BF8E0CCA4C7037506934137C /* AllTests.swift */, + 8857A465B5A01F88B674B7C8 /* Client.swift */, + 829AECC82389A2F5E05C2960 /* Collocated.swift */, + 51106D60A56141EBC49C9318 /* Server.swift */, + 7FF54833864397ACE8E797E1 /* Test.ice */, + F2A40A64B4DEF4BDCD6C4742 /* TestI.swift */, ); - name = exceptions; + name = retry; sourceTree = ""; }; - 5BCC0E1D6E249668BE9174EC /* exceptions */ = { + 1D05F8633D855064A5689E6B /* scope */ = { isa = PBXGroup; children = ( - 2EB971FEE56EA31F7716F3AD /* AllTests.swift */, - CB330C24F7E1E7F765F5B40D /* Client.swift */, - E78C7100074203EDD9A86A1A /* Collocated.swift */, - 77242285508C579CC5B0D48D /* Server.swift */, - F8EC734E3ABEC1B9F8ED7E1C /* ServerAMD.swift */, - 74C18BC9905EB667A2B8518D /* Test.ice */, - 4219AE5EE1189E920E1A77AA /* TestAMD.ice */, - 346EA4E8BF5EBE984DAF0872 /* TestAMDI.swift */, - 714EC172B42055EC5BF98E11 /* TestI.swift */, + 3B77BB5BC36ACDA87B6A69FF /* AllTests.swift */, + 78E2A2D2066C58262F423252 /* Client.swift */, + 8D2B953157D627C928A6037A /* Server.swift */, + 1ED43BAF74AEE3D118146F5D /* Test.ice */, + 15D305717C35A677E3D0BF24 /* TestI.swift */, ); - name = exceptions; + name = scope; sourceTree = ""; }; - 61F67305A7720F0E285A0E19 /* IceUtil */ = { + 22A9ECDF963BEB065CFE78DF /* adapterDeactivation */ = { isa = PBXGroup; children = ( - 08F114BAF6B711459E6438F1 /* ConsoleUtil.cpp */, - 27B24624FBC0D46B2E71D96A /* CtrlCHandler.cpp */, - 07391C2F2F17BEF451562D52 /* FileUtil.cpp */, - 6EC196F1092D9A40472D0F1A /* InputUtil.cpp */, - 540A7B3104F684B945E4E393 /* MutexProtocol.cpp */, - 85A919E5EEB0EC42C4BAF17A /* Options.cpp */, - A896AB8FC799C78576276217 /* OutputUtil.cpp */, - 54E9AF62DC5520A54B0CF2AA /* Random.cpp */, - DF38F1C85E466EEC07C46EE0 /* RecMutex.cpp */, - B17B4B38AC0363CAFA24A9E4 /* Shared.cpp */, - C4077CF4E039DFF0D6A22D3D /* StringConverter.cpp */, - 3F98C3CA8C685D2666897D25 /* StringUtil.cpp */, - DEE6C673CF16E6CD4116CC12 /* ThreadException.cpp */, - A26B127504B1411F9A44E917 /* Time.cpp */, - B38EBAF76FAFE72C64335C5B /* UtilException.cpp */, - CA44AC521456FBE35AC0D96D /* UUID.cpp */, + 20B1410DBC821FBE25FF0338 /* AllTests.swift */, + E2F8371C545BE433208E8DD7 /* Client.swift */, + C9A9B49B4C419054A03A217A /* Collocated.swift */, + C99CAAF3E88E8B7B746C43A4 /* Server.swift */, + 8E312FEE4E94C01795C8BBD9 /* Test.ice */, + 9B5064B9C0DABEB987B39730 /* TestI.swift */, ); - name = IceUtil; + name = adapterDeactivation; sourceTree = ""; }; - 63CE36F0AB08662967C4BC46 /* objects */ = { + 25A34B94DD5F0D4551ABB813 /* Ice */ = { isa = PBXGroup; children = ( - C536B3A8A8CD276788EE5A1A /* AllTests.swift */, - EA6C41DF9E4B34FCEDC9493A /* Client.swift */, - ECB41582845B643446FFF5A0 /* Collocated.swift */, - 27D7B1673A591C9B7CAF8808 /* Forward.ice */, - 848049457E74A1C8BA343A1D /* Server.swift */, - 7896AFF2A6A7C311E7C0DBBA /* Test.ice */, - 99B9776ADB255F1973621C98 /* TestI.swift */, + 111FA65BCD5EF270EE40E0A1 /* ios */, + 5F67CEA524FF25FE6949915A /* Acceptor.cpp */, + 2F59158F7D5C392A0D1D7CE8 /* ACM.cpp */, + 92A86220A97A6EB0CBFC944D /* ArgVector.cpp */, + 64B510708D04016FA459B8AA /* Base64.cpp */, + 77E66F7A0331FF21333AE3FB /* BatchRequestQueue.cpp */, + 6E18609323F580043357FC2C /* Buffer.cpp */, + 50D65B51261AD566166DB14B /* CollocatedRequestHandler.cpp */, + BFE26B6B169CD5B24ED29BB6 /* Communicator.cpp */, + C171909B3BA6EDB94DFE7617 /* CommunicatorF.cpp */, + CAACEF4FECAF35BE85C20620 /* CommunicatorI.cpp */, + E83D440DF808EEF167018B4F /* Cond.cpp */, + 1B68A5626BF6AEC2DC151AA9 /* Connection.cpp */, + 800A52A540F1DA8547B1D22A /* ConnectionF.cpp */, + 738DC08C9436E513AAF5205F /* ConnectionFactory.cpp */, + FC642EC1944D582B3C794113 /* ConnectionI.cpp */, + 41ECD3890AF22A95E9667E8F /* ConnectionRequestHandler.cpp */, + 532C14EE7E6458905C05203B /* Connector.cpp */, + B51E89BDF16FF1D23C5FFD2F /* ConnectRequestHandler.cpp */, + E1EFF9091F708E5F6F0704B3 /* CountDownLatch.cpp */, + 44837E3321ED1322DA4D4AE9 /* Current.cpp */, + B33C3DAC38D7CB012602F1D5 /* DefaultsAndOverrides.cpp */, + DB8F279A2779E598731A5601 /* DispatchInterceptor.cpp */, + 9C004314E294893A903BC059 /* DynamicLibrary.cpp */, + 01EC749BC2A7D4FCA7490B47 /* Endpoint.cpp */, + 01024283C896A201E69A8C38 /* EndpointF.cpp */, + 14C3C55AD97EAC4C2C236144 /* EndpointFactory.cpp */, + 911DD6C3D079AAD2A68FE941 /* EndpointFactoryManager.cpp */, + 407EDDBF73A172C9F18D2E55 /* EndpointI.cpp */, + C30C6AF5ACDFF5254E06CAC6 /* EventHandler.cpp */, + 62FF3521D46F685DF4E667C3 /* Exception.cpp */, + EE7ED7DB9B386CE9925025BF /* FactoryTable.cpp */, + F71CAE50CD7CB4E7134D9FF3 /* FactoryTableInit.cpp */, + A345098C97240AE15EE3E355 /* HttpParser.cpp */, + 4E880F031CD68893D2F69EFB /* IconvStringConverter.cpp */, + B7D8895A590B0D9627121789 /* ImplicitContext.cpp */, + 4A1722EBDE6AC496F748A964 /* ImplicitContextF.cpp */, + D9AB56DEA09A30139787C127 /* ImplicitContextI.cpp */, + 41551E09D595E50A24EF5892 /* Incoming.cpp */, + 3637F3FA49D41442776DFDA3 /* IncomingAsync.cpp */, + DED512BF02792FFCA52AE9E7 /* Initialize.cpp */, + 7A5C5A1DEA6B7BB5ABC8C7DA /* InputStream.cpp */, + AA4F363A3C06C04C4B7E187E /* Instance.cpp */, + BDFC1CF071BE8BC5D2E9356F /* Instrumentation.cpp */, + 6229E6CA09F91C68DAB3EBD2 /* InstrumentationF.cpp */, + 03BAC263458A1F99AADFE0B5 /* InstrumentationI.cpp */, + 059F06CFD18E4BA02BA0E025 /* IPEndpointI.cpp */, + 37ABE7A8D0AB189693887A28 /* LocalException.cpp */, + C7F2189733BCF9C8B454DB75 /* LocalObject.cpp */, + A2308C88106E21E86B64770B /* LocatorInfo.cpp */, + E8132A588131377350457A8A /* Logger.cpp */, + 37F1FC9323F6C45B1AC35F58 /* LoggerAdminI.cpp */, + 3E8D76449FAFB649E9E74273 /* LoggerF.cpp */, + 8750D48101851C84B89B330A /* LoggerI.cpp */, + 145ACBB9D8EC5ABDF5109CD9 /* LoggerUtil.cpp */, + 623BF93B592B69730EBB8EDA /* MetricsAdminI.cpp */, + 787DA99C9345BD9AFAFE23BC /* MetricsObserverI.cpp */, + F904E8A5B6258EDDEAF27A63 /* Network.cpp */, + B67D5EFC0BB322E8EF9ED64C /* NetworkProxy.cpp */, + 95F4BB6C69D370E2E329C2E7 /* Object.cpp */, + B678F2298413760C49C183ED /* ObjectAdapter.cpp */, + AFA7ECC88F49663429276843 /* ObjectAdapterF.cpp */, + DFC73C8E6BFAEC766CD5D25C /* ObjectAdapterFactory.cpp */, + 436D4DDD3929D36CB74E51A9 /* ObjectAdapterI.cpp */, + A46BEB423DACD76BF4A68A19 /* ObserverHelper.cpp */, + 02BEC5D52B98E16486723B15 /* OpaqueEndpointI.cpp */, + D6C1FECEA4BD0E885787FD4F /* OSLogLoggerI.cpp */, + C630DCAC52483EE71792F541 /* OutgoingAsync.cpp */, + 73E18D1ADAE4685486879439 /* OutputStream.cpp */, + CF74B405592DF882FC711C4F /* Plugin.cpp */, + 96EF425FFAE7ADC67DD3FD81 /* PluginF.cpp */, + B08D997BB8E4794D4200FB23 /* PluginManagerI.cpp */, + 7DDD904763300878E12820E2 /* Properties.cpp */, + 40EB3E43A832B13BDE8D4720 /* PropertiesAdminI.cpp */, + DAE2612261AFAD9F126ABB05 /* PropertiesF.cpp */, + AEAEF19C75C1808D288CE761 /* PropertiesI.cpp */, + BDD807A24DFE6B5DE7A2B384 /* PropertyNames.cpp */, + C7716384B8702730F154043B /* Protocol.cpp */, + D93BB1CEE95D6DBD647C1F66 /* ProtocolInstance.cpp */, + 68D9BDAF960BA51A8BF52198 /* ProtocolPluginFacade.cpp */, + C18CB03DD5155C1C2B2E8A8D /* Proxy.cpp */, + 88D78672154E80AA54EA998A /* ProxyFactory.cpp */, + C56F9DD18C4DA39D6933343C /* Reference.cpp */, + DF136F6E80A01F3C0C176C6D /* ReferenceFactory.cpp */, + D678FFB619CCB86A3BC95515 /* RegisterPluginsInit.cpp */, + 7E2686345DB372E56936CAA9 /* RequestHandler.cpp */, + D0D533DA9ED4A5E4635718FB /* RequestHandlerFactory.cpp */, + 79108D2FF0232C16468D88DE /* RetryQueue.cpp */, + 7AD3A474B7A1D069CCFC0AFF /* RouterInfo.cpp */, + 2D3CBEB67344D577D334AFA7 /* Selector.cpp */, + 1C216F290E9890052BC928A0 /* ServantLocator.cpp */, + CD61825057BFBFBB41D39597 /* ServantLocatorF.cpp */, + 950579F4E8C4DFF646EF3C51 /* ServantManager.cpp */, + A70C14B2E0E746A0591AF1D5 /* Service.cpp */, + DCD020CA509B152C8FCE8798 /* SHA1.cpp */, + EDBFE1FE5EDAEEC44CD547C8 /* SlicedData.cpp */, + E59CE567CD0339935ECE174A /* StreamSocket.cpp */, + 5873A42F0D248A8146E98350 /* StringConverterPlugin.cpp */, + BFCBA8D98D4B3EE825A33F52 /* SysLoggerI.cpp */, + 344C21FB7DF7176184125859 /* SystemdJournalI.cpp */, + EEBC1443F0873050E5877725 /* TcpAcceptor.cpp */, + 64F29DD7C25FD1D8C1FBF3CD /* TcpConnector.cpp */, + 34811EA9E8187AFA7F8C8D41 /* TcpEndpointI.cpp */, + 52104DAB06FD2367D5F4159A /* TcpTransceiver.cpp */, + 36463ABF4A88FE5854D32E77 /* Thread.cpp */, + BD2FED021766EC049A1603D9 /* ThreadPool.cpp */, + C2F6024DEF147BA264B75062 /* Timer.cpp */, + 0FEAB4A7EE835A05B2C8DBB4 /* TraceLevels.cpp */, + AE6FDA00BFC81B40451B476D /* TraceUtil.cpp */, + 5300396B18CE9C2FCA0A8E2F /* Transceiver.cpp */, + A26AA7659D06EBA6062EF982 /* UdpConnector.cpp */, + 9883142AAE78B0D29D622EEB /* UdpEndpointI.cpp */, + 695139937807444B932DB3F3 /* UdpTransceiver.cpp */, + 57EB6F28F663DF2D21006713 /* Value.cpp */, + 2D5A45BA52FE831A3ADA94B1 /* ValueFactory.cpp */, + AB6A7BC8F66C9728566A553B /* ValueFactoryManagerI.cpp */, + 03031EB4AE5379FF32A3AE17 /* WSAcceptor.cpp */, + DF62AE44540279291FBE8D46 /* WSConnector.cpp */, + 136C9F1CB0181AA674220B28 /* WSEndpoint.cpp */, + F7D45D866B9B71FB7B57D0E6 /* WSTransceiver.cpp */, ); - name = objects; + name = Ice; sourceTree = ""; }; - 6AD95367B827A55159714221 /* slice */ = { + 292D50159F6223AC6F01218E /* invoke */ = { isa = PBXGroup; children = ( - 3CF527CC27DEFAFEF5D02745 /* Glacier2 */, - F25F7B518DF4936568B7412C /* Ice */, - 150C9EB5B4E9E968F7694734 /* IceDiscovery */, - 9187E24BB9B9CCA5703B3856 /* IceGrid */, - 18C53985A7A2615FF93D3A6E /* IceLocatorDiscovery */, - DDDE350E1C387AC0F98C3AB0 /* IceStorm */, + DB925F57794F16F2734D08B4 /* AllTests.swift */, + D2951989E4ED79DB5A5BD840 /* Client.swift */, + 7AA4D36E0018BED4FBB96979 /* Server.swift */, + B2D7894B631B2D78882A8F57 /* Test.ice */, + 56AD8F95D9A540F5AD97E976 /* TestI.swift */, ); - name = slice; + name = invoke; sourceTree = ""; }; - 6E3DB7120D2ED76B7DCD7EE1 /* configuration */ = { + 3E19054B11B30C0A59682595 /* optional */ = { isa = PBXGroup; children = ( - 9668122A663485B283D6E354 /* AllTests.swift */, - 0841109EAF658FE8F75F1D35 /* certs */, - B3089717B2724FA70B62A07E /* Client.swift */, - 80BDC773852878159B385AA8 /* Server.swift */, - 88E0874AAF62BEBDEAA903B2 /* Test.ice */, - D90B76046F6620FA39EB66FA /* TestI.swift */, + A4E4652309AE1C7E4EEE2D6D /* AllTests.swift */, + D9CB8DB9B6B0E2D1D5F87503 /* Client.swift */, + E14A708807768953B2379FD5 /* Server.swift */, + 4D2DBA835FDF24BF6450F945 /* ServerAMD.swift */, + 1B6EF30F36318A639D638152 /* Test.ice */, + 2F6CB1CBABB18103F23A7D3B /* TestAMD.ice */, + 64802AF97D0C116399E87B38 /* TestAMDI.swift */, + E3CCDC8C722C7D08EBC696FC /* TestI.swift */, ); - name = configuration; + name = optional; sourceTree = ""; }; - 6F519C736E6753D8E08C91F5 /* IceGrid */ = { + 439B5C9437DD8E56A1E4DC35 /* macOS */ = { isa = PBXGroup; children = ( - 5A500C7A9434EE6B7B6007E2 /* IceGridSwift.h */, - EB4A88B7EE541CB6AEC177AB /* Info.plist */, + EC5A98A70A93BDFDEE865FFA /* main.swift */, ); - name = IceGrid; + name = macOS; sourceTree = ""; }; - 72ED0109EF12476876941EF2 /* ios */ = { + 5033CCAC73DD5283B0954217 /* interceptor */ = { isa = PBXGroup; children = ( - BECB73EA046F28161933053C /* Notifications.mm */, - 25D7EE2BD98457D481B8B3BC /* StreamAcceptor.cpp */, - E9082BACB853874884EA0C9C /* StreamConnector.cpp */, - C91F21E0EC4A9AB95D7E569A /* StreamEndpointI.cpp */, - CA94963DA4E9C2C6BC9D3A1C /* StreamTransceiver.cpp */, + 4E783E25173DD3CB4652293E /* Client.swift */, + 9600C016070409DE6568A37E /* Test.ice */, ); - name = ios; + name = interceptor; sourceTree = ""; }; - 7343D7D871AB263A312DF5F0 /* defaultValue */ = { + 50EA37E38F94F5346E6B6FB0 /* ami */ = { isa = PBXGroup; children = ( - C32566337C1211D2262DE5B8 /* AllTests.swift */, - 4AB7DEF69D88E4196C6C38C6 /* Client.swift */, - 4E2510934C92262E6420D091 /* Test.ice */, + 3F23A1CF4CB61B7741942A35 /* AllTests.swift */, + A83F9EE39111E400F0CF2C17 /* Client.swift */, + 84E90B07958C12B403F8FF0C /* Collocated.swift */, + B6927471763F231278861844 /* Server.swift */, + 6D4683E4EEA3C7003504AE96 /* Test.ice */, + 74C4E15A84E6E19C4F7072FE /* TestI.swift */, ); - name = defaultValue; + name = ami; sourceTree = ""; }; - 75969B1735EBFD35BE628D57 /* inheritance */ = { + 528BC0704E58BF67B14EE862 /* servantLocator */ = { isa = PBXGroup; children = ( - CC8C2F843887BE982892CC85 /* AllTests.swift */, - A558073E4D0060993986E950 /* Client.swift */, - 90C90B96D25DD719CC60E168 /* Collocated.swift */, - 8131692BCB1B7FD451C01F8B /* Server.swift */, - A19D8983C8F5E4BF02AA82C4 /* Test.ice */, - 0367F5C787891BBE1B298343 /* TestI.swift */, + CB750BB47FEA9559FDA7DBDF /* AllTests.swift */, + 44BC740D6506C3F1C8458122 /* Client.swift */, + CEF23AEA09540063DC96EA21 /* Collocated.swift */, + 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */, + F0972B81E52AE5219A0359F6 /* Server.swift */, + 9B8BE69409380DAA8F3C39DC /* ServerAMD.swift */, + 137ED7A94BB9E11CC053CEEF /* Test.ice */, + 9FADED3C1D00A9AFBE02DACB /* TestAMD.ice */, + 4344142A2FC9DF9B5722AFD5 /* TestAMDI.swift */, + 9226ABAA5FAF037A4782672D /* TestI.swift */, ); - name = inheritance; + name = servantLocator; sourceTree = ""; }; - 77129A7BEFEF32A94CD9E682 /* Ice */ = { + 64A45E066F4EA91902861CC3 /* exceptions */ = { isa = PBXGroup; children = ( - 72ED0109EF12476876941EF2 /* ios */, - E4387BB8D14955178CF59D4F /* Acceptor.cpp */, - 685C908500567FED302500C2 /* ACM.cpp */, - FC6572D6D1B9BB5AD0EBFF57 /* ArgVector.cpp */, - 3159C7F956674DA8F082423D /* Base64.cpp */, - 511AD3135337E08B90F9C34B /* BatchRequestQueue.cpp */, - B972748A398232A92FC108CB /* Buffer.cpp */, - 7A542194ED490F2D450FBE00 /* CollocatedRequestHandler.cpp */, - B4E7A74CCB2DED35DB6A1B93 /* Communicator.cpp */, - AEAA1F26027433EC0170129E /* CommunicatorF.cpp */, - 59FC3375D6E90AE4E3134B50 /* CommunicatorI.cpp */, - 38D102721EA6D00E46DBB85E /* Cond.cpp */, - AE017E010C3B64228A0758B7 /* Connection.cpp */, - F95B39360BF7A5A8F3336C02 /* ConnectionF.cpp */, - 6297BCCEF80EEAA0E5BB22A7 /* ConnectionFactory.cpp */, - 8C4AA43D47071643F9248425 /* ConnectionI.cpp */, - DD9A6F271F1D24C181329DEC /* ConnectionRequestHandler.cpp */, - C4321B1EC69E230431008038 /* Connector.cpp */, - 6C9EE6928D91D3DD502B5B8C /* ConnectRequestHandler.cpp */, - 259E1CFC2597003F39AF9275 /* CountDownLatch.cpp */, - 4D9F47C5F7E714936213E615 /* Current.cpp */, - 82B698D2AA00D8433E829B6C /* DefaultsAndOverrides.cpp */, - 31CCAAEF9A0D8BD94D02FADD /* DispatchInterceptor.cpp */, - D51058046137C699E489643B /* DynamicLibrary.cpp */, - 08397788AB99AF6585C187A4 /* Endpoint.cpp */, - 1026DA33ACD08DBDEFF45AC4 /* EndpointF.cpp */, - 31C92631DA6DA4BADFE8C59F /* EndpointFactory.cpp */, - B99A0FA92B5EA56DCB41FC92 /* EndpointFactoryManager.cpp */, - 4A7049303E4CC0D79196E584 /* EndpointI.cpp */, - C3665BE59BB614AAE0CDF2FE /* EventHandler.cpp */, - A28E723AB3710F4B62B6B303 /* Exception.cpp */, - D1F8FE1A0E059D0118539988 /* FactoryTable.cpp */, - 8C321C7D5D3EEBFF6B77950C /* FactoryTableInit.cpp */, - 700EF0543089A6F52A51D7E7 /* HttpParser.cpp */, - 248A46E1415A6C79670BA017 /* IconvStringConverter.cpp */, - 43931C1667BC9E1EB9EBE642 /* ImplicitContext.cpp */, - F07B1686893281A6AD084966 /* ImplicitContextF.cpp */, - D92A55DB4A2264AEEDC97D5D /* ImplicitContextI.cpp */, - BFF0ED34748664151B72A1D2 /* Incoming.cpp */, - 238D7DBD94628C8E32119E5B /* IncomingAsync.cpp */, - 02C7023576B21B0B085453B7 /* Initialize.cpp */, - 65ADD8278D737094AD85D73B /* InputStream.cpp */, - 681AABFFA977FBCD95B43311 /* Instance.cpp */, - E70AFD8DC408D542FD307AB5 /* Instrumentation.cpp */, - AB841745F334BE569AAC2791 /* InstrumentationF.cpp */, - 04CC49DCD0D4C30286DEACE3 /* InstrumentationI.cpp */, - D8C536D312B9304B2D44C277 /* IPEndpointI.cpp */, - 5042D96FAC79ED86972DEF0A /* LocalException.cpp */, - A5DB117E9F7CD97246E362D0 /* LocalObject.cpp */, - 7FC1B02BF28CB20BA8607932 /* LocatorInfo.cpp */, - 8A35C4E163EB55AE186B1AF8 /* Logger.cpp */, - 4E7FD5CE013170C15DA09A31 /* LoggerAdminI.cpp */, - 5052AC8588F0B21D8BE3AD20 /* LoggerF.cpp */, - 62BD73733BF5EF5838784676 /* LoggerI.cpp */, - 6FBE489334E0ED23D774B550 /* LoggerUtil.cpp */, - B3D95F9289578400C8DD7B0E /* MetricsAdminI.cpp */, - 40F0848AD5E921D3D29D8E5F /* MetricsObserverI.cpp */, - EFBB16D3C8E2986C4EB8D12D /* Network.cpp */, - 08733FFC27D163E7A610C567 /* NetworkProxy.cpp */, - 78B6F5E512D86BC4BDC8026B /* Object.cpp */, - C7342B8BA9FB0E6A989E0B06 /* ObjectAdapter.cpp */, - 50E98EEC1CF21AF6E6D15DE7 /* ObjectAdapterF.cpp */, - 4307C8F5994221221EAA83D5 /* ObjectAdapterFactory.cpp */, - 9B722E075AEEBEA3D471A855 /* ObjectAdapterI.cpp */, - 28F6EBEDD7E3BB7D5EA9FBD4 /* ObserverHelper.cpp */, - 3C54DFAFDC0223F71EBCA048 /* OpaqueEndpointI.cpp */, - B05047B0A67FBB7433C356E2 /* OSLogLoggerI.cpp */, - 5DAC9DE9BB0E7BD3C95B7C6D /* OutgoingAsync.cpp */, - 31917CC0A13FF7C85862B2F0 /* OutputStream.cpp */, - D8DED3CCF7ABF57CB61A22DE /* Plugin.cpp */, - 1A303F7D2349A2BAAF06FBA7 /* PluginF.cpp */, - 3E18A66D20FAB52A8017CFEC /* PluginManagerI.cpp */, - 6F0E8376C2AD9B7DDE63D13E /* Properties.cpp */, - 814042ADB97F55EAA8E0BEE4 /* PropertiesAdminI.cpp */, - 737C8B48855EE4342128C161 /* PropertiesF.cpp */, - D097943C4BAC00D7111D073F /* PropertiesI.cpp */, - 59F4F79624A15326B17E88ED /* PropertyNames.cpp */, - 1BC454AFBA15995FFFE08DBA /* Protocol.cpp */, - B570B45B289F7B6C00BF559D /* ProtocolInstance.cpp */, - 7A38C5090BFC9479B5774794 /* ProtocolPluginFacade.cpp */, - 94FDF54850CD30639F5F2A76 /* Proxy.cpp */, - A2028B9FE566140E37F6A80E /* ProxyFactory.cpp */, - 1DAF6712CD8911F10A5971E9 /* Reference.cpp */, - A53A47B49B4866AB8EE69620 /* ReferenceFactory.cpp */, - 206401F7B7D85C2E662248F5 /* RegisterPluginsInit.cpp */, - 292810AEFEB4C7B5B49D1C98 /* RequestHandler.cpp */, - D8E86E1134A0E4313F11F025 /* RequestHandlerFactory.cpp */, - 000611DF33CB4304F42A33BE /* RetryQueue.cpp */, - 006CF4F54F5E4A89A3C663B0 /* RouterInfo.cpp */, - F18DA127CFF3E191C1169914 /* Selector.cpp */, - B80DE963F4B8A8CE7A086F4B /* ServantLocator.cpp */, - 11AEDF0E03E10480338D6773 /* ServantLocatorF.cpp */, - 585EAAAD1DD963A893315BD6 /* ServantManager.cpp */, - 7966445621B396BC50FEFDAF /* Service.cpp */, - 876D9FFC7CC704C0504BCB91 /* SHA1.cpp */, - B3D9E5A1FEF7356081B23255 /* SlicedData.cpp */, - 5BEA81A87699651060DB2E4A /* StreamSocket.cpp */, - 21D15D6C8E3919123C989D88 /* StringConverterPlugin.cpp */, - 246925D469B0CD3F19FC5EF4 /* SysLoggerI.cpp */, - 4EDA8B46CA1A0F1CFC1E283B /* SystemdJournalI.cpp */, - F562D9D8A7515B35C2F58350 /* TcpAcceptor.cpp */, - A72C73AF071E66FC94B9C561 /* TcpConnector.cpp */, - 5A9928AEF2ED41ECB96691AF /* TcpEndpointI.cpp */, - 41D003139C78BDCDD6F24440 /* TcpTransceiver.cpp */, - CF2604CFDFD9F02C2548D7C4 /* Thread.cpp */, - 80C813147DFCDC62BE24AD6F /* ThreadPool.cpp */, - BE284562963BDD32CEEF2902 /* Timer.cpp */, - BA03B082E40C34B986B183E0 /* TraceLevels.cpp */, - 63EFA6A9F175C4F63D612486 /* TraceUtil.cpp */, - FE732A9CB17BA09E4B52F143 /* Transceiver.cpp */, - CF5C1DB557360C9F09A15BB8 /* UdpConnector.cpp */, - 7101B26D06079EE4319D8BB4 /* UdpEndpointI.cpp */, - 8A51F31391447E13718ECF7F /* UdpTransceiver.cpp */, - 9ED8B6B4E62F9D71D312B66F /* Value.cpp */, - E9490D97D26F54E2DE96FE5E /* ValueFactory.cpp */, - A8B3B91893CDE2FCE46DB8C3 /* ValueFactoryManagerI.cpp */, - F5D80A2F30612934EEB5E8AA /* WSAcceptor.cpp */, - BB5D02829AEAB23FFABB5B4F /* WSConnector.cpp */, - 8288E572CC1605192A1F1696 /* WSEndpoint.cpp */, - 66EBE19FA36E23B906766A85 /* WSTransceiver.cpp */, + A3B0B441C377169B54CEB0DC /* AllTests.swift */, + 0C14F40BEFB46405B9613959 /* Client.swift */, + B354AAD31C61053198AA6359 /* Collocated.swift */, + 32C784477F9A73A13FD21C65 /* Server.swift */, + 7806EDFB543369686343312B /* ServerAMD.swift */, + 47144CDB90451B47BF3BCB58 /* Test.ice */, + 3547A6F171E6B76B9FC63BAE /* TestAMD.ice */, + 0B930854633BDF8CF5FFE22C /* TestAMDI.swift */, + 390FE2A8AA85FA1F066DB95F /* TestI.swift */, ); - name = Ice; + name = exceptions; sourceTree = ""; }; - 79313AEDDA8144D1D722A86A /* udp */ = { + 699675A45FD3238C3D134DC1 /* proxy */ = { isa = PBXGroup; children = ( - 4F294A7B72FAF1011CB416FA /* AllTests.swift */, - 6C2B5BBCC468EFCF6C706DDF /* Client.swift */, - DDCD573A768D574A4F55647D /* Server.swift */, - 10FBAC0DE50DD8520BF0D494 /* Test.ice */, - BA38B6705BC845C06AFE3CD7 /* TestI.swift */, + 227169D88E42D03490D191BE /* AllTests.swift */, + CABC46485C8349B0AD18EB39 /* Client.swift */, + 9ABB967DFEE9C5D24F7C42A2 /* Collocated.swift */, + 78A482E000141177A98F078F /* Server.swift */, + 39513FAD1AB0E49430E2633E /* ServerAMD.swift */, + 8D32C52389F2ECA0048EE141 /* Test.ice */, + B1834CCC901B15A44359D42A /* TestAMD.ice */, + A18062BD1E33BA800FDE662D /* TestAMDI.swift */, + 6E9093C94D6596E3660EDFBB /* TestI.swift */, ); - name = udp; + name = proxy; sourceTree = ""; }; - 7B16D63FB17588444E6D0451 /* IceStorm */ = { + 6E32583167B21A36761F281A /* configuration */ = { isa = PBXGroup; children = ( - D26101A37129FDCC7F02DE6A /* IceStormSwift.h */, - ABB7C1A5CA7A5D473338E96D /* Info.plist */, + B73CE8E39782ED96D9A0DEE2 /* AllTests.swift */, + F52E3E551A8F8B3901BECC9B /* certs */, + 22EB15880754E559CBAD530E /* Client.swift */, + 250055BA1C62F324250B2548 /* Server.swift */, + 2527DF77271CA0B2E6A8E151 /* Test.ice */, + C41EA629E4C3C316AA9FF1EC /* TestI.swift */, ); - name = IceStorm; + name = configuration; sourceTree = ""; }; - 7CD914FA573AC8EDDE346B4F /* TestDriver */ = { + 71C3633FA3B78DEF019A98A7 /* udp */ = { isa = PBXGroup; children = ( - FFE06286B4212B46A3E4856F /* iOS */, - AE3566BF1090461EF03F6DBA /* macOS */, + FF2962E761A9438BFEC2D88A /* AllTests.swift */, + CA7BA874372EE36F4313939C /* Client.swift */, + 724325600514092A8D262EAA /* Server.swift */, + 2E5EBCC2B8851DB99485BB9D /* Test.ice */, + C4D165404C1661A879CC7DD9 /* TestI.swift */, ); - name = TestDriver; + name = udp; sourceTree = ""; }; - 80C4ABEC9B3E3B9864D6E0B8 /* escape */ = { + 73A6DF23A193BC451A2836D2 /* IceSSL */ = { isa = PBXGroup; children = ( - 5507FC7D9307D1B742D67CE8 /* Clash.ice */, - 50727E8340FCAC13BECEC831 /* Client.swift */, - 87EF303B4F48EAFE426CB832 /* Key.ice */, + 6E32583167B21A36761F281A /* configuration */, ); - name = escape; + name = IceSSL; sourceTree = ""; }; - 87FEB6D04AB77AC9246B643A /* location */ = { + 75203057D98D54301A096BA0 /* objects */ = { isa = PBXGroup; children = ( - D82A4CA54A5484DD964DFE39 /* AllTests.swift */, - F0F1E9B04036C7A1BB7003EF /* Client.swift */, - BE4880C3857E46FDB8466BDA /* Server.swift */, - C4E36FFCFD779F3349E0B808 /* Test.ice */, - EFE318F6CB3960BD10185486 /* TestI.swift */, + 5085715D52B4CB7BA1DD1F9E /* AllTests.swift */, + 22BA0A2A8A538610278E1A67 /* Client.swift */, + CAD340E5FDD75011A7A85118 /* Collocated.swift */, + 9E63A9A57CB0A4F537AA9E84 /* Forward.ice */, + A1A0F1FD62421D88BD8F6E24 /* Server.swift */, + 47085E57F8BA1CB63A56B0BD /* Test.ice */, + 16484C090CFD38F73675B0C6 /* TestI.swift */, ); - name = location; + name = objects; sourceTree = ""; }; - 88E0363534D885191070016D /* properties */ = { + 7638AAF2E2565BB74666D44F /* properties */ = { isa = PBXGroup; children = ( - BCF77AA38122CC9F97CA697A /* Client.swift */, + 63B3CE5DAEFF4FCC9EC9707D /* Client.swift */, ); name = properties; sourceTree = ""; }; - 8DFBD2BD78EDD947284B6334 = { + 776721D71145A90B37FCAB9E /* TestDriver */ = { isa = PBXGroup; children = ( - F3637F151137C19CCD19F0E1 /* cpp */, - 19345B3939782A1CC51438EA /* Frameworks */, - 429727EF2CE74E889DD9C9C3 /* Products */, - 6AD95367B827A55159714221 /* slice */, - E282D3FB172515DF0B754A63 /* src */, - CB8FB8046987FBD5F15CF5C5 /* test */, + 09AC1CD0EC466EF62E033116 /* iOS */, + 439B5C9437DD8E56A1E4DC35 /* macOS */, ); + name = TestDriver; sourceTree = ""; }; - 8EF9206F0D3FEE4B01C0BFB4 /* acm */ = { + 7F251C26A977F6D66DD7DB5E /* timeout */ = { isa = PBXGroup; children = ( - 5B643EA2D961B5A046DA618B /* AllTests.swift */, - AB4A17E1D7AFC814618AE832 /* Client.swift */, - B1925D4741CC08B26DFD1621 /* Server.swift */, - 89430DABC966D657CAA11785 /* Test.ice */, - CA2F862F15E33C84D1C777E3 /* TestI.swift */, + 52C032A6AC0462FD61E22750 /* AllTests.swift */, + B1E2C99A6DBB9132B74F4845 /* Client.swift */, + BAEED543910AAE7DB26F2B2E /* Server.swift */, + DC845309A10111AC9F465C23 /* Test.ice */, + B1EAC7DC09EDCDE664A6D412 /* TestI.swift */, ); - name = acm; + name = timeout; sourceTree = ""; }; - 8FF23095B6767A81DC69E30F /* operations */ = { + 81639BA77E73D5AEE676B18C /* Glacier2 */ = { isa = PBXGroup; children = ( - CD76D50BBE665C06B63D8EA0 /* AllTests.swift */, - 4804F5E00E5C966AE7D9FD34 /* BatchOneways.swift */, - 87C7BBC6F22A9A903F1FB5A4 /* BatchOnewaysAMI.swift */, - 1962FCE8C13AAA1EDB246D78 /* Client.swift */, - 89C8AEE905086856134C860E /* Collocated.swift */, - FC48F3FEB7298E0C6FB9C9BD /* Oneways.swift */, - 873DDDDA9C1B2827C2427670 /* OnewaysAMI.swift */, - 069D6D873DB12806A4A9705F /* Server.swift */, - F1096EF87824C8D901CB7EB0 /* ServerAMD.swift */, - 4DF3479CC49100449C494653 /* Test.ice */, - 01CD17E5927E812D8DD3EAC1 /* TestAMD.ice */, - E5F90D823F008079DDF85638 /* TestAMDI.swift */, - 17E2F182F3B77EE5965C3F59 /* TestI.swift */, - E22C0DF633DFF1F13E530965 /* Twoways.swift */, - C50755E3F26CA6D9CC706FDC /* TwowaysAMI.swift */, + 89260FC783CBA8E95B993CBB /* Glacier2Swift.h */, + 107BEF97F3E06320E00B46A6 /* Info.plist */, ); - name = operations; + name = Glacier2; sourceTree = ""; }; - 904F85755AECCD0E0D72739D /* hold */ = { + 845C009AD243984328F62EF8 /* IceIAP */ = { isa = PBXGroup; children = ( - 1570CABD05CE88D0D442FBAA /* AllTests.swift */, - 1E498B9EBD907E4FAD93351F /* Client.swift */, - BDA44D2D537AF18875B1AF6E /* Server.swift */, - F47009097AD17B454D6780A7 /* Test.ice */, - 0EF3EED5D49B0E829BC0E03A /* TestI.swift */, + CAE482789CF229EB04641D21 /* ConnectionInfo.cpp */, + DDA135F8EED8A314941972ED /* Connector.mm */, + CCE36EC139B06D18C0C74BA7 /* EndpointI.mm */, + 284CD0E7A9CF17BA732ECF6B /* EndpointInfo.cpp */, + E4538B61358B8FF03922527F /* Transceiver.mm */, ); - name = hold; + name = IceIAP; sourceTree = ""; }; - 91204724DE7E555597CCD63D /* enums */ = { + 84AD8BB3144E78CF053E9070 /* Frameworks */ = { isa = PBXGroup; children = ( - 61B80662080CB423CE83029C /* AllTests.swift */, - E00AE826AA0B6D12DE8A593B /* Client.swift */, - C9DAF4E6A6A0734D36C7039E /* Server.swift */, - C0093783F41BC3D488E98600 /* Test.ice */, - A47964EE995DCCF12193A7C8 /* TestI.swift */, + E8DF91CBBDA93D1971E79B76 /* iOS */, + 0F4CD8CE9931A0ED5AF7DC3A /* OS X */, ); - name = enums; + name = Frameworks; sourceTree = ""; }; - 9187E24BB9B9CCA5703B3856 /* IceGrid */ = { + 84BB5F9EA28D03EEADC31E5F /* inheritance */ = { isa = PBXGroup; children = ( - 7AAAA99233AA95D5E2D8623D /* Admin.ice */, - E58B32872CC6A0C1048F6248 /* Descriptor.ice */, - FFD565105BC4E6A56DCB1853 /* Exception.ice */, - 5DABF3352FC370E8C8424646 /* FileParser.ice */, - 065B949882E18BDEB1485FC1 /* Registry.ice */, - D447784B77B4412B60FCFC03 /* Session.ice */, - FFC58AB4E1C5B5964CD9F8D3 /* UserAccountMapper.ice */, + 9D8A8D9D48C0A5E19D013CFA /* AllTests.swift */, + AA5FA8A0E09A3F3BC61D2909 /* Client.swift */, + 4AEEFDD3BB442CB6663CD683 /* Collocated.swift */, + 933DB0C83248BF059A7F1C20 /* Server.swift */, + B538A5094459696C1D929F20 /* Test.ice */, + DBCA8B1BC5811A9ADA86ED97 /* TestI.swift */, ); - name = IceGrid; + name = inheritance; sourceTree = ""; }; - 91C8925DADC22B82524EF085 /* services */ = { + 87F98F788906BAA62315FE3F /* services */ = { isa = PBXGroup; children = ( - 5F8D90EA61D510888A922C76 /* Client.swift */, + EBFF2AF509B1E71159DAECB0 /* Client.swift */, ); name = services; sourceTree = ""; }; - 9376FEFF580E9B1396D0B10D /* ami */ = { + 8F4CD1B3451289BB614F387A /* enums */ = { isa = PBXGroup; children = ( - DE7F0BCED1A80C49DD69EED5 /* AllTests.swift */, - 014D0EE5D267E432DA21670A /* Client.swift */, - 8B7F6F6014A25D3EA8088D4D /* Collocated.swift */, - 57CF891C000E31222368C816 /* Server.swift */, - 17D15FE0C359907D9E73E508 /* Test.ice */, - 5AA45CDF58CA91E2E635F08A /* TestI.swift */, + 6FB36E85F6FA876D88996239 /* AllTests.swift */, + 945016AEA0FC7438D19E19B1 /* Client.swift */, + BE0FC793581C11E605079EEC /* Server.swift */, + 9A65923D521C078DCDBABA31 /* Test.ice */, + 0CD6F8266C083D7C5841D1E9 /* TestI.swift */, ); - name = ami; + name = enums; sourceTree = ""; }; - 9CE1B9AED2C23CF572B9E2F7 /* IceDiscovery */ = { + 8FE3E5E86A0748D16F720372 /* defaultServant */ = { isa = PBXGroup; children = ( - CBAE1ADE6A6A3C9DACBF2C68 /* LocatorI.cpp */, - C520CFEA9E7F6ABF0BB8DEFE /* LookupI.cpp */, - D7A933D36328C77B1C03028B /* PluginI.cpp */, + 265E767F5805E36FCC9CB2A0 /* AllTests.swift */, + 52122170F02276E3275AAE2B /* Client.swift */, + B4C555F0C2B146AF8D5EC356 /* Test.ice */, ); - name = IceDiscovery; + name = defaultServant; sourceTree = ""; }; - A3E727DFCD4EE22B8B14992B /* invoke */ = { + 948F499BFCE00B6A1782C2EC /* IceGrid */ = { isa = PBXGroup; children = ( - AF5E56D13752DB41032C1BAB /* AllTests.swift */, - B306F3D24CD60364FAF42DBD /* Client.swift */, - FD7C6AB26C45ABFC92DDB247 /* Server.swift */, - ADA2F94E4EDD0ADEEE713717 /* Test.ice */, - B0C70BDF91875EC6706AE12C /* TestI.swift */, + 42A2439DC6CA50093CA51089 /* Admin.ice */, + 49F7B52E1EBFD001EE29C9E6 /* Descriptor.ice */, + A0D2E40EB5EB722B76219B03 /* Exception.ice */, + 5CB34604AACBE72A2D272966 /* FileParser.ice */, + 4EE29237269F09AE7E678DB3 /* Registry.ice */, + 5E1178133F12C06313829C9E /* Session.ice */, + F5FA2C9600E75B1FCD46907F /* UserAccountMapper.ice */, ); - name = invoke; + name = IceGrid; sourceTree = ""; }; - AE3566BF1090461EF03F6DBA /* macOS */ = { + 9F2CB7D5DCA937E4F4C5FAEA /* location */ = { isa = PBXGroup; children = ( - 1515A9EBA05A025707FA0A5B /* main.swift */, + B3BBBD22CE72373968131654 /* AllTests.swift */, + 8748EAC5BFE5A97A4085F0DB /* Client.swift */, + F0C7FC0099BBEEB7A76312E5 /* Server.swift */, + 1239FA44EA72DF60C02E90F3 /* Test.ice */, + 38D440D5894319742F272192 /* TestI.swift */, ); - name = macOS; + name = location; sourceTree = ""; }; - B291025306FBA05D0DEDE43E /* IceIAP */ = { + A070E7E11E371C095EE8C5DB /* operations */ = { isa = PBXGroup; children = ( - 358B68004AEA4DEE9CC643DF /* ConnectionInfo.cpp */, - 97E37D3215AA9BB8DD87E7B4 /* Connector.mm */, - 7EB7AAB041B597E34A71548A /* EndpointI.mm */, - 8960D717D9673447C68F61D7 /* EndpointInfo.cpp */, - DE0FE67A381FD4FD9F7DD015 /* Transceiver.mm */, + F28FEA3804836A76EBCC3C60 /* AllTests.swift */, + 0FEE34A113E3DC71D9DB8450 /* BatchOneways.swift */, + 3F0C20EFBCAFF52B67C7AD11 /* BatchOnewaysAMI.swift */, + 9E386E5939BE4E20022B34C8 /* Client.swift */, + 318B426F0ED72A433F61DD1B /* Collocated.swift */, + 7E05BB1F95B7599533D83026 /* Oneways.swift */, + 0367CC264BC70C8FAE95481D /* OnewaysAMI.swift */, + 5DC88A1165E0648123E7B24E /* Server.swift */, + FA5C303C571C95B5220FFF77 /* ServerAMD.swift */, + 7DB4E7AC16E22943F389DA62 /* Test.ice */, + 272A8F85D1DA874AFB64025B /* TestAMD.ice */, + BFD8E68C39A86BCA8855BE97 /* TestAMDI.swift */, + 6FCD89BFC87D0D93ADD625C0 /* TestI.swift */, + A05F7539468832F6A1D1FE8E /* Twoways.swift */, + EE247C4C7515E78416734AE3 /* TwowaysAMI.swift */, ); - name = IceIAP; + name = operations; sourceTree = ""; }; - B43A4AF48E3DADB82EB08E42 /* servantLocator */ = { + A28AF875F8270C3AD46343B1 /* defaultValue */ = { isa = PBXGroup; children = ( - 0205F3DB3D2A802285F11C8B /* AllTests.swift */, - 5DEE9BBFD65F9CC3DD2E91F5 /* Client.swift */, - 0EF9EA920CDA248C30B741E3 /* Collocated.swift */, - 01DCF9212C57C687CBCFC3F5 /* ServantLocatorI.swift */, - 753E12D3EE11FCE2B8E3B8F9 /* Server.swift */, - BB2A63494B776FCB8C2A0BCF /* ServerAMD.swift */, - 5292AB6BD873695825E1758E /* Test.ice */, - CA042305E180817575383DD8 /* TestAMD.ice */, - D7847B096AC0D34F6A6A83F0 /* TestAMDI.swift */, - 45C8F6FB616A194C3B2F51F4 /* TestI.swift */, + C1389F21CDF06949902AA2EA /* AllTests.swift */, + 0D1A1C798CA5E03EACE7C337 /* Client.swift */, + 1B91C23CCEBC74093AC64126 /* Test.ice */, ); - name = servantLocator; + name = defaultValue; sourceTree = ""; }; - B893B5C1C8E5CD542B6780CC /* slicing */ = { + A8110928E44217AE00E68044 /* acm */ = { isa = PBXGroup; children = ( - 51D0369BE4C6DCD07D91371E /* exceptions */, - C8726FC03A86D3632DA427A9 /* objects */, + 1A8FB36F298F50F55357C8BA /* AllTests.swift */, + 9A343A525055E169CE399ADF /* Client.swift */, + 1A6263E6EB0712A439E75D09 /* Server.swift */, + BFC3A3040FFC8B6EAFCA158D /* Test.ice */, + 5A577A9FBA08AE185D53C990 /* TestI.swift */, ); - name = slicing; + name = acm; sourceTree = ""; }; - B89DA4DB670B0778EB5C59A0 /* info */ = { + AAFFDFE26DCFE929B2FFE70B /* stream */ = { isa = PBXGroup; children = ( - 5784A651E1A32B4749128DE1 /* AllTests.swift */, - 66677779E376C6BC1CB257CB /* Client.swift */, - 5923FFFFBE73677A77330996 /* Server.swift */, - C6DE61C2A91224378F513C93 /* Test.ice */, - 3A18E1A90F712D013DEBAD12 /* TestI.swift */, + 25F81F514862521A7077DBE1 /* Client.swift */, + 1D406B3CFFDCECBDD678B23A /* Test.ice */, ); - name = info; + name = stream; sourceTree = ""; }; - C0061A2A3B2D4CEB5BE46F81 /* proxy */ = { + B23138DE599D6190D025EC35 /* IceDiscovery */ = { isa = PBXGroup; children = ( - 8A14118D0E57AF0A5F37755A /* AllTests.swift */, - 3C30A1A1C29802757EAC98B0 /* Client.swift */, - 1BEC5A912505A2D0739F41AE /* Collocated.swift */, - 323B42FB5AD8FC12D8AE7CDE /* Server.swift */, - 59C46080488C352EA3B5E078 /* ServerAMD.swift */, - 24511A349B3AC892968F3C7E /* Test.ice */, - C42E3590E041824F3DCB8EB0 /* TestAMD.ice */, - 2B0A74331F696DA324EE12AF /* TestAMDI.swift */, - C1D0DCF81BE7E3A82E4C8306 /* TestI.swift */, + FE6326CC8423A7AB2E011674 /* LocatorI.cpp */, + D3D29F00E18E96EA4BA99C36 /* LookupI.cpp */, + 322A1089B56E24F412CCAD3A /* PluginI.cpp */, ); - name = proxy; + name = IceDiscovery; sourceTree = ""; }; - C03B58530F11CA06E7100BC0 /* Glacier2 */ = { + B2F883909B5641C5A3D6B16E /* IceImpl */ = { isa = PBXGroup; children = ( - BE336D44832D3B066ECDDB06 /* Glacier2Swift.h */, - BDF027FA6FECE2B7A5046271 /* Info.plist */, + C121A644BFC70CEBB7B25F34 /* AdminFacetFactory.h */, + 2C0D102CF3F4701F3AE046D7 /* BlobjectFacade.h */, + 1CACDF62E69944DB57D56E47 /* BlobjectFacade.mm */, + F33540D27F8ABA588FF9CFCF /* Communicator.h */, + 627B9BCC0B4AD0B6A1F666D2 /* Communicator.mm */, + 4067CCA4E285628C8AF454D9 /* Config.h */, + F71C3042386918BE757DF8CE /* Connection.h */, + ECBCA68A7DF08B26236F860F /* Connection.mm */, + 6328AE24A94F7B78F7B70026 /* Convert.h */, + 67DA500D7FCA7E4FCAAEBE8B /* Convert.mm */, + B33CD8E30BD014F5C4CA9222 /* Endpoint.h */, + 724C0E53DAF83BB50C3912A4 /* Endpoint.mm */, + 14422400D546329D7D9926DF /* Exception.h */, + 4419CDC00A0E26DD43BE74BD /* Exception.mm */, + 25FB164477089E05881BEDAF /* IceImpl.h */, + 3E03FB734840AA5D7A8F37DA /* IceUtil.h */, + B89D7DF2F9D676F96CB9635E /* IceUtil.mm */, + 680CE9BA4A204FA3FAC93375 /* ImplicitContext.h */, + 2FB7753A8D2686CAE06B2CE4 /* ImplicitContext.mm */, + 7F87F4E054DCB94D81AF2BE4 /* LocalObject.h */, + 9B07536035C11C1E0934299F /* LocalObject.mm */, + A90D21866BAE0181F737C83C /* Logger.h */, + 7CC8B0D3189E1EC893F9D4E0 /* Logger.mm */, + D67D8A64DA92416D5A34F56F /* LoggerWrapperI.h */, + 242E9F50378F7C12B118349B /* ObjectAdapter.h */, + A3C699CA6ACD42014E3492D1 /* ObjectAdapter.mm */, + 17A01CF5F8BB77C282B69730 /* ObjectPrx.h */, + 806B7171CB7F0D3E6F836117 /* ObjectPrx.mm */, + 4D590A59E3F6155EADC253B1 /* OutputStream.h */, + CF258BC66CA2B0FD8CAE93F4 /* Process.h */, + 2A65FC585E09C2A76B625463 /* Process.mm */, + 6DD1ECACDD717AF71AF60969 /* Properties.h */, + 7C5527D47B4AA93DCBF5B076 /* Properties.mm */, + 5E45A803280C9975C7D2D5B6 /* PropertiesAdmin.h */, + DD94218AB8FC82917266BC56 /* PropertiesAdmin.mm */, + E301CB7A257886B9F8760B6A /* TraceUtil.h */, + A076886379887427EF43CAB5 /* TraceUtil.mm */, + 261E69F6A52C94909DF014AC /* UnsupportedAdminFacet.h */, + 526B263C4E63A5FD88236538 /* UnsupportedAdminFacet.mm */, ); - name = Glacier2; + name = IceImpl; sourceTree = ""; }; - C2D26382DA52F7AFC063D7EE /* optional */ = { + B8E63899AB1500891E65A136 /* IceDiscovery */ = { isa = PBXGroup; children = ( - 187ED1A448C608EC15DF698C /* AllTests.swift */, - C5242AA08870B9E96219670E /* Client.swift */, - 043AB17C4C069B93FA1E7D41 /* Server.swift */, - E597DC759086A689098B811C /* ServerAMD.swift */, - B396B2BC10CC618A54890177 /* Test.ice */, - A1D1560CEE1155BFFA1F9B22 /* TestAMD.ice */, - A7E3DA05928304B5AC220E13 /* TestAMDI.swift */, - 5E7A0432DEA9466221C423F5 /* TestI.swift */, + 1683ABE87E8B25BC9C881B82 /* IceDiscovery.ice */, ); - name = optional; + name = IceDiscovery; sourceTree = ""; }; - C82761281338FE866BCEDCEF /* Ice */ = { + B94FA1A21E64157AA91D7058 /* IceSSL */ = { isa = PBXGroup; children = ( - 8EF9206F0D3FEE4B01C0BFB4 /* acm */, - 1B3D037730139C27FEAD7FE8 /* adapterDeactivation */, - F23133703881318CE32C0417 /* admin */, - 9376FEFF580E9B1396D0B10D /* ami */, - FCE3DDBE91B3A81F21B820FB /* binding */, - E5D48610FD885F500EEB5617 /* defaultServant */, - 7343D7D871AB263A312DF5F0 /* defaultValue */, - 91204724DE7E555597CCD63D /* enums */, - 5BCC0E1D6E249668BE9174EC /* exceptions */, - 2C447E115DC5649C9E4D4790 /* facets */, - 904F85755AECCD0E0D72739D /* hold */, - B89DA4DB670B0778EB5C59A0 /* info */, - 75969B1735EBFD35BE628D57 /* inheritance */, - D5AAF4BCAE5A5A123839FFDF /* interceptor */, - A3E727DFCD4EE22B8B14992B /* invoke */, - 87FEB6D04AB77AC9246B643A /* location */, - 63CE36F0AB08662967C4BC46 /* objects */, - 8FF23095B6767A81DC69E30F /* operations */, - C2D26382DA52F7AFC063D7EE /* optional */, - 88E0363534D885191070016D /* properties */, - C0061A2A3B2D4CEB5BE46F81 /* proxy */, - 3EA8A8BE7C5292233BD37025 /* retry */, - 3F68898273D3C9EF5CB10054 /* scope */, - B43A4AF48E3DADB82EB08E42 /* servantLocator */, - 91C8925DADC22B82524EF085 /* services */, - B893B5C1C8E5CD542B6780CC /* slicing */, - 4263DB43DF2F54C6E7B1E329 /* stream */, - 3C77010308AE53DCFB2CD5D5 /* timeout */, - 79313AEDDA8144D1D722A86A /* udp */, + 53016732D7F1EE45D95136EB /* AcceptorI.cpp */, + 1AC4B3614730C36B93E6CE83 /* CertificateI.cpp */, + 3ECA877329DEF57B54A08C55 /* ConnectionInfo.cpp */, + 18123528674C5DBEFE8DC183 /* ConnectionInfoF.cpp */, + 6AE2E85C3FD16B73660AEE0A /* ConnectorI.cpp */, + 34E8CB61ABA1F28BB7E698FA /* EndpointI.cpp */, + 398A19BC7513CD91E69E4025 /* EndpointInfo.cpp */, + 419431F09AEC1476FE7B4EFC /* Instance.cpp */, + 803EE4274BE0AA9170794297 /* PluginI.cpp */, + 27DB5A110EBA9310691BDEFB /* RFC2253.cpp */, + F7449FB4230AD540975DB4BA /* SecureTransportCertificateI.cpp */, + E73B68A6243CD1C6AED87DFC /* SecureTransportEngine.cpp */, + 7E5AB0FB42BD3A39396266AC /* SecureTransportPluginI.cpp */, + 6DA216EEEB74D482231E9424 /* SecureTransportTransceiverI.cpp */, + 04ACFF850FB52C42D1D0256D /* SecureTransportUtil.cpp */, + 89DACACD2C1AD4F3469CA088 /* SSLEngine.cpp */, + 5EB90003DBB8FFCE6E52AB05 /* TrustManager.cpp */, + 983A2CBA8E5E46F1AEE78B78 /* Util.cpp */, ); - name = Ice; + name = IceSSL; sourceTree = ""; }; - C8726FC03A86D3632DA427A9 /* objects */ = { + C4813196EAAB00571C0DCF08 /* binding */ = { isa = PBXGroup; children = ( - 5248E12595EE33145909A5D9 /* AllTests.swift */, - 0F7401C2CE09807582FF593E /* Client.swift */, - 24EEF303A9F8E4869A064E55 /* ClientPrivate.ice */, - C37E81FE388B9D7FAB3C7C2C /* Server.swift */, - 68A1DF0813FCFD98C103C20D /* ServerAMD.swift */, - 19AA73005971E2B69755A399 /* ServerPrivate.ice */, - 1D731F95822FEE54CA546BF4 /* ServerPrivateAMD.ice */, - 11093968C1A0F59042CD7D5B /* Test.ice */, - 07B40D097E062D485AF3F394 /* TestAMD.ice */, - 0AE548BE00DBF796605CE418 /* TestAMDI.swift */, - 65E69FAE81A29C4237DF3017 /* TestI.swift */, + F5453037F24499786E84EA5C /* AllTests.swift */, + AFCD3E590B98FDDB60A31C5B /* Client.swift */, + 54D06539D647623F84D3C475 /* Server.swift */, + 44DB441A5970DCEF394351B7 /* Test.ice */, + 94E1968DB24F7AF587425A1C /* TestI.swift */, ); - name = objects; + name = binding; sourceTree = ""; }; - C87C78120FD959D6A4CF9536 /* IceSSL */ = { + CB99507053F483610D1B5387 /* IceLocatorDiscovery */ = { isa = PBXGroup; children = ( - C0CBBD39BB0BC5077AC80C4D /* AcceptorI.cpp */, - B1BD6C158D137668766182C6 /* CertificateI.cpp */, - 02CB2CD05CEE1E2166255186 /* ConnectionInfo.cpp */, - 2AB45D97CBDA0FAEFF65A6AE /* ConnectionInfoF.cpp */, - 4749A84AF39751728F692314 /* ConnectorI.cpp */, - 615E8464EAAEA906EF0953DE /* EndpointI.cpp */, - 4E829B55DFE27094ED4A1790 /* EndpointInfo.cpp */, - F844C21E5E941FB173DD616C /* Instance.cpp */, - 7DEDA8D23AD6801409BD6D10 /* PluginI.cpp */, - FC8043E62037681FA6B23AE1 /* RFC2253.cpp */, - 59DDE7B5BC8DF0F3AD836E76 /* SecureTransportCertificateI.cpp */, - 83F50C58BF53491B5A2519D6 /* SecureTransportEngine.cpp */, - 2981BE0BA9E535D4E8738D6C /* SecureTransportPluginI.cpp */, - EC2D223A5415E0568A67FC72 /* SecureTransportTransceiverI.cpp */, - 533D65B77DD79A97AE2A1A8F /* SecureTransportUtil.cpp */, - 08422DB9B8A6F7BEF0B9659B /* SSLEngine.cpp */, - D2DB1A2EBE508ADA82D566B4 /* TrustManager.cpp */, - 36A3DD415DB5D47F3DD67986 /* Util.cpp */, + 57EE371E56576A8317C8E490 /* IceLocatorDiscovery.ice */, ); - name = IceSSL; + name = IceLocatorDiscovery; sourceTree = ""; }; - CB8FB8046987FBD5F15CF5C5 /* test */ = { + CEB08CCA9C6FEB6098096851 /* TestCommon */ = { isa = PBXGroup; children = ( - C82761281338FE866BCEDCEF /* Ice */, - 30A1D1B75747D15AEFA8F50E /* IceSSL */, - 070FD7523C6704FBF560C535 /* Slice */, - 4B9D52C9C16D81092D2393AE /* TestCommon */, - 7CD914FA573AC8EDDE346B4F /* TestDriver */, + B47DEFE1E23FC897465087A3 /* Info.plist */, + 4584337E9DC542C82D3CFB88 /* TestCommon.swift */, ); - name = test; + name = TestCommon; sourceTree = ""; }; - D5AAF4BCAE5A5A123839FFDF /* interceptor */ = { + D391EEC690DFAB6B56B19F2D /* hold */ = { isa = PBXGroup; children = ( - 2725188194A8D2470DBF46F5 /* Client.swift */, - 5206DD21F8DF743B9A61B14B /* Test.ice */, + DAF9FCD3ACA9EEA864C2B86E /* AllTests.swift */, + 33E7FA0C07F541066A9CE1C7 /* Client.swift */, + B73411F554849A6348D021C0 /* Server.swift */, + 03A03F30C5444AE9322EB66F /* Test.ice */, + 8A635A54F2740AA6A0345900 /* TestI.swift */, ); - name = interceptor; + name = hold; sourceTree = ""; }; - DDDE350E1C387AC0F98C3AB0 /* IceStorm */ = { + D4ABCFD3BF375A90AA592480 /* Ice */ = { isa = PBXGroup; children = ( - AFF94B5C18B237C5BCC2586A /* IceStorm.ice */, - 5AE3DC5C68BCF7B63AA95F6F /* Metrics.ice */, + 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */, + 9F972A8E2DD097AC08C4A781 /* Context.ice */, + 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */, + 1E052D5C173FB6BC71D76D94 /* Identity.ice */, + D2744013C529D8F086422990 /* Locator.ice */, + B15F39FC8689FC1FCB89F477 /* LocatorF.ice */, + 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */, + F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */, + C57D6F7125325B748CB60975 /* Process.ice */, + 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */, + 54B51F429E8B56A715B61412 /* PropertyDict.ice */, + CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */, + C012332733DA4296E9354F12 /* Router.ice */, + F790BD181E9C75D456202B50 /* RouterF.ice */, + B7D9D973870D744362BE6CD5 /* Version.ice */, ); - name = IceStorm; + name = Ice; sourceTree = ""; }; - E282D3FB172515DF0B754A63 /* src */ = { + DECEDE24FCBA50A18958C76E /* objects */ = { isa = PBXGroup; children = ( - C03B58530F11CA06E7100BC0 /* Glacier2 */, - 3059B08B6D77373D2E7E80FB /* Ice */, - 6F519C736E6753D8E08C91F5 /* IceGrid */, - F75AA830EE00920BA99099C7 /* IceImpl */, - 7B16D63FB17588444E6D0451 /* IceStorm */, + 104B3F85E85A1F464938A580 /* AllTests.swift */, + DD36CD2D320F5953C219BB79 /* Client.swift */, + 9502656F9828A55BF15B904F /* ClientPrivate.ice */, + 1B507EB7D03295B2920C11D7 /* Server.swift */, + A9732906011677017B8FE8A9 /* ServerAMD.swift */, + EEAE2A3EA52301D744C2238C /* ServerPrivate.ice */, + 212F6BD6C0162AF0C8440224 /* ServerPrivateAMD.ice */, + 039C029EE5082592E88E387D /* Test.ice */, + 40E032E865784822992B0432 /* TestAMD.ice */, + 864A6D958111A066271C2056 /* TestAMDI.swift */, + 5A2D266EA2336769024DD2B4 /* TestI.swift */, ); - name = src; + name = objects; sourceTree = ""; }; - E5D48610FD885F500EEB5617 /* defaultServant */ = { + E2CEB916183D82E69C80961C /* src */ = { isa = PBXGroup; children = ( - 97E99C2AEE0BD9BF770175D4 /* AllTests.swift */, - 5C265F58DECCDAB36E4CD6A6 /* Client.swift */, - B848104E80383628C5A2CF73 /* Test.ice */, + 81639BA77E73D5AEE676B18C /* Glacier2 */, + 0203486A671386BC5E6CC041 /* Ice */, + 12F1C32F4732D8A53F774458 /* IceGrid */, + B2F883909B5641C5A3D6B16E /* IceImpl */, + 129D1EA97125CF934132FA9C /* IceStorm */, ); - name = defaultServant; + name = src; sourceTree = ""; }; - F23133703881318CE32C0417 /* admin */ = { + E8DF91CBBDA93D1971E79B76 /* iOS */ = { isa = PBXGroup; children = ( - 8188FC2EE67FAC79B3DDD184 /* AllTests.swift */, - DF00A0B8905692CA5CB21851 /* Client.swift */, - 5721BA6A8AE743A4B2FF95A5 /* Server.swift */, - 746535D89AE46CEA581E57AF /* Test.ice */, - A4E73A61A877F2E6823B7907 /* TestI.swift */, + 07F1F50A48CFD4DA0680F11B /* CFNetwork.framework */, + 24630F961292732B29C6782C /* ExternalAccessory.framework */, + 24DEF718003A036A8518D89B /* Foundation.framework */, + 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */, + F189089F52472441A777F912 /* Security.framework */, + 762976DF5DE13C4200542E0F /* UIKit.framework */, ); - name = admin; + name = iOS; sourceTree = ""; }; - F25F7B518DF4936568B7412C /* Ice */ = { + ED4EF05B26F2BD8E7CE727A2 /* slice */ = { isa = PBXGroup; children = ( - 8413DA2C3E1A4F58BD9C47A7 /* BuiltinSequences.ice */, - F0DB50962CCFE3F777DFA679 /* Context.ice */, - 6E06DC813BC5103DF1676FB3 /* EndpointTypes.ice */, - 35AE9823C665F00939098688 /* Identity.ice */, - 6F38DD25FC0B9CF9834644C9 /* Locator.ice */, - 30A4806A91DA5ED0D2FF4204 /* LocatorF.ice */, - 60C72DE758D50EEE330E214C /* Metrics.ice */, - DC52095091A14C3F13099644 /* OperationMode.ice */, - EAB0D3E2DD5FD1BA6EA4ADFF /* Process.ice */, - 2A53D9C0CD7C17FD932956ED /* PropertiesAdmin.ice */, - AD20033B4F46E7C51E1922D6 /* PropertyDict.ice */, - 96057073F871C88A9A437E6C /* RemoteLogger.ice */, - 7490F0360E314E9C5FF89F3C /* Router.ice */, - 654CCEC599E0A9552262BFF6 /* RouterF.ice */, - FDD74C1D5D68EB2943068DA2 /* Version.ice */, + 159B1E6FD88EB8053C6B85E4 /* Glacier2 */, + D4ABCFD3BF375A90AA592480 /* Ice */, + B8E63899AB1500891E65A136 /* IceDiscovery */, + 948F499BFCE00B6A1782C2EC /* IceGrid */, + CB99507053F483610D1B5387 /* IceLocatorDiscovery */, + F4CBEE8A8E7A8C6A7BF8E7D1 /* IceStorm */, ); - name = Ice; + name = slice; sourceTree = ""; }; - F3637F151137C19CCD19F0E1 /* cpp */ = { + F128824761873631208E9FF6 /* info */ = { isa = PBXGroup; children = ( - 2EDB59AC703C5D4269749C45 /* src */, + 7EC92AF3F5FC050268FC433B /* AllTests.swift */, + 1504B193CDECAF18F430FF2B /* Client.swift */, + 474135D6386C100AE4286B3D /* Server.swift */, + 442DF01B56EA1176B35EB3BB /* Test.ice */, + 0875A1294F5D23AA2CB7EB75 /* TestI.swift */, ); - name = cpp; + name = info; sourceTree = ""; }; - F75AA830EE00920BA99099C7 /* IceImpl */ = { + F4CBEE8A8E7A8C6A7BF8E7D1 /* IceStorm */ = { isa = PBXGroup; children = ( - EE56A762315F2E6B866D2172 /* AdminFacetFactory.h */, - 63086CCB688E11EB58FA8847 /* BlobjectFacade.h */, - C0F99C57D798B822698572DE /* BlobjectFacade.mm */, - 042B09E718B4AF7FEC08C931 /* Communicator.h */, - EE85799B50D901E7EE91B724 /* Communicator.mm */, - 135C5232085BDE2604DFEE21 /* Config.h */, - 164143EB3C130B0FA5630E59 /* Connection.h */, - 953B936F6C84AD4413F0837A /* Connection.mm */, - D16C752C89102255A084815B /* Convert.h */, - CB2C9FFB0BA6BBA3E848504F /* Convert.mm */, - A8F5945F8AFC7C9F3E86F3D4 /* Endpoint.h */, - AF698C2D5D97DCCFC7D85451 /* Endpoint.mm */, - 273E5195A6D681AF9C343F47 /* Exception.h */, - 77A833C278A8A075161EBAA8 /* Exception.mm */, - 60EDA02B0B44B95EBB2841F9 /* IceImpl.h */, - A0E153E7D44172EC94A37022 /* IceUtil.h */, - BA23EE95BEDA285AEE6F8A0D /* IceUtil.mm */, - 5C37059709E53268E7C14372 /* ImplicitContext.h */, - E3077BF706F4E5C8BA2500DA /* ImplicitContext.mm */, - 3573CD4E6D9EB58A37C88DBF /* LocalObject.h */, - 053E3EA43764388B8A0304F1 /* LocalObject.mm */, - C9268509E17D41945A7D998E /* Logger.h */, - 8044616B12D739F37275B163 /* Logger.mm */, - F8AFAAB080FEF12A06662C69 /* LoggerWrapperI.h */, - DFCE210A780A814AEE2A57AC /* ObjectAdapter.h */, - 145489AECBBABC46B13BBD6F /* ObjectAdapter.mm */, - 7FCC0E3729F4A0124693C97A /* ObjectPrx.h */, - 1D30AE0D95CE0B8136368F33 /* ObjectPrx.mm */, - ADEE63F9B0ACFD0462CA86EB /* OutputStream.h */, - EDC332916E29C4DB70EDDC09 /* Process.h */, - E400CBFEEB7A5C82AA30E765 /* Process.mm */, - 3D23950CABD458FD84101A42 /* Properties.h */, - EFDF1AFD3FE00EFB8D0F40DF /* Properties.mm */, - 7F0F1C0C87F3118B4B5673E1 /* PropertiesAdmin.h */, - A2BADF2E71C4E31C2545EBD7 /* PropertiesAdmin.mm */, - CF60B8793F769C8446821BF9 /* TraceUtil.h */, - 94750ED6B82F0F0C0E7243D1 /* TraceUtil.mm */, - D8F7B24CE59A1F99506ABFA9 /* UnsupportedAdminFacet.h */, - EC56C57F4AF048D4B7528E44 /* UnsupportedAdminFacet.mm */, + 5B2DF10CBEFF10D1055C9690 /* IceStorm.ice */, + 694A7AEF1BC68DE001EACE83 /* Metrics.ice */, ); - name = IceImpl; + name = IceStorm; sourceTree = ""; }; - FCE3DDBE91B3A81F21B820FB /* binding */ = { + F74302DC201C6A5AD396D58D /* Slice */ = { isa = PBXGroup; children = ( - 543206D99800E30AAB5B257D /* AllTests.swift */, - D3548229461616CC182BCEBD /* Client.swift */, - DD976A623B36B1B8928E4F84 /* Server.swift */, - 44B4CA994280A6DA16BE5B80 /* Test.ice */, - 3979D5422F89387622D2651D /* TestI.swift */, + 103FDA3C298F28EEBB273247 /* escape */, ); - name = binding; + name = Slice; sourceTree = ""; }; - FFE06286B4212B46A3E4856F /* iOS */ = { + FF39250451D3480417DFABB5 /* exceptions */ = { isa = PBXGroup; children = ( - B183D8B5CE1435DBB960167D /* AppDelegate.swift */, - 101D000CFC727409838DEE04 /* Assets.xcassets */, - F84548B73653D4C1742C2AD9 /* certs */, - 8E07F2808B7ABBDDF36A6614 /* Controller.ice */, - E12D95BAB303CB972B193B0D /* ControllerI.swift */, - C045207B0CFBEA2826456197 /* LaunchScreen.storyboard */, - 7EA959FB1AE1C0215813F162 /* Main.storyboard */, - D53779F0A96B303BCCEAEFCD /* ViewController.swift */, + FEF066D96D048F2BABE04F9D /* AllTests.swift */, + 8F6E31AAAA244C75D4675291 /* Client.swift */, + 5CD54C2AA8BE23781C057132 /* ClientPrivate.ice */, + 0AFA47DD3A3466A544964C35 /* Server.swift */, + 6A3AF2E27A291665E3020008 /* ServerAMD.swift */, + 98A6F84D22ACDB0E77E825ED /* ServerPrivate.ice */, + 668C6C0361ED4E7B91231D65 /* ServerPrivateAMD.ice */, + 5FABA39878E8DF7941FB168E /* Test.ice */, + 00EA1D526F07AB7E2403ACDE /* TestAMD.ice */, + 638F85E5C6C7085DF46F390B /* TestAMDI.swift */, + DC8A0F90321653214F836FE0 /* TestI.swift */, ); - name = iOS; + name = exceptions; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 0DFF078867C28CFA4D7954D7 /* Headers */ = { + 1DDB901128479520BB9AD0EE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + B18D0F17814EC2E9593CCBAD /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2B9C8382E410BB2D42CA9879 /* Headers */ = { + 27456717292406E63116AD53 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 7506819774CF24B7691C32E7 /* IceStormSwift.h in Headers */, + EA2E235B053E55B0E4177494 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4376B61CBA3F46BFEBE94273 /* Headers */ = { + 4FB3EA589B147838542CDE09 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + A63BB6DB081C31917F83692C /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 45A6356BECF527E2FD61BBE9 /* Headers */ = { + 64A87DA1EA9BD3C6ADAFF02E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 77129808429C81C2AB037481 /* AdminFacetFactory.h in Headers */, - F97CFDA8CB8A23C6E8BA3976 /* BlobjectFacade.h in Headers */, - 891AB334019BB7E8BEE85BA2 /* Communicator.h in Headers */, - ECE047163CB55F0E700743B6 /* Config.h in Headers */, - 67877EA20DA6A2E11F52B79D /* Connection.h in Headers */, - 73AFC54F4D4336070DC87303 /* Convert.h in Headers */, - 02D6E05A0B88B1E5AC7AA938 /* Endpoint.h in Headers */, - E39D0BAF24DE0513CB5CFE63 /* Exception.h in Headers */, - 4E52A5C6A682AD06A560D8B8 /* IceImpl.h in Headers */, - F98D3E533343BAF313BB0467 /* IceUtil.h in Headers */, - D2BD83724E67D0BF55280D93 /* ImplicitContext.h in Headers */, - 8A3155B3F4C4D042241E2AA8 /* LocalObject.h in Headers */, - 3C28C8DA74A1C7BBB8E86B74 /* Logger.h in Headers */, - AF76E41B539190348EA3B4E7 /* LoggerWrapperI.h in Headers */, - 876B53FB4F46CE95E08476AF /* ObjectAdapter.h in Headers */, - 476EC843AE77537D626FB504 /* ObjectPrx.h in Headers */, - 2F84AF1FAB750DE9223E27A1 /* OutputStream.h in Headers */, - 992670B71CA3CA542C9A7D54 /* Process.h in Headers */, - BABC32201225A91C5A25EA93 /* Properties.h in Headers */, - BCF08A16C4619922A60B7811 /* PropertiesAdmin.h in Headers */, - 84AF4F009CF9E16EBEDCAC3F /* TraceUtil.h in Headers */, - A05A10B6FBD0AB0DA5F06517 /* UnsupportedAdminFacet.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 558B4EC93D7C78C03C354DB2 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 4714CE6112C1E40B9171D952 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 58EA7ADDF13023AC26BAD850 /* Headers */ = { + 8112B61D6F5DD5F0C9A572AE /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EF5BF0ADF4AADCAD20D976BD /* IceSwift.h in Headers */, + 3BAC27CEC5453D4304B6F587 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 65B941C107B5D926BC9DAE4E /* Headers */ = { + 862473C968F0D73C3C7F9E37 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6A0314BAAAB1E1D5321D0E26 /* Glacier2Swift.h in Headers */, + 2491EC7A2D74733C470C6A68 /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 69965D996B7933965D78AF39 /* Headers */ = { + 93E7BB61B44B0AFE4EFBB63A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7B13C7BEB4B84507D058731C /* Headers */ = { + 93FACC3DABC45ED5846FDE83 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7B69B42DFF503DFC784A79D2 /* Headers */ = { + 9A8A94E05D6A1E0A2426EC03 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1F093643851476294E4DF1C8 /* IceGridSwift.h in Headers */, + 648FDBD2BA6F923EEC0E66D4 /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7F00EE9249F8973A302CB92C /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - E085CF894D47FF6C9A3CD5B0 /* AdminFacetFactory.h in Headers */, - 7B418B8458096FB5EF4C5D1E /* BlobjectFacade.h in Headers */, - FC54082ACCBB1B3E3B7227C2 /* Communicator.h in Headers */, - 1689503B258341EFDDE5BE0B /* Config.h in Headers */, - 1E48B791A1865EB55D9284DA /* Connection.h in Headers */, - 0E7E65D715D1EE6037D10809 /* Convert.h in Headers */, - F873A044FA20C143145F4AB4 /* Endpoint.h in Headers */, - BB0627CE5A909DB8B89570F2 /* Exception.h in Headers */, - 1E44E9A0E1B2863ED614F14C /* IceImpl.h in Headers */, - 967DACE1B78C42A031FA8623 /* IceUtil.h in Headers */, - 641C43C2F02D34F279B4CEFF /* ImplicitContext.h in Headers */, - 8AA8293CDB629E0E92F460B3 /* LocalObject.h in Headers */, - 5359708A14D3FF5119AFCC16 /* Logger.h in Headers */, - 60EACE4E3104FF8141E4212C /* LoggerWrapperI.h in Headers */, - D053C9626C8F6B692897D6AA /* ObjectAdapter.h in Headers */, - 4FE9ACBEB15A45D193EF97D2 /* ObjectPrx.h in Headers */, - 34F29F31D596DF12B4205EE6 /* OutputStream.h in Headers */, - 495A47AEE0C8881638302999 /* Process.h in Headers */, - 06C7FA26056AC4243C624FE1 /* Properties.h in Headers */, - 399B3AE9CD7D52AA3D974DF7 /* PropertiesAdmin.h in Headers */, - 5607DD25299446F07752A306 /* TraceUtil.h in Headers */, - 1FA9E9F00108DE8B22E3C509 /* UnsupportedAdminFacet.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 9FEE05592AE8324AF9E79454 /* Headers */ = { + A4A82603F3B768F28D42E20B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A38E08479830289204BF8B25 /* Headers */ = { + AEDBAA7430AF34324F0C413A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AD941286EF374900A28FB073 /* Headers */ = { + AFC6E97F41C4740B499DFBCD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 0B28D21E15B45D1ED33F3FFB /* AdminFacetFactory.h in Headers */, + B97DA3D60EE182D1AB51D9EA /* BlobjectFacade.h in Headers */, + 95295F91978AE312AE371B47 /* Communicator.h in Headers */, + AA189CC4BFC36298AC8BE63E /* Config.h in Headers */, + 2A93CE8856B63795C5EE6ADE /* Connection.h in Headers */, + E20F5B09EF5C04746A4E87C0 /* Convert.h in Headers */, + D34E460845F60D96B659E1E9 /* Endpoint.h in Headers */, + 27F90A37B3E7904B31A85347 /* Exception.h in Headers */, + 5BAE4094CCE5A0B4AC95DEBA /* IceImpl.h in Headers */, + 672ABFC7A04DBF3DFB694921 /* IceUtil.h in Headers */, + 919FCBDA71FAA6B336A35F7A /* ImplicitContext.h in Headers */, + 1A5AD7AF937810A8F33FA8E9 /* LocalObject.h in Headers */, + E2A512A72F8C1F3A55044BD3 /* Logger.h in Headers */, + E49A789A85D80DC904BE4D72 /* LoggerWrapperI.h in Headers */, + 207CEA59B4F540620C5A9902 /* ObjectAdapter.h in Headers */, + BB6256A532AFE0F50633935A /* ObjectPrx.h in Headers */, + A628D09090DA1A976D4E7395 /* OutputStream.h in Headers */, + 0566211B24AFD8F6FC201F0D /* Process.h in Headers */, + 3CF091986D8294BDD0805398 /* Properties.h in Headers */, + D69426083BBC072A41B12214 /* PropertiesAdmin.h in Headers */, + E5370113AA58E064333184A2 /* TraceUtil.h in Headers */, + 7672767DFDB5782E780428B5 /* UnsupportedAdminFacet.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B7B7E0BA3DB171A1A71274E2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C8877B3C819990B6BC7A690D /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B3C4707A58EB85EFE586EA8D /* Headers */ = { + C54A82F5226EAE308AF83FE2 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 1E7FC6A3FCC753DC5AC50711 /* Glacier2Swift.h in Headers */, + 5EB89B704EA537152536E101 /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B928A3C1C8C85243F11116AE /* Headers */ = { + C7EF7F01A53C07C81C0B8A0B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 2462C4CBDA2826A41BE4E987 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - DF467E18F4E5D6A05EE41E21 /* Headers */ = { + CF9EE45AEAD159608001824B /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 15FD74806A0E0036DC93EFD2 /* AdminFacetFactory.h in Headers */, + 9BE9DBFF8F23C2B39DFA252A /* BlobjectFacade.h in Headers */, + C069E915226406AB4FC91B6B /* Communicator.h in Headers */, + 7C47A846F07E602B46BC1ED0 /* Config.h in Headers */, + 830EF50D85A696229F7C3FB6 /* Connection.h in Headers */, + EBDA6DF9FFD8DA98E922E042 /* Convert.h in Headers */, + C91DA74ACBFCAA2DB28D97D2 /* Endpoint.h in Headers */, + 66F36E022D500E9B5D5D6673 /* Exception.h in Headers */, + 5739F0353ED109F18A7AC24A /* IceImpl.h in Headers */, + 1ACBBDA263DC52EFE9B40BCE /* IceUtil.h in Headers */, + E56A2B5D84CF0D1438D587E6 /* ImplicitContext.h in Headers */, + 4904EB407049E8EA654B7169 /* LocalObject.h in Headers */, + 0821890B3D246581E1D1B1B1 /* Logger.h in Headers */, + F11C89DE74F84A7D67BBEE11 /* LoggerWrapperI.h in Headers */, + A0A0F385D08C94CE9C7BA323 /* ObjectAdapter.h in Headers */, + 76E62DE475D6AFA64D784C9A /* ObjectPrx.h in Headers */, + 9A8700B1C2D39ACB29F88CBB /* OutputStream.h in Headers */, + D88E1EF1901912C9F5A60E3C /* Process.h in Headers */, + 96B271D784D9299289F70657 /* Properties.h in Headers */, + 7BAC320CC9549BE3F30C380C /* PropertiesAdmin.h in Headers */, + C16730199AED9F96DA90412D /* TraceUtil.h in Headers */, + 092780B0FE2232D1CD619000 /* UnsupportedAdminFacet.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E397D6F5D93A8E803E68ABD0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E7B95495F3F9FAA4C144754E /* Headers */ = { + EC097AD6335E22BBE91CB010 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 20F5F1E6B7E664860383BA12 /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 0210DABE4A3F8E46162FC09A /* IceFacets macOS */ = { + 00F4F87A480D875F2C651B81 /* IceSlicingObjectsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CDCDD4A7D4900CC95A64A7D0 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */; + buildConfigurationList = AE759CF313ADE80AD78FF935 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */; buildPhases = ( - 1C37E763A2EF713D8ACE1C17 /* Sources */, - A69A460CEF11FDC219381533 /* Frameworks */, - 6622AA71B0D61E2BBD5F81CF /* Resources */, + 02EDF6CA2C4F558C22BB1EE9 /* Sources */, + BD978DCE67C32A8CBB5F07BC /* Frameworks */, + 9A6FB97FD62ADA170CBB7639 /* Resources */, ); buildRules = ( - CC080E7B675EE59A2EBB5267 /* PBXBuildRule */, + F72C9C41A743047D73876627 /* PBXBuildRule */, ); dependencies = ( - 566680A0045B5FC0A2FBB40E /* PBXTargetDependency */, - E68C4D1E19DC1BD7420EA436 /* PBXTargetDependency */, ); - name = "IceFacets macOS"; - productName = IceFacets; - productReference = 7009D84B5EA234435C031C1D /* IceFacets.bundle */; + name = "IceSlicingObjectsAMD macOS"; + productName = IceSlicingObjectsAMD; + productReference = D78BFDA010F774B68B1D0943 /* IceSlicingObjectsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 02E12A01B24B3B3E6927EAD6 /* IceStorm iOS */ = { + 01B75CEA3EB80A6E664242B0 /* IceTimeout macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B097866F7C9739FE146CBADC /* Build configuration list for PBXNativeTarget "IceStorm iOS" */; + buildConfigurationList = C75CE301532817FB9F18CF2D /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */; buildPhases = ( - 2B9C8382E410BB2D42CA9879 /* Headers */, - 0B4840C77677AEF89D0AF797 /* Sources */, - 2D9A966D2716D3CFC47D3599 /* Frameworks */, - A467A25D14A61D0C3C8243A2 /* Resources */, + 78763EFE4244AF2640CEF60D /* Sources */, + 0A5A6F26717A3996E52368C1 /* Frameworks */, + 2A1FD57D952DFFC16A6455EB /* Resources */, ); buildRules = ( - 0DCF0D46E3E230305834ECF7 /* PBXBuildRule */, + C22ED9CC12162007C4BA9774 /* PBXBuildRule */, ); dependencies = ( - 53A0109717E72F079E06AE34 /* PBXTargetDependency */, + AED09B4E4172B4B44AA7DCA8 /* PBXTargetDependency */, + 42C8E46CBBDE065DD4F3AE64 /* PBXTargetDependency */, ); - name = "IceStorm iOS"; - productName = IceStorm; - productReference = 98D588F3EFEE8B76127C2DFC /* IceStorm.framework */; - productType = "com.apple.product-type.framework"; + name = "IceTimeout macOS"; + productName = IceTimeout; + productReference = 7C3C842B0893C4AC6BA6C676 /* IceTimeout.bundle */; + productType = "com.apple.product-type.bundle"; }; - 032E51349714AC140B16B6B4 /* IceOptionalAMD iOS */ = { + 055B3C0D85846EE14E87127C /* IceInterceptor macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5220219DB0289DD3A3F01180 /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */; + buildConfigurationList = EDDCB3D00193C75D1E33B973 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */; buildPhases = ( - ED09550AE8FA94ADE0975A42 /* Sources */, - AD17D36FCAD1C1D0249C4216 /* Frameworks */, - A3517EBE1153EBFFA40E1EDB /* Resources */, + 6ABBD8B70A885D37B8A5E341 /* Sources */, + 1D5ADA908DE06BC749FE9250 /* Frameworks */, + 836B5D5EACD7F6885E026237 /* Resources */, ); buildRules = ( - 29E4309E99D7B07919B4D720 /* PBXBuildRule */, + 1FE230AEDB37ADA5C1A5F0B2 /* PBXBuildRule */, ); dependencies = ( + E6B46F39DA1C4362ABCC5A4F /* PBXTargetDependency */, + DECBA1CB2D07F2D341550502 /* PBXTargetDependency */, ); - name = "IceOptionalAMD iOS"; - productName = IceOptionalAMD; - productReference = 977C1FE11405DDDBFB5775A2 /* IceOptionalAMD.bundle */; + name = "IceInterceptor macOS"; + productName = IceInterceptor; + productReference = EDC1F699D0173A3262ED8783 /* IceInterceptor.bundle */; productType = "com.apple.product-type.bundle"; }; - 0520084212F98FC56E36026A /* IceLocation macOS */ = { + 096C6B1CDEA03B0A33EF7AB7 /* SliceEscape macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3693852902D60EDEB5D8B27F /* Build configuration list for PBXNativeTarget "IceLocation macOS" */; + buildConfigurationList = 1884127EAB4501CE6C47D3E9 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */; buildPhases = ( - 3489D071F380B1656A917FE2 /* Sources */, - 806C0D38FBCA56C743153425 /* Frameworks */, - 5EE01CAADBEB7A0A53E33276 /* Resources */, + 794CC756BC61DA86436DF30D /* Sources */, + 3BF962457683C43CAE343F04 /* Frameworks */, + 454CD0CE4DDB15AE6636A5C4 /* Resources */, ); buildRules = ( - ECA001EC16338B375200B5F6 /* PBXBuildRule */, + 4CEF5C0E326A4206091A6352 /* PBXBuildRule */, ); dependencies = ( - 0FBE96A84BC1484537A5FD45 /* PBXTargetDependency */, - 7CFB1EAE4986B09E929407BC /* PBXTargetDependency */, + 6488CCA4C33A18941B6512B3 /* PBXTargetDependency */, + 2B93FFC81500D248421591C7 /* PBXTargetDependency */, ); - name = "IceLocation macOS"; - productName = IceLocation; - productReference = 5CA31F719AC415E991FB8790 /* IceLocation.bundle */; + name = "SliceEscape macOS"; + productName = SliceEscape; + productReference = E2FA87620B046FCEDC51EC6F /* SliceEscape.bundle */; productType = "com.apple.product-type.bundle"; }; - 065FE0308F8C069FEF18896D /* IceServices macOS */ = { + 0BE885FE5E5BBE860323877D /* IceUdp iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C0BAC8D2F2BDDC628B47F70C /* Build configuration list for PBXNativeTarget "IceServices macOS" */; + buildConfigurationList = 9DE455849AC8D536550B2EEC /* Build configuration list for PBXNativeTarget "IceUdp iOS" */; buildPhases = ( - 792BDCA9FBE22AB30651FA77 /* Sources */, - E2174B22E1A853074D86D4D2 /* Frameworks */, - DCD01EBCC135470D053D910A /* Resources */, + 32BEA01ACBF119855F9EDAAF /* Sources */, + 50B0F1CB22D8E290284E2335 /* Frameworks */, + 844D9BF33068806C77C78861 /* Resources */, ); buildRules = ( - 0F9586CF2348081A43AE65D0 /* PBXBuildRule */, + BF3B2FC5B3FFADD3BE32B708 /* PBXBuildRule */, ); dependencies = ( - 77EC7D9DEE34A6B7F04BCD70 /* PBXTargetDependency */, - A497425BB144004D91B3A24C /* PBXTargetDependency */, - 7542658B1836A7406DA10C95 /* PBXTargetDependency */, - B32A054F28A69988E16FDE93 /* PBXTargetDependency */, - 6C652077FC7503CFC40710A8 /* PBXTargetDependency */, + 9BD771586727B4841BFDEFC4 /* PBXTargetDependency */, + C952D4C257062F34819F1D02 /* PBXTargetDependency */, ); - name = "IceServices macOS"; - productName = IceServices; - productReference = 64826F8AA2F1B443C0AEFD5C /* IceServices.bundle */; + name = "IceUdp iOS"; + productName = IceUdp; + productReference = D566AB986C3B8546B20A2AE0 /* IceUdp.bundle */; productType = "com.apple.product-type.bundle"; }; - 0763ED05481F11F83E2EE767 /* IceStorm macOS */ = { + 0CC992ABE92F26754D8B7AC6 /* IceSlicingObjects iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 311CC0626756F8DC8C37E0C0 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */; + buildConfigurationList = D0CCC607E5806E77831B1416 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */; buildPhases = ( - AD941286EF374900A28FB073 /* Headers */, - 8184C195194F6FB5999C1A34 /* Sources */, - E13F2754E63755D244B6DFE9 /* Frameworks */, - 41AFD2D8C8E2742DEE69B459 /* Resources */, + 9DD73DF35AB14838BEFD510B /* Sources */, + 3550CE4A87D9A268B0F8D568 /* Frameworks */, + CA1C99B3F8D4D7D793ECAB4A /* Resources */, ); buildRules = ( - 004224CFB509E7C1FC39428F /* PBXBuildRule */, + 89683846F0C742C47E988B73 /* PBXBuildRule */, ); dependencies = ( - 784F589616673E41E6E10577 /* PBXTargetDependency */, + 17EC27CE297AA6E9065BB02A /* PBXTargetDependency */, + FDDC6921F7FA776C8D389BC0 /* PBXTargetDependency */, ); - name = "IceStorm macOS"; - productName = IceStorm; - productReference = 102C8EBB7B156230C64E8D84 /* IceStorm.framework */; - productType = "com.apple.product-type.framework"; + name = "IceSlicingObjects iOS"; + productName = IceSlicingObjects; + productReference = 474923F0179531C32355FF66 /* IceSlicingObjects.bundle */; + productType = "com.apple.product-type.bundle"; }; - 0A1278D024EC2ADD3E42D968 /* IceExceptions iOS */ = { + 0CCC3C20156C399AF82BA12D /* IceInterceptor iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 260FA577E2C3E38F2A27CF02 /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */; + buildConfigurationList = D78ED8ECC0AE408DA83908A4 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */; buildPhases = ( - D9321E417D66FDC352F91E8A /* Sources */, - 6EE23CD5E6D19F5FB0EF8DD5 /* Frameworks */, - 55AAF8555FBD4EEEAC6CF25A /* Resources */, + A51674944759CDA437CD977D /* Sources */, + 31CB0600F2CAEE6EA284EA25 /* Frameworks */, + 24EFBFE3ADA2749FF488D044 /* Resources */, ); buildRules = ( - 763D1ED0B8332881198D49B8 /* PBXBuildRule */, + 8535D8C5726F499728E8C0DD /* PBXBuildRule */, ); dependencies = ( - B250A10EA0C9DECC08C517CE /* PBXTargetDependency */, - 8372F8B77792626C7161922D /* PBXTargetDependency */, + 120EC5E39F021DB7DC78826D /* PBXTargetDependency */, + F792378C33010C66EEB34D7B /* PBXTargetDependency */, ); - name = "IceExceptions iOS"; - productName = IceExceptions; - productReference = DF969510683D898EFE4084C0 /* IceExceptions.bundle */; + name = "IceInterceptor iOS"; + productName = IceInterceptor; + productReference = 030DE03918D9D61428E52F76 /* IceInterceptor.bundle */; productType = "com.apple.product-type.bundle"; }; - 0FE313AA3347701853A8ACC2 /* IceScope iOS */ = { + 0D82476565F3AEA63555293E /* IceAmi macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 67954058AE74D657CE73E879 /* Build configuration list for PBXNativeTarget "IceScope iOS" */; + buildConfigurationList = CB1B55F276722B4DC699283F /* Build configuration list for PBXNativeTarget "IceAmi macOS" */; buildPhases = ( - 13267D0E93EC0E98F66BB8E8 /* Sources */, - BDDB8118BD2E41D589C48638 /* Frameworks */, - 65A1D9F4C1DE7EC581D22A5B /* Resources */, + 053867D376E8154EDC7988A4 /* Sources */, + B4544514F441BC1AFD28374F /* Frameworks */, + C50094EE4DBBAC8B73D539E6 /* Resources */, ); buildRules = ( - 44AAB332860E31A022811D8C /* PBXBuildRule */, + 1D1CE901804E6FEB2E40314F /* PBXBuildRule */, ); dependencies = ( - 9BE01873452B4CDE2505E761 /* PBXTargetDependency */, - B1EA7490102A614CD39BDA79 /* PBXTargetDependency */, + 4DD30FA8F8C40E68D1B364F6 /* PBXTargetDependency */, + FB94CB2385382EAB605FFA78 /* PBXTargetDependency */, ); - name = "IceScope iOS"; - productName = IceScope; - productReference = 0AF49C110C762F572C744977 /* IceScope.bundle */; + name = "IceAmi macOS"; + productName = IceAmi; + productReference = C86CB8DA4BE954C9B5E50C78 /* IceAmi.bundle */; productType = "com.apple.product-type.bundle"; }; - 1351B844542309876A23C297 /* TestDriver macOS */ = { + 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 23EB73EBAAF47155243FEAF5 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */; + buildConfigurationList = D19A58BF707835F960F106B8 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */; buildPhases = ( - C85E6EAE3323C931667E87A4 /* Sources */, - 29F7D70D4B2EECA821F5FD18 /* Frameworks */, - 4ECFD74C1B3163DA11B8470D /* Resources */, - 440CDC3992F6F8DEDC8FF875 /* Copy Frameworks */, - B8CBC486347FCEEA7EEA81CD /* Copy Symbols */, + AEDBAA7430AF34324F0C413A /* Headers */, + C9862A8B24C5CD002B5B285E /* Sources */, + A698BD56302069302025FC88 /* Frameworks */, ); buildRules = ( - DF94B80C79B35D09316699A7 /* PBXBuildRule */, + BC55EE4522A96DAF80A52E30 /* PBXBuildRule */, ); dependencies = ( - CD026E743E238B67FB126CF4 /* PBXTargetDependency */, - 2BAAD90F90C6A90A021E6A76 /* PBXTargetDependency */, - 8424FEE4E9D597D4BA072BEC /* PBXTargetDependency */, - E7D0BCA7B6CE9083E6FDA175 /* PBXTargetDependency */, - ED059F1D27D335B3B3C32D68 /* PBXTargetDependency */, - 5A0FCC92D3699768A160D6D6 /* PBXTargetDependency */, - 35B27061E8112FA1B6B66318 /* PBXTargetDependency */, - EB267888323925AD46EE8F50 /* PBXTargetDependency */, - 02823461962BC2A525DCCF4E /* PBXTargetDependency */, - 376ABE64AF659ECA8C22D231 /* PBXTargetDependency */, - 3DE284C4F6FCB5781D328A55 /* PBXTargetDependency */, - 410FDF4952B010B0945C3C8C /* PBXTargetDependency */, - 555EAEE8DFFC8D4D221B2BB2 /* PBXTargetDependency */, - 56513DA127D1C68ACCBA0B8C /* PBXTargetDependency */, - 5E712366BD04AB698D4EEE87 /* PBXTargetDependency */, - 7A7758F7AE666F1EBFDF5EB3 /* PBXTargetDependency */, - 158203B2E8EA9B27230C32E6 /* PBXTargetDependency */, - 21EFE1CC52F99DA8714377F4 /* PBXTargetDependency */, - 80EF4016774DA399DD1B1987 /* PBXTargetDependency */, - A88ACEF96D50D5914BD3DC92 /* PBXTargetDependency */, - BD7815CE5D3ED4B6360BA769 /* PBXTargetDependency */, - 384D047B6C9F2863BFB31590 /* PBXTargetDependency */, - A62FEAA4E469B98C82503827 /* PBXTargetDependency */, - CDA9FFCA9232FD60A26F7D22 /* PBXTargetDependency */, - B4972BED37D4C4FAF0372BC3 /* PBXTargetDependency */, - F688DECE8B107A49A6AD8DCF /* PBXTargetDependency */, - 3DBE085DFD2E881FF58E52E9 /* PBXTargetDependency */, - 000557CC81C9632BB5D26D8B /* PBXTargetDependency */, - 74A57853F75F6CDA4348E446 /* PBXTargetDependency */, - AF533C8405620F251028A4E9 /* PBXTargetDependency */, - D2B93A66D1C5BFB26864EE66 /* PBXTargetDependency */, - C81E1EEBD11F06A34298A694 /* PBXTargetDependency */, - 7FB3F0BD3A0991E0CAF69DFA /* PBXTargetDependency */, - 89C9ED5DBA335F17B96A0507 /* PBXTargetDependency */, - 07F76D4D9005A939736B6911 /* PBXTargetDependency */, - C3138A5B1B62555F56113792 /* PBXTargetDependency */, - 45FF4770D67E760A94627B7F /* PBXTargetDependency */, - B140730A523448E31C4552CE /* PBXTargetDependency */, - F84CB7D8874C47223236E6E2 /* PBXTargetDependency */, - 191F2DF8F559B727A0B9A104 /* PBXTargetDependency */, - 71CCF13118C59068AE4C30A4 /* PBXTargetDependency */, - 4E2B168180317E2A65AFB156 /* PBXTargetDependency */, - 193BA6ED5F91A3E91A7987F7 /* PBXTargetDependency */, - D0866759E0F64B5A3BDE27E1 /* PBXTargetDependency */, ); - name = "TestDriver macOS"; - productName = TestDriver; - productReference = BCCD7A2776EFD0C816828644 /* TestDriver.app */; - productType = "com.apple.product-type.application"; + name = "Ice C++11 macOS"; + productName = "Ice C++11 macOS"; + productReference = 9FF873ABC0C688353DDDFBD8 /* libIce C++11 macOS.a */; + productType = "com.apple.product-type.library.static"; }; - 137A22811E93D82B716007C8 /* Glacier2 macOS */ = { + 124476FE277A9E3ABE9F4A34 /* IceObjects iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6F15C88FC57ADE62FA48D631 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */; + buildConfigurationList = 5FFFF89B11EECD1E5C41B703 /* Build configuration list for PBXNativeTarget "IceObjects iOS" */; buildPhases = ( - B3C4707A58EB85EFE586EA8D /* Headers */, - 1FFD8FD2EA3186FD2989F8CE /* Sources */, - FCF71E3C27BBBE5D6E66044C /* Frameworks */, - 3E34C18B5CF5991309F8C2E7 /* Resources */, + 7EDB299C07B10EFAD2A9D9EE /* Sources */, + D2F76D4ED0D3915212A80E04 /* Frameworks */, + 0020C26533E1133E77AD8D39 /* Resources */, ); buildRules = ( - 68C2715B73A2D8D20ADB2DA5 /* PBXBuildRule */, + 880A1FF72D078D481E1F6266 /* PBXBuildRule */, ); dependencies = ( - 461396EE57D51DE72FBAB3CE /* PBXTargetDependency */, + BA76E7009C807481CDE371D6 /* PBXTargetDependency */, + 21326B009F7622080ED1C8ED /* PBXTargetDependency */, ); - name = "Glacier2 macOS"; - productName = Glacier2; - productReference = E00667716A1C103FAC5F4862 /* Glacier2.framework */; - productType = "com.apple.product-type.framework"; + name = "IceObjects iOS"; + productName = IceObjects; + productReference = 0D0C50C25B4B163B7098033F /* IceObjects.bundle */; + productType = "com.apple.product-type.bundle"; }; - 1714972356F07102A679833E /* IceInterceptor macOS */ = { + 14E9DB904AE22B49F37C4175 /* IceEnums macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2D984BDC022D5237A7868BA4 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */; + buildConfigurationList = 79C62B5F4AC3F786B504F1F0 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */; buildPhases = ( - EBA356C27D4FAF52E2FB0AAB /* Sources */, - 81D5B9AC37AD06D7F36426CC /* Frameworks */, - 1A47BFF86DBE1D7DC11C0867 /* Resources */, + 88FBE0C1A68DEEAB8105F856 /* Sources */, + 8C0497F3F6397B74F75333FB /* Frameworks */, + B28CF688D5975D799535462C /* Resources */, ); buildRules = ( - 865847DA2C67708B4CFE870A /* PBXBuildRule */, + B656093C42BDE2CB471C3E0F /* PBXBuildRule */, ); dependencies = ( - 9836538E8EA0AF80582F8BC0 /* PBXTargetDependency */, - D9661EC214A87FEC6F26326F /* PBXTargetDependency */, + 06AD476773998DB766063AA0 /* PBXTargetDependency */, + F10735D401705032A9100A7F /* PBXTargetDependency */, ); - name = "IceInterceptor macOS"; - productName = IceInterceptor; - productReference = 698CE5506A44CD12B6835C88 /* IceInterceptor.bundle */; + name = "IceEnums macOS"; + productName = IceEnums; + productReference = 998084A78E611312ABCE0CC7 /* IceEnums.bundle */; productType = "com.apple.product-type.bundle"; }; - 182B60B239B1CC9AAF97C3ED /* IceSSLConfiguration macOS */ = { + 15259193E3C55F25AB0F68C2 /* IceImpl iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EA5565BC88E3B4CF63433B39 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */; + buildConfigurationList = 0B05EAB79BFAA962F80CF8AC /* Build configuration list for PBXNativeTarget "IceImpl iOS" */; buildPhases = ( - 99007BBB653F6A4522FC1EB6 /* Sources */, - E2988144001FB558C7913EA1 /* Frameworks */, - FBDF8399AC587C86B17BBFDC /* Resources */, + AFC6E97F41C4740B499DFBCD /* Headers */, + 98DA39F4403BBC2A614A5643 /* Sources */, + 2A98404D5208BD65E3DB6CFE /* Frameworks */, + 99703AE171232EE3316B7FC0 /* Resources */, ); buildRules = ( - CBC1E6F17724241F37D0F5E5 /* PBXBuildRule */, ); dependencies = ( - A54A8023DAA2646B9E387228 /* PBXTargetDependency */, - 8469BC8DE06514C0EC4415B2 /* PBXTargetDependency */, + C111472E48165E881EFF337E /* PBXTargetDependency */, + A4A639EE912CDFA594409636 /* PBXTargetDependency */, + 4B73F09BAD7093CC023E236A /* PBXTargetDependency */, ); - name = "IceSSLConfiguration macOS"; - productName = IceSSLConfiguration; - productReference = 397D6E5EA9E00485DEEDF569 /* IceSSLConfiguration.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceImpl iOS"; + productName = IceImpl; + productReference = 42391EF6184A353552A00883 /* IceImpl.framework */; + productType = "com.apple.product-type.framework"; }; - 1849F40335AEAFEAB939B520 /* IceServantLocatorAMD macOS */ = { + 1564B348BA2786B8C14E7ADE /* IceLocatorDiscovery C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C13AEC2E435E896E8FBD5649 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */; + buildConfigurationList = 469CC415C2CD4E23C9440A03 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */; buildPhases = ( - C95E4F45F7796D2824F91CFD /* Sources */, - 276DBE3784B7F1938128A4AA /* Frameworks */, - 56E232529AC0563BD6BB03DB /* Resources */, + 93E7BB61B44B0AFE4EFBB63A /* Headers */, + 017A05C9E5492039D3D8D7A3 /* Sources */, + E7946541CD8706DFA4CC9055 /* Frameworks */, ); buildRules = ( - FEB3111859F1906BC9DD77BA /* PBXBuildRule */, + EE5C55B0C4EE5B272194CA83 /* PBXBuildRule */, ); dependencies = ( + E4187628621AC05D211283D5 /* PBXTargetDependency */, ); - name = "IceServantLocatorAMD macOS"; - productName = IceServantLocatorAMD; - productReference = DF1CA6ABA240EB1DCE0DCA9E /* IceServantLocatorAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceLocatorDiscovery C++11 macOS"; + productName = "IceLocatorDiscovery C++11 macOS"; + productReference = BDC9CA0C36333F0F3089E6C1 /* libIceLocatorDiscovery C++11 macOS.a */; + productType = "com.apple.product-type.library.static"; }; - 1AAB45470D9803BF85F70BF0 /* IceBinding iOS */ = { + 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7AF911822DEE95ED274B0A63 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */; + buildConfigurationList = B89F4C4E44F64BDD966EE1B5 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */; buildPhases = ( - B0C83D7E31A8D4A8EBF9E33B /* Sources */, - 388E9580B94953505195FEBE /* Frameworks */, - 251A43C91E2D94E01B5F65AC /* Resources */, + A4A82603F3B768F28D42E20B /* Headers */, + 1C729607C00CB2E52881670C /* Sources */, + E9E5406CDF46D57109C05BCB /* Frameworks */, ); buildRules = ( - C7B22BC973A3D0530889FDC4 /* PBXBuildRule */, + B23A71024FB1EC235C7BA17C /* PBXBuildRule */, ); dependencies = ( - B31CA61BAECA3671B98FC954 /* PBXTargetDependency */, - 87D911C3E22577CF86C47968 /* PBXTargetDependency */, ); - name = "IceBinding iOS"; - productName = IceBinding; - productReference = FEB045E2BE5B2791729997F6 /* IceBinding.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice C++11 iOS"; + productName = "Ice C++11 iOS"; + productReference = 8AF093375A28D692055B8973 /* libIce C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - 1B61C6EBFA17380F9C3CC36E /* Ice macOS */ = { + 21CBD45E7CE90BF8C75C80EB /* IceFacets iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B2B98177DDD46EE593305650 /* Build configuration list for PBXNativeTarget "Ice macOS" */; + buildConfigurationList = D7544F8A922AE8F2EDB41A02 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */; buildPhases = ( - E7B95495F3F9FAA4C144754E /* Headers */, - DC9F71DD24521C3C5FCF9509 /* Sources */, - E834D2A2201449AA539C8B3A /* Frameworks */, - 77D43E15944D6D68CD63D3AC /* Resources */, + 1B03E3F3801D77DFC550183E /* Sources */, + B54B106594DCA06CB094EFC7 /* Frameworks */, + A0B128E85A3D225FE746C5E3 /* Resources */, ); buildRules = ( - EEDA6000FD40D396D43D25FC /* PBXBuildRule */, + 9DCADAFEFDB3EBDE12774132 /* PBXBuildRule */, ); dependencies = ( - B48AB98E8E8805BCBEC6BA31 /* PBXTargetDependency */, + FC9B91912DEDE6206860CBB8 /* PBXTargetDependency */, + 13564D9121B17F14DA89ECD9 /* PBXTargetDependency */, ); - name = "Ice macOS"; - productName = Ice; - productReference = FB64C1942DFC8ACD03DC7591 /* Ice.framework */; - productType = "com.apple.product-type.framework"; + name = "IceFacets iOS"; + productName = IceFacets; + productReference = A763F1E9B20B68CAD1D62D3F /* IceFacets.bundle */; + productType = "com.apple.product-type.bundle"; }; - 1F921787D1BBEBC84AF46F5D /* IceSlicingObjectsAMD iOS */ = { + 24DFB14E537F560FB7A2C4BB /* IceLocation macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 082B20DA5873A1E188F2B846 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */; + buildConfigurationList = C774EC4F7B80A9DC640C4A98 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */; buildPhases = ( - ACB7C5609B10FAB2A178F1A0 /* Sources */, - BCA5BF6A710C8DDB182F84DF /* Frameworks */, - 84ACD97B1C481AE94F144C5B /* Resources */, + 69DDECD27807D9D00780E084 /* Sources */, + 49FD36C12156CBE1BCDA70BA /* Frameworks */, + FF3A8C84C00FA22BAF711434 /* Resources */, ); buildRules = ( - 8B137D938FD033910546D033 /* PBXBuildRule */, + 37CA4220287721CCCA94A7B6 /* PBXBuildRule */, ); dependencies = ( + 5A5F490E3C9235C51179AAE6 /* PBXTargetDependency */, + 9AF017062C8BBE42CF67CBB0 /* PBXTargetDependency */, ); - name = "IceSlicingObjectsAMD iOS"; - productName = IceSlicingObjectsAMD; - productReference = E7B4AD1931A23E635750A562 /* IceSlicingObjectsAMD.bundle */; + name = "IceLocation macOS"; + productName = IceLocation; + productReference = 0351F96883BE42489669584D /* IceLocation.bundle */; productType = "com.apple.product-type.bundle"; }; - 204D17961BE241E9AA6931C4 /* IceSlicingExceptionsAMD macOS */ = { + 263F8736790034DA7D5B83D1 /* IceDiscovery C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 65DA3EE375E8CE4A5E2FCF3F /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */; + buildConfigurationList = CAA6AB848FDFE69287273CB7 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */; buildPhases = ( - 0B28994B972EEAB0CFB67C3E /* Sources */, - 8460563DABEDFA47B835BE67 /* Frameworks */, - E7080BC54D8C04FAED0C3C9F /* Resources */, + E397D6F5D93A8E803E68ABD0 /* Headers */, + 9956BCFAA677883DD752707A /* Sources */, + 3790CD79595DF06C45CEE0FF /* Frameworks */, ); buildRules = ( - B72BE837295DF17DDFD40108 /* PBXBuildRule */, + 8302F207827ECD75369F66EB /* PBXBuildRule */, ); dependencies = ( + 0B04243124955F9134481732 /* PBXTargetDependency */, ); - name = "IceSlicingExceptionsAMD macOS"; - productName = IceSlicingExceptionsAMD; - productReference = 2967E04C4326091B1910DB93 /* IceSlicingExceptionsAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceDiscovery C++11 iOS"; + productName = "IceDiscovery C++11 iOS"; + productReference = AD73F53FFF7497EA96B009D6 /* libIceDiscovery C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - 205D8173670283F9A6ADDECA /* IceOptionalAMD macOS */ = { + 27BA347B00896E18F811823C /* Glacier2 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7A305DD21906A670D3F6D12C /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */; + buildConfigurationList = E4220777441E5EF3ECA5F089 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */; buildPhases = ( - 837412A9BCB1C7BC61B63653 /* Sources */, - C5BE5834A1E5B9502F92849C /* Frameworks */, - EE7DEDECFCEDD205693251F2 /* Resources */, + 862473C968F0D73C3C7F9E37 /* Headers */, + 9FEC8E70B5CF85980CBBC182 /* Sources */, + FCBEA5B3F2725D44C6BCEAE1 /* Frameworks */, + 5C9093264E356EF7506B0894 /* Resources */, ); buildRules = ( - F65ADC4709B3D7098379FDB4 /* PBXBuildRule */, + AF546237D726CD2250E4A251 /* PBXBuildRule */, ); dependencies = ( + 9882DAC1C90963F118992497 /* PBXTargetDependency */, ); - name = "IceOptionalAMD macOS"; - productName = IceOptionalAMD; - productReference = BF3F7C97E46FF31D7DBAFF42 /* IceOptionalAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Glacier2 macOS"; + productName = Glacier2; + productReference = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; + productType = "com.apple.product-type.framework"; }; - 214682343A5CDC54C07B1A1B /* IceHold macOS */ = { + 27F3896A1D44D94EF855517D /* IceOperations iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7DD80A81A453D2724906B5D5 /* Build configuration list for PBXNativeTarget "IceHold macOS" */; + buildConfigurationList = 4D82084280C676C2093AF62F /* Build configuration list for PBXNativeTarget "IceOperations iOS" */; buildPhases = ( - 349D51B9EDBE11F8743E7CBC /* Sources */, - 175CCCC5FCB49F902F463E46 /* Frameworks */, - 50B468D44F74C3900D93241E /* Resources */, + B71341B8DCD3386E969D021F /* Sources */, + E30612C910C44AD368450089 /* Frameworks */, + 17ACD2A45F6EE83A3AC34886 /* Resources */, ); buildRules = ( - 23DBFE117A0213EDA0978F3C /* PBXBuildRule */, + 906E6E95E73C78CDFE13B1B3 /* PBXBuildRule */, ); dependencies = ( - C8B015F8C20EF516FDB222EC /* PBXTargetDependency */, - 9026F726E66782655ECF0627 /* PBXTargetDependency */, + CB3B7B0043F55BF6802CD033 /* PBXTargetDependency */, + 8D591E47149945369DF1771F /* PBXTargetDependency */, ); - name = "IceHold macOS"; - productName = IceHold; - productReference = D8766C6DCAB7BABFE071D77E /* IceHold.bundle */; + name = "IceOperations iOS"; + productName = IceOperations; + productReference = 849D140524843186122E2B5D /* IceOperations.bundle */; productType = "com.apple.product-type.bundle"; }; - 26B6DCD78B127AE4BDB35209 /* IceRetry iOS */ = { + 283F1EEEFDF95C8EA1294341 /* IceHold iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 12D84B08BD2E17377429CD9A /* Build configuration list for PBXNativeTarget "IceRetry iOS" */; + buildConfigurationList = 39202D7414A70877BE45837D /* Build configuration list for PBXNativeTarget "IceHold iOS" */; buildPhases = ( - F6DF1DCD51C0EA0E25420646 /* Sources */, - 08D5DEC763216EFC1714B04D /* Frameworks */, - 0A6F59B190567DCB370BCFD8 /* Resources */, + 0B146F32DDB488FA7CDA54CC /* Sources */, + D792278D9EE599FE0B8B825F /* Frameworks */, + B253E03A991CCAF40EFAD3A7 /* Resources */, ); buildRules = ( - AF2534F44B95A47ADDFDF67B /* PBXBuildRule */, + A6BD0CCEAD9F8A1D852393B8 /* PBXBuildRule */, ); dependencies = ( - AF013F8FEADD5AA87CB921C4 /* PBXTargetDependency */, - 8DEE39D33DB085CA080A643B /* PBXTargetDependency */, + F03EA759905DEDFC7B18290C /* PBXTargetDependency */, + C48DC5160B65EC80A35EED6B /* PBXTargetDependency */, ); - name = "IceRetry iOS"; - productName = IceRetry; - productReference = 3A90857F1CD31FC2193C9C89 /* IceRetry.bundle */; + name = "IceHold iOS"; + productName = IceHold; + productReference = BB0D9576EB2595A8BB30BC3A /* IceHold.bundle */; productType = "com.apple.product-type.bundle"; }; - 287E9414F6A74860FF1188EE /* IceExceptionsAMD iOS */ = { + 28A1C2F2EB8DCCF1AFE83661 /* IceAdapterDeactivation iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D589334357FA183D27798AED /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */; + buildConfigurationList = 8D6981486561EBD3BEBBE95C /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */; buildPhases = ( - 8139460A05987B21367408BF /* Sources */, - 92905898A9681A2AAF2E77A7 /* Frameworks */, - 6891FD0DDF35516059510105 /* Resources */, + 189D6C47B729B0D4667B0D84 /* Sources */, + 3325493FAA42575AE19695CA /* Frameworks */, + 7FDADC7E2F4C408B7A8E7527 /* Resources */, ); buildRules = ( - FD27D7E107BB01688F427A34 /* PBXBuildRule */, + 026B9995488EA94AC1BEB784 /* PBXBuildRule */, ); dependencies = ( + 9B992E1F5F07104C27BCC46B /* PBXTargetDependency */, + 1CBF579EC013B2E376910769 /* PBXTargetDependency */, ); - name = "IceExceptionsAMD iOS"; - productName = IceExceptionsAMD; - productReference = CE3EFB47219D60018ECBCE1B /* IceExceptionsAMD.bundle */; + name = "IceAdapterDeactivation iOS"; + productName = IceAdapterDeactivation; + productReference = 0F1198C1D619743981CCBB42 /* IceAdapterDeactivation.bundle */; productType = "com.apple.product-type.bundle"; }; - 30CD23A6E9655B858C148892 /* IceAdapterDeactivation macOS */ = { + 2B6CEDAE0FF7E5682835597A /* IceSlicingExceptions macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6BEA27ACF920A238C41BE6D8 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */; + buildConfigurationList = 70304980DAC6B5CAC7E8F6DE /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */; buildPhases = ( - 9A7C513770B097DD6F2762A8 /* Sources */, - 0B2EA7B0E2BF1399F90BE3D3 /* Frameworks */, - F3EDBCFD3A7A38ABC66567B7 /* Resources */, + ACC172DFEF365F0F73B16F5D /* Sources */, + 3C210FAAB58E0C567CD28F01 /* Frameworks */, + 6D8FCFF2028B41E88732E523 /* Resources */, ); buildRules = ( - 0DDD9C52FD49098F8B3785BD /* PBXBuildRule */, + D0F6BEA25FBBFCCA4FF875E8 /* PBXBuildRule */, ); dependencies = ( - E5B1D04C114B228AAE5931FF /* PBXTargetDependency */, - BF1240667740DFEF9BA536F9 /* PBXTargetDependency */, + 38E9400954C5518735939765 /* PBXTargetDependency */, + CE5DAAAB7F64DF3F8A27B067 /* PBXTargetDependency */, ); - name = "IceAdapterDeactivation macOS"; - productName = IceAdapterDeactivation; - productReference = 7E5BC150A7E6BE558ECEA251 /* IceAdapterDeactivation.bundle */; + name = "IceSlicingExceptions macOS"; + productName = IceSlicingExceptions; + productReference = 9EEEF7EF10C88BEAC2595F7E /* IceSlicingExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 330758B0C9821D7E1E2243D3 /* IceProxyAMD iOS */ = { + 3639C4450BB9A2FD62EC83B1 /* IceAdapterDeactivation macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F5C049476C15902282285C7B /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */; + buildConfigurationList = 10E1403F759E228BC195828D /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */; buildPhases = ( - 0458B90EEA65443D46CDA233 /* Sources */, - 7E8D149538FE376E6FFABB85 /* Frameworks */, - DC0BBC4BA56D82D8B5F1D138 /* Resources */, + 225AF2F874C2476133C2F0B1 /* Sources */, + 60ABDADDDC38AA635910F2CA /* Frameworks */, + B88F882DB9BDF3B49E110495 /* Resources */, ); buildRules = ( - 7A8AC688B641270820DEEF2B /* PBXBuildRule */, + 63596B300BE41853DB663025 /* PBXBuildRule */, ); dependencies = ( + A57627368CC0EE1A16DCB109 /* PBXTargetDependency */, + DDF36C186BCD8C7411F54C61 /* PBXTargetDependency */, ); - name = "IceProxyAMD iOS"; - productName = IceProxyAMD; - productReference = 2A2E598EF61DF473F6F1896D /* IceProxyAMD.bundle */; + name = "IceAdapterDeactivation macOS"; + productName = IceAdapterDeactivation; + productReference = 0C651862FD101870CF346580 /* IceAdapterDeactivation.bundle */; productType = "com.apple.product-type.bundle"; }; - 3922C5D52BCDB27B7A0BD1C2 /* IceExceptionsAMD macOS */ = { + 3682D0A08A431497D8699B03 /* IceSlicingExceptionsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B19B12C0EA85D69FF9269DB2 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */; + buildConfigurationList = DA5782EA7C56F1C9C9EE074A /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */; buildPhases = ( - 9A2EF05C4152549F1757F5FD /* Sources */, - 5D3DFFC3743FCAF57F57CE46 /* Frameworks */, - 5BC976D4C34BCB3175841B9A /* Resources */, + E0FA8EE687F03346A9E3EA5D /* Sources */, + CEAC8C07ABFA3535880712A2 /* Frameworks */, + E9F5F0922E44A83E54A7CE7E /* Resources */, ); buildRules = ( - 34112FA3CAB0CFDBAB99076A /* PBXBuildRule */, + D5DB8A3A0A5B9B8BBEB91C59 /* PBXBuildRule */, ); dependencies = ( ); - name = "IceExceptionsAMD macOS"; - productName = IceExceptionsAMD; - productReference = F15FB749EF455BD7CA108204 /* IceExceptionsAMD.bundle */; + name = "IceSlicingExceptionsAMD macOS"; + productName = IceSlicingExceptionsAMD; + productReference = E826DFF464DFB4529E54EDC3 /* IceSlicingExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 3C1B36794C4B3EFB2B618967 /* IceRetry macOS */ = { + 37631E1832EC47AB18B6F9F8 /* IceOptionalAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E5F229C1A5B95628F5542D9B /* Build configuration list for PBXNativeTarget "IceRetry macOS" */; + buildConfigurationList = 5D6E3AC8616035B5AECEBBAC /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */; buildPhases = ( - C3F8C582C2352BF2FCC0F81A /* Sources */, - 5F05253C5A8A79C321DDCB72 /* Frameworks */, - 1B108CE5FAF58D62083D14B5 /* Resources */, + E2F1BEE041F303D35091A880 /* Sources */, + E968A28CD4DAF0118A700EB5 /* Frameworks */, + 7119E28106D2A577A8A3F0AC /* Resources */, ); buildRules = ( - 1DD5AA8184DF6DA93A755326 /* PBXBuildRule */, + 9AF559A596B7B8DD3EEF1CA4 /* PBXBuildRule */, ); dependencies = ( - 3CFDC36ED886B57BC4C00866 /* PBXTargetDependency */, - 4200DF6902C6C3AF1A0FE39F /* PBXTargetDependency */, ); - name = "IceRetry macOS"; - productName = IceRetry; - productReference = CABAAA81FDF2158619AA51BB /* IceRetry.bundle */; + name = "IceOptionalAMD iOS"; + productName = IceOptionalAMD; + productReference = 6331AC6AD612A19D131621A7 /* IceOptionalAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 408FAEC665C8C38D7A2248A7 /* IceDefaultServant iOS */ = { + 39438194D11EA03199C6686E /* IceUdp macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 304C8B1D7F902B92FF4F7FD7 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */; + buildConfigurationList = 674190F44ED8DD47BBD3457E /* Build configuration list for PBXNativeTarget "IceUdp macOS" */; buildPhases = ( - 5205454E600CF041B66BE774 /* Sources */, - 2A44D1A66AB186DC218C9267 /* Frameworks */, - 093C5CD6E55478880A44AA9D /* Resources */, + 7CA59DD48A5F2DD2F1203DA0 /* Sources */, + CFFD04D7334DE7F83630BCFE /* Frameworks */, + CEDC6C4F7DFD4D758CF665C1 /* Resources */, ); buildRules = ( - 4CD37FEA4E1356B16598939F /* PBXBuildRule */, + 406E2DEE7A5B133E3F08662B /* PBXBuildRule */, ); dependencies = ( - 3BC969C7F2AFAD0E3A038D2B /* PBXTargetDependency */, - 999DBEC3129B500169220DB6 /* PBXTargetDependency */, + 8EA188D77F70D24C2796F1F2 /* PBXTargetDependency */, + 1A07374B3416C0DC9EDFA40C /* PBXTargetDependency */, ); - name = "IceDefaultServant iOS"; - productName = IceDefaultServant; - productReference = A84471908266098F39B2D842 /* IceDefaultServant.bundle */; + name = "IceUdp macOS"; + productName = IceUdp; + productReference = 03DCA74ACCAE41A0ADDF52A1 /* IceUdp.bundle */; productType = "com.apple.product-type.bundle"; }; - 45F2051058E66C596838C08E /* IceAdmin iOS */ = { + 3E00BC6A9646D9FED455066C /* IceAdmin macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A5032BE58483039660530CEB /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */; + buildConfigurationList = 092F36D88613D1A5972D047F /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */; buildPhases = ( - F19017E1D9F12DA2663861F9 /* Sources */, - 2CE99FB7116C174046BE3325 /* Frameworks */, - DCCB743A54EDB138F1A65AD0 /* Resources */, + A07809F6BA4FB2EBCDA57A0E /* Sources */, + B862D6E5F716780AED3C2D8C /* Frameworks */, + C9DAB62BBE190CFBF7170A49 /* Resources */, ); buildRules = ( - 28DD4EFFB1C9520539DE741D /* PBXBuildRule */, + 7C3C53A9A4E138E38DA558E2 /* PBXBuildRule */, ); dependencies = ( - 70BA3A6EAE132BF56B919C33 /* PBXTargetDependency */, - 35357E9E1A4B5309DE819116 /* PBXTargetDependency */, + CADAFB3437C135AD3AC5469E /* PBXTargetDependency */, + AC4CC6B8A2031AD2045B501A /* PBXTargetDependency */, ); - name = "IceAdmin iOS"; + name = "IceAdmin macOS"; productName = IceAdmin; - productReference = ACB9AA204E947072B6089FC4 /* IceAdmin.bundle */; + productReference = 72083FEA504B3EAD2B1B6FE2 /* IceAdmin.bundle */; productType = "com.apple.product-type.bundle"; }; - 4A4450AB007BDD9E08CDC48B /* IceOperationsAMD macOS */ = { + 3E1C18FAE5F2A3A2849292E9 /* IceGrid iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D88854720B46BA2754326BFC /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */; + buildConfigurationList = B177DF1D1629B1AE10FE43D1 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */; buildPhases = ( - 96447815E9D4871B57962CBE /* Sources */, - 54B7DC8576899174CD5F5E11 /* Frameworks */, - 904E0E21C02D58FB52ABC27A /* Resources */, + 1DDB901128479520BB9AD0EE /* Headers */, + 4EDE5F9D421F14059D4E8F33 /* Sources */, + 39742AA4710C285CB1EFE2D3 /* Frameworks */, + AA4E9C8790445E9D35057FCB /* Resources */, ); buildRules = ( - BE80EF3BB4E02CA5EE251A84 /* PBXBuildRule */, + A0D3544A6366CDEBB70F5523 /* PBXBuildRule */, ); dependencies = ( + 374811107DE398E12960D278 /* PBXTargetDependency */, + 55EB74D578CA62B140CDDE41 /* PBXTargetDependency */, ); - name = "IceOperationsAMD macOS"; - productName = IceOperationsAMD; - productReference = A590A314799E84457E6B723C /* IceOperationsAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceGrid iOS"; + productName = IceGrid; + productReference = F8335B51360FAD4A3774DBDC /* IceGrid.framework */; + productType = "com.apple.product-type.framework"; }; - 4E4074DFF5890EB17098C624 /* SliceEscape iOS */ = { + 3EA20E16FBEAA1C5B0DA52BA /* IceProxyAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 96024CD2A213A56EA0CDB0C6 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */; + buildConfigurationList = FBAF081DB3D9A6FADF284C05 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */; buildPhases = ( - FAD4ECED8BEEB141B2709A27 /* Sources */, - 9749DBB85A01DF036830A5A8 /* Frameworks */, - 458A41546A21BEF1A15CE2EA /* Resources */, + FA4743AAA8336CD1C662C664 /* Sources */, + A0899A079D953C8B3733ECE6 /* Frameworks */, + 1820192F3579B5E37FCA2BF2 /* Resources */, ); buildRules = ( - 7B991C6CCABC0AA2E9FB8B02 /* PBXBuildRule */, + 8A9AD969E4AC48B3137708A7 /* PBXBuildRule */, ); dependencies = ( - 07CE505BF5648B30269F4DC9 /* PBXTargetDependency */, - 5284D32BE16809CC3BF4C3F8 /* PBXTargetDependency */, ); - name = "SliceEscape iOS"; - productName = SliceEscape; - productReference = A6D9088DAAB107784DA16DE0 /* SliceEscape.bundle */; + name = "IceProxyAMD macOS"; + productName = IceProxyAMD; + productReference = F81F55C1F60FE16B0090352D /* IceProxyAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 53EC7722C4E553C8B5189060 /* IceInfo iOS */ = { + 429CEDF95141D2685FE9AB01 /* IceEnums iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A2ED652B8ACFE2E5D1830069 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */; + buildConfigurationList = 4DB434BEC4D47FE241686799 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */; buildPhases = ( - D34F40178ACFC211A11C58B9 /* Sources */, - D675B054FD409E45A804E723 /* Frameworks */, - 0B1DEE39080B2B5E8A7CAC24 /* Resources */, + 9BC3F6F228B2B8CC44C9A008 /* Sources */, + 081497A296EC3CCA4C40B339 /* Frameworks */, + 1AB95AEDF5AD059291ED92D9 /* Resources */, ); buildRules = ( - C523A5A2902F545CFF1BC083 /* PBXBuildRule */, + B65DF0E5CC3617FCD6495418 /* PBXBuildRule */, ); dependencies = ( - DF851CD15E175B9CF10F503A /* PBXTargetDependency */, - 76EBAA25C0E89FC850447018 /* PBXTargetDependency */, + 27BCE5C17E0BC2EFE96D9805 /* PBXTargetDependency */, + 27FA504BD00219560AF87677 /* PBXTargetDependency */, ); - name = "IceInfo iOS"; - productName = IceInfo; - productReference = 7F6624BB6F4570C1B15B7C59 /* IceInfo.bundle */; + name = "IceEnums iOS"; + productName = IceEnums; + productReference = F5C15610EC1017BFB49E9711 /* IceEnums.bundle */; productType = "com.apple.product-type.bundle"; }; - 57641F57B5FDCF62AD0FCD45 /* IceFacets iOS */ = { + 4685FAE2AEBE43E1EEA7F814 /* IceDefaultServant iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F2A31FCBF6D5223BA39DC957 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */; + buildConfigurationList = 270B29BCEE9A0485CBB85E84 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */; buildPhases = ( - 6C8C84C974D39140120406C1 /* Sources */, - C92627ADB79BCA30657E405C /* Frameworks */, - 2A940B992AA90EF2453DFED1 /* Resources */, + 8EE6710B66BF776E86C6ABE5 /* Sources */, + F686E94DE59E1050B4F45B23 /* Frameworks */, + 631021495D98633A80ADA247 /* Resources */, ); buildRules = ( - 9CDAD8CE99953C5570CB5E41 /* PBXBuildRule */, + D75DF2378F1BE3AA82BEFA71 /* PBXBuildRule */, ); dependencies = ( - B3D96F5FB71D69F5D938AC3C /* PBXTargetDependency */, - CD7274BC30E2C97E3C21B93C /* PBXTargetDependency */, + 16814372AF840708839F0163 /* PBXTargetDependency */, + 60C26C61835A0ED1FE59D87C /* PBXTargetDependency */, ); - name = "IceFacets iOS"; - productName = IceFacets; - productReference = 5FC1B1B7E470DA1817C0EEA4 /* IceFacets.bundle */; + name = "IceDefaultServant iOS"; + productName = IceDefaultServant; + productReference = 5A11FDE12E0158896D2902C2 /* IceDefaultServant.bundle */; productType = "com.apple.product-type.bundle"; }; - 595CBA41E37503369DC5E136 /* IceEnums iOS */ = { + 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = FDB4D6BFB37F88D5E6A16C48 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */; + buildConfigurationList = 03C104B96C3644524557A697 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */; buildPhases = ( - 4C93A6C97A1E449CFB81717A /* Sources */, - 03969FEBBB361D750052E277 /* Frameworks */, - 3850C5F25BBD667F9D57BB07 /* Resources */, + 93FACC3DABC45ED5846FDE83 /* Headers */, + 405CD52C99BA714EBBF20283 /* Sources */, + E3C3083DE135A1C425F49493 /* Frameworks */, + F23D88C9D1CF00A3A504428F /* Resources */, ); buildRules = ( - D777AFCE3F658CA3EABD87DB /* PBXBuildRule */, + 2F333406D1D89EE25A9F5B70 /* PBXBuildRule */, ); dependencies = ( - 516DC0CF307323B0D5D88662 /* PBXTargetDependency */, - 3C07DD43F02337996CE7092B /* PBXTargetDependency */, ); - name = "IceEnums iOS"; - productName = IceEnums; - productReference = 4487959432B7C792830C5266 /* IceEnums.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestCommon macOS"; + productName = TestCommon; + productReference = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; + productType = "com.apple.product-type.framework"; }; - 600F66FEB1C8FA05B0D86986 /* IceBinding macOS */ = { + 473D6356B099988C3C7E81A3 /* TestDriver macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BF17C6FB528CF9EC0E545D1B /* Build configuration list for PBXNativeTarget "IceBinding macOS" */; + buildConfigurationList = 1AF909433E628EC26457205C /* Build configuration list for PBXNativeTarget "TestDriver macOS" */; buildPhases = ( - 719DA637A24B37A1CE54D834 /* Sources */, - 7A628065EC2915DCE28B89DF /* Frameworks */, - 28EEA04A2E4723D77C819796 /* Resources */, + 1A6CF57760DFFFD82003731D /* Sources */, + 508B96393867923BC906A09E /* Frameworks */, + D6B18307D907DD86202D5525 /* Resources */, + 2E68AF26B73DB2B867826B67 /* Copy Frameworks */, + 1A7952D3F70EC49CDEE66AD5 /* Copy Symbols */, ); buildRules = ( - C728E6AA53372B98CCCC75A1 /* PBXBuildRule */, + C3260C78D6DFC54BF7C5943F /* PBXBuildRule */, ); dependencies = ( - CDD8B021773917AC568C6F04 /* PBXTargetDependency */, - 485AD32FFF655BD454B30F80 /* PBXTargetDependency */, + 53A98460378A24B6F10DAAFF /* PBXTargetDependency */, + 800E83C2B330AFEAD399DD60 /* PBXTargetDependency */, + A5A0858FF649EA88502C6129 /* PBXTargetDependency */, + 03134A7173C5F92037D8BC35 /* PBXTargetDependency */, + B72170EFD46C6CC04FAD3073 /* PBXTargetDependency */, + 93D9D3EDF78007C8C23E1A41 /* PBXTargetDependency */, + 42FE01A7DDE457D508342618 /* PBXTargetDependency */, + 2956B7B75F4D412AF02EFF31 /* PBXTargetDependency */, + 47708FB0075A1C13990F2FD3 /* PBXTargetDependency */, + BAC4BB0CCC6787349A6306AC /* PBXTargetDependency */, + C6423C92B65868913DA5D155 /* PBXTargetDependency */, + 2FE04E929B05A627C1689DEA /* PBXTargetDependency */, + 2716428E9B531A65D3377B42 /* PBXTargetDependency */, + F66CBACFBF5ACE1C684F0F2B /* PBXTargetDependency */, + 6C84C09A147E85B35E086BF1 /* PBXTargetDependency */, + 26ED27E144843A00C086BEA1 /* PBXTargetDependency */, + 657B7F580C2C29007B695ADC /* PBXTargetDependency */, + ADB6979E4FEC016457718AE0 /* PBXTargetDependency */, + 365A22EBF5A4FDADF221E23F /* PBXTargetDependency */, + E928D870FD0AA9E48537C782 /* PBXTargetDependency */, + 84D63EA5B75EFD1433CE435A /* PBXTargetDependency */, + C25E171182CE76078011C5AD /* PBXTargetDependency */, + 31A66F09B3162862E4B3954A /* PBXTargetDependency */, + B2979DB87EC9525F4FC07F61 /* PBXTargetDependency */, + 51172D8ABCC4360E0461FCEC /* PBXTargetDependency */, + 421BF68BAE989652701BB2EE /* PBXTargetDependency */, + 54EC40BBC1C029B6732B2879 /* PBXTargetDependency */, + 7FDDCCA36B06D44409F6806F /* PBXTargetDependency */, + 1D34CC2EBD4CECFDDCDFB1BC /* PBXTargetDependency */, + E9DABD37E785A712124E697A /* PBXTargetDependency */, + 542C81497575401A8F247803 /* PBXTargetDependency */, + A7A853B5689F1F86A54D9059 /* PBXTargetDependency */, + 33C9B29A2C6F71E8AC4A5273 /* PBXTargetDependency */, + 201B5C1C0AEC5EE1E56D1AF5 /* PBXTargetDependency */, + 1668D9984B544411EF6127A9 /* PBXTargetDependency */, + BFE70C8A03062A01DB129678 /* PBXTargetDependency */, + FBC8B2CA9E0EC001FFDBCC4A /* PBXTargetDependency */, + 505CBB999F89EAF643CAB88D /* PBXTargetDependency */, + A5FF4459AFF629E41C5AD166 /* PBXTargetDependency */, + 3CC75AD56303036F1EBB8998 /* PBXTargetDependency */, + 5D5F29E46A8930E120396A7D /* PBXTargetDependency */, + 004E3BD554C37FB3CBC4E2F1 /* PBXTargetDependency */, + BCE12792758EF8EA92B0B17E /* PBXTargetDependency */, + B588339708F34300FC993054 /* PBXTargetDependency */, ); - name = "IceBinding macOS"; - productName = IceBinding; - productReference = 1FD8BF102CBDEA4AE9A1BEF0 /* IceBinding.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestDriver macOS"; + productName = TestDriver; + productReference = AF198F1B7E492421D2764DC7 /* TestDriver.app */; + productType = "com.apple.product-type.application"; }; - 61321B12DA134239ABC63556 /* IceAdapterDeactivation iOS */ = { + 478A8F3068E5FF5F72F783EC /* IceSSLConfiguration macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B6024535BA37B28DFB01C3FC /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */; + buildConfigurationList = DBB2EA67BA6CDCB7FCB3DE91 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */; buildPhases = ( - 231728936D1C55FE04EB4BF6 /* Sources */, - 85697C9D74BC35EB0F16A4C5 /* Frameworks */, - A5D08DF0FACCE964193081FB /* Resources */, + A660EB5F9FF6AEDB20390263 /* Sources */, + 8FD85DAC494692521FE3D118 /* Frameworks */, + ABF8DE0E10BDE6A847E963E0 /* Resources */, ); buildRules = ( - B7499AD05BA236E3286AE115 /* PBXBuildRule */, + A23254B04EF0DFC199809C6E /* PBXBuildRule */, ); dependencies = ( - 090C3209AF384F8B6108121C /* PBXTargetDependency */, - CD9514560682743BF11656FF /* PBXTargetDependency */, + 934DA8231C701557DF9C79CE /* PBXTargetDependency */, + 3F1CB2E5551EEDC59E1E432F /* PBXTargetDependency */, ); - name = "IceAdapterDeactivation iOS"; - productName = IceAdapterDeactivation; - productReference = 4CF51F5BA92DBCFB19276E79 /* IceAdapterDeactivation.bundle */; + name = "IceSSLConfiguration macOS"; + productName = IceSSLConfiguration; + productReference = 525EFBA91C000927B6DE6289 /* IceSSLConfiguration.bundle */; productType = "com.apple.product-type.bundle"; }; - 6204C55F63CC62BE2A2B08C9 /* IceProperties iOS */ = { + 47EF87D7ED829723C501BBBC /* Ice iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 92D3B5C3ABFC9059F3CB410E /* Build configuration list for PBXNativeTarget "IceProperties iOS" */; + buildConfigurationList = B3EB63E7E80278C3A46AB5D0 /* Build configuration list for PBXNativeTarget "Ice iOS" */; buildPhases = ( - FAE41A6D65E6771F4FD09FCF /* Sources */, - 35CB773F3DD0BA966844D75D /* Frameworks */, - 41420A7A5FFABE64AF8D8FAE /* Resources */, + 4FB3EA589B147838542CDE09 /* Headers */, + F397727F47CFBB558C1BA0B0 /* Sources */, + 728C617FAC0D36682AF6F66B /* Frameworks */, + 9C8F862DFA162032660D5E3E /* Resources */, ); buildRules = ( - 0FBF8A09C0F0EDCB96B6EAB6 /* PBXBuildRule */, + 1EFAC4D5CFA3C5E69B7EBAE1 /* PBXBuildRule */, ); dependencies = ( - 9E6E69F1F02510C56CDA7615 /* PBXTargetDependency */, - 01B16A341EAF3CA681B853AA /* PBXTargetDependency */, + 3DBE51302F6C198FD8C49ECF /* PBXTargetDependency */, ); - name = "IceProperties iOS"; - productName = IceProperties; - productReference = 1C48DE3037CF4AE7BFD44F84 /* IceProperties.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice iOS"; + productName = Ice; + productReference = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; + productType = "com.apple.product-type.framework"; }; - 68767C0FE145D39DE4D88779 /* IceAmi macOS */ = { + 4BB02C0AE52711EB3F20C5D7 /* IceAmi iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 90700B4EF9DB322D4479A91D /* Build configuration list for PBXNativeTarget "IceAmi macOS" */; + buildConfigurationList = 1FBF92B4CD04CC8C9EFB5E86 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */; buildPhases = ( - 8B45AD9152CA20EE9FB12029 /* Sources */, - C639112EA1AD1B0B61A09EA2 /* Frameworks */, - 7868B6B9117C3BA8980EEEC8 /* Resources */, + 3E1F45930E5FE2EDA87D5CD2 /* Sources */, + 6F8A42B394C3B6FE549EAB36 /* Frameworks */, + 2C3F7BF7A7697FF44A039618 /* Resources */, ); buildRules = ( - 162A1E09280CE82F4A264925 /* PBXBuildRule */, + 01108756FB1E50B366DCC087 /* PBXBuildRule */, ); dependencies = ( - 7B086A6685E226D7555642CE /* PBXTargetDependency */, - ADD406C16E8B6E9D5DAB1A80 /* PBXTargetDependency */, + BFCE5FB9230491517B1F422D /* PBXTargetDependency */, + 8BDB8A98B09045E5AB11B27F /* PBXTargetDependency */, ); - name = "IceAmi macOS"; + name = "IceAmi iOS"; productName = IceAmi; - productReference = 2110B3C9B21AE73C0BD6ECBD /* IceAmi.bundle */; + productReference = 9158AF482E818BC8C94168F9 /* IceAmi.bundle */; productType = "com.apple.product-type.bundle"; }; - 6C9760FEBCAAE6CE0FA2DC30 /* IceHold iOS */ = { + 4D5800AC0A437A45FB0049AB /* SliceEscape iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 11498C7C982D7FA44A2E3AB9 /* Build configuration list for PBXNativeTarget "IceHold iOS" */; + buildConfigurationList = 555A63D73D762337A889ABFE /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */; buildPhases = ( - 033CE6712C625CA7671D3FE7 /* Sources */, - ECFC62CBBB3A9E4054304BCA /* Frameworks */, - 448528794B6535C7A09BF80F /* Resources */, + 908875F30A31F98DBEEC6853 /* Sources */, + 2B9175E1C1EA89B3C928F148 /* Frameworks */, + 4B9C6AC1E445FE40B49C9B4E /* Resources */, ); buildRules = ( - E05145B97E66726EE7A63085 /* PBXBuildRule */, + FB4C0218FC99C654D5B6CAA4 /* PBXBuildRule */, ); dependencies = ( - 6EA80965AC7EBF95F050A721 /* PBXTargetDependency */, - 020A0AC03AB445E15CDBC364 /* PBXTargetDependency */, + 09D3052B0E301E57DB00C947 /* PBXTargetDependency */, + 608F0166FCDB893FC4748FEB /* PBXTargetDependency */, ); - name = "IceHold iOS"; - productName = IceHold; - productReference = F7CA3B0771AAB23FD2BBAB32 /* IceHold.bundle */; + name = "SliceEscape iOS"; + productName = SliceEscape; + productReference = A7CAB2E9D70B8A29FA66E759 /* SliceEscape.bundle */; productType = "com.apple.product-type.bundle"; }; - 6D2A74C3BC8748EAD4AF10CA /* IceInvoke macOS */ = { + 4E2639095BC1D8AB5CABDD8E /* IceBinding iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D87EB862D7C1FAA82D04034A /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */; + buildConfigurationList = 2C6B159FF806CA13EF38DE93 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */; buildPhases = ( - EE31D1023E6B2D6849A9FDCA /* Sources */, - DD384BAA07FF49EC8CDCEA71 /* Frameworks */, - EA1FD40EF9B321E769A74269 /* Resources */, + CCE2454EF62FDB1BEF8150C9 /* Sources */, + 9909050AA6F90417BBEA7F28 /* Frameworks */, + 8E5B7E695002A042F1EB7A38 /* Resources */, ); buildRules = ( - E3FF2A65AF816E8EBDF4617D /* PBXBuildRule */, + D7844059119B1D96117377BA /* PBXBuildRule */, ); dependencies = ( - 580FC8590D7564D6621587CA /* PBXTargetDependency */, - 4DF062ECC947761147A8B958 /* PBXTargetDependency */, + 5A3127CFCA184D1967C19B95 /* PBXTargetDependency */, + 2515347844C24DEB2A01ECAE /* PBXTargetDependency */, ); - name = "IceInvoke macOS"; - productName = IceInvoke; - productReference = 82BA2AD0516BDC1B952A1A16 /* IceInvoke.bundle */; + name = "IceBinding iOS"; + productName = IceBinding; + productReference = 80FAAEBFCC3A3BCA918A1783 /* IceBinding.bundle */; productType = "com.apple.product-type.bundle"; }; - 74391EA658CAB520F6080EFB /* IceDiscovery C++11 macOS */ = { + 5658AB3FB70284E862079845 /* IceExceptionsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 033036AB57A2BC13CF9B6D90 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */; + buildConfigurationList = 62CB538FB022CED190E6659E /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */; buildPhases = ( - 4376B61CBA3F46BFEBE94273 /* Headers */, - 1D21F6B77AEE0DE4923B446D /* Sources */, - 02145A4BA1F1929F98277F3F /* Frameworks */, + 655F49FCF65BE7CBE57565B2 /* Sources */, + 695749BABD39ACED89E9C8D9 /* Frameworks */, + BD8BF327C847FC440776338D /* Resources */, ); buildRules = ( - D8A4713D3A7254EAA8C5E194 /* PBXBuildRule */, + 72D07EB438872CE2049E98D0 /* PBXBuildRule */, ); dependencies = ( - 58EAF68E11B46086E0F06344 /* PBXTargetDependency */, ); - name = "IceDiscovery C++11 macOS"; - productName = "IceDiscovery C++11 macOS"; - productReference = FF2875AE0E0680CDB9C9B1B8 /* libIceDiscovery C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceExceptionsAMD iOS"; + productName = IceExceptionsAMD; + productReference = 2FF3B3842F37F3295343B6C4 /* IceExceptionsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - 7E8564022216773735645574 /* SliceEscape macOS */ = { + 5722522ABF0B09D7099DBA1F /* IceStorm iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = ED8B8EFE415F9FA463B0A59E /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */; + buildConfigurationList = 0A75FB26B366B04407C83993 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */; buildPhases = ( - 9DD41E3742F99BA20DEB4AF8 /* Sources */, - 2A26AFD76C88C4ED00EC5A87 /* Frameworks */, - D797E379CCCD680A0B9D3B9B /* Resources */, + 27456717292406E63116AD53 /* Headers */, + 579324ED4945E63A904D0606 /* Sources */, + 1C2F5D9DD80E131EDDDFDE86 /* Frameworks */, + 74BA519151EBEAFDEDFF973D /* Resources */, ); buildRules = ( - 07CE6980CA9698C633E0290B /* PBXBuildRule */, + E03D72C8E9FF07D01FC7BFB2 /* PBXBuildRule */, ); dependencies = ( - FD14DE722F05C3B574DE1635 /* PBXTargetDependency */, - BB157A6DEBF88388B1D602FD /* PBXTargetDependency */, + 213019ABFBDB96BD8C65B7B3 /* PBXTargetDependency */, ); - name = "SliceEscape macOS"; - productName = SliceEscape; - productReference = C4B3812EC86A075A591325CD /* SliceEscape.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceStorm iOS"; + productName = IceStorm; + productReference = 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */; + productType = "com.apple.product-type.framework"; }; - 81EBCBBD81DAA61D4581DF4A /* IceTimeout iOS */ = { + 5E8A324AC0641CA083A50D0F /* IceDefaultValue macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D186B9D2354DEEF650F4EFBB /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */; + buildConfigurationList = E9FFA63035886ECE1E9ECE85 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */; buildPhases = ( - B3AA78E727CE5C7CE7840AB9 /* Sources */, - 087369FE5CBF4571DF972817 /* Frameworks */, - F28C0DE11803903930866619 /* Resources */, + 8F2AC178E7873170615856A8 /* Sources */, + 26527728902FD83C9C57750B /* Frameworks */, + 9C0FEF68AF1EAB85246ADEB9 /* Resources */, ); buildRules = ( - 840549D991E1A4FD227C6758 /* PBXBuildRule */, + 2C47615478A63B89451FB3F0 /* PBXBuildRule */, ); dependencies = ( - 5BF9522711D21979665731D0 /* PBXTargetDependency */, - E97C2275EAEF1641202D323F /* PBXTargetDependency */, + 172590E345988F2A73800535 /* PBXTargetDependency */, + A94CA64CC5DF9174C6BFB90D /* PBXTargetDependency */, ); - name = "IceTimeout iOS"; - productName = IceTimeout; - productReference = 1B2E875251FF8233F5415E48 /* IceTimeout.bundle */; + name = "IceDefaultValue macOS"; + productName = IceDefaultValue; + productReference = BE65FDBC053C9E1724BD1F80 /* IceDefaultValue.bundle */; productType = "com.apple.product-type.bundle"; }; - 836D0AD1DCC62D99CC1CB8EA /* IceExceptions macOS */ = { + 6272130C7E84066D9A3C1C41 /* IceInvoke iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 40905CDE358A5972012DE4E9 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */; + buildConfigurationList = E15FE701211C54FAB6478CA8 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */; buildPhases = ( - E5EAF4410D62B1919A140B78 /* Sources */, - DF829A4FCBF653D53EFA8ECA /* Frameworks */, - 322582DBE8E93D0697C15495 /* Resources */, + 928DFF172E1FC782D4A3C492 /* Sources */, + 8483359526C8FBDD033C8253 /* Frameworks */, + E3A6C2D8C30337B97B11938F /* Resources */, ); buildRules = ( - 4C469FA3F0E5AD08A4D9A4AF /* PBXBuildRule */, + C5CE763A15C1297A21395D8A /* PBXBuildRule */, ); dependencies = ( - 17FD8ED3B2D7E1AE7C5625E0 /* PBXTargetDependency */, - 21E0947C7662A94A1C869D84 /* PBXTargetDependency */, + 31F711D9B60355CC16FE3A48 /* PBXTargetDependency */, + A9CA7AFB4C01AA70E2A69E0E /* PBXTargetDependency */, ); - name = "IceExceptions macOS"; - productName = IceExceptions; - productReference = C4920C3131DE43086740705E /* IceExceptions.bundle */; + name = "IceInvoke iOS"; + productName = IceInvoke; + productReference = FCD16A3852D0DAB23E0EE5DB /* IceInvoke.bundle */; productType = "com.apple.product-type.bundle"; }; - 85AD9F1A782BBCA078D72ECA /* IceDefaultServant macOS */ = { + 665EE5441D076F90F4516A23 /* IceDiscovery C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B759C973487A012F6C373F82 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */; + buildConfigurationList = A9DB78C0FD4634D297D9ACE3 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */; buildPhases = ( - 626208109A2B352E0C953538 /* Sources */, - A70F167DF9A2BFDFA2F109FB /* Frameworks */, - 313690911AD7304C7D02EB21 /* Resources */, + EC097AD6335E22BBE91CB010 /* Headers */, + 82D6113098F570AFCEDF2A16 /* Sources */, + ADFECDD3C5009F1D174CC517 /* Frameworks */, ); buildRules = ( - 62BDB959D414B8733A130CA5 /* PBXBuildRule */, + 628D091CE6EF08872EB297E0 /* PBXBuildRule */, ); dependencies = ( - 94714092693980C3E9AB8A38 /* PBXTargetDependency */, - 2F691D4411C45234858C1983 /* PBXTargetDependency */, + BFF201D84DE85053F0DDB77C /* PBXTargetDependency */, ); - name = "IceDefaultServant macOS"; - productName = IceDefaultServant; - productReference = C291B1D3FF41716E62FE1B66 /* IceDefaultServant.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceDiscovery C++11 macOS"; + productName = "IceDiscovery C++11 macOS"; + productReference = 622CDB9E04A43DA05E046991 /* libIceDiscovery C++11 macOS.a */; + productType = "com.apple.product-type.library.static"; }; - 85DA963BEF597DDF5EBD28D4 /* IceDiscovery C++11 iOS */ = { + 68BE8ACEDDD7433FDD2E5099 /* IceScope macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 753BACEB2F3CD6948FC5A58E /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */; + buildConfigurationList = 08B22C9A9A85F18B106D85BA /* Build configuration list for PBXNativeTarget "IceScope macOS" */; buildPhases = ( - B928A3C1C8C85243F11116AE /* Headers */, - 1D20F3CCD1B72D1D4592C58D /* Sources */, - E769335C5E25A7AD50EF77D8 /* Frameworks */, + ACF2443A3629DCACA621F6AC /* Sources */, + F081689B32024C4405BF64ED /* Frameworks */, + B813104FB39355654AEE5E1E /* Resources */, ); buildRules = ( - E04915D736AB4D5D74C64119 /* PBXBuildRule */, + 19CAC30D305C213455F0B913 /* PBXBuildRule */, ); dependencies = ( - 6CB0A7D9CEBAB7FEDE893965 /* PBXTargetDependency */, + 30C046AADB977BE9C4A79B12 /* PBXTargetDependency */, + EBF87720282F082544399E99 /* PBXTargetDependency */, ); - name = "IceDiscovery C++11 iOS"; - productName = "IceDiscovery C++11 iOS"; - productReference = F20CF9182023E2AB477F4A39 /* libIceDiscovery C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceScope macOS"; + productName = IceScope; + productReference = BBBE5C0E398A59FC82DA5B22 /* IceScope.bundle */; + productType = "com.apple.product-type.bundle"; }; - 866E8F0547A584631426B2A5 /* IceProxyAMD macOS */ = { + 6ABC458490AA5F904B381F7D /* IceScope iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AA9E2FD9844A0304BAEED206 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */; + buildConfigurationList = C55E74E3597122A4D2934E60 /* Build configuration list for PBXNativeTarget "IceScope iOS" */; buildPhases = ( - 9F4D72E50D3BEA7C97557374 /* Sources */, - 8AEF83E0BFF4065824AF31D9 /* Frameworks */, - 7CDE16ED3C590B0B05317F77 /* Resources */, + E3A8DEA90BC4DD24203B4A0D /* Sources */, + 19E0136E5E3D6011F179469E /* Frameworks */, + 5E434881B989C85F981DB80B /* Resources */, ); buildRules = ( - 52CB70ACF18A2ADFDACECC20 /* PBXBuildRule */, + F826B3B3C2A53DB7BFB07EDD /* PBXBuildRule */, ); dependencies = ( + 4A3ED2B405EC21507ADAF8AE /* PBXTargetDependency */, + 74564A42D52BBFA9E9715A73 /* PBXTargetDependency */, ); - name = "IceProxyAMD macOS"; - productName = IceProxyAMD; - productReference = 95E105439BA21E7D9534BAA3 /* IceProxyAMD.bundle */; + name = "IceScope iOS"; + productName = IceScope; + productReference = 8D10DFF57F34E081EBF41AFF /* IceScope.bundle */; productType = "com.apple.product-type.bundle"; }; - 86D99596C3AC52CDD7C6A937 /* IceServantLocatorAMD iOS */ = { + 6BA09F6BC0797F624A68E17E /* IceOperationsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3AF2DB398FBE9F5CE8512D28 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */; + buildConfigurationList = 25EC7192854BA2624581D9F0 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */; buildPhases = ( - 2078456C95C04424AE8A0B7A /* Sources */, - 302D051B046B3E092DA99465 /* Frameworks */, - 6CDD22C7664DAA8DE402E90E /* Resources */, + EBFA09B91AB7A2B6617AAF3E /* Sources */, + 68F4EF15A024D9AC4E1FC830 /* Frameworks */, + 6B0EE5F780354E816FF9CA31 /* Resources */, ); buildRules = ( - 9E0AF5CFAC8166721B3CF714 /* PBXBuildRule */, + 3C763D5640D0A71C8F9B65E4 /* PBXBuildRule */, ); dependencies = ( ); - name = "IceServantLocatorAMD iOS"; - productName = IceServantLocatorAMD; - productReference = B33CD6B53C345AC42929BAAC /* IceServantLocatorAMD.bundle */; + name = "IceOperationsAMD macOS"; + productName = IceOperationsAMD; + productReference = 5A1210D169DA5033BD26A6D9 /* IceOperationsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 8716086DA12B2BDD0A0AB020 /* IceTimeout macOS */ = { + 713B71D014689185E9E05395 /* IceInvoke macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B5B25621875C8E1002F9A022 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */; + buildConfigurationList = EE4E19AF95E379FC43413ABA /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */; buildPhases = ( - C81FD95798F618B58E1B0D22 /* Sources */, - F3B97AAC1B79B680842B6D1B /* Frameworks */, - 07982C434D1B0158C133F1D3 /* Resources */, + 67155914C03ABD8C613F680E /* Sources */, + 0C3751B66DB52BE417ACB866 /* Frameworks */, + 3433D0B696CC0B2E8895F651 /* Resources */, ); buildRules = ( - 0C497AE78CB318C9D8E80C6B /* PBXBuildRule */, + 44DA8E8D55F55A34DC55CB39 /* PBXBuildRule */, ); dependencies = ( - 816C173A31F9452ADAF16BD9 /* PBXTargetDependency */, - D39800CA0A56949337A5D33D /* PBXTargetDependency */, + 6951A5349AAC4517CC9BC0F1 /* PBXTargetDependency */, + 3DC15ECB7A44F56792CB7070 /* PBXTargetDependency */, ); - name = "IceTimeout macOS"; - productName = IceTimeout; - productReference = 25C7F6C8A9023BB604FCC8C6 /* IceTimeout.bundle */; + name = "IceInvoke macOS"; + productName = IceInvoke; + productReference = B1EB3F3DCA4EBE0AC85EF8E1 /* IceInvoke.bundle */; productType = "com.apple.product-type.bundle"; }; - 8B673B53CF2890202D016783 /* IceInfo macOS */ = { + 770013F768356B5BE1BB460C /* IceGrid macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 90DED0A5E5C3E9810A4D086C /* Build configuration list for PBXNativeTarget "IceInfo macOS" */; + buildConfigurationList = 1C904D2FB673DBE16373FA83 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */; buildPhases = ( - 7C0AC4525A575C6705EF7727 /* Sources */, - A020276890DFF410B8A9A9D0 /* Frameworks */, - 65231E0E0BD7A9E3BD797910 /* Resources */, + C7EF7F01A53C07C81C0B8A0B /* Headers */, + 97D68F07E18DC5E0A9FE3EDA /* Sources */, + 83BD0D83E2FC3631EC13D1C0 /* Frameworks */, + F8270687196C373CCB5EB10B /* Resources */, ); buildRules = ( - 9913D482606672073EF9884B /* PBXBuildRule */, + AD50CCBC517A0207432FE63B /* PBXBuildRule */, ); dependencies = ( - D844D0ECF798FA08E00F62AE /* PBXTargetDependency */, - EEE8DEA7998BB725A223FFDD /* PBXTargetDependency */, + 5E904894107853C99797608D /* PBXTargetDependency */, + E0BF637470C41B5A1EDD5D66 /* PBXTargetDependency */, ); - name = "IceInfo macOS"; - productName = IceInfo; - productReference = 197DFA765AE77FC51AEF8CC3 /* IceInfo.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceGrid macOS"; + productName = IceGrid; + productReference = B17547CF25F9F6D499E59F4A /* IceGrid.framework */; + productType = "com.apple.product-type.framework"; }; - 8D692CC4BED85D90455B3611 /* IceLocatorDiscovery C++11 macOS */ = { + 77D3FCCE81BDE4D86C21D2FC /* IceServantLocatorAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 8179BCC8FF14781E23BB396E /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */; + buildConfigurationList = B6686F53B6B2DB01F7D2D51E /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */; buildPhases = ( - 7B13C7BEB4B84507D058731C /* Headers */, - 08C3CB6FC7342680D131BBAF /* Sources */, - 21510EAF7B78BB23AC67243D /* Frameworks */, + 43E30871AEAE37E37C0FDC5B /* Sources */, + 41FA3FD769D91A0E8AE7454A /* Frameworks */, + 9CFFB6BBA7E1ACA6E6102CD1 /* Resources */, ); buildRules = ( - D24C1EFB9554C738FBBFF4A4 /* PBXBuildRule */, + EDB2A44EA2D0787FC0C7DA8D /* PBXBuildRule */, ); dependencies = ( - B010D26E681F43AB12A9D221 /* PBXTargetDependency */, ); - name = "IceLocatorDiscovery C++11 macOS"; - productName = "IceLocatorDiscovery C++11 macOS"; - productReference = AE623D75A48D156E4410F1AD /* libIceLocatorDiscovery C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceServantLocatorAMD iOS"; + productName = IceServantLocatorAMD; + productReference = 1CA0FCE8D4431A2B65028231 /* IceServantLocatorAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */ = { + 78DF05AE60584A8F9A7E374B /* IceInheritance iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E8FA4A91F8A3AABCF0C62675 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */; + buildConfigurationList = FA1EA884977C3652AEBA8EBC /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */; buildPhases = ( - A38E08479830289204BF8B25 /* Headers */, - BBDAE5B3B61B591AAD19589D /* Sources */, - B66E63AC3A61DC1C7818DE0D /* Frameworks */, + 2FA2A3D57A394EFFD7D51C4E /* Sources */, + 40A269BD9826552BC032BC09 /* Frameworks */, + CE22FEB033CF164099C40427 /* Resources */, ); buildRules = ( - E6FA2856755390788BB6DAA2 /* PBXBuildRule */, + 4F03E75BE283ADAFDDBB4294 /* PBXBuildRule */, ); dependencies = ( + 57FBAB8574FD4EF3C78F098A /* PBXTargetDependency */, + 340386BFD6092E294F96DDB2 /* PBXTargetDependency */, ); - name = "Ice C++11 iOS"; - productName = "Ice C++11 iOS"; - productReference = EB11AE63135A23028AE12F90 /* libIce C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceInheritance iOS"; + productName = IceInheritance; + productReference = 01FA7B3F816F4E1BBAC6D837 /* IceInheritance.bundle */; + productType = "com.apple.product-type.bundle"; }; - 8FBA8150AB11D2A819C1D2EA /* IceAmi iOS */ = { + 8919247F07DEFFC41FDA9486 /* IceServices iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6F84589747125E7DC5257ACC /* Build configuration list for PBXNativeTarget "IceAmi iOS" */; + buildConfigurationList = E670FBC18F8DB839607BC8E3 /* Build configuration list for PBXNativeTarget "IceServices iOS" */; buildPhases = ( - 2BDEA68897FC29D006B4D31F /* Sources */, - 74AD6CC9618C6D38756D66C6 /* Frameworks */, - A9DD5346B648F7C295338FF6 /* Resources */, + 43DEE7804C5BF7F6DEB80507 /* Sources */, + BE11D834A9A91386E9184019 /* Frameworks */, + B55BC10DC5342FDB5EE4E146 /* Resources */, ); buildRules = ( - D6040EDFC55D213BAA794052 /* PBXBuildRule */, + 802C39AE39FD920A6263970C /* PBXBuildRule */, ); dependencies = ( - 40EEF1DCFF711E9F2594E63D /* PBXTargetDependency */, - B68D70820828D10DDE6DEFDC /* PBXTargetDependency */, + AECF227D9832582C2723CB16 /* PBXTargetDependency */, + BDDD5B9DCDD4094791EEB3BA /* PBXTargetDependency */, + A6B47FEC89AB78ED55334147 /* PBXTargetDependency */, + C81BC52B6E5E1B55AA526DCA /* PBXTargetDependency */, + 897EC357311088A4F5AA4A4A /* PBXTargetDependency */, ); - name = "IceAmi iOS"; - productName = IceAmi; - productReference = B324F3F918968083524C839F /* IceAmi.bundle */; + name = "IceServices iOS"; + productName = IceServices; + productReference = 1FF3BD3182DC2FD23143C3E5 /* IceServices.bundle */; productType = "com.apple.product-type.bundle"; }; - 90FA36CD9B0F6F2C3BC99401 /* IceOperations iOS */ = { + 8BCEB954ACECD9E143B3DD52 /* IceObjects macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C404B8DF51F2446BE3BB6BD9 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */; + buildConfigurationList = A587A06D5F6E132F5A3B9C1F /* Build configuration list for PBXNativeTarget "IceObjects macOS" */; buildPhases = ( - 2B45A27DB6D5B212B0D5BE68 /* Sources */, - 8285ACBBC123F8FEB453E86C /* Frameworks */, - 1D782344FFA038F83CDAC3AD /* Resources */, + FDC9787080C924D81B9C2280 /* Sources */, + 701D5A05AC73B5E99EDDB98D /* Frameworks */, + 3986A30D8D7CFBCC0267135F /* Resources */, ); buildRules = ( - BC64AA56465C8FBE08B7179A /* PBXBuildRule */, + 10ED1FBB2458AE18FF84A3CF /* PBXBuildRule */, ); dependencies = ( - 805D664C3733E17B045CD956 /* PBXTargetDependency */, - EE47DB68A54BFBE2BB606463 /* PBXTargetDependency */, + 990292A15E55958A41738506 /* PBXTargetDependency */, + F33665458C5E4F7379E8A069 /* PBXTargetDependency */, ); - name = "IceOperations iOS"; - productName = IceOperations; - productReference = D238D915AA7B2C9AAA51674C /* IceOperations.bundle */; + name = "IceObjects macOS"; + productName = IceObjects; + productReference = 116A9F625EC4AC51F7044FFA /* IceObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - 94D926D5469FBD751BF9B740 /* IceScope macOS */ = { + 8F022C46667133AF20CDD4CC /* Ice macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5B338167339629249D8AC3DB /* Build configuration list for PBXNativeTarget "IceScope macOS" */; + buildConfigurationList = 3335761187FD8F6B86CBDFBE /* Build configuration list for PBXNativeTarget "Ice macOS" */; buildPhases = ( - AE8534E1C05D72CB06E30E66 /* Sources */, - 58E259C652EBBA9CD409A673 /* Frameworks */, - 68604C27B7CC42117BA51932 /* Resources */, + 9A8A94E05D6A1E0A2426EC03 /* Headers */, + 099F0FBAAE02CE133E9AE1EE /* Sources */, + 7EDB7FDCBBAED3744E467F30 /* Frameworks */, + F74711427277109AE1B9ABA9 /* Resources */, ); buildRules = ( - 0688C0CD4406817FA01FF0FD /* PBXBuildRule */, + 9272B0A660B5DE99729A198A /* PBXBuildRule */, ); dependencies = ( - 04F7CA6C3F10A96A96850E6F /* PBXTargetDependency */, - CF430178ACC315250CE4C1B2 /* PBXTargetDependency */, + E158DEA7863B9E28F883AEC0 /* PBXTargetDependency */, ); - name = "IceScope macOS"; - productName = IceScope; - productReference = 294AC4A94D492076FFDEF664 /* IceScope.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice macOS"; + productName = Ice; + productReference = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; + productType = "com.apple.product-type.framework"; }; - 96F2227A2D1F58BCEA8ED0F6 /* IceUdp macOS */ = { + 92A668B7841CFDC57756D6E7 /* IceProxy macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A9397B603612590159730228 /* Build configuration list for PBXNativeTarget "IceUdp macOS" */; + buildConfigurationList = D8007E39E45FCA7368E53B31 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */; buildPhases = ( - 2BB16390B18571552455B8FB /* Sources */, - 5A4A7A62BEC7614262A688B0 /* Frameworks */, - 17160302BAA0E75F9A0B527B /* Resources */, + C3172FA1F30C4892944AB13B /* Sources */, + 263422E847C3519A29D2E784 /* Frameworks */, + 49A066802994D933E5DCAE56 /* Resources */, ); buildRules = ( - E67B7E81577CA0548EDC58B7 /* PBXBuildRule */, + AC509A4977B6A68B18398393 /* PBXBuildRule */, ); dependencies = ( - B6A8FC2A6C0C716CE1C1573A /* PBXTargetDependency */, - 1310DBFEFF36C9AB05FE1342 /* PBXTargetDependency */, + E7AE64DDACDAA212A2356ADA /* PBXTargetDependency */, + A7E74AE38024FCF81760BB7C /* PBXTargetDependency */, ); - name = "IceUdp macOS"; - productName = IceUdp; - productReference = CA06581C1F468D6DFACFA9C2 /* IceUdp.bundle */; + name = "IceProxy macOS"; + productName = IceProxy; + productReference = F1C224C87B599183A478B5D2 /* IceProxy.bundle */; productType = "com.apple.product-type.bundle"; }; - 9938DD491B5B4A54DB0A80E3 /* IceDefaultValue macOS */ = { + 944D56850B5551840FD0118C /* TestDriver iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 75CED96DA2C86B269A2B872E /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */; + buildConfigurationList = B6AFDDBBEE1B3573134850DE /* Build configuration list for PBXNativeTarget "TestDriver iOS" */; buildPhases = ( - B7F74FA0EB42B9F35DD6B480 /* Sources */, - F9F9B52103E8278DDAA8D1C8 /* Frameworks */, - 71B6CF1E060EC863D6054971 /* Resources */, + 95A3D802A190A788C095FA55 /* Sources */, + 069414FE53A2F019B35C8575 /* Frameworks */, + BA52A0BA2C462A1C48C39FCE /* Resources */, + 7265DF301F6A8C870B07C87B /* Copy Frameworks */, + 7C24181BC1E542A189342A05 /* Copy Symbols */, ); buildRules = ( - 189AEA277312C4FDE4F0E0E0 /* PBXBuildRule */, + 834441FFE4C2351D450E1626 /* PBXBuildRule */, ); dependencies = ( - 452CA0172D244CBC9D248302 /* PBXTargetDependency */, - CECFC659A6279C6A70417574 /* PBXTargetDependency */, + F338CFC8737E1990D95E88D7 /* PBXTargetDependency */, + 37013EDE8DFC3E9D2FD76CE4 /* PBXTargetDependency */, + E16FB8DFB5947B0E90BD3B28 /* PBXTargetDependency */, + E94DDB62ECF9533EA3F2112D /* PBXTargetDependency */, + 547F233ED8B9A05358310B09 /* PBXTargetDependency */, + 4F59EB9BA4DDB8492E6B49FA /* PBXTargetDependency */, + 295438B5CAFE9CE6A2060CE5 /* PBXTargetDependency */, + FF15AD1FAD609A46D7E75A0B /* PBXTargetDependency */, + 0FFDAC4A08652765099EA6F1 /* PBXTargetDependency */, + 720BF5D1D44C8F77A5585337 /* PBXTargetDependency */, + AB3E1EEE0E8905A364D54485 /* PBXTargetDependency */, + 65EC0246623D2174EBB69059 /* PBXTargetDependency */, + 1D9E349307B8AC6A78B16C9C /* PBXTargetDependency */, + 7C9E2B828CEC22051C74CEFD /* PBXTargetDependency */, + 503E702ADDC8FD6011CAD63D /* PBXTargetDependency */, + 7F5BC227C2BDD56F0A6C7308 /* PBXTargetDependency */, + 74A503EEED98844A79AB1833 /* PBXTargetDependency */, + B3507191F0D173F77DCDC320 /* PBXTargetDependency */, + 6EAF8977CBD757836D3C473C /* PBXTargetDependency */, + BA5E9FBA424E548C1DFFCFB3 /* PBXTargetDependency */, + 2768FAC75611D30E3DC16C0B /* PBXTargetDependency */, + 66BB78C5509FDEF0963665E6 /* PBXTargetDependency */, + E5CC56D0327A0347CD9AB753 /* PBXTargetDependency */, + D416128806C19231D0758179 /* PBXTargetDependency */, + 99328E43F83EDAA0A512AF99 /* PBXTargetDependency */, + 7E97DDF1A5A8DECE5F1A021B /* PBXTargetDependency */, + 8AAB5B505E0774A3ACC488F1 /* PBXTargetDependency */, + 5A27B9C89C9598CFB6BB153B /* PBXTargetDependency */, + 50B9C0D91F208AF8AD49BB9D /* PBXTargetDependency */, + CE5A7F4270E7F56C10EC6FCC /* PBXTargetDependency */, + 470B6D2077BC29AB1E28CEFA /* PBXTargetDependency */, + F8B2F444158A861CFEFE71FF /* PBXTargetDependency */, + 70CD224FB8E80C601FC7F1DB /* PBXTargetDependency */, + D035A62BF44ACC71CA42FCCA /* PBXTargetDependency */, + 6A7B12069DE9EF5071D8D206 /* PBXTargetDependency */, + DFAE8AAB920636E63569BEB4 /* PBXTargetDependency */, + 3B6087890EFE699EE58EBC82 /* PBXTargetDependency */, + 462EF77A0D83099CC171DD6B /* PBXTargetDependency */, + E9AC98A3B2B578F64DA7E752 /* PBXTargetDependency */, + FABB5A728EB763E133148B73 /* PBXTargetDependency */, + 5948E0E3CBA886404C166D46 /* PBXTargetDependency */, + 1B368E8F1EE4A7512FD3973F /* PBXTargetDependency */, + 1C9F3CFD7598AFBA884A0ABC /* PBXTargetDependency */, + 98FC60EF164A665E63B13F20 /* PBXTargetDependency */, ); - name = "IceDefaultValue macOS"; - productName = IceDefaultValue; - productReference = 6232FC65AC888C2919A29D4A /* IceDefaultValue.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestDriver iOS"; + productName = TestDriver; + productReference = 1C3992E2FB7D669B8812B76F /* TestDriver.app */; + productType = "com.apple.product-type.application"; }; - 9A800192291D16A52BC00EB5 /* TestDriver iOS */ = { + 969752F2E953B2ED36823477 /* IceExceptions macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 718469A340DB715B2D705711 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */; + buildConfigurationList = 80944B96D7BD14FEB4A109E5 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */; buildPhases = ( - 9E882D250C2052D1241A3477 /* Sources */, - 29E7FE84EEFDD7AABA0F0BC6 /* Frameworks */, - E9191CB3D8B98AD5528146EF /* Resources */, - 0635600956BBB7B4E2F71046 /* Copy Frameworks */, - DF80F5FE8BC3363CBD19BE84 /* Copy Symbols */, + 2B77FA804C9FC98848A3BF41 /* Sources */, + D8F2D365A25E223F62CAD35C /* Frameworks */, + 8E12D75F2033D7406140D0A9 /* Resources */, ); buildRules = ( - 8C8CC733E29C006823557D53 /* PBXBuildRule */, + 6A03A3B0C7B45FD91C4332FB /* PBXBuildRule */, ); dependencies = ( - 61CBA0870CF5AE106D507737 /* PBXTargetDependency */, - 087A9C1989AAA843B5590366 /* PBXTargetDependency */, - 25163588E7567C9DC2B926F3 /* PBXTargetDependency */, - 574BB9348375C75E94B6FA23 /* PBXTargetDependency */, - 9265E9934EFD9A6F846D47E9 /* PBXTargetDependency */, - B0F2306AD9E2F343B9691960 /* PBXTargetDependency */, - 8D1A106E21F2556EE5A310A1 /* PBXTargetDependency */, - 8F3F465FF11C1D1348CB1EAA /* PBXTargetDependency */, - 11E7921B9E8504ED04C4DD20 /* PBXTargetDependency */, - 92DCAC9E6B410FA728DDC0CB /* PBXTargetDependency */, - 1898625C798054237255D989 /* PBXTargetDependency */, - 75BCB4C7CF48F12841EC9185 /* PBXTargetDependency */, - 4F22349D73BE3FB82942A9F8 /* PBXTargetDependency */, - 279A73BF587F532B1ED47130 /* PBXTargetDependency */, - 1655AE07C3C927D529A01CB9 /* PBXTargetDependency */, - 1EBCCDD716930DF08A115916 /* PBXTargetDependency */, - E759A25BEB16FB95D4BFA75F /* PBXTargetDependency */, - 7DE539FEE90D1986BF41DDAF /* PBXTargetDependency */, - 17D78C3590AD3341EAD750B1 /* PBXTargetDependency */, - DCD68B47F3B0FFB5D08298E3 /* PBXTargetDependency */, - 4FBF9E4A9DF99D3F75579BFA /* PBXTargetDependency */, - 1A088D4452F3C164E5E671F3 /* PBXTargetDependency */, - 7537F99FF2EC0F183328E38A /* PBXTargetDependency */, - EE8E0BD703C15E23C439CB28 /* PBXTargetDependency */, - 6E5028C1155E6A2A4C4C4E98 /* PBXTargetDependency */, - 9D2DD32A0256D385ACB54808 /* PBXTargetDependency */, - EE69B54FDCFCC9142CDAB66C /* PBXTargetDependency */, - 1331283ADDCD92BE4D72F968 /* PBXTargetDependency */, - 76F827D5F22741F0DE0112CB /* PBXTargetDependency */, - ACEDD98247F376B68E088EB8 /* PBXTargetDependency */, - 4B8BC5B7F645DE838ACA6606 /* PBXTargetDependency */, - 77F8492EF73ECDDC1787218E /* PBXTargetDependency */, - BBEC5248251B42CD5A5C7BBD /* PBXTargetDependency */, - 994A88656CBB1B53490E2472 /* PBXTargetDependency */, - 2073171DA6488766240C73C4 /* PBXTargetDependency */, - 7E7A154541DD3F5526DA6955 /* PBXTargetDependency */, - 6BB1369014EC7A395354080A /* PBXTargetDependency */, - E7807E710FE56F54258C3529 /* PBXTargetDependency */, - 7AEC5A1458DB23B92EEB3D31 /* PBXTargetDependency */, - 9B05D1352749078F9A4F050F /* PBXTargetDependency */, - 3F1836C3085B01562B38C2EE /* PBXTargetDependency */, - D127CB2E754E2DEFE38A24CE /* PBXTargetDependency */, - 7ED6FE2BE0D824FEFE6F2BAD /* PBXTargetDependency */, - 72E0A24D82A3611248E7A55E /* PBXTargetDependency */, + 43CE86862EBAEC29625C6B12 /* PBXTargetDependency */, + 8A9FD47E8658EE7705211187 /* PBXTargetDependency */, ); - name = "TestDriver iOS"; - productName = TestDriver; - productReference = 2DA8717C158AFF4CF60E6E87 /* TestDriver.app */; - productType = "com.apple.product-type.application"; + name = "IceExceptions macOS"; + productName = IceExceptions; + productReference = 6F7C2EFAAD90AF05C836E8AD /* IceExceptions.bundle */; + productType = "com.apple.product-type.bundle"; }; - 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */ = { + 98CD3D7B6AB129005DDDED37 /* IceOptional macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EEEEA9D05A20FB2C43336CD7 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */; + buildConfigurationList = 2B547B22617DE6EA322A9DE6 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */; buildPhases = ( - 0DFF078867C28CFA4D7954D7 /* Headers */, - 70DAACF467A2AC80B181D4AE /* Sources */, - 4C3C29F984E93E0100AB7AFE /* Frameworks */, + CF1B1444062FE5D9E38586D4 /* Sources */, + 62133C0C24515EE7545AB9AE /* Frameworks */, + D8F05ECC12EFBE9DA321C8F1 /* Resources */, ); buildRules = ( - 24EFF29543366B1888A17736 /* PBXBuildRule */, + 1F899B47510EE1AF93E55F0B /* PBXBuildRule */, ); dependencies = ( + 9A48EDEDE82E2138C7527754 /* PBXTargetDependency */, + CAC9A3B84C1B39ABEFF74F88 /* PBXTargetDependency */, ); - name = "Ice C++11 macOS"; - productName = "Ice C++11 macOS"; - productReference = 9CD9C4FF6B42F14CAB807960 /* libIce C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceOptional macOS"; + productName = IceOptional; + productReference = 07E2F60461505D97899C6536 /* IceOptional.bundle */; + productType = "com.apple.product-type.bundle"; }; - 9FAA9797D207A26125233020 /* IceProperties macOS */ = { + 995512D73E07EFE9CD097A94 /* IceFacets macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 29F615027D13C4A96FA1E765 /* Build configuration list for PBXNativeTarget "IceProperties macOS" */; + buildConfigurationList = D85F93533003653E8BEEEDCF /* Build configuration list for PBXNativeTarget "IceFacets macOS" */; buildPhases = ( - 566CC439F7260E4ED534FD2F /* Sources */, - 2427D63A3B5F1BB78ECD9AF4 /* Frameworks */, - 17F93E36FE79CCD8FDB9F758 /* Resources */, + 5787B438D0CCA709CCE50737 /* Sources */, + 6F0DD81F4EBEBA7C063C23F2 /* Frameworks */, + DA28C813D4FEE16A3341D1D5 /* Resources */, ); buildRules = ( - C5736C2941BE781DDE64631D /* PBXBuildRule */, + 052542FF38B26A85BA0EA4CC /* PBXBuildRule */, ); dependencies = ( - 54F09B88FD7F3FE9236B23FD /* PBXTargetDependency */, - 6DB6D2BE6BA8F692AF940220 /* PBXTargetDependency */, + 1064301F302334151EA6390F /* PBXTargetDependency */, + 832C8EF29E8BF213A71811E0 /* PBXTargetDependency */, ); - name = "IceProperties macOS"; - productName = IceProperties; - productReference = ADE78EC4CCE93F2E0C1D0DD3 /* IceProperties.bundle */; + name = "IceFacets macOS"; + productName = IceFacets; + productReference = 8188B41289F2C073375F3D48 /* IceFacets.bundle */; productType = "com.apple.product-type.bundle"; }; - 9FEDBE2BC73385F81D251350 /* IceImpl macOS */ = { + 9A5B406340D1F54AA6A93582 /* IceLocation iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D4BBF305714A95BEF18C3D36 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */; + buildConfigurationList = 381EE69BF39E2A31A9574035 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */; buildPhases = ( - 45A6356BECF527E2FD61BBE9 /* Headers */, - 1FCEC3817747D363E95AA1A6 /* Sources */, - 9FDFDF965240137388DC5008 /* Frameworks */, - 6DD932AA2A6B92A01B4D5040 /* Resources */, + 4234B37CA2D6F002BAB743DC /* Sources */, + 7DD5C3E0177ECE6F29D32A29 /* Frameworks */, + 8C2B8E281D3F8E435B69AA78 /* Resources */, ); buildRules = ( + 33B7EDB3C15FBDFF0E972DB9 /* PBXBuildRule */, ); dependencies = ( - D5D1116879BBBD478325357A /* PBXTargetDependency */, - D514AB5DCED2A6361B7E6E9F /* PBXTargetDependency */, - 31493DABA42FD09F7DFECB41 /* PBXTargetDependency */, + 2E7CD23A36D6ECD9DDB009F5 /* PBXTargetDependency */, + 17E9A9CB0540B86A5D180043 /* PBXTargetDependency */, ); - name = "IceImpl macOS"; - productName = IceImpl; - productReference = 3093D1C3E3B67A787CBC0F8B /* IceImpl.framework */; - productType = "com.apple.product-type.framework"; + name = "IceLocation iOS"; + productName = IceLocation; + productReference = 87DF00D7836869F2204A3283 /* IceLocation.bundle */; + productType = "com.apple.product-type.bundle"; }; - A06E150DA767B6FC743BAF10 /* TestCommon iOS */ = { + 9B91000B96831D134868EF00 /* IceInfo macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = F2AC5AC49AC37FEC3087A7A1 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */; + buildConfigurationList = 544FCAA3BF572ECC5525C591 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */; buildPhases = ( - 69965D996B7933965D78AF39 /* Headers */, - 9F9350C956E6764F2417D41E /* Sources */, - 6BC6831B4A3610FAEB76BA80 /* Frameworks */, - FDAB822C43EBDD5C9D09BBCC /* Resources */, + 726C32E70C36A5B300698C1D /* Sources */, + 1B6AD232686499FD379C8D3A /* Frameworks */, + 8E600080603AAAF1F0AFC3AB /* Resources */, ); buildRules = ( - A95C953B51B380A17FA926CB /* PBXBuildRule */, + 3FF30051062A719E638A7675 /* PBXBuildRule */, ); dependencies = ( + 9534CD955FA043C654E89173 /* PBXTargetDependency */, + 2B173C14DE63B3886B29223D /* PBXTargetDependency */, ); - name = "TestCommon iOS"; - productName = TestCommon; - productReference = 6F01F4D0DA57D647E4189538 /* TestCommon.framework */; - productType = "com.apple.product-type.framework"; + name = "IceInfo macOS"; + productName = IceInfo; + productReference = 0A0A432A404B1F07E7108C66 /* IceInfo.bundle */; + productType = "com.apple.product-type.bundle"; }; - A292FEFD4AC0C53DF83589BE /* IceProxy macOS */ = { + 9F8CD7854A90F92273855E8E /* IceExceptionsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6369F01292BFF3B59B2B41C7 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */; + buildConfigurationList = 20FB15239DAE99F4DCE2B62A /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */; buildPhases = ( - 205FFC81ED4601E1B49AE89C /* Sources */, - 3084CA5812893FCE6D836435 /* Frameworks */, - E89A01DD0189EAA1841B2047 /* Resources */, + F883BDAC576982772FA180AA /* Sources */, + 8EE96C8FC60FF9E8EAF0ADF2 /* Frameworks */, + A2A0ED32DFDE174544AE0F08 /* Resources */, ); buildRules = ( - 7B1BAF201633E1738A131BFA /* PBXBuildRule */, + 0224EEAD62D710B0CCFD076E /* PBXBuildRule */, ); dependencies = ( - 4965F928F33AA93E7729C0D6 /* PBXTargetDependency */, - 07393B7DA0FDE71929409356 /* PBXTargetDependency */, ); - name = "IceProxy macOS"; - productName = IceProxy; - productReference = 7A0A8197B967AFCB434D4FE1 /* IceProxy.bundle */; + name = "IceExceptionsAMD macOS"; + productName = IceExceptionsAMD; + productReference = 60F7DD828BF511AA7D9F0CFF /* IceExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - A2BA1134828B7EE3273C5D13 /* IceObjects macOS */ = { + A58A9C1B02FC1B2964645F6D /* IceAdmin iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 97E387EACA6AEBEE98FA605C /* Build configuration list for PBXNativeTarget "IceObjects macOS" */; + buildConfigurationList = 5C6A38D5A003D8C2B10EB588 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */; buildPhases = ( - 7433C652AEC8941A21B9B39B /* Sources */, - 900CAB0C794A4C30D7148876 /* Frameworks */, - 53F8D1EF617F7249622B903B /* Resources */, + F10295EA2BA3F6C2C198BBC5 /* Sources */, + E43D3258D7895A717CE8EBA2 /* Frameworks */, + EAC748CE3EAAEC301CA5CC8D /* Resources */, ); buildRules = ( - BECC26E3DBBF204B7E5927F4 /* PBXBuildRule */, + 9808011BF716973E5127722C /* PBXBuildRule */, ); dependencies = ( - FD67C0C61277F39D5551F292 /* PBXTargetDependency */, - 3D9D49B469AA2053E8E30785 /* PBXTargetDependency */, + 17352DE6341BC3926B870B09 /* PBXTargetDependency */, + C711DAE3B9BDBD24024146A2 /* PBXTargetDependency */, ); - name = "IceObjects macOS"; - productName = IceObjects; - productReference = A8AFF8F311501C1902F407B9 /* IceObjects.bundle */; + name = "IceAdmin iOS"; + productName = IceAdmin; + productReference = 3207B48B98719A7CBFD2337B /* IceAdmin.bundle */; productType = "com.apple.product-type.bundle"; }; - A5A118B8D38A8DF773729D3E /* IceEnums macOS */ = { + A69CCF574C4233A49E864528 /* IceDefaultValue iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3FD629EDBC13AE102B167FDA /* Build configuration list for PBXNativeTarget "IceEnums macOS" */; + buildConfigurationList = BF4C2C5F37875869E7BF37E8 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */; buildPhases = ( - 77C324B2DDC186E954C3C4CD /* Sources */, - FC929A90BD1CA4E9A4C2FD74 /* Frameworks */, - 395F58B3FE86E498486F7898 /* Resources */, + DF8A023C84839E51364A1063 /* Sources */, + 005B437BB6B9EA9D3B1560FC /* Frameworks */, + 6DFB1DD2E2E75F48323AECB3 /* Resources */, ); buildRules = ( - 7E9BC15F46E89E69FF3C48E5 /* PBXBuildRule */, + D6B5E483B79BB55615965858 /* PBXBuildRule */, ); dependencies = ( - 4CF1CCC42365A82C633CD504 /* PBXTargetDependency */, - 56F6B03F04DC7DD5F2FB148A /* PBXTargetDependency */, + 3936611C36535AD3F4155E07 /* PBXTargetDependency */, + D7D4C3899E06FA984CF0ABA4 /* PBXTargetDependency */, ); - name = "IceEnums macOS"; - productName = IceEnums; - productReference = 1B71BDB8210B42A2FC5F0C82 /* IceEnums.bundle */; + name = "IceDefaultValue iOS"; + productName = IceDefaultValue; + productReference = 817336550425E7439ECF507B /* IceDefaultValue.bundle */; productType = "com.apple.product-type.bundle"; }; - A9149583C7CA34903D80B3C4 /* IceImpl iOS */ = { + A7EE978EE70DDA201B41538D /* IceServantLocator macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CFEEBC29960A3220CBC34132 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */; + buildConfigurationList = 2D22126AE89A3BAA829CC1AC /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */; buildPhases = ( - 7F00EE9249F8973A302CB92C /* Headers */, - A5F8B288ACE2AA4F07185457 /* Sources */, - 2B00EBB47E4EAC248DDA3414 /* Frameworks */, - 0526F95A9936BD82D24EE562 /* Resources */, + 9A8DF622A084ABC6AD5CEB09 /* Sources */, + E64738021C8CBF0389A3135D /* Frameworks */, + 0BBDB32FE3327497A21BEFCB /* Resources */, ); buildRules = ( + 7181270112EF55C7A473FB8F /* PBXBuildRule */, ); dependencies = ( - 4330C12D8249B9BBC55614A2 /* PBXTargetDependency */, - 891470D2A3E36C5CA342397C /* PBXTargetDependency */, - 0A6AB4A2EDAB4DD0C9F9C4F7 /* PBXTargetDependency */, + BD6A42DE2ED05DF514BF4656 /* PBXTargetDependency */, + 0711AC59187DD9DC662E4FFD /* PBXTargetDependency */, ); - name = "IceImpl iOS"; - productName = IceImpl; - productReference = E580B9D9CC76D53B7B18272C /* IceImpl.framework */; - productType = "com.apple.product-type.framework"; + name = "IceServantLocator macOS"; + productName = IceServantLocator; + productReference = 5D1D431EC03874A83605E840 /* IceServantLocator.bundle */; + productType = "com.apple.product-type.bundle"; }; - AA9DCC224B96540517FC8217 /* IceSSLConfiguration iOS */ = { + B015EA95DFADDD31E102004C /* Glacier2 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1DBCCE68ABE336FDD111EB69 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */; + buildConfigurationList = 83AB53993A049DAAD70B1062 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */; buildPhases = ( - DFD24470B0E45F19AEDF55E6 /* Sources */, - 546F9C744238A6F9072920D3 /* Frameworks */, - 42A4C132E10B3B8A7300B9A6 /* Resources */, + C54A82F5226EAE308AF83FE2 /* Headers */, + 410CEAD6B34978C77E76A465 /* Sources */, + AEA7A4801ECB475EFAE6A085 /* Frameworks */, + EB2AC86FE9C03693BCBB0A77 /* Resources */, ); buildRules = ( - E556D4E668AC214B1FF3412D /* PBXBuildRule */, + 554DC98EDF23F1B66C7CFB63 /* PBXBuildRule */, ); dependencies = ( - 7B7193622EFEA69428F66DE9 /* PBXTargetDependency */, - 7ABF6AB7E9FC1E0443C5DF9E /* PBXTargetDependency */, + CC7AFDDAAB23EC8E363F1BE9 /* PBXTargetDependency */, ); - name = "IceSSLConfiguration iOS"; - productName = IceSSLConfiguration; - productReference = 0F25A5B87F1D6D4DE443C3F7 /* IceSSLConfiguration.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Glacier2 iOS"; + productName = Glacier2; + productReference = 5E41A2284123652035B9626D /* Glacier2.framework */; + productType = "com.apple.product-type.framework"; }; - AD0E7F89F478FE77514A8842 /* IceServices iOS */ = { + B0416354B0422CE06305497C /* IceSlicingExceptions iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2670006D13340F29628611E7 /* Build configuration list for PBXNativeTarget "IceServices iOS" */; + buildConfigurationList = 0BFC94187CF7D53768ABBC15 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */; buildPhases = ( - 9EE920B777162881752C3D96 /* Sources */, - 420529DB53BBF371DAE6E507 /* Frameworks */, - 664CDAB3A67305FA59E02F7A /* Resources */, + 4F8EC0615E2ED8BE7DAB2324 /* Sources */, + B92875871868C537E6638BF6 /* Frameworks */, + 1276515E4788053FB3CB4AA9 /* Resources */, ); buildRules = ( - 7BAA2CDB7FE6CFAB268E6F37 /* PBXBuildRule */, + AD806B330650D3A3CF7F454F /* PBXBuildRule */, ); dependencies = ( - 59FC8466F9EA87D242A3BBA2 /* PBXTargetDependency */, - 71C2564C0663504A3DF487CF /* PBXTargetDependency */, - 9C7E6B2770EB36DB2C4A986C /* PBXTargetDependency */, - 46CB383F272BEC717AFCE66E /* PBXTargetDependency */, - 01A23ACF74F5CD97CDD78FA1 /* PBXTargetDependency */, + B2588F8928BC033C40F3E59B /* PBXTargetDependency */, + F7A765493A04F5E1A473ED60 /* PBXTargetDependency */, ); - name = "IceServices iOS"; - productName = IceServices; - productReference = 77413C0CE48FA70D463B327C /* IceServices.bundle */; + name = "IceSlicingExceptions iOS"; + productName = IceSlicingExceptions; + productReference = 431D8C7B1791F56014305D03 /* IceSlicingExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */ = { + B0567014FA30FBBFC0E31969 /* IceAcm macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3A6C21E6CCF11A3B56CDE33C /* Build configuration list for PBXNativeTarget "TestCommon macOS" */; + buildConfigurationList = 0EFAE24B5CC863CCCA4508F9 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */; buildPhases = ( - DF467E18F4E5D6A05EE41E21 /* Headers */, - E1A96FD5802396C607420A5E /* Sources */, - 1E65DBE7DC8A2E40F2C43394 /* Frameworks */, - 825B353A9CA1FA2525C1C98D /* Resources */, + 78C53CA1FF99A4EBF97916C9 /* Sources */, + A503E9F74ED2137A844CBCA9 /* Frameworks */, + 7560289BE6D17B87AD0E0D64 /* Resources */, ); buildRules = ( - 54945514B316D0C5BE8F1BD7 /* PBXBuildRule */, + 935EACD88254C732BB9E9A95 /* PBXBuildRule */, ); dependencies = ( + 8C15E82AC048B7F75BF62545 /* PBXTargetDependency */, + 0EF9EF4783171AF2103CFD5F /* PBXTargetDependency */, ); - name = "TestCommon macOS"; - productName = TestCommon; - productReference = 60B9AC27A0CBB243AF492B59 /* TestCommon.framework */; - productType = "com.apple.product-type.framework"; + name = "IceAcm macOS"; + productName = IceAcm; + productReference = 773839314982B481FB9A5F0B /* IceAcm.bundle */; + productType = "com.apple.product-type.bundle"; }; - AD5C495F17B512B2D13CC822 /* IceInvoke iOS */ = { + B3DD3174FEA726C76B98C914 /* IceInheritance macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 45862DFB6380EC9C50A9DC9B /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */; + buildConfigurationList = D12D148799602A4AC7FF510F /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */; buildPhases = ( - 99348C10095E9E5F3C0F5F56 /* Sources */, - 924D5876DD828924714EEF85 /* Frameworks */, - 676F98D72603326333704309 /* Resources */, + CF7B1CD3457464E44032ADFC /* Sources */, + 5E97C010CB866337653CFB8F /* Frameworks */, + 42D72A9E34CF08D69581B63E /* Resources */, ); buildRules = ( - 5CD295F2AB4F6ED4E7481CD4 /* PBXBuildRule */, + 301928FC4CFCE81BF608587F /* PBXBuildRule */, ); dependencies = ( - 9B5B74685DA573133A1206AE /* PBXTargetDependency */, - 99C57F8B7836AB8A160E5CE0 /* PBXTargetDependency */, + 0298BDC1A4881843FD6359B6 /* PBXTargetDependency */, + D275F1DAA709D3AEF814C624 /* PBXTargetDependency */, ); - name = "IceInvoke iOS"; - productName = IceInvoke; - productReference = C19ED6991B81D0F741D8B390 /* IceInvoke.bundle */; + name = "IceInheritance macOS"; + productName = IceInheritance; + productReference = C7DAB3F7C68697A828A55533 /* IceInheritance.bundle */; productType = "com.apple.product-type.bundle"; }; - AE646D18FFEFFFB65901B9D9 /* IceLocation iOS */ = { + B4169718E508CA7736735EF9 /* IceSSLConfiguration iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C375060CFF20E4DE39D6CFF3 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */; + buildConfigurationList = 141A424AF6A38313304014AE /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */; buildPhases = ( - C42941CAE7C44F652D3A5CC4 /* Sources */, - 5343EC8E9CB2335071D16552 /* Frameworks */, - 3B3C4972011E42A0EB3C223B /* Resources */, + 147D6E84BB301C5013BD54DB /* Sources */, + C218E742F5D307158924EA76 /* Frameworks */, + AE94A17BBEFD40CDE875A414 /* Resources */, ); buildRules = ( - 524158F422632D370591A3C8 /* PBXBuildRule */, + 7CD3E60D98B7646CE30C2CCC /* PBXBuildRule */, ); dependencies = ( - AC8A20FB7CE10C7C4352C472 /* PBXTargetDependency */, - FC70EE54AE34A09FE39B3613 /* PBXTargetDependency */, + CF36AA42B1C161B8DBB5B733 /* PBXTargetDependency */, + F93AB82337F7ABBBCCB73CAC /* PBXTargetDependency */, ); - name = "IceLocation iOS"; - productName = IceLocation; - productReference = 53A5BF7BE1E27774AE055437 /* IceLocation.bundle */; + name = "IceSSLConfiguration iOS"; + productName = IceSSLConfiguration; + productReference = 1CCF2A334B2BAF9588A6DB42 /* IceSSLConfiguration.bundle */; productType = "com.apple.product-type.bundle"; }; - AF397ABBF2A5A4C1FCF90790 /* IceServantLocator iOS */ = { + B6B9D5B730E90977303A8BE3 /* IceAcm iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 45336E8FD09E7C44847CE073 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */; + buildConfigurationList = 6CFA15E18CBCD5A1B9C078C2 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */; buildPhases = ( - 3A88480A773E8DCB3E678008 /* Sources */, - 6BE280D99DD511DCADE857EC /* Frameworks */, - E517096323BC53F76013658D /* Resources */, + 12F991893D8095920A799B31 /* Sources */, + 5269BCF68D782B17111EB24C /* Frameworks */, + 114B1963139920BD4C148D8B /* Resources */, ); buildRules = ( - 1C73735EFAD37D1CFA1D669A /* PBXBuildRule */, + 5320F784202E4F95402C9409 /* PBXBuildRule */, ); dependencies = ( - 4B11CDADF3FB598BD15FDD82 /* PBXTargetDependency */, - 098D84548F556CCEB5C69F11 /* PBXTargetDependency */, + 0BAF063A3E73FE1E9F85BBFF /* PBXTargetDependency */, + 3801411212C153DF30A2252F /* PBXTargetDependency */, ); - name = "IceServantLocator iOS"; - productName = IceServantLocator; - productReference = 9F93205A8C96574AF482B2AB /* IceServantLocator.bundle */; + name = "IceAcm iOS"; + productName = IceAcm; + productReference = ECDDA9E457926810C0ACEE3D /* IceAcm.bundle */; productType = "com.apple.product-type.bundle"; }; - AFBF627FDB9280859A796E95 /* IceStream iOS */ = { + B8B31D762B3677F746970AF6 /* IceProperties iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BAA00BA6A0C39AAC123B5915 /* Build configuration list for PBXNativeTarget "IceStream iOS" */; + buildConfigurationList = A73372CD2DFDD509AAC6B941 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */; buildPhases = ( - ECA8E9D076A7FEA89EF29A0B /* Sources */, - 40F7429554A2A9A4849030D6 /* Frameworks */, - FE75C2B98313D6F50B2857EB /* Resources */, + A987F7B6BD8618AE688E4ADD /* Sources */, + 025B6189E378EB18C2A71A5A /* Frameworks */, + 590B5426E457DB2BF1D82A2B /* Resources */, ); buildRules = ( - 39718FDCC97D2AF791C4FF7B /* PBXBuildRule */, + DC7FB0E409E0F373AA2DF410 /* PBXBuildRule */, ); dependencies = ( - F693659B4A21E81E462246B8 /* PBXTargetDependency */, - A02E59E12B944AD9B146C4D4 /* PBXTargetDependency */, + 61444C015F295C95E1D0DC4E /* PBXTargetDependency */, + 4D9C9F1E7021B8459797BE64 /* PBXTargetDependency */, ); - name = "IceStream iOS"; - productName = IceStream; - productReference = 63DF48DC6AC320881942F9D2 /* IceStream.bundle */; + name = "IceProperties iOS"; + productName = IceProperties; + productReference = 301D621EB654AC9C3E4E4E28 /* IceProperties.bundle */; productType = "com.apple.product-type.bundle"; }; - B0A77BB6DFBFBE8B44E34482 /* IceOptional iOS */ = { + BCECD790F76F93F791126123 /* IceStream macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 492CD0CF5E358D907F90FEEE /* Build configuration list for PBXNativeTarget "IceOptional iOS" */; + buildConfigurationList = 225D7B3D02FECE8F0BFF6D90 /* Build configuration list for PBXNativeTarget "IceStream macOS" */; buildPhases = ( - 81D0BB56AF1F3B4577276BE8 /* Sources */, - 674D555CD654C7FBFE580E45 /* Frameworks */, - 823B51C54FC435F6A03D3EAF /* Resources */, + B2E76AB5325FD0B44497BBAA /* Sources */, + AC4437CFD49892537E7B3177 /* Frameworks */, + 45B349161EC08F674DA202F4 /* Resources */, ); buildRules = ( - 6118D9947998D75D49CC2D58 /* PBXBuildRule */, + 21640CB1591AF046394D5538 /* PBXBuildRule */, ); dependencies = ( - 4F565C91BA73514F2E9B1EC9 /* PBXTargetDependency */, - EBF1E054AF40F03178AEB36E /* PBXTargetDependency */, + BEF15874D70EED59180D035F /* PBXTargetDependency */, + 6377997689E7691F99CEDD82 /* PBXTargetDependency */, ); - name = "IceOptional iOS"; - productName = IceOptional; - productReference = 6C1CDE26751507399301F945 /* IceOptional.bundle */; + name = "IceStream macOS"; + productName = IceStream; + productReference = 7C57A532F569AC857B5BAC2E /* IceStream.bundle */; productType = "com.apple.product-type.bundle"; }; - B502D4DB10FAD01329293155 /* IceOperations macOS */ = { + C01CDDFC69A3BAEE2DBC5560 /* IceProperties macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9A898F97439A84719F1671CF /* Build configuration list for PBXNativeTarget "IceOperations macOS" */; + buildConfigurationList = 8FEE51B6A3BE6A237451E98D /* Build configuration list for PBXNativeTarget "IceProperties macOS" */; buildPhases = ( - AC5BC499C01824104D8ED5F2 /* Sources */, - 6C415DBE0B9BAD7355AC1C82 /* Frameworks */, - BBB57A940BEC85757BF33C45 /* Resources */, + 6620174E22DD4D6CCD3282CB /* Sources */, + 2BDFA0906C8CC084EDE73074 /* Frameworks */, + 5BEE65549F36448CADA571FC /* Resources */, ); buildRules = ( - C258307974147646482ED430 /* PBXBuildRule */, + 83299791E357A7E4FD16A79F /* PBXBuildRule */, ); dependencies = ( - C1FB66DD25250EB4BEFADE97 /* PBXTargetDependency */, - ADFAB75E29386469C7988912 /* PBXTargetDependency */, + AE85E35BBB4EE9007FC59B34 /* PBXTargetDependency */, + 58DA9CF4530A5339A0E89DBF /* PBXTargetDependency */, ); - name = "IceOperations macOS"; - productName = IceOperations; - productReference = F97826A9DCAFE51593E3E836 /* IceOperations.bundle */; + name = "IceProperties macOS"; + productName = IceProperties; + productReference = ED3424BFB9925A53577998FB /* IceProperties.bundle */; productType = "com.apple.product-type.bundle"; }; - BA6B1EBD97713F7883F4CA94 /* IceSlicingExceptions macOS */ = { + C4C1475F0319943EE6BF6CAB /* IceOptional iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3DECEE29BBC1B56CC203D718 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */; + buildConfigurationList = D94673340A9825A2C0D0FF4A /* Build configuration list for PBXNativeTarget "IceOptional iOS" */; buildPhases = ( - 160A24AE04A5D9DF51464E8A /* Sources */, - C671EB95C66849845262E6F1 /* Frameworks */, - 70FA52C9BE4D5CA04E01B10D /* Resources */, + 403C5012F40381B9C8149B5E /* Sources */, + 037E516FE64DE570D02254C1 /* Frameworks */, + D629A98CFA4F05182534E1DC /* Resources */, ); buildRules = ( - F5B0EDABA2B7DE5B601FD5F2 /* PBXBuildRule */, + DB182916D2274E5F2C244539 /* PBXBuildRule */, ); dependencies = ( - 680C8D1C94B4328EEB837B9A /* PBXTargetDependency */, - 4ADC78295866FB7F4959DDFA /* PBXTargetDependency */, + EE82C6ED95BC44037DA4412B /* PBXTargetDependency */, + 6081B6A17344A1480287164E /* PBXTargetDependency */, ); - name = "IceSlicingExceptions macOS"; - productName = IceSlicingExceptions; - productReference = 99CDD3BEF9831A379194BA9E /* IceSlicingExceptions.bundle */; + name = "IceOptional iOS"; + productName = IceOptional; + productReference = 30561094206DE7E5EB3B1E5B /* IceOptional.bundle */; productType = "com.apple.product-type.bundle"; }; - BAD99ED95E14E2F53810245D /* IceObjects iOS */ = { + C6AFD5D37CF11FE461D86DD8 /* IceStream iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E0EBE04152FF4ED31AD30380 /* Build configuration list for PBXNativeTarget "IceObjects iOS" */; + buildConfigurationList = FAB7791B2C8C1018698D7909 /* Build configuration list for PBXNativeTarget "IceStream iOS" */; buildPhases = ( - 6831E3CD4222C55A8F044111 /* Sources */, - 178A5969AEF5E652580EBB8E /* Frameworks */, - 1EC14E8FEB51499775F64FE2 /* Resources */, + FDA13795394CA6C06A6E63B4 /* Sources */, + 4684350444729A6A319E1284 /* Frameworks */, + 2DA56DF6BDC99A4A58F8730B /* Resources */, ); buildRules = ( - 0958E402CF051D4C22CB38E7 /* PBXBuildRule */, + 4FC7968C899EC22E4BBC47F3 /* PBXBuildRule */, ); dependencies = ( - F09E6328CE01286C6ADD95F9 /* PBXTargetDependency */, - 00C7366750C45A1A322C6CF3 /* PBXTargetDependency */, + B9BB69BAC71C0FAA58686230 /* PBXTargetDependency */, + C7CAB4442CBF9EBCD7CDEEF0 /* PBXTargetDependency */, ); - name = "IceObjects iOS"; - productName = IceObjects; - productReference = 73E30F6985B146225B2F0177 /* IceObjects.bundle */; + name = "IceStream iOS"; + productName = IceStream; + productReference = 57B34B2AE4E0AB6BD04A92F0 /* IceStream.bundle */; productType = "com.apple.product-type.bundle"; }; - BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */ = { + C7C6F15DD53FB4E2316C8AA3 /* IceStorm macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E9C9BFDEA2ED16B4476CCF6D /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */; + buildConfigurationList = 5D60C6D4805FE0840A563B9A /* Build configuration list for PBXNativeTarget "IceStorm macOS" */; buildPhases = ( - 65B941C107B5D926BC9DAE4E /* Headers */, - 150B84A0024A0B21EECC417A /* Sources */, - 4EC993DF9E8B39A33AE23F57 /* Frameworks */, - 6E1BE16EDCDE9D779118BF95 /* Resources */, + 8112B61D6F5DD5F0C9A572AE /* Headers */, + 9ECC6D430B808A89B3854A6B /* Sources */, + C1543030B9BF65F895BC9163 /* Frameworks */, + 706B3E6E4672C762D99C7E93 /* Resources */, ); buildRules = ( - F4FF19C8B36BC51E28C1D10F /* PBXBuildRule */, + 21338767AF02AA9557A7E132 /* PBXBuildRule */, ); dependencies = ( - 5115402FB20281796EBBF688 /* PBXTargetDependency */, + 43FD2DE664E32B8F89030A19 /* PBXTargetDependency */, ); - name = "Glacier2 iOS"; - productName = Glacier2; - productReference = 77EC8521AFDAD69584F76199 /* Glacier2.framework */; + name = "IceStorm macOS"; + productName = IceStorm; + productReference = DC6A10305F53DC63F7512C53 /* IceStorm.framework */; productType = "com.apple.product-type.framework"; }; - BC8247889BA776D5F194850C /* IceSlicingObjects iOS */ = { + C80A8E405B320E680839566D /* IceSlicingObjects macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EA59AF9ED6271FF30295A838 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */; + buildConfigurationList = 73F016E3CC9A4846DC92237F /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */; buildPhases = ( - E57FB46C09E60C578673E07F /* Sources */, - FC522ABDE41AE6BB07D375F9 /* Frameworks */, - 9106DF14C082197A5E9FBDD0 /* Resources */, + 716E3F78488DF0AFCCE91031 /* Sources */, + 76A4F6532798D1C82908625F /* Frameworks */, + 2C973EE85DC5B092A8B1DD27 /* Resources */, ); buildRules = ( - F53C7359C7688256ADE30010 /* PBXBuildRule */, + 92AE0C908A6F43BE269DFAE5 /* PBXBuildRule */, ); dependencies = ( - B2F371E275144C1F37C08D65 /* PBXTargetDependency */, - 9C64C861ED970F6040F57C2D /* PBXTargetDependency */, + 4F2C2FCF937DF0F70D8A6B90 /* PBXTargetDependency */, + 176CDC7FE90E8C736046CF72 /* PBXTargetDependency */, ); - name = "IceSlicingObjects iOS"; + name = "IceSlicingObjects macOS"; productName = IceSlicingObjects; - productReference = 6E0FC8B916544739F08DBD2A /* IceSlicingObjects.bundle */; + productReference = D7B75346EB6CBAA407B78C44 /* IceSlicingObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - BC8AD08D72ABA5BDCF4A07E3 /* IceStream macOS */ = { + CA2ED7A56EF4FAC83454B118 /* IceOptionalAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D6D26BFF9C8DBDB634F93FAA /* Build configuration list for PBXNativeTarget "IceStream macOS" */; + buildConfigurationList = A9F09C08CD7BD7CA33AF995F /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */; buildPhases = ( - 701AECBCD0845BFB1876E088 /* Sources */, - A7D83AF2396D9E893D2FA565 /* Frameworks */, - 057E77D63FD84FF82DF4BF52 /* Resources */, + 9BAD66AD0EC25C8BDC52C970 /* Sources */, + 846C353E64D36876248ED510 /* Frameworks */, + 7A3A489AA063910EAE6274B9 /* Resources */, ); buildRules = ( - 6EA612880E2BD61FA55791F1 /* PBXBuildRule */, + 75059FD2BD70071EDBB2FBC2 /* PBXBuildRule */, ); dependencies = ( - 847597A48877E6EEE06837B9 /* PBXTargetDependency */, - 643721BE480E516C3780AD4C /* PBXTargetDependency */, ); - name = "IceStream macOS"; - productName = IceStream; - productReference = CE5EF72F93C8A48F13699E40 /* IceStream.bundle */; + name = "IceOptionalAMD macOS"; + productName = IceOptionalAMD; + productReference = 6B5589624E8C18A764174736 /* IceOptionalAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - BDB1F608C841B14238DB67CF /* Ice iOS */ = { + CA4363C4B69F792FD44B1A13 /* IceRetry macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A1E02F41A3A6C1296EC1ED1E /* Build configuration list for PBXNativeTarget "Ice iOS" */; + buildConfigurationList = 0D88577E87719A0CF76623A9 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */; buildPhases = ( - 58EA7ADDF13023AC26BAD850 /* Headers */, - 0480CB6E3A8E8A31A337C25A /* Sources */, - F0D515AF7A5C27A881B2DA68 /* Frameworks */, - BE2A873654C3B10200C519DB /* Resources */, + C5D06F06BDD0203C2A0D7EB4 /* Sources */, + C81DC1A228E7251EE49CD9A0 /* Frameworks */, + 27365D5810F8DDE13D530B59 /* Resources */, ); buildRules = ( - 55EAA30E2F1BC82BF4F771D5 /* PBXBuildRule */, + 4F3B138BAE515ABBE84D61DD /* PBXBuildRule */, ); dependencies = ( - F05327602CDFF152C5D841C4 /* PBXTargetDependency */, + B8C1043C2FCAE46F711B6D95 /* PBXTargetDependency */, + 1B4708EFE676B0617E942186 /* PBXTargetDependency */, ); - name = "Ice iOS"; - productName = Ice; - productReference = 1C1A5C984E086E684382E966 /* Ice.framework */; - productType = "com.apple.product-type.framework"; + name = "IceRetry macOS"; + productName = IceRetry; + productReference = 1B7B8369877501337E9D5211 /* IceRetry.bundle */; + productType = "com.apple.product-type.bundle"; }; - C11F92A0F52BB78CE42B609D /* IceInheritance iOS */ = { + CBED3CEC107C5D8FD12D1423 /* IceLocatorDiscovery C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 31E91A99438DF7CF294196DC /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */; + buildConfigurationList = 0C54B13449B12B4038C3F423 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */; buildPhases = ( - 24FC934D8BBC273401D4B94C /* Sources */, - DC40E825EE8F0BA639C29C8D /* Frameworks */, - A0B5B9C75F274382DE12D10F /* Resources */, + B7B7E0BA3DB171A1A71274E2 /* Headers */, + 458D27F6B882241EBEF446F2 /* Sources */, + D145478BF7DA75E8E2B48784 /* Frameworks */, ); buildRules = ( - EE1B96369E945536DFA93DC8 /* PBXBuildRule */, + 724A1BB4823A83846068F51A /* PBXBuildRule */, ); dependencies = ( - 2917EA502B354A6494B8FF02 /* PBXTargetDependency */, - EF8D9D52D26DEE70F42BF3C6 /* PBXTargetDependency */, + 8AC903386D3D6116DFDACF3F /* PBXTargetDependency */, ); - name = "IceInheritance iOS"; - productName = IceInheritance; - productReference = B2C1876280F446CCE7B816D9 /* IceInheritance.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceLocatorDiscovery C++11 iOS"; + productName = "IceLocatorDiscovery C++11 iOS"; + productReference = C1AF990F79450A9C081DB784 /* libIceLocatorDiscovery C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - C353EC6DD74EF040A9869F1A /* IceSlicingExceptions iOS */ = { + D09FEEF78E85A083AFB9AA4D /* IceSlicingExceptionsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CDABCC82729DB49FD47FFE3D /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */; + buildConfigurationList = 96C433DB6D4ADD824EF8C135 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */; buildPhases = ( - 69B40FFD87789CF391A5BC46 /* Sources */, - 9BD0369787C3CDCC832E8410 /* Frameworks */, - D478AD3490A3606865766038 /* Resources */, + 48D6393E8A3A2A9A167F7EC8 /* Sources */, + C558CF5EF4E33983782AC27A /* Frameworks */, + 36F519EA97FFA50120B018AF /* Resources */, ); buildRules = ( - F0FB78ABEAFADCDA0762CC8E /* PBXBuildRule */, + A94AAB48237DF0C9ACB91F58 /* PBXBuildRule */, ); dependencies = ( - 46275F2AE1F5949678E5B7E6 /* PBXTargetDependency */, - 5DFC199C350523CFAA6A5ED9 /* PBXTargetDependency */, ); - name = "IceSlicingExceptions iOS"; - productName = IceSlicingExceptions; - productReference = E39E0C1B10E19B51E2A7B2E4 /* IceSlicingExceptions.bundle */; + name = "IceSlicingExceptionsAMD iOS"; + productName = IceSlicingExceptionsAMD; + productReference = 46F06EE2B5CE1BD96013A0E1 /* IceSlicingExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - C386F0ADF5BCB591C41D4FFD /* IceOperationsAMD iOS */ = { + D2C1A9BA75231D8469946A3C /* IceHold macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 49D01C61AD8758D2B471AA02 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */; + buildConfigurationList = 33815915876E472B4F87E193 /* Build configuration list for PBXNativeTarget "IceHold macOS" */; buildPhases = ( - 89DC88D3768C291C5BE46F0D /* Sources */, - 3D7A25D1EE4C9E48E88051CC /* Frameworks */, - C20901B71BDCAD06E9FD9794 /* Resources */, + D293DEB055122373A6D625CF /* Sources */, + 6382299CF1FDF5AD99DD38D2 /* Frameworks */, + 02D7F5FE1FFD036C78530447 /* Resources */, ); buildRules = ( - BFAC9385AF5B1C62CB304049 /* PBXBuildRule */, + CF919C583BCCE4B98D927A64 /* PBXBuildRule */, ); dependencies = ( + CA1C927F4E7E3DBC98AEB662 /* PBXTargetDependency */, + 2A12B9C7041B620AF29C39EC /* PBXTargetDependency */, ); - name = "IceOperationsAMD iOS"; - productName = IceOperationsAMD; - productReference = 79B44ECCFF08BDD9E83A886B /* IceOperationsAMD.bundle */; + name = "IceHold macOS"; + productName = IceHold; + productReference = 4D3E7C6DAF7A1136E094036E /* IceHold.bundle */; productType = "com.apple.product-type.bundle"; }; - CEE926A8FFE81634B9CBA64C /* IceProxy iOS */ = { + D3BDE8AC40C1810EB2A14067 /* IceOperations macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AD161EDD9CF2D67496627B0D /* Build configuration list for PBXNativeTarget "IceProxy iOS" */; + buildConfigurationList = 5B649B5CD051BB6398F0AB73 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */; buildPhases = ( - 4F8FB5F5C3B0AA072EBE86C3 /* Sources */, - 21C4C789E5F3EA71CD5CF519 /* Frameworks */, - 0F4892E621165051767C5160 /* Resources */, + F55A84E3271B987BEDCD3FB2 /* Sources */, + 36AE2A39F37E56B4843D2E8E /* Frameworks */, + 75FEC1F90A035D213EF10F8B /* Resources */, ); buildRules = ( - 5D5176301B17E939F7D3BA96 /* PBXBuildRule */, + 76CBBEA49BAC56302A0429EA /* PBXBuildRule */, ); dependencies = ( - F828F317335931B5298DF358 /* PBXTargetDependency */, - 889161D8D617DAE3FB899EFE /* PBXTargetDependency */, + 94E4BC494FADAB44F0A4A05E /* PBXTargetDependency */, + 5FEC7F91F2FB629D2923CCDD /* PBXTargetDependency */, ); - name = "IceProxy iOS"; - productName = IceProxy; - productReference = 99F9D2D3C733AFDB4D23EB00 /* IceProxy.bundle */; + name = "IceOperations macOS"; + productName = IceOperations; + productReference = 950F3E962351FD9CFB2B4F24 /* IceOperations.bundle */; productType = "com.apple.product-type.bundle"; }; - CFA7C016ADBDBC9AE9AB0FF7 /* IceGrid macOS */ = { + DEABBE98FF536A890AE33865 /* IceDefaultServant macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 26A5B6B0FCBC7609F683D25F /* Build configuration list for PBXNativeTarget "IceGrid macOS" */; + buildConfigurationList = 08C75263908EA0F1DB23F0E4 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */; buildPhases = ( - 558B4EC93D7C78C03C354DB2 /* Headers */, - 6A86E20C61F27E3286476095 /* Sources */, - E1227AEBECE21D1CC01C02B6 /* Frameworks */, - 9F71CAD79F5FA4492A98DA81 /* Resources */, + F9440AFC2469DF50591441D3 /* Sources */, + A0E77756D74837A7B15AD0E4 /* Frameworks */, + D95664360051FBC8166B9A35 /* Resources */, ); buildRules = ( - 605A5E76A3A4E8E932681992 /* PBXBuildRule */, + A078EA5628FFB84DF0B0746C /* PBXBuildRule */, ); dependencies = ( - 4276032127E7F02B88B45E29 /* PBXTargetDependency */, - DBB9E5A459AABFB341F95ECE /* PBXTargetDependency */, + 3A944994753FF0CAFC681A28 /* PBXTargetDependency */, + 04E4526F7B2AA2655197C56F /* PBXTargetDependency */, ); - name = "IceGrid macOS"; - productName = IceGrid; - productReference = C0AF15B4EEC648C875D97939 /* IceGrid.framework */; - productType = "com.apple.product-type.framework"; + name = "IceDefaultServant macOS"; + productName = IceDefaultServant; + productReference = CE428CC2328F83A0C7CF327B /* IceDefaultServant.bundle */; + productType = "com.apple.product-type.bundle"; }; - D0CB5D7E1779A34D43B5B89E /* IceUdp iOS */ = { + E08F994D81F1404BD2BF4D5A /* IceRetry iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3E24D4F20919277433AEDC55 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */; + buildConfigurationList = 8438D59C3B885588B64C9832 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */; buildPhases = ( - F6AAC081A93E2757B8F6E9AC /* Sources */, - 6BECAD3E97375981EE3515ED /* Frameworks */, - 8485992CF05DC1021A09D8A7 /* Resources */, + 4E879BA1D09CBAB3A63157A7 /* Sources */, + C09156DD1A85FA6AF9DCF9B5 /* Frameworks */, + E43A6D66D5CCEEDB8B3B9D61 /* Resources */, ); buildRules = ( - 72406AFBCC3F4300CD164514 /* PBXBuildRule */, + 7E2BBC5737A234E8D8303FA0 /* PBXBuildRule */, ); dependencies = ( - A0E3D4AC198A6DC6808F2DEC /* PBXTargetDependency */, - F1BA5260866BD4B2D46B9437 /* PBXTargetDependency */, + 356D04B529083865813959EB /* PBXTargetDependency */, + E86A2C6BD0F6E31B15F04CC2 /* PBXTargetDependency */, ); - name = "IceUdp iOS"; - productName = IceUdp; - productReference = 85B515A196F89D779308CAD1 /* IceUdp.bundle */; + name = "IceRetry iOS"; + productName = IceRetry; + productReference = F9015DB7A4BC8F5780598C5B /* IceRetry.bundle */; productType = "com.apple.product-type.bundle"; }; - D52144324A93F3717DC3A4BB /* IceInheritance macOS */ = { + E4350886F7ECE83389DE7799 /* IceServices macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 4CE4778CBD0A4E6FC82775E9 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */; + buildConfigurationList = 85C13ACAB3711BD642FCE4C4 /* Build configuration list for PBXNativeTarget "IceServices macOS" */; buildPhases = ( - 6F55FD163BA096C512C916E3 /* Sources */, - D75B2EC24305B59D2E2BEE1D /* Frameworks */, - C0C847052EA494D75F3D93EB /* Resources */, + 56957981C03B9A3FA02A091C /* Sources */, + D50E77E4CE80C269BD9776D0 /* Frameworks */, + 86504AE9DAB1FC3E293D8DC9 /* Resources */, ); buildRules = ( - 605130A9C132997054E51A39 /* PBXBuildRule */, + 0427B4908F72AEECF55F409E /* PBXBuildRule */, ); dependencies = ( - FECA0D68F9BE92C797C3726F /* PBXTargetDependency */, - 970D63C1D4A4BF15FA93EC58 /* PBXTargetDependency */, + E404EE64F84E3BBD294238F5 /* PBXTargetDependency */, + DBC12F078658209CBDE27327 /* PBXTargetDependency */, + D0BB0CEAEC672F130A0776D1 /* PBXTargetDependency */, + FA56A7280BEC89FE70519B68 /* PBXTargetDependency */, + 97896DDCDED7480374941F2C /* PBXTargetDependency */, ); - name = "IceInheritance macOS"; - productName = IceInheritance; - productReference = 79E564BB39566F3CAD8B878F /* IceInheritance.bundle */; + name = "IceServices macOS"; + productName = IceServices; + productReference = 79CF8D4448CD8F1D2AB9367C /* IceServices.bundle */; productType = "com.apple.product-type.bundle"; }; - D62438E4F1A3CC9836A8E287 /* IceSlicingExceptionsAMD iOS */ = { + E47E556F6FF734E970050937 /* IceImpl macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 60E1781E3558EB9101081746 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */; + buildConfigurationList = 602FD78BB42EED22AE69E70E /* Build configuration list for PBXNativeTarget "IceImpl macOS" */; buildPhases = ( - 997D31D827F6C4B852418113 /* Sources */, - A76F18309B0B491F92E1A728 /* Frameworks */, - BC1856CE66B12B7D468AF98E /* Resources */, + CF9EE45AEAD159608001824B /* Headers */, + FBAB2BF624487B3AD91E9DD2 /* Sources */, + 797DA8AF647A2A9F25C35A1D /* Frameworks */, + E506EADD812DFFA8DB192F5A /* Resources */, ); buildRules = ( - 911BD070DE8A35466F16B31E /* PBXBuildRule */, ); dependencies = ( + CDDBC496BCFD2351CD8295A9 /* PBXTargetDependency */, + 48F7FFB5A72CDB6B20901312 /* PBXTargetDependency */, + E4EEDB6E0DB6CE2C862838D3 /* PBXTargetDependency */, ); - name = "IceSlicingExceptionsAMD iOS"; - productName = IceSlicingExceptionsAMD; - productReference = 5A6BCE84AFC62FA7351297E6 /* IceSlicingExceptionsAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceImpl macOS"; + productName = IceImpl; + productReference = DA48BF39278DC0F70FC216F1 /* IceImpl.framework */; + productType = "com.apple.product-type.framework"; }; - D7CF9E2B46E63FC31B7A1F92 /* IceAcm macOS */ = { + E564301A82DF55065D5215D1 /* IceExceptions iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6BB1BA7FF0A2AA43C1D29C03 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */; + buildConfigurationList = 40F601399935EA83044348DE /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */; buildPhases = ( - BF00BE8B9F09076ECFB79A05 /* Sources */, - 2082B5F21E7931D8FA85345F /* Frameworks */, - 9ABD7D918E0EB40B70D7D70B /* Resources */, + 69FA2E241CE59E9C3369F708 /* Sources */, + DC327B0FA8203F2D96C5CA8B /* Frameworks */, + 359190C1A44CEEB07092971A /* Resources */, ); buildRules = ( - 49AE49184984F4BC11E7A190 /* PBXBuildRule */, + 4358EAC2A49AE9F92DC76B93 /* PBXBuildRule */, ); dependencies = ( - 5EC0BF68CBF859070F7C60E0 /* PBXTargetDependency */, - 644D2CB48445102AD4EB961F /* PBXTargetDependency */, + 6A5F97B6B824293DA375BCCB /* PBXTargetDependency */, + 2EF0FF8E8B9198F8D0752DF2 /* PBXTargetDependency */, ); - name = "IceAcm macOS"; - productName = IceAcm; - productReference = C7529E7D6E0CE82CABE0D45B /* IceAcm.bundle */; + name = "IceExceptions iOS"; + productName = IceExceptions; + productReference = 461937D2DA4EABD1399760BD /* IceExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - E2CC2C0A9253A8A9567DA40C /* IceOptional macOS */ = { + E73C245D51F93B4E9024CF4C /* IceProxyAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A369A5BC026AEE26F64C934F /* Build configuration list for PBXNativeTarget "IceOptional macOS" */; + buildConfigurationList = 72FFED9A8E87191EE3B81797 /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */; buildPhases = ( - A6E11EF3B3E17130A401AA5F /* Sources */, - C0446FB501EFBD6035BCDFE1 /* Frameworks */, - 991D3F773FE2F497EA2A7F7C /* Resources */, + DAE89EA2584CA56DA4BF1DEB /* Sources */, + F9B9CA343281FDF313A50EC2 /* Frameworks */, + 2AD8A388D3FF423A744DB1C5 /* Resources */, ); buildRules = ( - 47076ACD2D5E157833A7069A /* PBXBuildRule */, + CE6FEFB122A2A0EB2661FDC7 /* PBXBuildRule */, ); dependencies = ( - B56ACA4EB35E8DF442950B00 /* PBXTargetDependency */, - 747C6EDCFF53A92C7918E498 /* PBXTargetDependency */, ); - name = "IceOptional macOS"; - productName = IceOptional; - productReference = A7F4197C8123883ABAF8C85D /* IceOptional.bundle */; + name = "IceProxyAMD iOS"; + productName = IceProxyAMD; + productReference = F4BB047ECA2C8C6E40017B49 /* IceProxyAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - E3479E14717F19236E306587 /* IceSlicingObjectsAMD macOS */ = { + E9620956250DB1FF4F31CD7B /* TestCommon iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7504876954989971B7E0484C /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */; + buildConfigurationList = E84BF87A0A0D54A334C069D6 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */; buildPhases = ( - F3B366D49E6B2BFF8728E083 /* Sources */, - F05A9409CE78B39D983E8E79 /* Frameworks */, - 097778F25DB7DB463E4B3C49 /* Resources */, + 64A87DA1EA9BD3C6ADAFF02E /* Headers */, + 08A61FD3D335E356FA2AA2B0 /* Sources */, + 96F5B639D380BFAE10B20DEF /* Frameworks */, + 4D8703274DC7EE6EA9CA8665 /* Resources */, ); buildRules = ( - 5068FEA3DC1C1093B8937B89 /* PBXBuildRule */, + B63F444955244A1EB61883A0 /* PBXBuildRule */, ); dependencies = ( ); - name = "IceSlicingObjectsAMD macOS"; - productName = IceSlicingObjectsAMD; - productReference = 09486704DD4EBAC0DD6677C8 /* IceSlicingObjectsAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestCommon iOS"; + productName = TestCommon; + productReference = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; + productType = "com.apple.product-type.framework"; }; - E84AD21BA9DB06F21E2D3BB3 /* IceLocatorDiscovery C++11 iOS */ = { + EA20FD9B92B4F4A508F0738F /* IceSlicingObjectsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B351BA953215FB9837A9C550 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */; + buildConfigurationList = 0EE3B8E1D1C40DE7FA588CCC /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */; buildPhases = ( - 9FEE05592AE8324AF9E79454 /* Headers */, - E12248A19E1B790525CD23AB /* Sources */, - 064811FE756C489F622F4CD2 /* Frameworks */, + 5455C447F677F56B64083910 /* Sources */, + 935E6B5A7462CBBADD77F680 /* Frameworks */, + 4119F6418B223102240679F7 /* Resources */, ); buildRules = ( - 620197F8BBA2706B29E42E10 /* PBXBuildRule */, + 4CD8EBACCF0E243B2EDF4C62 /* PBXBuildRule */, ); dependencies = ( - 97B000A6252B61239F60D7A4 /* PBXTargetDependency */, ); - name = "IceLocatorDiscovery C++11 iOS"; - productName = "IceLocatorDiscovery C++11 iOS"; - productReference = 4F365747574374068F56B9FD /* libIceLocatorDiscovery C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceSlicingObjectsAMD iOS"; + productName = IceSlicingObjectsAMD; + productReference = A3BB783984531DDB15DA995D /* IceSlicingObjectsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - EA1D2D4417E34B61AC64FEE1 /* IceInterceptor iOS */ = { + EB3EA3436E39E34BB754ECF1 /* IceProxy iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CAB0B77B83FB59AC0194739E /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */; + buildConfigurationList = A42CCFD6344CE2EDEC80786E /* Build configuration list for PBXNativeTarget "IceProxy iOS" */; buildPhases = ( - 754369F2E5DE796468C3C840 /* Sources */, - F7386CB42707112CB1B8A967 /* Frameworks */, - D556934DE5670057A35038C4 /* Resources */, + 2EE495321A946EC99D8A7418 /* Sources */, + D9A3F7D9D92764B98B3123A8 /* Frameworks */, + BEE1CE17FC667A7EF7CCC411 /* Resources */, ); buildRules = ( - 2C73273142987B7C6C0DC25D /* PBXBuildRule */, + BDD457CECD546D41165CAA57 /* PBXBuildRule */, ); dependencies = ( - F5AD26B150EBC63B14C7C1A5 /* PBXTargetDependency */, - 7B9A2F265DC3ACF93454979F /* PBXTargetDependency */, + 576DFD365EE603CDE8CAA9C5 /* PBXTargetDependency */, + 5EDE335AB5C67153012820C4 /* PBXTargetDependency */, ); - name = "IceInterceptor iOS"; - productName = IceInterceptor; - productReference = 5F9757AB402E520F6A127C8D /* IceInterceptor.bundle */; + name = "IceProxy iOS"; + productName = IceProxy; + productReference = 9330809B9C47D804EF5BC5E3 /* IceProxy.bundle */; productType = "com.apple.product-type.bundle"; }; - EACA18083EFA62557FBB6215 /* IceGrid iOS */ = { + F27C8BBF5E4DB22EF58AF515 /* IceServantLocator iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CBEB8379016775C75645A394 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */; + buildConfigurationList = 686CA0DB8041143E1F8D142C /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */; buildPhases = ( - 7B69B42DFF503DFC784A79D2 /* Headers */, - 8080F840DC63835F3A414E77 /* Sources */, - 411BC2E979F16D9840188D82 /* Frameworks */, - B0A6A93B074143CE8B3932F4 /* Resources */, + C455DFC954703E8B86E8FB16 /* Sources */, + 7AC019BA153CC3CDA1B7BEA1 /* Frameworks */, + 232294D33C24AE8830649E67 /* Resources */, ); buildRules = ( - 7970F3E9D6D694AE79CECD41 /* PBXBuildRule */, + 2B5499CC882C269A50E4E91D /* PBXBuildRule */, ); dependencies = ( - 7A0D34B2D177C32128C645D0 /* PBXTargetDependency */, - D22A61F81811EA2A3879F9EF /* PBXTargetDependency */, + 2976AD49BDA685FF3D348498 /* PBXTargetDependency */, + 1E85260D9970B3DEA09E1D7F /* PBXTargetDependency */, ); - name = "IceGrid iOS"; - productName = IceGrid; - productReference = 3D98CE77652346A9B41B4831 /* IceGrid.framework */; - productType = "com.apple.product-type.framework"; + name = "IceServantLocator iOS"; + productName = IceServantLocator; + productReference = 055E1371140F03C46BE4933C /* IceServantLocator.bundle */; + productType = "com.apple.product-type.bundle"; }; - EC69EEBE9D64F07481829BFA /* IceAdmin macOS */ = { + F4DA824A9FD9930888BD262E /* IceBinding macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = ED8E7E82B168D7EB16E5E342 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */; + buildConfigurationList = 7D0F8BCAD5EDB101F823DEC0 /* Build configuration list for PBXNativeTarget "IceBinding macOS" */; buildPhases = ( - 6878B564B0F2D92DB5EB28B0 /* Sources */, - 34E048EEB77B533379B37619 /* Frameworks */, - A3372331135643B14D21DE75 /* Resources */, + E43AE966BAECD1D3D4212564 /* Sources */, + 88958F34BE3FFCC4CEAE3537 /* Frameworks */, + 9E65A521E552E75E4B64D032 /* Resources */, ); buildRules = ( - 4160F97C6DD6AB072C8E1471 /* PBXBuildRule */, + F0977AA6EDB770E8A7BB5F5A /* PBXBuildRule */, ); dependencies = ( - 053F3A49FFF23311FAC44489 /* PBXTargetDependency */, - 9AE0565ECFF368D791619365 /* PBXTargetDependency */, + 023095BB736D389D21B94F2E /* PBXTargetDependency */, + 2367577BB797E283A1A7213B /* PBXTargetDependency */, ); - name = "IceAdmin macOS"; - productName = IceAdmin; - productReference = 61F67EA48B40D8217803F572 /* IceAdmin.bundle */; + name = "IceBinding macOS"; + productName = IceBinding; + productReference = 021E511AD9C9C3E31BB6E815 /* IceBinding.bundle */; productType = "com.apple.product-type.bundle"; }; - EFD2EA453C644DB2E82BF9B6 /* IceSlicingObjects macOS */ = { + F5CD065672396E4209757A74 /* IceServantLocatorAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9AC9195AE48E71CB74E51857 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */; + buildConfigurationList = AFAD3A592F040172798F6AF8 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */; buildPhases = ( - B2FD5E0DDD2D8BCA6C586831 /* Sources */, - 58A231E3D638B9E194D10CE9 /* Frameworks */, - D3A54ACF0DD989B854E98C67 /* Resources */, + ADC4D491A20D62BF0856C4E5 /* Sources */, + 272C3895D070D354391C8BA6 /* Frameworks */, + C3A332D5958ABDE3578F4A43 /* Resources */, ); buildRules = ( - 80947A2FF18E06E5B940ACA0 /* PBXBuildRule */, + 3B52119A5101E7960F4CF13E /* PBXBuildRule */, ); dependencies = ( - 03AE68141B2EDA6CE6C43620 /* PBXTargetDependency */, - 2929AD35171753BFA602F48D /* PBXTargetDependency */, ); - name = "IceSlicingObjects macOS"; - productName = IceSlicingObjects; - productReference = 0F77C35360BC168A8EE3C849 /* IceSlicingObjects.bundle */; + name = "IceServantLocatorAMD macOS"; + productName = IceServantLocatorAMD; + productReference = 6D8A172CCED325773F9ACA7A /* IceServantLocatorAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - F18532A4F881321CB6AE2614 /* IceDefaultValue iOS */ = { + FA5053DC63D60556D4AF6086 /* IceTimeout iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AAA4B5634CFAF599D5CF0A53 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */; + buildConfigurationList = 73CA9515792EA282705ECAD7 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */; buildPhases = ( - 592AA7ADB9244CF7838DFAF0 /* Sources */, - 661293AD0849287E44FB3DCA /* Frameworks */, - E5D2FAAB4A858AF1EF79BB44 /* Resources */, + CF31E29D8FD14FD8A85C2403 /* Sources */, + C87B421850A37441282C7EFF /* Frameworks */, + 44D627EA87427B1B5B919769 /* Resources */, ); buildRules = ( - 8511F95A239D531035420376 /* PBXBuildRule */, + F65E53D41F3774164A27A2E3 /* PBXBuildRule */, ); dependencies = ( - 6E7CA6DF8E06C7F5DF811FA7 /* PBXTargetDependency */, - 51F741133673DEAA1459FE79 /* PBXTargetDependency */, + 6B9057CED3EE87007DBBEE61 /* PBXTargetDependency */, + 7131C3403A2D441863F7E186 /* PBXTargetDependency */, ); - name = "IceDefaultValue iOS"; - productName = IceDefaultValue; - productReference = A9E418725A7536BFB1BF5F9E /* IceDefaultValue.bundle */; + name = "IceTimeout iOS"; + productName = IceTimeout; + productReference = 23F70E58CAF1EDFC2272E758 /* IceTimeout.bundle */; productType = "com.apple.product-type.bundle"; }; - F41AE083FE7A390670B538F9 /* IceServantLocator macOS */ = { + FB42232B69F121EBC030A837 /* IceOperationsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 49B609DA78AD14FEB7B6AC6E /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */; + buildConfigurationList = 688C1823288F9E68F1712F26 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */; buildPhases = ( - E9DCD5998A1AFE37F795A360 /* Sources */, - B667EB713F062D2AF378EDC0 /* Frameworks */, - 363122340AFFB2E22FEFBE58 /* Resources */, + 16DA4E195F691E4D5BCAC450 /* Sources */, + B086170187254B6C38BD9BBE /* Frameworks */, + 0E09902C4BFA9607C95EC23B /* Resources */, ); buildRules = ( - CF38C0C5FCA88D918D126407 /* PBXBuildRule */, + 925E0DFA94B513AAC2D917C9 /* PBXBuildRule */, ); dependencies = ( - 677D8EB8A364B50453E41043 /* PBXTargetDependency */, - 4A4786C4294D9D9EB04A12A1 /* PBXTargetDependency */, ); - name = "IceServantLocator macOS"; - productName = IceServantLocator; - productReference = 2D63C2A77F018D37B047CFA9 /* IceServantLocator.bundle */; + name = "IceOperationsAMD iOS"; + productName = IceOperationsAMD; + productReference = D9B018EB339EB9B238FEA4EC /* IceOperationsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - FF7948EAFE0A62518B685629 /* IceAcm iOS */ = { + FFD3EBD911A26B666F11DC8C /* IceInfo iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 98EC32A5E954BB63900D8FCE /* Build configuration list for PBXNativeTarget "IceAcm iOS" */; + buildConfigurationList = 9353801B529260F737851CAA /* Build configuration list for PBXNativeTarget "IceInfo iOS" */; buildPhases = ( - 24C0731916FBB4F1F7F83264 /* Sources */, - D1922509B68585A46413BE2E /* Frameworks */, - 4239E45DF35F3B6D01F6854F /* Resources */, + 3699FBB3C28FB2A9C874EF43 /* Sources */, + B23C11469E61ABD0EDC6FC34 /* Frameworks */, + 485F12572DB946951AF71C6E /* Resources */, ); buildRules = ( - AC517155B65FC1204E85F8CC /* PBXBuildRule */, + E8B2F1326E477454FC030D59 /* PBXBuildRule */, ); dependencies = ( - 40D1956EA1F9DD10651A5E14 /* PBXTargetDependency */, - A54FA4CF9616CE1B19F5865B /* PBXTargetDependency */, + A4D2BF679F3B95A6B937905B /* PBXTargetDependency */, + 1D95A803903FF16821114567 /* PBXTargetDependency */, ); - name = "IceAcm iOS"; - productName = IceAcm; - productReference = DE81698975B33852370169B0 /* IceAcm.bundle */; + name = "IceInfo iOS"; + productName = IceInfo; + productReference = 2B615C29B6876A457E770F75 /* IceInfo.bundle */; productType = "com.apple.product-type.bundle"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 2FC1D43765A7F931D9DC5184 /* Project object */ = { + 6C4BDC12B235E63B3B624E92 /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 1500; LastUpgradeCheck = 1500; TargetAttributes = { - 0210DABE4A3F8E46162FC09A = { + 00F4F87A480D875F2C651B81 = { ProvisioningStyle = Automatic; }; - 02E12A01B24B3B3E6927EAD6 = { + 01B75CEA3EB80A6E664242B0 = { ProvisioningStyle = Automatic; }; - 032E51349714AC140B16B6B4 = { + 055B3C0D85846EE14E87127C = { ProvisioningStyle = Automatic; }; - 0520084212F98FC56E36026A = { + 096C6B1CDEA03B0A33EF7AB7 = { ProvisioningStyle = Automatic; }; - 065FE0308F8C069FEF18896D = { + 0BE885FE5E5BBE860323877D = { ProvisioningStyle = Automatic; }; - 0763ED05481F11F83E2EE767 = { + 0CC992ABE92F26754D8B7AC6 = { ProvisioningStyle = Automatic; }; - 0A1278D024EC2ADD3E42D968 = { + 0CCC3C20156C399AF82BA12D = { ProvisioningStyle = Automatic; }; - 0FE313AA3347701853A8ACC2 = { + 0D82476565F3AEA63555293E = { ProvisioningStyle = Automatic; }; - 1351B844542309876A23C297 = { + 0DA6226AD5937A1F51BF8750 = { ProvisioningStyle = Automatic; }; - 137A22811E93D82B716007C8 = { + 124476FE277A9E3ABE9F4A34 = { ProvisioningStyle = Automatic; }; - 1714972356F07102A679833E = { + 14E9DB904AE22B49F37C4175 = { ProvisioningStyle = Automatic; }; - 182B60B239B1CC9AAF97C3ED = { + 15259193E3C55F25AB0F68C2 = { ProvisioningStyle = Automatic; }; - 1849F40335AEAFEAB939B520 = { + 1564B348BA2786B8C14E7ADE = { ProvisioningStyle = Automatic; }; - 1AAB45470D9803BF85F70BF0 = { + 1E5D4D4FE7BB61EAB8ECA266 = { ProvisioningStyle = Automatic; }; - 1B61C6EBFA17380F9C3CC36E = { + 21CBD45E7CE90BF8C75C80EB = { ProvisioningStyle = Automatic; }; - 1F921787D1BBEBC84AF46F5D = { + 24DFB14E537F560FB7A2C4BB = { ProvisioningStyle = Automatic; }; - 204D17961BE241E9AA6931C4 = { + 263F8736790034DA7D5B83D1 = { ProvisioningStyle = Automatic; }; - 205D8173670283F9A6ADDECA = { + 27BA347B00896E18F811823C = { ProvisioningStyle = Automatic; }; - 214682343A5CDC54C07B1A1B = { + 27F3896A1D44D94EF855517D = { ProvisioningStyle = Automatic; }; - 26B6DCD78B127AE4BDB35209 = { + 283F1EEEFDF95C8EA1294341 = { ProvisioningStyle = Automatic; }; - 287E9414F6A74860FF1188EE = { + 28A1C2F2EB8DCCF1AFE83661 = { ProvisioningStyle = Automatic; }; - 30CD23A6E9655B858C148892 = { + 2B6CEDAE0FF7E5682835597A = { ProvisioningStyle = Automatic; }; - 330758B0C9821D7E1E2243D3 = { + 3639C4450BB9A2FD62EC83B1 = { ProvisioningStyle = Automatic; }; - 3922C5D52BCDB27B7A0BD1C2 = { + 3682D0A08A431497D8699B03 = { ProvisioningStyle = Automatic; }; - 3C1B36794C4B3EFB2B618967 = { + 37631E1832EC47AB18B6F9F8 = { ProvisioningStyle = Automatic; }; - 408FAEC665C8C38D7A2248A7 = { + 39438194D11EA03199C6686E = { ProvisioningStyle = Automatic; }; - 45F2051058E66C596838C08E = { + 3E00BC6A9646D9FED455066C = { ProvisioningStyle = Automatic; }; - 4A4450AB007BDD9E08CDC48B = { + 3E1C18FAE5F2A3A2849292E9 = { ProvisioningStyle = Automatic; }; - 4E4074DFF5890EB17098C624 = { + 3EA20E16FBEAA1C5B0DA52BA = { ProvisioningStyle = Automatic; }; - 53EC7722C4E553C8B5189060 = { + 429CEDF95141D2685FE9AB01 = { ProvisioningStyle = Automatic; }; - 57641F57B5FDCF62AD0FCD45 = { + 4685FAE2AEBE43E1EEA7F814 = { ProvisioningStyle = Automatic; }; - 595CBA41E37503369DC5E136 = { + 46A2B970AAE6DC244C6522E3 = { ProvisioningStyle = Automatic; }; - 600F66FEB1C8FA05B0D86986 = { + 473D6356B099988C3C7E81A3 = { ProvisioningStyle = Automatic; }; - 61321B12DA134239ABC63556 = { + 478A8F3068E5FF5F72F783EC = { ProvisioningStyle = Automatic; }; - 6204C55F63CC62BE2A2B08C9 = { + 47EF87D7ED829723C501BBBC = { ProvisioningStyle = Automatic; }; - 68767C0FE145D39DE4D88779 = { + 4BB02C0AE52711EB3F20C5D7 = { ProvisioningStyle = Automatic; }; - 6C9760FEBCAAE6CE0FA2DC30 = { + 4D5800AC0A437A45FB0049AB = { ProvisioningStyle = Automatic; }; - 6D2A74C3BC8748EAD4AF10CA = { + 4E2639095BC1D8AB5CABDD8E = { ProvisioningStyle = Automatic; }; - 74391EA658CAB520F6080EFB = { + 5658AB3FB70284E862079845 = { ProvisioningStyle = Automatic; }; - 7E8564022216773735645574 = { + 5722522ABF0B09D7099DBA1F = { ProvisioningStyle = Automatic; }; - 81EBCBBD81DAA61D4581DF4A = { + 5E8A324AC0641CA083A50D0F = { ProvisioningStyle = Automatic; }; - 836D0AD1DCC62D99CC1CB8EA = { + 6272130C7E84066D9A3C1C41 = { ProvisioningStyle = Automatic; }; - 85AD9F1A782BBCA078D72ECA = { + 665EE5441D076F90F4516A23 = { ProvisioningStyle = Automatic; }; - 85DA963BEF597DDF5EBD28D4 = { + 68BE8ACEDDD7433FDD2E5099 = { ProvisioningStyle = Automatic; }; - 866E8F0547A584631426B2A5 = { + 6ABC458490AA5F904B381F7D = { ProvisioningStyle = Automatic; }; - 86D99596C3AC52CDD7C6A937 = { + 6BA09F6BC0797F624A68E17E = { ProvisioningStyle = Automatic; }; - 8716086DA12B2BDD0A0AB020 = { + 713B71D014689185E9E05395 = { ProvisioningStyle = Automatic; }; - 8B673B53CF2890202D016783 = { + 770013F768356B5BE1BB460C = { ProvisioningStyle = Automatic; }; - 8D692CC4BED85D90455B3611 = { + 77D3FCCE81BDE4D86C21D2FC = { ProvisioningStyle = Automatic; }; - 8F82ACAB074FFBE3B4D8F339 = { + 78DF05AE60584A8F9A7E374B = { ProvisioningStyle = Automatic; }; - 8FBA8150AB11D2A819C1D2EA = { + 8919247F07DEFFC41FDA9486 = { ProvisioningStyle = Automatic; }; - 90FA36CD9B0F6F2C3BC99401 = { + 8BCEB954ACECD9E143B3DD52 = { ProvisioningStyle = Automatic; }; - 94D926D5469FBD751BF9B740 = { + 8F022C46667133AF20CDD4CC = { ProvisioningStyle = Automatic; }; - 96F2227A2D1F58BCEA8ED0F6 = { + 92A668B7841CFDC57756D6E7 = { ProvisioningStyle = Automatic; }; - 9938DD491B5B4A54DB0A80E3 = { + 944D56850B5551840FD0118C = { ProvisioningStyle = Automatic; }; - 9A800192291D16A52BC00EB5 = { + 969752F2E953B2ED36823477 = { ProvisioningStyle = Automatic; }; - 9F316F6F4FE88F030A110125 = { + 98CD3D7B6AB129005DDDED37 = { ProvisioningStyle = Automatic; }; - 9FAA9797D207A26125233020 = { + 995512D73E07EFE9CD097A94 = { ProvisioningStyle = Automatic; }; - 9FEDBE2BC73385F81D251350 = { + 9A5B406340D1F54AA6A93582 = { ProvisioningStyle = Automatic; }; - A06E150DA767B6FC743BAF10 = { + 9B91000B96831D134868EF00 = { ProvisioningStyle = Automatic; }; - A292FEFD4AC0C53DF83589BE = { + 9F8CD7854A90F92273855E8E = { ProvisioningStyle = Automatic; }; - A2BA1134828B7EE3273C5D13 = { + A58A9C1B02FC1B2964645F6D = { ProvisioningStyle = Automatic; }; - A5A118B8D38A8DF773729D3E = { + A69CCF574C4233A49E864528 = { ProvisioningStyle = Automatic; }; - A9149583C7CA34903D80B3C4 = { + A7EE978EE70DDA201B41538D = { ProvisioningStyle = Automatic; }; - AA9DCC224B96540517FC8217 = { + B015EA95DFADDD31E102004C = { ProvisioningStyle = Automatic; }; - AD0E7F89F478FE77514A8842 = { + B0416354B0422CE06305497C = { ProvisioningStyle = Automatic; }; - AD2702EF42AD7DDA05EC2083 = { + B0567014FA30FBBFC0E31969 = { ProvisioningStyle = Automatic; }; - AD5C495F17B512B2D13CC822 = { + B3DD3174FEA726C76B98C914 = { ProvisioningStyle = Automatic; }; - AE646D18FFEFFFB65901B9D9 = { + B4169718E508CA7736735EF9 = { ProvisioningStyle = Automatic; }; - AF397ABBF2A5A4C1FCF90790 = { + B6B9D5B730E90977303A8BE3 = { ProvisioningStyle = Automatic; }; - AFBF627FDB9280859A796E95 = { + B8B31D762B3677F746970AF6 = { ProvisioningStyle = Automatic; }; - B0A77BB6DFBFBE8B44E34482 = { + BCECD790F76F93F791126123 = { ProvisioningStyle = Automatic; }; - B502D4DB10FAD01329293155 = { + C01CDDFC69A3BAEE2DBC5560 = { ProvisioningStyle = Automatic; }; - BA6B1EBD97713F7883F4CA94 = { + C4C1475F0319943EE6BF6CAB = { ProvisioningStyle = Automatic; }; - BAD99ED95E14E2F53810245D = { + C6AFD5D37CF11FE461D86DD8 = { ProvisioningStyle = Automatic; }; - BB40FADABEB7A74BCFAF8930 = { + C7C6F15DD53FB4E2316C8AA3 = { ProvisioningStyle = Automatic; }; - BC8247889BA776D5F194850C = { + C80A8E405B320E680839566D = { ProvisioningStyle = Automatic; }; - BC8AD08D72ABA5BDCF4A07E3 = { + CA2ED7A56EF4FAC83454B118 = { ProvisioningStyle = Automatic; }; - BDB1F608C841B14238DB67CF = { + CA4363C4B69F792FD44B1A13 = { ProvisioningStyle = Automatic; }; - C11F92A0F52BB78CE42B609D = { + CBED3CEC107C5D8FD12D1423 = { ProvisioningStyle = Automatic; }; - C353EC6DD74EF040A9869F1A = { + D09FEEF78E85A083AFB9AA4D = { ProvisioningStyle = Automatic; }; - C386F0ADF5BCB591C41D4FFD = { + D2C1A9BA75231D8469946A3C = { ProvisioningStyle = Automatic; }; - CEE926A8FFE81634B9CBA64C = { + D3BDE8AC40C1810EB2A14067 = { ProvisioningStyle = Automatic; }; - CFA7C016ADBDBC9AE9AB0FF7 = { + DEABBE98FF536A890AE33865 = { ProvisioningStyle = Automatic; }; - D0CB5D7E1779A34D43B5B89E = { + E08F994D81F1404BD2BF4D5A = { ProvisioningStyle = Automatic; }; - D52144324A93F3717DC3A4BB = { + E4350886F7ECE83389DE7799 = { ProvisioningStyle = Automatic; }; - D62438E4F1A3CC9836A8E287 = { + E47E556F6FF734E970050937 = { ProvisioningStyle = Automatic; }; - D7CF9E2B46E63FC31B7A1F92 = { + E564301A82DF55065D5215D1 = { ProvisioningStyle = Automatic; }; - E2CC2C0A9253A8A9567DA40C = { + E73C245D51F93B4E9024CF4C = { ProvisioningStyle = Automatic; }; - E3479E14717F19236E306587 = { + E9620956250DB1FF4F31CD7B = { ProvisioningStyle = Automatic; }; - E84AD21BA9DB06F21E2D3BB3 = { + EA20FD9B92B4F4A508F0738F = { ProvisioningStyle = Automatic; }; - EA1D2D4417E34B61AC64FEE1 = { + EB3EA3436E39E34BB754ECF1 = { ProvisioningStyle = Automatic; }; - EACA18083EFA62557FBB6215 = { + F27C8BBF5E4DB22EF58AF515 = { ProvisioningStyle = Automatic; }; - EC69EEBE9D64F07481829BFA = { + F4DA824A9FD9930888BD262E = { ProvisioningStyle = Automatic; }; - EFD2EA453C644DB2E82BF9B6 = { + F5CD065672396E4209757A74 = { ProvisioningStyle = Automatic; }; - F18532A4F881321CB6AE2614 = { + FA5053DC63D60556D4AF6086 = { ProvisioningStyle = Automatic; }; - F41AE083FE7A390670B538F9 = { + FB42232B69F121EBC030A837 = { ProvisioningStyle = Automatic; }; - FF7948EAFE0A62518B685629 = { + FFD3EBD911A26B666F11DC8C = { ProvisioningStyle = Automatic; }; }; }; - buildConfigurationList = 4E620899F914B71F71320AE8 /* Build configuration list for PBXProject "ice" */; + buildConfigurationList = 2D55C68F1B8DFD8505B722F7 /* Build configuration list for PBXProject "ice" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = en; hasScannedForEncodings = 0; @@ -10403,755 +10403,755 @@ Base, en, ); - mainGroup = 8DFBD2BD78EDD947284B6334; - productRefGroup = 429727EF2CE74E889DD9C9C3 /* Products */; + mainGroup = 1A534B7D482B3A831A6E40F7; + productRefGroup = 1A29BB8AD325B8F12D32FF03 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */, - 137A22811E93D82B716007C8 /* Glacier2 macOS */, - 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */, - 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */, - BDB1F608C841B14238DB67CF /* Ice iOS */, - 1B61C6EBFA17380F9C3CC36E /* Ice macOS */, - FF7948EAFE0A62518B685629 /* IceAcm iOS */, - D7CF9E2B46E63FC31B7A1F92 /* IceAcm macOS */, - 61321B12DA134239ABC63556 /* IceAdapterDeactivation iOS */, - 30CD23A6E9655B858C148892 /* IceAdapterDeactivation macOS */, - 45F2051058E66C596838C08E /* IceAdmin iOS */, - EC69EEBE9D64F07481829BFA /* IceAdmin macOS */, - 8FBA8150AB11D2A819C1D2EA /* IceAmi iOS */, - 68767C0FE145D39DE4D88779 /* IceAmi macOS */, - 1AAB45470D9803BF85F70BF0 /* IceBinding iOS */, - 600F66FEB1C8FA05B0D86986 /* IceBinding macOS */, - 408FAEC665C8C38D7A2248A7 /* IceDefaultServant iOS */, - 85AD9F1A782BBCA078D72ECA /* IceDefaultServant macOS */, - F18532A4F881321CB6AE2614 /* IceDefaultValue iOS */, - 9938DD491B5B4A54DB0A80E3 /* IceDefaultValue macOS */, - 85DA963BEF597DDF5EBD28D4 /* IceDiscovery C++11 iOS */, - 74391EA658CAB520F6080EFB /* IceDiscovery C++11 macOS */, - 595CBA41E37503369DC5E136 /* IceEnums iOS */, - A5A118B8D38A8DF773729D3E /* IceEnums macOS */, - 0A1278D024EC2ADD3E42D968 /* IceExceptions iOS */, - 836D0AD1DCC62D99CC1CB8EA /* IceExceptions macOS */, - 287E9414F6A74860FF1188EE /* IceExceptionsAMD iOS */, - 3922C5D52BCDB27B7A0BD1C2 /* IceExceptionsAMD macOS */, - 57641F57B5FDCF62AD0FCD45 /* IceFacets iOS */, - 0210DABE4A3F8E46162FC09A /* IceFacets macOS */, - EACA18083EFA62557FBB6215 /* IceGrid iOS */, - CFA7C016ADBDBC9AE9AB0FF7 /* IceGrid macOS */, - 6C9760FEBCAAE6CE0FA2DC30 /* IceHold iOS */, - 214682343A5CDC54C07B1A1B /* IceHold macOS */, - A9149583C7CA34903D80B3C4 /* IceImpl iOS */, - 9FEDBE2BC73385F81D251350 /* IceImpl macOS */, - 53EC7722C4E553C8B5189060 /* IceInfo iOS */, - 8B673B53CF2890202D016783 /* IceInfo macOS */, - C11F92A0F52BB78CE42B609D /* IceInheritance iOS */, - D52144324A93F3717DC3A4BB /* IceInheritance macOS */, - EA1D2D4417E34B61AC64FEE1 /* IceInterceptor iOS */, - 1714972356F07102A679833E /* IceInterceptor macOS */, - AD5C495F17B512B2D13CC822 /* IceInvoke iOS */, - 6D2A74C3BC8748EAD4AF10CA /* IceInvoke macOS */, - AE646D18FFEFFFB65901B9D9 /* IceLocation iOS */, - 0520084212F98FC56E36026A /* IceLocation macOS */, - E84AD21BA9DB06F21E2D3BB3 /* IceLocatorDiscovery C++11 iOS */, - 8D692CC4BED85D90455B3611 /* IceLocatorDiscovery C++11 macOS */, - BAD99ED95E14E2F53810245D /* IceObjects iOS */, - A2BA1134828B7EE3273C5D13 /* IceObjects macOS */, - 90FA36CD9B0F6F2C3BC99401 /* IceOperations iOS */, - B502D4DB10FAD01329293155 /* IceOperations macOS */, - C386F0ADF5BCB591C41D4FFD /* IceOperationsAMD iOS */, - 4A4450AB007BDD9E08CDC48B /* IceOperationsAMD macOS */, - B0A77BB6DFBFBE8B44E34482 /* IceOptional iOS */, - E2CC2C0A9253A8A9567DA40C /* IceOptional macOS */, - 032E51349714AC140B16B6B4 /* IceOptionalAMD iOS */, - 205D8173670283F9A6ADDECA /* IceOptionalAMD macOS */, - 6204C55F63CC62BE2A2B08C9 /* IceProperties iOS */, - 9FAA9797D207A26125233020 /* IceProperties macOS */, - CEE926A8FFE81634B9CBA64C /* IceProxy iOS */, - A292FEFD4AC0C53DF83589BE /* IceProxy macOS */, - 330758B0C9821D7E1E2243D3 /* IceProxyAMD iOS */, - 866E8F0547A584631426B2A5 /* IceProxyAMD macOS */, - 26B6DCD78B127AE4BDB35209 /* IceRetry iOS */, - 3C1B36794C4B3EFB2B618967 /* IceRetry macOS */, - 0FE313AA3347701853A8ACC2 /* IceScope iOS */, - 94D926D5469FBD751BF9B740 /* IceScope macOS */, - AF397ABBF2A5A4C1FCF90790 /* IceServantLocator iOS */, - F41AE083FE7A390670B538F9 /* IceServantLocator macOS */, - 86D99596C3AC52CDD7C6A937 /* IceServantLocatorAMD iOS */, - 1849F40335AEAFEAB939B520 /* IceServantLocatorAMD macOS */, - AD0E7F89F478FE77514A8842 /* IceServices iOS */, - 065FE0308F8C069FEF18896D /* IceServices macOS */, - C353EC6DD74EF040A9869F1A /* IceSlicingExceptions iOS */, - BA6B1EBD97713F7883F4CA94 /* IceSlicingExceptions macOS */, - D62438E4F1A3CC9836A8E287 /* IceSlicingExceptionsAMD iOS */, - 204D17961BE241E9AA6931C4 /* IceSlicingExceptionsAMD macOS */, - BC8247889BA776D5F194850C /* IceSlicingObjects iOS */, - EFD2EA453C644DB2E82BF9B6 /* IceSlicingObjects macOS */, - 1F921787D1BBEBC84AF46F5D /* IceSlicingObjectsAMD iOS */, - E3479E14717F19236E306587 /* IceSlicingObjectsAMD macOS */, - AA9DCC224B96540517FC8217 /* IceSSLConfiguration iOS */, - 182B60B239B1CC9AAF97C3ED /* IceSSLConfiguration macOS */, - 02E12A01B24B3B3E6927EAD6 /* IceStorm iOS */, - 0763ED05481F11F83E2EE767 /* IceStorm macOS */, - AFBF627FDB9280859A796E95 /* IceStream iOS */, - BC8AD08D72ABA5BDCF4A07E3 /* IceStream macOS */, - 81EBCBBD81DAA61D4581DF4A /* IceTimeout iOS */, - 8716086DA12B2BDD0A0AB020 /* IceTimeout macOS */, - D0CB5D7E1779A34D43B5B89E /* IceUdp iOS */, - 96F2227A2D1F58BCEA8ED0F6 /* IceUdp macOS */, - 4E4074DFF5890EB17098C624 /* SliceEscape iOS */, - 7E8564022216773735645574 /* SliceEscape macOS */, - A06E150DA767B6FC743BAF10 /* TestCommon iOS */, - AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */, - 9A800192291D16A52BC00EB5 /* TestDriver iOS */, - 1351B844542309876A23C297 /* TestDriver macOS */, + B015EA95DFADDD31E102004C /* Glacier2 iOS */, + 27BA347B00896E18F811823C /* Glacier2 macOS */, + 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */, + 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */, + 47EF87D7ED829723C501BBBC /* Ice iOS */, + 8F022C46667133AF20CDD4CC /* Ice macOS */, + B6B9D5B730E90977303A8BE3 /* IceAcm iOS */, + B0567014FA30FBBFC0E31969 /* IceAcm macOS */, + 28A1C2F2EB8DCCF1AFE83661 /* IceAdapterDeactivation iOS */, + 3639C4450BB9A2FD62EC83B1 /* IceAdapterDeactivation macOS */, + A58A9C1B02FC1B2964645F6D /* IceAdmin iOS */, + 3E00BC6A9646D9FED455066C /* IceAdmin macOS */, + 4BB02C0AE52711EB3F20C5D7 /* IceAmi iOS */, + 0D82476565F3AEA63555293E /* IceAmi macOS */, + 4E2639095BC1D8AB5CABDD8E /* IceBinding iOS */, + F4DA824A9FD9930888BD262E /* IceBinding macOS */, + 4685FAE2AEBE43E1EEA7F814 /* IceDefaultServant iOS */, + DEABBE98FF536A890AE33865 /* IceDefaultServant macOS */, + A69CCF574C4233A49E864528 /* IceDefaultValue iOS */, + 5E8A324AC0641CA083A50D0F /* IceDefaultValue macOS */, + 263F8736790034DA7D5B83D1 /* IceDiscovery C++11 iOS */, + 665EE5441D076F90F4516A23 /* IceDiscovery C++11 macOS */, + 429CEDF95141D2685FE9AB01 /* IceEnums iOS */, + 14E9DB904AE22B49F37C4175 /* IceEnums macOS */, + E564301A82DF55065D5215D1 /* IceExceptions iOS */, + 969752F2E953B2ED36823477 /* IceExceptions macOS */, + 5658AB3FB70284E862079845 /* IceExceptionsAMD iOS */, + 9F8CD7854A90F92273855E8E /* IceExceptionsAMD macOS */, + 21CBD45E7CE90BF8C75C80EB /* IceFacets iOS */, + 995512D73E07EFE9CD097A94 /* IceFacets macOS */, + 3E1C18FAE5F2A3A2849292E9 /* IceGrid iOS */, + 770013F768356B5BE1BB460C /* IceGrid macOS */, + 283F1EEEFDF95C8EA1294341 /* IceHold iOS */, + D2C1A9BA75231D8469946A3C /* IceHold macOS */, + 15259193E3C55F25AB0F68C2 /* IceImpl iOS */, + E47E556F6FF734E970050937 /* IceImpl macOS */, + FFD3EBD911A26B666F11DC8C /* IceInfo iOS */, + 9B91000B96831D134868EF00 /* IceInfo macOS */, + 78DF05AE60584A8F9A7E374B /* IceInheritance iOS */, + B3DD3174FEA726C76B98C914 /* IceInheritance macOS */, + 0CCC3C20156C399AF82BA12D /* IceInterceptor iOS */, + 055B3C0D85846EE14E87127C /* IceInterceptor macOS */, + 6272130C7E84066D9A3C1C41 /* IceInvoke iOS */, + 713B71D014689185E9E05395 /* IceInvoke macOS */, + 9A5B406340D1F54AA6A93582 /* IceLocation iOS */, + 24DFB14E537F560FB7A2C4BB /* IceLocation macOS */, + CBED3CEC107C5D8FD12D1423 /* IceLocatorDiscovery C++11 iOS */, + 1564B348BA2786B8C14E7ADE /* IceLocatorDiscovery C++11 macOS */, + 124476FE277A9E3ABE9F4A34 /* IceObjects iOS */, + 8BCEB954ACECD9E143B3DD52 /* IceObjects macOS */, + 27F3896A1D44D94EF855517D /* IceOperations iOS */, + D3BDE8AC40C1810EB2A14067 /* IceOperations macOS */, + FB42232B69F121EBC030A837 /* IceOperationsAMD iOS */, + 6BA09F6BC0797F624A68E17E /* IceOperationsAMD macOS */, + C4C1475F0319943EE6BF6CAB /* IceOptional iOS */, + 98CD3D7B6AB129005DDDED37 /* IceOptional macOS */, + 37631E1832EC47AB18B6F9F8 /* IceOptionalAMD iOS */, + CA2ED7A56EF4FAC83454B118 /* IceOptionalAMD macOS */, + B8B31D762B3677F746970AF6 /* IceProperties iOS */, + C01CDDFC69A3BAEE2DBC5560 /* IceProperties macOS */, + EB3EA3436E39E34BB754ECF1 /* IceProxy iOS */, + 92A668B7841CFDC57756D6E7 /* IceProxy macOS */, + E73C245D51F93B4E9024CF4C /* IceProxyAMD iOS */, + 3EA20E16FBEAA1C5B0DA52BA /* IceProxyAMD macOS */, + E08F994D81F1404BD2BF4D5A /* IceRetry iOS */, + CA4363C4B69F792FD44B1A13 /* IceRetry macOS */, + 6ABC458490AA5F904B381F7D /* IceScope iOS */, + 68BE8ACEDDD7433FDD2E5099 /* IceScope macOS */, + F27C8BBF5E4DB22EF58AF515 /* IceServantLocator iOS */, + A7EE978EE70DDA201B41538D /* IceServantLocator macOS */, + 77D3FCCE81BDE4D86C21D2FC /* IceServantLocatorAMD iOS */, + F5CD065672396E4209757A74 /* IceServantLocatorAMD macOS */, + 8919247F07DEFFC41FDA9486 /* IceServices iOS */, + E4350886F7ECE83389DE7799 /* IceServices macOS */, + B0416354B0422CE06305497C /* IceSlicingExceptions iOS */, + 2B6CEDAE0FF7E5682835597A /* IceSlicingExceptions macOS */, + D09FEEF78E85A083AFB9AA4D /* IceSlicingExceptionsAMD iOS */, + 3682D0A08A431497D8699B03 /* IceSlicingExceptionsAMD macOS */, + 0CC992ABE92F26754D8B7AC6 /* IceSlicingObjects iOS */, + C80A8E405B320E680839566D /* IceSlicingObjects macOS */, + EA20FD9B92B4F4A508F0738F /* IceSlicingObjectsAMD iOS */, + 00F4F87A480D875F2C651B81 /* IceSlicingObjectsAMD macOS */, + B4169718E508CA7736735EF9 /* IceSSLConfiguration iOS */, + 478A8F3068E5FF5F72F783EC /* IceSSLConfiguration macOS */, + 5722522ABF0B09D7099DBA1F /* IceStorm iOS */, + C7C6F15DD53FB4E2316C8AA3 /* IceStorm macOS */, + C6AFD5D37CF11FE461D86DD8 /* IceStream iOS */, + BCECD790F76F93F791126123 /* IceStream macOS */, + FA5053DC63D60556D4AF6086 /* IceTimeout iOS */, + 01B75CEA3EB80A6E664242B0 /* IceTimeout macOS */, + 0BE885FE5E5BBE860323877D /* IceUdp iOS */, + 39438194D11EA03199C6686E /* IceUdp macOS */, + 4D5800AC0A437A45FB0049AB /* SliceEscape iOS */, + 096C6B1CDEA03B0A33EF7AB7 /* SliceEscape macOS */, + E9620956250DB1FF4F31CD7B /* TestCommon iOS */, + 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */, + 944D56850B5551840FD0118C /* TestDriver iOS */, + 473D6356B099988C3C7E81A3 /* TestDriver macOS */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 0526F95A9936BD82D24EE562 /* Resources */ = { + 0020C26533E1133E77AD8D39 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 057E77D63FD84FF82DF4BF52 /* Resources */ = { + 02D7F5FE1FFD036C78530447 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 07982C434D1B0158C133F1D3 /* Resources */ = { + 0BBDB32FE3327497A21BEFCB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 093C5CD6E55478880A44AA9D /* Resources */ = { + 0E09902C4BFA9607C95EC23B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 097778F25DB7DB463E4B3C49 /* Resources */ = { + 114B1963139920BD4C148D8B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0A6F59B190567DCB370BCFD8 /* Resources */ = { + 1276515E4788053FB3CB4AA9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0B1DEE39080B2B5E8A7CAC24 /* Resources */ = { + 17ACD2A45F6EE83A3AC34886 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0F4892E621165051767C5160 /* Resources */ = { + 1820192F3579B5E37FCA2BF2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 17160302BAA0E75F9A0B527B /* Resources */ = { + 1AB95AEDF5AD059291ED92D9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 17F93E36FE79CCD8FDB9F758 /* Resources */ = { + 232294D33C24AE8830649E67 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1A47BFF86DBE1D7DC11C0867 /* Resources */ = { + 24EFBFE3ADA2749FF488D044 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1B108CE5FAF58D62083D14B5 /* Resources */ = { + 27365D5810F8DDE13D530B59 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1D782344FFA038F83CDAC3AD /* Resources */ = { + 2A1FD57D952DFFC16A6455EB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1EC14E8FEB51499775F64FE2 /* Resources */ = { + 2AD8A388D3FF423A744DB1C5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 251A43C91E2D94E01B5F65AC /* Resources */ = { + 2C3F7BF7A7697FF44A039618 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 28EEA04A2E4723D77C819796 /* Resources */ = { + 2C973EE85DC5B092A8B1DD27 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2A940B992AA90EF2453DFED1 /* Resources */ = { + 2DA56DF6BDC99A4A58F8730B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 313690911AD7304C7D02EB21 /* Resources */ = { + 3433D0B696CC0B2E8895F651 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 322582DBE8E93D0697C15495 /* Resources */ = { + 359190C1A44CEEB07092971A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 363122340AFFB2E22FEFBE58 /* Resources */ = { + 36F519EA97FFA50120B018AF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3850C5F25BBD667F9D57BB07 /* Resources */ = { + 3986A30D8D7CFBCC0267135F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 395F58B3FE86E498486F7898 /* Resources */ = { + 4119F6418B223102240679F7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3B3C4972011E42A0EB3C223B /* Resources */ = { + 42D72A9E34CF08D69581B63E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3E34C18B5CF5991309F8C2E7 /* Resources */ = { + 44D627EA87427B1B5B919769 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 41420A7A5FFABE64AF8D8FAE /* Resources */ = { + 454CD0CE4DDB15AE6636A5C4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 41AFD2D8C8E2742DEE69B459 /* Resources */ = { + 45B349161EC08F674DA202F4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4239E45DF35F3B6D01F6854F /* Resources */ = { + 485F12572DB946951AF71C6E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 42A4C132E10B3B8A7300B9A6 /* Resources */ = { + 49A066802994D933E5DCAE56 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 09CEE7F11F5525460EA4422E /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 448528794B6535C7A09BF80F /* Resources */ = { + 4B9C6AC1E445FE40B49C9B4E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 458A41546A21BEF1A15CE2EA /* Resources */ = { + 4D8703274DC7EE6EA9CA8665 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4ECFD74C1B3163DA11B8470D /* Resources */ = { + 590B5426E457DB2BF1D82A2B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 50B468D44F74C3900D93241E /* Resources */ = { + 5BEE65549F36448CADA571FC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 53F8D1EF617F7249622B903B /* Resources */ = { + 5C9093264E356EF7506B0894 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 55AAF8555FBD4EEEAC6CF25A /* Resources */ = { + 5E434881B989C85F981DB80B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 56E232529AC0563BD6BB03DB /* Resources */ = { + 631021495D98633A80ADA247 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5BC976D4C34BCB3175841B9A /* Resources */ = { + 6B0EE5F780354E816FF9CA31 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5EE01CAADBEB7A0A53E33276 /* Resources */ = { + 6D8FCFF2028B41E88732E523 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 65231E0E0BD7A9E3BD797910 /* Resources */ = { + 6DFB1DD2E2E75F48323AECB3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 65A1D9F4C1DE7EC581D22A5B /* Resources */ = { + 706B3E6E4672C762D99C7E93 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6622AA71B0D61E2BBD5F81CF /* Resources */ = { + 7119E28106D2A577A8A3F0AC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 664CDAB3A67305FA59E02F7A /* Resources */ = { + 74BA519151EBEAFDEDFF973D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 676F98D72603326333704309 /* Resources */ = { + 7560289BE6D17B87AD0E0D64 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 68604C27B7CC42117BA51932 /* Resources */ = { + 75FEC1F90A035D213EF10F8B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6891FD0DDF35516059510105 /* Resources */ = { + 7A3A489AA063910EAE6274B9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6CDD22C7664DAA8DE402E90E /* Resources */ = { + 7FDADC7E2F4C408B7A8E7527 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6DD932AA2A6B92A01B4D5040 /* Resources */ = { + 836B5D5EACD7F6885E026237 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6E1BE16EDCDE9D779118BF95 /* Resources */ = { + 844D9BF33068806C77C78861 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 70FA52C9BE4D5CA04E01B10D /* Resources */ = { + 86504AE9DAB1FC3E293D8DC9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 71B6CF1E060EC863D6054971 /* Resources */ = { + 8C2B8E281D3F8E435B69AA78 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 77D43E15944D6D68CD63D3AC /* Resources */ = { + 8E12D75F2033D7406140D0A9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7868B6B9117C3BA8980EEEC8 /* Resources */ = { + 8E5B7E695002A042F1EB7A38 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7CDE16ED3C590B0B05317F77 /* Resources */ = { + 8E600080603AAAF1F0AFC3AB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 823B51C54FC435F6A03D3EAF /* Resources */ = { + 99703AE171232EE3316B7FC0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 825B353A9CA1FA2525C1C98D /* Resources */ = { + 9A6FB97FD62ADA170CBB7639 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8485992CF05DC1021A09D8A7 /* Resources */ = { + 9C0FEF68AF1EAB85246ADEB9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 84ACD97B1C481AE94F144C5B /* Resources */ = { + 9C8F862DFA162032660D5E3E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 904E0E21C02D58FB52ABC27A /* Resources */ = { + 9CFFB6BBA7E1ACA6E6102CD1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9106DF14C082197A5E9FBDD0 /* Resources */ = { + 9E65A521E552E75E4B64D032 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 991D3F773FE2F497EA2A7F7C /* Resources */ = { + A0B128E85A3D225FE746C5E3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9ABD7D918E0EB40B70D7D70B /* Resources */ = { + A2A0ED32DFDE174544AE0F08 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9F71CAD79F5FA4492A98DA81 /* Resources */ = { + AA4E9C8790445E9D35057FCB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A0B5B9C75F274382DE12D10F /* Resources */ = { + ABF8DE0E10BDE6A847E963E0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + CDBB2803A82BE78292309065 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A3372331135643B14D21DE75 /* Resources */ = { + AE94A17BBEFD40CDE875A414 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 7662016A7206E6C48AD1902A /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A3517EBE1153EBFFA40E1EDB /* Resources */ = { + B253E03A991CCAF40EFAD3A7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A467A25D14A61D0C3C8243A2 /* Resources */ = { + B28CF688D5975D799535462C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A5D08DF0FACCE964193081FB /* Resources */ = { + B55BC10DC5342FDB5EE4E146 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A9DD5346B648F7C295338FF6 /* Resources */ = { + B813104FB39355654AEE5E1E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B0A6A93B074143CE8B3932F4 /* Resources */ = { + B88F882DB9BDF3B49E110495 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BBB57A940BEC85757BF33C45 /* Resources */ = { + BA52A0BA2C462A1C48C39FCE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 2B7BFA0E1A18A214B0817F80 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BC1856CE66B12B7D468AF98E /* Resources */ = { + BD8BF327C847FC440776338D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BE2A873654C3B10200C519DB /* Resources */ = { + BEE1CE17FC667A7EF7CCC411 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C0C847052EA494D75F3D93EB /* Resources */ = { + C3A332D5958ABDE3578F4A43 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C20901B71BDCAD06E9FD9794 /* Resources */ = { + C50094EE4DBBAC8B73D539E6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D3A54ACF0DD989B854E98C67 /* Resources */ = { + C9DAB62BBE190CFBF7170A49 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D478AD3490A3606865766038 /* Resources */ = { + CA1C99B3F8D4D7D793ECAB4A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D556934DE5670057A35038C4 /* Resources */ = { + CE22FEB033CF164099C40427 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D797E379CCCD680A0B9D3B9B /* Resources */ = { + CEDC6C4F7DFD4D758CF665C1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DC0BBC4BA56D82D8B5F1D138 /* Resources */ = { + D629A98CFA4F05182534E1DC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DCCB743A54EDB138F1A65AD0 /* Resources */ = { + D6B18307D907DD86202D5525 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DCD01EBCC135470D053D910A /* Resources */ = { + D8F05ECC12EFBE9DA321C8F1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E517096323BC53F76013658D /* Resources */ = { + D95664360051FBC8166B9A35 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E5D2FAAB4A858AF1EF79BB44 /* Resources */ = { + DA28C813D4FEE16A3341D1D5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E7080BC54D8C04FAED0C3C9F /* Resources */ = { + E3A6C2D8C30337B97B11938F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E89A01DD0189EAA1841B2047 /* Resources */ = { + E43A6D66D5CCEEDB8B3B9D61 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E9191CB3D8B98AD5528146EF /* Resources */ = { + E506EADD812DFFA8DB192F5A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - B6B0AD61FEB0ABF698126781 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EA1FD40EF9B321E769A74269 /* Resources */ = { + E9F5F0922E44A83E54A7CE7E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EE7DEDECFCEDD205693251F2 /* Resources */ = { + EAC748CE3EAAEC301CA5CC8D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F28C0DE11803903930866619 /* Resources */ = { + EB2AC86FE9C03693BCBB0A77 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F3EDBCFD3A7A38ABC66567B7 /* Resources */ = { + F23D88C9D1CF00A3A504428F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FBDF8399AC587C86B17BBFDC /* Resources */ = { + F74711427277109AE1B9ABA9 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - E31F8BD247F7EFF2BF88403C /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FDAB822C43EBDD5C9D09BBCC /* Resources */ = { + F8270687196C373CCB5EB10B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FE75C2B98313D6F50B2857EB /* Resources */ = { + FF3A8C84C00FA22BAF711434 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -11161,3100 +11161,3102 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 033CE6712C625CA7671D3FE7 /* Sources */ = { + 017A05C9E5492039D3D8D7A3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 77FAF4CD8EBA344B63C2D87C /* AllTests.swift in Sources */, - 0BC46298F3258DEACAEB87D2 /* Client.swift in Sources */, - 62F5B617CB223589C7FFCE33 /* Server.swift in Sources */, - 11A6C2F6E64486155B43522C /* Test.ice in Sources */, - B5DB285F9C6EAD474FAA95BB /* TestI.swift in Sources */, + ADD0712DE7B899A47722FC2C /* IceLocatorDiscovery.ice in Sources */, + 0CA5D61E117CEC8D73FE01C8 /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0458B90EEA65443D46CDA233 /* Sources */ = { + 02EDF6CA2C4F558C22BB1EE9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C42BE5C720B857B4DF47D736 /* ServerAMD.swift in Sources */, - 244925B2D61D7DD174403486 /* TestAMD.ice in Sources */, - 3F75A94E0EAFD519FF1BB253 /* TestAMDI.swift in Sources */, + ED6DD03F123C10F752D7CBBE /* ServerAMD.swift in Sources */, + 28879CEA796F54C475B2D579 /* ServerPrivateAMD.ice in Sources */, + 3DB99BBABAB7C0D17101B41D /* TestAMD.ice in Sources */, + 3A8010932AB49B8EA7B1F903 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0480CB6E3A8E8A31A337C25A /* Sources */ = { + 053867D376E8154EDC7988A4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 40F02DB514B3FFB0C0706912 /* AdminFacetFactory.swift in Sources */, - 98C3C4B071EF9C6F09322013 /* Blobject.swift in Sources */, - 614BE0D924BF4D86313559AD /* BlobjectAsync.swift in Sources */, - E4E52BB485AAE3F157C712D5 /* BuiltinSequences.ice in Sources */, - AAE4675B438542D382FABD79 /* ClassResolver.swift in Sources */, - 9E7E37B00D3C6813AFB984B9 /* Communicator.swift in Sources */, - DC80C2E33FB5AE127BEDF73F /* CommunicatorI.swift in Sources */, - 372F513478AE96A9B02E1E28 /* Connection.swift in Sources */, - E3F6799674E7EF82586899D9 /* ConnectionI.swift in Sources */, - A3F6F9A0E7D7425809679F12 /* ConnectionInfoFactory.swift in Sources */, - 672AFD89DDBD201DEB56D8D7 /* Context.ice in Sources */, - 9929944B6270F68EE990FCB9 /* Current.swift in Sources */, - F1F8BD03C1F0F501CEFD81AD /* Endpoint.swift in Sources */, - F64C59605860BD6C23A27155 /* EndpointI.swift in Sources */, - 5F133154CDDD2309623DBA4D /* EndpointInfoFactory.swift in Sources */, - 80295B329F47AD618475BF99 /* EndpointSelectionType.swift in Sources */, - 82F8761B8B726286ECCC2853 /* EndpointTypes.ice in Sources */, - 6736B7FCD6A2E3A641B0BEEE /* Exception.swift in Sources */, - 86DFE4BDC8937108E605E755 /* FacetMap.swift in Sources */, - 57457D4037025A4B24CDAB0D /* FormatType.swift in Sources */, - B5A1B9C863BD82ECEA0D0E3C /* IAPConnectionInfo.swift in Sources */, - 172ABB0861A43489EBDB94E5 /* IAPEndpointInfo.swift in Sources */, - 807F919519C4AEB2EBB5114E /* Identity.ice in Sources */, - 76E928740B0374061A0B2E4C /* ImplicitContext.swift in Sources */, - 61C4E04534B59B12AA56F750 /* ImplicitContextI.swift in Sources */, - 151FB7FCE5B2462B0BCF9275 /* Incoming.swift in Sources */, - A913E2AFE4FE7CA8D35BD76B /* InitializationData.swift in Sources */, - 648D8D01FBDDE620653F907A /* Initialize.swift in Sources */, - EF3F061F550183120C8B5456 /* InputStream.swift in Sources */, - A129D3B708FDC043C773555B /* Instrumentation.swift in Sources */, - DD7559B902076F85721A3BE5 /* LocalException.swift in Sources */, - B25A522ECC27DD8D012BBB38 /* LocalExceptionDescription.swift in Sources */, - 06C7C566D33AF10D3C441548 /* LocalExceptionFactory.swift in Sources */, - 8E000FA58A8BF9C987EDDF46 /* LocalObject.swift in Sources */, - A5173EC0F8ADAE747419B3D7 /* Locator.ice in Sources */, - B676889E0E4DAFC083A035ED /* LocatorF.ice in Sources */, - 3820134F1B35B1D1E92E600A /* Logger.swift in Sources */, - 66AC2567B6670DC2A83953FB /* LoggerWrapper.swift in Sources */, - BA8EDD5F400F44488ADEBCD1 /* Metrics.ice in Sources */, - CDF7F513816B48F9B04BCBA4 /* Mutex.swift in Sources */, - 57692E85AB50C3FA34A3DDB2 /* NativePropertiesAdmin.swift in Sources */, - 9FD686DE121AE997FC29EAC6 /* Object.swift in Sources */, - D6B102876B48EF4B4CA8F75D /* ObjectAdapter.swift in Sources */, - 59651F37E654C8823CEE0912 /* ObjectAdapterI.swift in Sources */, - F13A4AA1DA75AA9E62F116D6 /* OperationMode.ice in Sources */, - CD6C6398B754387A5CF5CA9A /* OptionalFormat.swift in Sources */, - 4CC927F5A9DB3DE178615D2E /* OutputStream.swift in Sources */, - C5C0ACB9917A6EBADBEE205C /* Plugin.swift in Sources */, - 21CE84AB07B159ED0708EA76 /* Process.ice in Sources */, - 90F8F55D353DAF6C27D22646 /* ProcessI.swift in Sources */, - 0C9758945EDA3658BA968BDF /* Properties.swift in Sources */, - 8669F90A254F560CED2D2D2D /* PropertiesAdmin.ice in Sources */, - 9A831E10A02D537C4F2F1236 /* PropertiesAdminI.swift in Sources */, - 369D5C2414ECF2E246C78737 /* PropertiesI.swift in Sources */, - C6D8C383B45A96F4637F5A3C /* PropertyDict.ice in Sources */, - 5385A9DD587796EAE5FC99FE /* Proxy.swift in Sources */, - E8FC55175649B5BC8777C9D1 /* RemoteLogger.ice in Sources */, - CFC195CB641909D037D0CCB8 /* Router.ice in Sources */, - 9941D28677EAC759FF252E04 /* RouterF.ice in Sources */, - 27BA709F3829857FAB6A5F06 /* ServantLocator.swift in Sources */, - 6377BC79AD4C6C18CB585F67 /* ServantManager.swift in Sources */, - A5C7AB16FC112BED82F89C05 /* SlicedData.swift in Sources */, - A5F2C50EFE98A0E24E47672E /* SliceFlags.swift in Sources */, - 663230989A239EDB681EBA7C /* SliceInfo.swift in Sources */, - A9E7C418A13AF88F95B56863 /* SSLConnectionInfo.swift in Sources */, - 1CA4763ACFDDB34614425869 /* SSLEndpointInfo.swift in Sources */, - 6E6B63060307B772C99F21B3 /* UnknownSlicedValue.swift in Sources */, - 29CCCB984235038F1C23DE36 /* Util.swift in Sources */, - CA9A8A3756ECC527753B1160 /* Value.swift in Sources */, - 92CC5C6998619BE603D750E5 /* ValueFactory.swift in Sources */, - 43219B5BB970F1B55CE454AA /* ValueFactoryManagerI.swift in Sources */, - 88C496A9001C639C933AC98B /* Version.ice in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 08C3CB6FC7342680D131BBAF /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 99EF11BE8BD4279EF6B81B34 /* IceLocatorDiscovery.ice in Sources */, - EAB83885C6B77A2D99A17F28 /* PluginI.cpp in Sources */, + 3558C96DFC3290A6100F2D27 /* AllTests.swift in Sources */, + C95D74E612CD44A8E5E74803 /* Client.swift in Sources */, + F09310D12E519AE60924BCD6 /* Collocated.swift in Sources */, + CF8B005366FF8F61870A8AE2 /* Server.swift in Sources */, + 42D6CDCD1F1AA39A8710A58B /* Test.ice in Sources */, + F5519272B5FF97DA83D66E80 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0B28994B972EEAB0CFB67C3E /* Sources */ = { + 08A61FD3D335E356FA2AA2B0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 61E7766D0ECA90A3969500B8 /* ServerAMD.swift in Sources */, - C480C3056D5D95CFE0D230EC /* ServerPrivateAMD.ice in Sources */, - 1D0E1556A7EBC4B9E8C96B54 /* TestAMD.ice in Sources */, - 6923B7F3B5833B17B1444A9F /* TestAMDI.swift in Sources */, + 816C8986F21DE2D43797087B /* TestCommon.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0B4840C77677AEF89D0AF797 /* Sources */ = { + 099F0FBAAE02CE133E9AE1EE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7B531C9230D86E2F61BCB0E8 /* IceStorm.ice in Sources */, - 288240CF1E01298A40C9E48D /* Metrics.ice in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 13267D0E93EC0E98F66BB8E8 /* Sources */ = { + A9EC0A71C71B5FF5AFED4B18 /* AdminFacetFactory.swift in Sources */, + CB6F1597E1BFF0463D10D0FC /* Blobject.swift in Sources */, + 3E508B3BB54CE3FF221930E0 /* BlobjectAsync.swift in Sources */, + 43B0E1298CB264DF6C7C335B /* BuiltinSequences.ice in Sources */, + E909DDEDE3DF9BAE2ED525AB /* ClassResolver.swift in Sources */, + FC155853488B9A0F41E99EFD /* Communicator.swift in Sources */, + 6C041107E8811070F5C673CE /* CommunicatorI.swift in Sources */, + 100D9B6351AB634A84E6EA30 /* Connection.swift in Sources */, + 0D1B0BF9795FBB8AED2DDD52 /* ConnectionI.swift in Sources */, + 313B877D5F4FC1DC8134BD1A /* ConnectionInfoFactory.swift in Sources */, + 939F48B7A82E60A6459321C9 /* Context.ice in Sources */, + 59AE3A025BB7D51366750BCB /* Current.swift in Sources */, + 99B11670C9E0DC749C9D53CC /* Endpoint.swift in Sources */, + 1C78CE07064B9E14D410DC54 /* EndpointI.swift in Sources */, + 9AF9489B8926192A481AF670 /* EndpointInfoFactory.swift in Sources */, + A452507B04A887F15CE4634D /* EndpointSelectionType.swift in Sources */, + 8120E196F15D7A9C3000355B /* EndpointTypes.ice in Sources */, + 559004F4BE7AEA5CD275952D /* Exception.swift in Sources */, + 76FBEAF279F6E0EF69F6FE4A /* FacetMap.swift in Sources */, + 6B38C77E3992B139034FB720 /* FormatType.swift in Sources */, + 015BE93C41A3CAC4E6ECA5B0 /* IAPConnectionInfo.swift in Sources */, + 9F778C7AB6B7878B7B6EE569 /* IAPEndpointInfo.swift in Sources */, + 4C2F700A5CEEF1722CC20508 /* Identity.ice in Sources */, + E3455A6C3076D0EA2F0D4B3C /* ImplicitContext.swift in Sources */, + 963D72FDB59EDAE42A1C2867 /* ImplicitContextI.swift in Sources */, + B2943A4C4F3190D879BA87F0 /* Incoming.swift in Sources */, + 2A173AEEE9215CF18C978D36 /* InitializationData.swift in Sources */, + A8084181C6D306D4C49EEF59 /* Initialize.swift in Sources */, + 16B9F0142D068E51EF591590 /* InputStream.swift in Sources */, + DF2C78175D84FDBC8C8315A2 /* Instrumentation.swift in Sources */, + 07B014AD0F72BC7A197F8071 /* LocalException.swift in Sources */, + A30D8022B3F949FDB45AB264 /* LocalExceptionDescription.swift in Sources */, + 95C11CADB4A3F39ACF11B8D6 /* LocalExceptionFactory.swift in Sources */, + A5E9EA2FF2470B46153CDA6A /* LocalObject.swift in Sources */, + 08DE17DEFDD40B51CECB7C6F /* Locator.ice in Sources */, + 5ACCF59D35ABE8D74765D44B /* LocatorF.ice in Sources */, + D25FA1D4555B90AA8EA2CA6A /* Logger.swift in Sources */, + 3B1E75699E8BF0FAA71699A1 /* LoggerWrapper.swift in Sources */, + EB7415FC08516D8085425448 /* Metrics.ice in Sources */, + 52A5E961C78A39186663169A /* Mutex.swift in Sources */, + D5EE45A18057938D31DF3CA9 /* NativePropertiesAdmin.swift in Sources */, + 4FFC82EC0B0C3618EF922C5C /* Object.swift in Sources */, + 4A0A85433AA1844F74CE92F7 /* ObjectAdapter.swift in Sources */, + EE6E78F71645C9163AAC6720 /* ObjectAdapterI.swift in Sources */, + 5B26531E8A3FF54A690616A8 /* OperationMode.ice in Sources */, + 8DACC60172ED92FEE1413F8E /* OptionalFormat.swift in Sources */, + 6957E6514741A42CFB3FD843 /* OutputStream.swift in Sources */, + C5F9F939CDCFF19348CEED27 /* Plugin.swift in Sources */, + A4E1145B88CE86D88F59F501 /* Process.ice in Sources */, + 878083D5BDE5054FE67157E5 /* ProcessI.swift in Sources */, + D9C3898B35154D67070B59B6 /* Properties.swift in Sources */, + 57E7D2C86D9A05EBAC1AE60B /* PropertiesAdmin.ice in Sources */, + 1495E8C9AB710FDE4FE9B882 /* PropertiesAdminI.swift in Sources */, + 19764FF1E36C227E2D6E9E51 /* PropertiesI.swift in Sources */, + 0BAE1F47FB54A5D9966AFF03 /* PropertyDict.ice in Sources */, + AC7FF1DC93E3F28F9D765448 /* Proxy.swift in Sources */, + 12F198DEDCC7F5FF1C915665 /* RemoteLogger.ice in Sources */, + A2F6A13639EF17AAF9E8C3DA /* Router.ice in Sources */, + CF457D75AF0694811BDB3828 /* RouterF.ice in Sources */, + 072401D28B18ECDCEC8250D2 /* ServantLocator.swift in Sources */, + 8F64A26110BDC58D8D54F3D9 /* ServantManager.swift in Sources */, + 17D81C30F65D3D520478406D /* SlicedData.swift in Sources */, + 23FA0DE689D5B4E11968579E /* SliceFlags.swift in Sources */, + 5132AE8676BA0DE8C1328C18 /* SliceInfo.swift in Sources */, + FE12E1E0B0C51F3449556B9F /* SSLConnectionInfo.swift in Sources */, + 2F84EC541FF7E5156D5ACEF5 /* SSLEndpointInfo.swift in Sources */, + 6C02F6B469F85F21320E551E /* UnknownSlicedValue.swift in Sources */, + 30AB0ADF3483478E5ACA7E81 /* Util.swift in Sources */, + 0EDE49A3D761885D2096FA60 /* Value.swift in Sources */, + BFE558871C8F222056FDC2D4 /* ValueFactory.swift in Sources */, + F46D013DDA2E66DD86E2FB4B /* ValueFactoryManagerI.swift in Sources */, + 5636B65B339485B359629946 /* Version.ice in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 0B146F32DDB488FA7CDA54CC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 32A5401BCBDC4CE0B1FF428B /* AllTests.swift in Sources */, - FDB0026B8DD58118D1FB23F7 /* Client.swift in Sources */, - 3F924E5914B4957FE3C5D13C /* Server.swift in Sources */, - D2960954B18EB5482D9C08AE /* Test.ice in Sources */, - 0E80A8FA036E42C8CEF55DFB /* TestI.swift in Sources */, + 34648D1661894C9189372B45 /* AllTests.swift in Sources */, + 177DD1BC6757798874CDC528 /* Client.swift in Sources */, + EDAEC3B6C7BC3E68C9177631 /* Server.swift in Sources */, + 79C0E9A35E639B954B5CA27A /* Test.ice in Sources */, + 0BA302A83685C2664019E98B /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 150B84A0024A0B21EECC417A /* Sources */ = { + 12F991893D8095920A799B31 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C5C2FECC4860219581389BAE /* Metrics.ice in Sources */, - A2E5F886FD4B23BC51B4292A /* PermissionsVerifier.ice in Sources */, - 7984763859B1132CEA8B6C17 /* Router.ice in Sources */, - BDEEEA8F75868D04E2763F08 /* Session.ice in Sources */, - EE6577FBED8C0450B3C6345A /* SSLInfo.ice in Sources */, + 68A7B3DE8BA3617FF30187D4 /* AllTests.swift in Sources */, + 6034C7EE1187099176DAB596 /* Client.swift in Sources */, + 95AAE0C33FD07EF76E9D26FC /* Server.swift in Sources */, + 37A7AFE9702BDAF42C2F9F38 /* Test.ice in Sources */, + DA322673C2069A47E32B6574 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 160A24AE04A5D9DF51464E8A /* Sources */ = { + 147D6E84BB301C5013BD54DB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4DEC9591C46508E168F67B6D /* AllTests.swift in Sources */, - F7EDF8ED76FF8FBF6F3B68E2 /* Client.swift in Sources */, - 9CE0109A317A46F2409A18B5 /* ClientPrivate.ice in Sources */, - B55F456482188268D8FBE02E /* Server.swift in Sources */, - 7DE7F63B8B17B7DE9CC53DA8 /* ServerPrivate.ice in Sources */, - 9181A6BBA6FD673EA823A689 /* Test.ice in Sources */, - A12B9DACA618AAAFF07EFA06 /* TestI.swift in Sources */, + 5822DF2756D7E2DAAEB81DF0 /* AllTests.swift in Sources */, + 5C249AAA2B1FECEB2F99663C /* Client.swift in Sources */, + 485B6A81CA77B322832278F1 /* Server.swift in Sources */, + 47753FB20D5A73A947BA72AE /* Test.ice in Sources */, + 1BD3A7F4BA5A57E971C6B144 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1C37E763A2EF713D8ACE1C17 /* Sources */ = { + 16DA4E195F691E4D5BCAC450 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 807A23F8A58BC92EDCAC7CAD /* AllTests.swift in Sources */, - 41E039270E0805499570605D /* Client.swift in Sources */, - 9F90174E943BDAB586C260A3 /* Collocated.swift in Sources */, - B25F38AB93AB1A3133696F00 /* Server.swift in Sources */, - 5600EC0B8A694C907D5E70D3 /* Test.ice in Sources */, - 3AB574C22427757199B86CE0 /* TestI.swift in Sources */, + B8A3F70E2863B1E5C60D56C1 /* ServerAMD.swift in Sources */, + 0AFB96465B8EEEC05ECAF412 /* TestAMD.ice in Sources */, + 935A5D2312914D36D943F35E /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1D20F3CCD1B72D1D4592C58D /* Sources */ = { + 189D6C47B729B0D4667B0D84 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7E1CEB886804B90A520C9F06 /* IceDiscovery.ice in Sources */, - A6E1C8F6BC77FEBA93DA9EC8 /* LocatorI.cpp in Sources */, - 8D0FF5C22DF55CE32D75CC84 /* LookupI.cpp in Sources */, - 306A67A7A82BE1F3FD206BAE /* PluginI.cpp in Sources */, + C3346732134A7FF4E54A350E /* AllTests.swift in Sources */, + EFE3FDFFCC689FB65371BC90 /* Client.swift in Sources */, + 07D364FA5369EF6D8D4E5AA8 /* Collocated.swift in Sources */, + 2786A90145677A16513C7844 /* Server.swift in Sources */, + 4E478527FDA44E11ADE2D2C1 /* Test.ice in Sources */, + 55D25A5EACBD3D706C3A0FE0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1D21F6B77AEE0DE4923B446D /* Sources */ = { + 1A6CF57760DFFFD82003731D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 49FE39730C4806DFB684E9CF /* IceDiscovery.ice in Sources */, - B5631F7A1EA8676C88F7897D /* LocatorI.cpp in Sources */, - 460166E775382AF887D095F0 /* LookupI.cpp in Sources */, - 40645501AF8502F567C28FEE /* PluginI.cpp in Sources */, + C67E41468AFE0B965A90F29F /* main.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1FCEC3817747D363E95AA1A6 /* Sources */ = { + 1B03E3F3801D77DFC550183E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2DA654F14912D79AB6E74AB1 /* BlobjectFacade.mm in Sources */, - 798F9ED73855A18315650195 /* Communicator.mm in Sources */, - 191571E443B658986B332140 /* Connection.mm in Sources */, - ED1AE7B4467B99CAE85A91B4 /* Convert.mm in Sources */, - 9FAD01E7A5A3E50F861682DA /* Endpoint.mm in Sources */, - C1ED60554A4D48729279D0D1 /* Exception.mm in Sources */, - C3A5F72AA3A7E6A2C5CF7160 /* IceUtil.mm in Sources */, - EB51EFFEB6762C02A0AB27E4 /* ImplicitContext.mm in Sources */, - E3763CF6D5C07A3D3ED6EC99 /* LocalObject.mm in Sources */, - 37BD728FB36E968AE9008EA9 /* Logger.mm in Sources */, - A2BDFD11C3155D23B684A5CA /* ObjectAdapter.mm in Sources */, - 338D3B703A9596B37A9234FA /* ObjectPrx.mm in Sources */, - F0A512F9DB88649C58FC9DDD /* Process.mm in Sources */, - F7BF505A4C89F1C269AFF18F /* Properties.mm in Sources */, - 358524F4B7865BB4AD77E7E7 /* PropertiesAdmin.mm in Sources */, - 2E5FECEFC67EFE074A3606FF /* TraceUtil.mm in Sources */, - DFA814FDD933EEA0C6018647 /* UnsupportedAdminFacet.mm in Sources */, + 283933A1953976C2DA9B7488 /* AllTests.swift in Sources */, + A2647D6098A7EB77AAF8CA7E /* Client.swift in Sources */, + 9B35EAB6F8BD88152D726AD3 /* Collocated.swift in Sources */, + 867FFBB85F8B387BD12388E5 /* Server.swift in Sources */, + 043D93ED61C15B54AE03FD26 /* Test.ice in Sources */, + 1D7C04D443B33DB1206B5BCA /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1FFD8FD2EA3186FD2989F8CE /* Sources */ = { + 1C729607C00CB2E52881670C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A32A0537F40F21D10090A7FB /* Metrics.ice in Sources */, - A2E2212187162F926159A5CC /* PermissionsVerifier.ice in Sources */, - 55FA81E16C3E0400C3622932 /* Router.ice in Sources */, - B1BF10F883AC7BB3FB0A5548 /* Session.ice in Sources */, - 0CC5FB5A531BB50FD446CDCF /* SSLInfo.ice in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 205FFC81ED4601E1B49AE89C /* Sources */ = { + 87A4D87227FBDF8E2E0CAD68 /* Acceptor.cpp in Sources */, + 94048BBB033060E615673533 /* AcceptorI.cpp in Sources */, + 8FC1683310ADB8C866481055 /* ACM.cpp in Sources */, + F891F1E74DA88E56DA8E50C4 /* ArgVector.cpp in Sources */, + 4238E2CD900A7FE78DA5F8CB /* Base64.cpp in Sources */, + 92996512B2E2D9A664C2AE0D /* BatchRequestQueue.cpp in Sources */, + 070A544F88F5C9ADEEC6F00B /* Buffer.cpp in Sources */, + 58E9746CB646F7B7935D5526 /* BuiltinSequences.ice in Sources */, + 21BF35714A2046CC7C4DF8B1 /* CertificateI.cpp in Sources */, + E22DCE56F23EF9759DCEADB3 /* CollocatedRequestHandler.cpp in Sources */, + DFDB5511012AC679182BDDB0 /* Communicator.cpp in Sources */, + 992E4DE39703E1A0D4718E38 /* CommunicatorF.cpp in Sources */, + CA001DEF70908E891116A1B0 /* CommunicatorI.cpp in Sources */, + 169D64EEE25256A8EC47061C /* Cond.cpp in Sources */, + 13808799A6443C9ED85394CF /* Connection.cpp in Sources */, + 85E4BF86A36BB73D319B2CB4 /* ConnectionF.cpp in Sources */, + 6057AE44CD17675570BEC787 /* ConnectionFactory.cpp in Sources */, + 5BC367727BEF048C5FBC84CA /* ConnectionI.cpp in Sources */, + 505CDF80EEF8B1D50E79B835 /* ConnectionInfo.cpp in Sources */, + F5F6DE14CAD57D389D28AA0F /* ConnectionInfo.cpp in Sources */, + D661B9213BD59B119EEF84EF /* ConnectionInfoF.cpp in Sources */, + 8E63ECC4505FD2FAFEAFBC1F /* ConnectionRequestHandler.cpp in Sources */, + 9A2338535217B7CFB2473F02 /* Connector.cpp in Sources */, + 081CCE04946DEEEDA2549923 /* Connector.mm in Sources */, + E8FACC1133C8E173A929F831 /* ConnectorI.cpp in Sources */, + EE54595EDB60291258E1A374 /* ConnectRequestHandler.cpp in Sources */, + 8C66DA4F73B513778AE9ED84 /* ConsoleUtil.cpp in Sources */, + 8CB79E433C3F9800783D7070 /* Context.ice in Sources */, + 8F77618E5C9F1B0967F8FA87 /* CountDownLatch.cpp in Sources */, + 9859145304CA198B0C6AFFD9 /* CtrlCHandler.cpp in Sources */, + 83CDBD33C1150230F2E74107 /* Current.cpp in Sources */, + EEE9A2E49EC97E210B2B02E1 /* DefaultsAndOverrides.cpp in Sources */, + 090798C938CF1CDC51DB3176 /* DispatchInterceptor.cpp in Sources */, + AC63406EA7134396F84D027C /* DynamicLibrary.cpp in Sources */, + 52C9EE165E8D6C94EFEB4380 /* Endpoint.cpp in Sources */, + B8FED15A9B0BC3649AF07A73 /* EndpointF.cpp in Sources */, + 66C7DAD1EFDD50460B86B902 /* EndpointFactory.cpp in Sources */, + 5B6A0348E48C2CE822785978 /* EndpointFactoryManager.cpp in Sources */, + B7BD0338EFA7C3DB8FF32672 /* EndpointI.cpp in Sources */, + 1D52DAAEEECBAAB658304708 /* EndpointI.cpp in Sources */, + 9C24697B0F15EB28437FE156 /* EndpointI.mm in Sources */, + 0024142D08E8146ED6B749E4 /* EndpointInfo.cpp in Sources */, + A71D57F16C95BFF0C9C49555 /* EndpointInfo.cpp in Sources */, + 3C8FD1C2BE27B7363743D8E3 /* EndpointTypes.ice in Sources */, + C353812AD1FB72561FBEF9F0 /* EventHandler.cpp in Sources */, + 35133BE11FFC8A317FB38A02 /* Exception.cpp in Sources */, + 220D8F9E8C5D43C960422E4F /* FactoryTable.cpp in Sources */, + 896CB4F4F0863FCF72FD6E58 /* FactoryTableInit.cpp in Sources */, + 844D915B27090B848FB53FF3 /* FileUtil.cpp in Sources */, + 99F1F51264DCBBA1F7330936 /* HttpParser.cpp in Sources */, + 5C80929FF3811A8E0A6BE04E /* IconvStringConverter.cpp in Sources */, + 52488E1CF652C3BA12DBB7B8 /* Identity.ice in Sources */, + 087ED6AEA71048A2FE01505C /* ImplicitContext.cpp in Sources */, + 7F682B274ADF63F87E83B668 /* ImplicitContextF.cpp in Sources */, + 5FC217CB7163D86B3526B426 /* ImplicitContextI.cpp in Sources */, + 0663556E59DB2BCAD49E731C /* Incoming.cpp in Sources */, + F97B740AC442AC4B0D143E62 /* IncomingAsync.cpp in Sources */, + 97D14CB373FCCB20B5BC1FC7 /* Initialize.cpp in Sources */, + D05452AB7F6E47B9704E8F2E /* InputStream.cpp in Sources */, + D1E1F1E6A16F7E1D1EFDC4A4 /* InputUtil.cpp in Sources */, + 36791393A4409B89D926A227 /* Instance.cpp in Sources */, + 7247F656E5CA369BF5D62EBC /* Instance.cpp in Sources */, + 447023757EA980624C55B149 /* Instrumentation.cpp in Sources */, + 2C19656A4AF5ADE9DDBAC7A2 /* InstrumentationF.cpp in Sources */, + 62525224C960E2779D7756A2 /* InstrumentationI.cpp in Sources */, + 9B4F4419119ACDACCA449256 /* IPEndpointI.cpp in Sources */, + 1314E0CA8D759C03124C5A89 /* LocalException.cpp in Sources */, + 407C3D11A0C3E4733F7C99B9 /* LocalObject.cpp in Sources */, + 06FE7343E51654DF8A44C59F /* Locator.ice in Sources */, + EEE99D5CCFD33EEF81868AB1 /* LocatorF.ice in Sources */, + FB9F6BB94D193143D0B5E2C6 /* LocatorInfo.cpp in Sources */, + 8AC2B9CE61F373C2968A8D78 /* Logger.cpp in Sources */, + 36831A8229401DFDBE395F96 /* LoggerAdminI.cpp in Sources */, + 8F49ABCAAC6E4187E2B6CA58 /* LoggerF.cpp in Sources */, + BE7E09E447102CDC75718E7E /* LoggerI.cpp in Sources */, + 3858453259EA40101098D345 /* LoggerUtil.cpp in Sources */, + 5C53735690988DBD907B0748 /* Metrics.ice in Sources */, + 30CD85B4633420B63D7280C9 /* MetricsAdminI.cpp in Sources */, + AD875C52399723CE4475E71D /* MetricsObserverI.cpp in Sources */, + 828A8CC28F159BDCB54F2568 /* MutexProtocol.cpp in Sources */, + 78AC389A326D50268C9C1421 /* Network.cpp in Sources */, + BEBE36991D9BACCE4939A67C /* NetworkProxy.cpp in Sources */, + F1E6365515003844B72F5FAD /* Notifications.mm in Sources */, + CC0A1301E7FD1E4F851E58C7 /* Object.cpp in Sources */, + 1F87FA6503E2986C537BCF9D /* ObjectAdapter.cpp in Sources */, + A0CA87BB2AD0D07F39804C8F /* ObjectAdapterF.cpp in Sources */, + 809E2D74023BFE23E61934E1 /* ObjectAdapterFactory.cpp in Sources */, + BEF5ACC5DD0B74AADC279A1E /* ObjectAdapterI.cpp in Sources */, + 5930CC7F7118841036A6B7EF /* ObserverHelper.cpp in Sources */, + 828ACA81ADAEBD4A7C45BE44 /* OpaqueEndpointI.cpp in Sources */, + 31465B39CD28025DA514741C /* OperationMode.ice in Sources */, + 0929B68F398D982D5850DA38 /* Options.cpp in Sources */, + 0F8ED0401A5862836389F95D /* OSLogLoggerI.cpp in Sources */, + A6E6B51E80BBDC666B6E071C /* OutgoingAsync.cpp in Sources */, + D30EFAFE509B0F596DCB7C80 /* OutputStream.cpp in Sources */, + 4EACF0E5A18BA2EF76930E11 /* OutputUtil.cpp in Sources */, + 3BE4BCAAC743E7A5403A650C /* Plugin.cpp in Sources */, + 8D05E1908CC1C02E65416C0B /* PluginF.cpp in Sources */, + 49440DE41C93F8BE96CD82BA /* PluginI.cpp in Sources */, + 68235D57AB04CF4E76F6496C /* PluginManagerI.cpp in Sources */, + A958FBD4D8743332B89D8A9F /* Process.ice in Sources */, + 1E4DC7E206F1EFD6CC78DF94 /* Properties.cpp in Sources */, + CC62C41A43CDF7880146CA62 /* PropertiesAdmin.ice in Sources */, + DD91BDBDF304B914DD0AE38E /* PropertiesAdminI.cpp in Sources */, + D2485C66283CFD2F2C0E8250 /* PropertiesF.cpp in Sources */, + C70D891B4BEEE2ED25DD9FC0 /* PropertiesI.cpp in Sources */, + 10A917B381D58299302F0E9F /* PropertyDict.ice in Sources */, + 224B69B54087CA089D7FBD7C /* PropertyNames.cpp in Sources */, + 453B1D72841FECE7DD81CAD2 /* Protocol.cpp in Sources */, + F0BFE69F3E6EB11FF6C9A215 /* ProtocolInstance.cpp in Sources */, + A4457F8891CC4A735E38473D /* ProtocolPluginFacade.cpp in Sources */, + BBDF488A0D76D385FA9A778A /* Proxy.cpp in Sources */, + 1DEA3EF5FB9844787BF0B350 /* ProxyFactory.cpp in Sources */, + BD346138D37DBC38517DD6E4 /* Random.cpp in Sources */, + BCA8A4514E249D3C06575584 /* RecMutex.cpp in Sources */, + DECC2A6910E64F875FD34570 /* Reference.cpp in Sources */, + 1B7BB4266B61BADD75263B04 /* ReferenceFactory.cpp in Sources */, + 9EA9B5E79AFB53974ABC7AFE /* RegisterPluginsInit.cpp in Sources */, + D6CB4E18B0388D30588C0469 /* RemoteLogger.ice in Sources */, + CA8BE400C1A388279ED6539C /* RequestHandler.cpp in Sources */, + 1E3DE5C8839A98964950D5E2 /* RequestHandlerFactory.cpp in Sources */, + 28E61955AD742A460CBBC90C /* RetryQueue.cpp in Sources */, + F14D90500BF758A100DF4918 /* RFC2253.cpp in Sources */, + 29D3ED44FB31C93EBFBE9A37 /* Router.ice in Sources */, + 32093CD583078D225E5120A3 /* RouterF.ice in Sources */, + 27AC9C069FA287B5CBAF3DFE /* RouterInfo.cpp in Sources */, + 61AAF3E3DD069C0870837CFB /* SecureTransportCertificateI.cpp in Sources */, + 2370F05BA8CD3A5DE60D5016 /* SecureTransportEngine.cpp in Sources */, + 7D393B5197D8C9F764A4521A /* SecureTransportPluginI.cpp in Sources */, + C46DCDCC048DC9AA90572DED /* SecureTransportTransceiverI.cpp in Sources */, + E5E608DF1CF09D64C7F7569D /* SecureTransportUtil.cpp in Sources */, + D27FE379B6FA3B86DAB9C871 /* Selector.cpp in Sources */, + 18C072940A70F14F69FE3F40 /* ServantLocator.cpp in Sources */, + 6D8FDB93E8C66B54255B96B6 /* ServantLocatorF.cpp in Sources */, + 5F832F238CA8F9AF20070005 /* ServantManager.cpp in Sources */, + 28AA316F364B77A7B7DC2AB2 /* Service.cpp in Sources */, + 5D2B00CB36B9F707209466FF /* SHA1.cpp in Sources */, + 2394083793788EDFF3EE4775 /* Shared.cpp in Sources */, + F0C7200AE0CEB8E3DD71036C /* SlicedData.cpp in Sources */, + ECD6E46B065E370B3598C98D /* SSLEngine.cpp in Sources */, + 65D15DB5067FC53F6BC3132D /* StreamAcceptor.cpp in Sources */, + 4DFB007003F91F0FA4685AD7 /* StreamConnector.cpp in Sources */, + A8FC1EAF0AA3504AFD846939 /* StreamEndpointI.cpp in Sources */, + 127E17A1E5A7C739CC7CB1C0 /* StreamSocket.cpp in Sources */, + F28792F31B175D0C5EFA9340 /* StreamTransceiver.cpp in Sources */, + BF40E8BC2701770F6F2B1238 /* StringConverter.cpp in Sources */, + 5385448290174C711B57CE51 /* StringConverterPlugin.cpp in Sources */, + 68511C23940695BE53860DC2 /* StringUtil.cpp in Sources */, + F2427061CF69C098C78D2C90 /* SysLoggerI.cpp in Sources */, + 9746010596C112B8051EFE24 /* SystemdJournalI.cpp in Sources */, + 126AD68DB3E55E2881550C60 /* Thread.cpp in Sources */, + E5C6B5AED56F9BC934CC4DC7 /* ThreadException.cpp in Sources */, + 26485651B696FE7658060E27 /* ThreadPool.cpp in Sources */, + 43C041F80EFB1DEB20266001 /* Time.cpp in Sources */, + 6812902E002944DFB86BD1F9 /* Timer.cpp in Sources */, + E5F6FEF06ABA37D0A16EF93E /* TraceLevels.cpp in Sources */, + 5F3C138F87152028C505F187 /* TraceUtil.cpp in Sources */, + CB2687687AB5F910284C23CB /* Transceiver.cpp in Sources */, + 51244B53B4AE8A7CC88FDDCE /* Transceiver.mm in Sources */, + 8F88C5056F59C4F461B7E944 /* TrustManager.cpp in Sources */, + 8BD3590077F2A155B5486CC7 /* UdpConnector.cpp in Sources */, + 87169C720693983968D640DF /* UdpEndpointI.cpp in Sources */, + CF2FE08D882509CAA6DD32B0 /* UdpTransceiver.cpp in Sources */, + 8C757C6A801ACB43E07B3847 /* Util.cpp in Sources */, + 135503B16ECF7FE8834B022B /* UtilException.cpp in Sources */, + 4C8BC3B2EB3417E69F88DA48 /* UUID.cpp in Sources */, + A457D66D0A9DD47D91424E7E /* Value.cpp in Sources */, + 80D13332A162835326C3DF20 /* ValueFactory.cpp in Sources */, + CA37756C70641135D69865CF /* ValueFactoryManagerI.cpp in Sources */, + DD2CC01F50A9FD8A0B59AE76 /* Version.ice in Sources */, + 73D63D830F8098C60C84A0BE /* WSAcceptor.cpp in Sources */, + 11AF59D1CAEA33AD50DB0A7D /* WSConnector.cpp in Sources */, + EA55DBA8AB62EF9298A3B767 /* WSEndpoint.cpp in Sources */, + 8EF0D7A11A26D61A09ECFFB2 /* WSTransceiver.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 225AF2F874C2476133C2F0B1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BEA8A85E1A1521E5D7B7FBB0 /* AllTests.swift in Sources */, - 480A168967EF40F23CE23AFF /* Client.swift in Sources */, - C35678C287F8F9A637655A7A /* Collocated.swift in Sources */, - 411E513F993E091CB1E2AC4F /* Server.swift in Sources */, - A9F4F71B394900161CABCDDF /* Test.ice in Sources */, - 6835F2FEC5F2CD79B4938E7F /* TestI.swift in Sources */, + 4DD2839688E91F883C110B2D /* AllTests.swift in Sources */, + 1FD45EA7DD80CC11311BDA31 /* Client.swift in Sources */, + C2DD6C9517D54EE8170B01E7 /* Collocated.swift in Sources */, + 43ABBB28ECBB5FB5DBC4B16A /* Server.swift in Sources */, + C4C6B0C4FB541B81634C25EC /* Test.ice in Sources */, + B9BBE89A10AD153981A385BB /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2078456C95C04424AE8A0B7A /* Sources */ = { + 2B77FA804C9FC98848A3BF41 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 07231DDD854AABD03305B283 /* ServantLocatorI.swift in Sources */, - 0E95472F96C3298CB4401BAE /* ServerAMD.swift in Sources */, - E9C5A9435BC9DF7C9F0896C5 /* TestAMD.ice in Sources */, - B3CC6F4D6DB25A45BCC1C24D /* TestAMDI.swift in Sources */, + 4F5EFC4F5C35BC8BA3DAAF61 /* AllTests.swift in Sources */, + DB0B6ACB09E3F07029CCD0D6 /* Client.swift in Sources */, + 9A0155DDBCA4FFEC1A349FB3 /* Collocated.swift in Sources */, + DB695550603F9C75775666F4 /* Server.swift in Sources */, + E7E9C572C7C05E0813EF78C5 /* Test.ice in Sources */, + 32D6D9111DB62134301F669A /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 231728936D1C55FE04EB4BF6 /* Sources */ = { + 2EE495321A946EC99D8A7418 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CB6C7B09D11CFB55948EB796 /* AllTests.swift in Sources */, - B0A4BA7E87864E87F5BCF1CD /* Client.swift in Sources */, - 7960BAF96A0FD68992BA64D3 /* Collocated.swift in Sources */, - 7628B8E4495A90D8508C3459 /* Server.swift in Sources */, - 1CAB9532A1CC8144816E56CE /* Test.ice in Sources */, - FC1BA26D46512B4D4D2879BC /* TestI.swift in Sources */, + BD80D443905E58947347F959 /* AllTests.swift in Sources */, + D007472094A8CCE6FC434CE8 /* Client.swift in Sources */, + 8F5B27D45817CC9DC3486365 /* Collocated.swift in Sources */, + 2C66AE552E67BA6B0E3279E9 /* Server.swift in Sources */, + B501D13A1A9EE63F7638605D /* Test.ice in Sources */, + AA1B174000281436BC0479CA /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 24C0731916FBB4F1F7F83264 /* Sources */ = { + 2FA2A3D57A394EFFD7D51C4E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 43A17B3FA08F9100FE050837 /* AllTests.swift in Sources */, - 6E0F4BA532FBA5A46F06B1E7 /* Client.swift in Sources */, - 10CDCA1AC74E706DE81268F6 /* Server.swift in Sources */, - 16EF4C28DFF84F79444B5AF0 /* Test.ice in Sources */, - 7A8FCFFFBDB5348A80FC9EBC /* TestI.swift in Sources */, + C232B65C84FEDD8CEEAB7B1E /* AllTests.swift in Sources */, + 71AE26572DE03E7A8D380677 /* Client.swift in Sources */, + 2AC2F321EA8DF646A2F8ED2E /* Collocated.swift in Sources */, + FBB16729EB0F5F7BA5415885 /* Server.swift in Sources */, + DDEF658C0972A36DDD721FF0 /* Test.ice in Sources */, + 32DE5ADD106045FA5CA17523 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 24FC934D8BBC273401D4B94C /* Sources */ = { + 32BEA01ACBF119855F9EDAAF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 308BD566EA908CF247563DBE /* AllTests.swift in Sources */, - 290964CF22C53C93CA53C304 /* Client.swift in Sources */, - 7C70271D70FE7C71CA4E6A2C /* Collocated.swift in Sources */, - 14B4462CA4B8DAC51CB9DFAB /* Server.swift in Sources */, - 477F9ABD3ADD138056741BCB /* Test.ice in Sources */, - D97BCDE42B2D775C8EF3AE38 /* TestI.swift in Sources */, + 0EE1712A1DA0DAA8F783EF04 /* AllTests.swift in Sources */, + 62F38B37E6BC9A7EE1C4D82B /* Client.swift in Sources */, + 39268F660BBE6359E8AE7A88 /* Server.swift in Sources */, + 953E91436CE58A04CBA8D31D /* Test.ice in Sources */, + 634864BCBA1C3462B793A772 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2B45A27DB6D5B212B0D5BE68 /* Sources */ = { + 3699FBB3C28FB2A9C874EF43 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5E8CB82E96183A00602D33F9 /* AllTests.swift in Sources */, - 036E303C13FCDA857E6CAC88 /* BatchOneways.swift in Sources */, - E8956EC59BBE5F86D680A905 /* BatchOnewaysAMI.swift in Sources */, - 282A071C3C1DFECCC4D2FBEC /* Client.swift in Sources */, - 9E36493AA2A1DB7E35F45A6E /* Collocated.swift in Sources */, - EE2D1BCE972F27CCCA9D475F /* Oneways.swift in Sources */, - 1FFF30D901F9DB44501ABBF2 /* OnewaysAMI.swift in Sources */, - 0DF6D85D4D268671B58316D9 /* Server.swift in Sources */, - D7398A853900B2D4C341BBE2 /* Test.ice in Sources */, - 1165E688A7E875307F3B84B5 /* TestI.swift in Sources */, - C8D3E461307EB4D460985F7C /* Twoways.swift in Sources */, - 769C4E885E7E13D63F5C9184 /* TwowaysAMI.swift in Sources */, + C732FF1B674435836AEA4266 /* AllTests.swift in Sources */, + A7D8D3D0DBFD5F54A63F808C /* Client.swift in Sources */, + 77D9647970F1FF697D9D9C96 /* Server.swift in Sources */, + 43DA7C98896E7FCBBEA77A79 /* Test.ice in Sources */, + 13999E48614CE52A6FBCEAC3 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2BB16390B18571552455B8FB /* Sources */ = { + 3E1F45930E5FE2EDA87D5CD2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7284EF59424060A58D2734D8 /* AllTests.swift in Sources */, - F41589B2D9BF5C39BD869A77 /* Client.swift in Sources */, - F52BD20B24695C7C57BE0E64 /* Server.swift in Sources */, - 9AD33D51C7075AF3070BA8B2 /* Test.ice in Sources */, - 858D29278C64E90B53093ADC /* TestI.swift in Sources */, + 53B126E081D0367234EF6CB5 /* AllTests.swift in Sources */, + F930B86AD80EF1CF48C47AB9 /* Client.swift in Sources */, + 4FB740BB1EA5F46970098735 /* Collocated.swift in Sources */, + 0C14941F15A92753776C0CDC /* Server.swift in Sources */, + F1D6D8065192F452067CB422 /* Test.ice in Sources */, + 03949E3F114B9055E063CCD5 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2BDEA68897FC29D006B4D31F /* Sources */ = { + 403C5012F40381B9C8149B5E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 675820CF4F643F83204FFA1A /* AllTests.swift in Sources */, - 8655F3C92CD573B2D95AB505 /* Client.swift in Sources */, - 8FD0E948F857C79A381DD164 /* Collocated.swift in Sources */, - 0A468AC2E0650A5D5537871F /* Server.swift in Sources */, - 3CABC75D222B03775270DA8E /* Test.ice in Sources */, - B6D10C65D061D7D1D4EB5729 /* TestI.swift in Sources */, + 76E199959830AB560F3E2F2F /* AllTests.swift in Sources */, + BA27D3FF886FCCB851238FEE /* Client.swift in Sources */, + 2BFB3DA0C51EACA54D43C16E /* Server.swift in Sources */, + 4D99483783F1AC42FE90CFF1 /* Test.ice in Sources */, + 527E15A291C202A19879B6EA /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3489D071F380B1656A917FE2 /* Sources */ = { + 405CD52C99BA714EBBF20283 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 851FA14B9E98213ED8975304 /* AllTests.swift in Sources */, - 56AF104E15F9D407777CB4DD /* Client.swift in Sources */, - 561077E7B6A5882AF8646B61 /* Server.swift in Sources */, - 601AE55BEB7C928FFF774792 /* Test.ice in Sources */, - 217A42A3C9F0FB086E7DA7AE /* TestI.swift in Sources */, + 7A6E96D004F26E9B1BB8F989 /* TestCommon.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 349D51B9EDBE11F8743E7CBC /* Sources */ = { + 410CEAD6B34978C77E76A465 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E3C19CCAA5625E5938BC62C9 /* AllTests.swift in Sources */, - 4B698F4BA047FF7356D9D7FE /* Client.swift in Sources */, - 4511CAA8C1392A439742B53B /* Server.swift in Sources */, - 7B3325A26D5CCE04158FB480 /* Test.ice in Sources */, - BF2ED6CBEE98AA49A9CC643E /* TestI.swift in Sources */, + C5A09A75C25E6B7B97E82DDD /* Metrics.ice in Sources */, + FF341543F93F0A39F6D7EB65 /* PermissionsVerifier.ice in Sources */, + 78B10D1E2118BABF5FE5511F /* Router.ice in Sources */, + A33F469D207EAFFDB8FB1D3A /* Session.ice in Sources */, + BBCB27DFA915FC2BCFFE092C /* SSLInfo.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3A88480A773E8DCB3E678008 /* Sources */ = { + 4234B37CA2D6F002BAB743DC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 34E74A2BBD7B7EF71BAE9A2F /* AllTests.swift in Sources */, - 2F63AB037755CC57F2AA51F0 /* Client.swift in Sources */, - 711B3416FAF9FFD66902D667 /* Collocated.swift in Sources */, - 60627F6BFDB33527B71F7172 /* ServantLocatorI.swift in Sources */, - B10BBA489EE9CE93542DF349 /* Server.swift in Sources */, - 2BFB4191B7AA1DBC081B52C7 /* Test.ice in Sources */, - D20B8F69CCF1E0A4C2B28CD4 /* TestI.swift in Sources */, + 08C54E5DEBB4C78669163180 /* AllTests.swift in Sources */, + DE33309388A2D6D35E0D00C9 /* Client.swift in Sources */, + 10A3BBE740D13AF0C740BC8E /* Server.swift in Sources */, + 3EA13F38B9051070A90B295B /* Test.ice in Sources */, + 24E6ACFCBC8D63858A66F8E7 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4C93A6C97A1E449CFB81717A /* Sources */ = { + 43DEE7804C5BF7F6DEB80507 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A214D71B7058ABD7775B79A5 /* AllTests.swift in Sources */, - 2D66BB6DC37B603C1EB91D29 /* Client.swift in Sources */, - 8D64EA1EAAFC0C7A0F94A5EC /* Server.swift in Sources */, - 5A0055A5ABBBB0D459E43E5B /* Test.ice in Sources */, - 6A40774D61D6CCC937C6AC31 /* TestI.swift in Sources */, + E686E59B93F9BECF552301B3 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4F8FB5F5C3B0AA072EBE86C3 /* Sources */ = { + 43E30871AEAE37E37C0FDC5B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8EE7680FBD0E3B74CBF47E27 /* AllTests.swift in Sources */, - 5D6852B070BF3BE58AC082F3 /* Client.swift in Sources */, - 4C49409A75762B82E4BE1007 /* Collocated.swift in Sources */, - DF06D92BA14A9549F58F07A9 /* Server.swift in Sources */, - B76A3686BEAF19E70AA5587F /* Test.ice in Sources */, - 6C3C0602B1B8FF69F18518DF /* TestI.swift in Sources */, + D1B49D38A4391950B9366FBA /* ServantLocatorI.swift in Sources */, + 17DCF21F4DDABFF050F0745E /* ServerAMD.swift in Sources */, + 7657975AD42AC20108D07027 /* TestAMD.ice in Sources */, + B51683D810232AB7F6965350 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5205454E600CF041B66BE774 /* Sources */ = { + 458D27F6B882241EBEF446F2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 862F47193B485FAEA9801BB4 /* AllTests.swift in Sources */, - 87A06205244785BDD42529A1 /* Client.swift in Sources */, - B5C9AB5A11C9DC99931B8C57 /* Test.ice in Sources */, + 40A14EE0B6207B29C7616CAF /* IceLocatorDiscovery.ice in Sources */, + E1C3660C58AA23A810E6A3CF /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 566CC439F7260E4ED534FD2F /* Sources */ = { + 48D6393E8A3A2A9A167F7EC8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9C684B66E3E7AEBF591C1150 /* Client.swift in Sources */, + EB86EAE346B18FD1386478AF /* ServerAMD.swift in Sources */, + 02DDAFC836F2EC3E8E413597 /* ServerPrivateAMD.ice in Sources */, + 92205818C828E4B5D16AA8AC /* TestAMD.ice in Sources */, + 7880F2DBCCF3B4FDF0BA9D30 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 592AA7ADB9244CF7838DFAF0 /* Sources */ = { + 4E879BA1D09CBAB3A63157A7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0DF98737208C5FF562D1B8B7 /* AllTests.swift in Sources */, - 8E5245DB3069B0D996247CFF /* Client.swift in Sources */, - 2C9B5DB375D29D5992FC98E3 /* Test.ice in Sources */, + A73AA8A31476BD2803B0E84C /* AllTests.swift in Sources */, + B31B43F77AF169D916DAB8C6 /* Client.swift in Sources */, + FAE56358026884E7BD7AD702 /* Collocated.swift in Sources */, + A11B058C87B826A8A68318F2 /* Server.swift in Sources */, + 3C32347A7AB72AEAD51D1F5D /* Test.ice in Sources */, + 66955246E47C08C7A9EEE8D4 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 626208109A2B352E0C953538 /* Sources */ = { + 4EDE5F9D421F14059D4E8F33 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 13B99C54525FCB5D99763D7D /* AllTests.swift in Sources */, - 412F52164B8A9A3BAF19EBD1 /* Client.swift in Sources */, - 8CD7C7F8CD5CF7929BE18A81 /* Test.ice in Sources */, + 64C0FC4877E7312A6657335B /* Admin.ice in Sources */, + 283BA03D63F2E5CCD241DAE2 /* Descriptor.ice in Sources */, + 2A85673264DD9C4FF629CA6A /* Exception.ice in Sources */, + F915629B1F571DFC1A3DC899 /* FileParser.ice in Sources */, + D4DED64A5C28684FC11B9BBD /* Registry.ice in Sources */, + C0EB837F25A195490E03F95B /* Session.ice in Sources */, + 9364DD9F6D8DA434C268DBA6 /* UserAccountMapper.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6831E3CD4222C55A8F044111 /* Sources */ = { + 4F8EC0615E2ED8BE7DAB2324 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6EF44198D76492489EEA8B9D /* AllTests.swift in Sources */, - 611D1E8C0AC59BE838506D7A /* Client.swift in Sources */, - 8932803C962A9FC5FE8EB618 /* Collocated.swift in Sources */, - CA3767AF6A1D9C1A1A6EE7B4 /* Forward.ice in Sources */, - 4198D33F3732415C4D92222E /* Server.swift in Sources */, - B4F1A4E2CFCC9898C9B2E828 /* Test.ice in Sources */, - 8FF467A992F60AE6913EF8D6 /* TestI.swift in Sources */, + 1C9FF3BD071F50569EEF5B8B /* AllTests.swift in Sources */, + 9EA795C10EA59F5A12BD863D /* Client.swift in Sources */, + 810D238B45D8FE86375B6277 /* ClientPrivate.ice in Sources */, + 0B414F22DE059BE997F8DCF7 /* Server.swift in Sources */, + D5D15DD30033BEF6E843444D /* ServerPrivate.ice in Sources */, + 5EA75E67D518F03D9E89D911 /* Test.ice in Sources */, + 3F41FDEBAB1DAD3E79E0A918 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6878B564B0F2D92DB5EB28B0 /* Sources */ = { + 5455C447F677F56B64083910 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9BFAE53486883E170688D76A /* AllTests.swift in Sources */, - 0616771E9DCC32A8954A64EE /* Client.swift in Sources */, - B9D7BFA85056512F43AB0701 /* Server.swift in Sources */, - 54BAC7C6B5C92629D6E4DEEF /* Test.ice in Sources */, - 716BA3AF8285604C0993408F /* TestI.swift in Sources */, + 6D0DA924998E95CEC4B9C9B7 /* ServerAMD.swift in Sources */, + 3DD95F32FA86A873399E022B /* ServerPrivateAMD.ice in Sources */, + 38D6ECE8850D5A354E086011 /* TestAMD.ice in Sources */, + 968C3AD7FF2E24810965EC8D /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 69B40FFD87789CF391A5BC46 /* Sources */ = { + 56957981C03B9A3FA02A091C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4C1FE5673C9DCFCC6C521681 /* AllTests.swift in Sources */, - 558AAB0D9EC1A2AE5831C99C /* Client.swift in Sources */, - 98F63C97A3560D1B7063BA2C /* ClientPrivate.ice in Sources */, - 68F668E656345A7D9F3D99A9 /* Server.swift in Sources */, - 25329B0342BB1E2B45C4589C /* ServerPrivate.ice in Sources */, - 7BE8AA23C233405C278A22A5 /* Test.ice in Sources */, - 6918229332F5D5BA6B82D7CD /* TestI.swift in Sources */, + C6670777D45B34F4F55383C8 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6A86E20C61F27E3286476095 /* Sources */ = { + 5787B438D0CCA709CCE50737 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FD9CFF63A465FE5ECC4C7CA3 /* Admin.ice in Sources */, - CD9ACCBDE72090CEA1B5CDDF /* Descriptor.ice in Sources */, - D071A91812655939890551E8 /* Exception.ice in Sources */, - 0519C7E867DB374F149B1990 /* FileParser.ice in Sources */, - 2423BCF238AC6AD81B79A39C /* Registry.ice in Sources */, - AA3DF90F9F7AE7E41A7A9F89 /* Session.ice in Sources */, - 4D273679B85FF12E509E9C70 /* UserAccountMapper.ice in Sources */, + F4A4322B62B6CD345E5DB879 /* AllTests.swift in Sources */, + 5219348A3397452F75226943 /* Client.swift in Sources */, + 30F9B1C5622A20E712E8F578 /* Collocated.swift in Sources */, + 7EDBADF415026D08BE00ED54 /* Server.swift in Sources */, + 3372567B45FEE2448D214402 /* Test.ice in Sources */, + 90F0DB577F458B5BBF5CD826 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6C8C84C974D39140120406C1 /* Sources */ = { + 579324ED4945E63A904D0606 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BD34921C3C75DF924FDFF57A /* AllTests.swift in Sources */, - 8A00939F0CD533282212A9B2 /* Client.swift in Sources */, - 87B9C072C30E2DBED33BB8ED /* Collocated.swift in Sources */, - 92388EB12542F6B1292CE23F /* Server.swift in Sources */, - 9A06DAAA0B203CA2157102A0 /* Test.ice in Sources */, - FCE39C66D42EC30588470F9F /* TestI.swift in Sources */, + E96D9D0E119CF23373C46695 /* IceStorm.ice in Sources */, + DBE9BB62EAF3D24495F2C24B /* Metrics.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6F55FD163BA096C512C916E3 /* Sources */ = { + 655F49FCF65BE7CBE57565B2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 80D6A0F053834FE292E3DE0A /* AllTests.swift in Sources */, - 93DAFE2E582CAFB57622168C /* Client.swift in Sources */, - 931BE9080B44F58D559B8206 /* Collocated.swift in Sources */, - 3743992806B7567EE7D64284 /* Server.swift in Sources */, - BB836B5E8EB2F43BD9656753 /* Test.ice in Sources */, - 508E9C24CD856630898F556C /* TestI.swift in Sources */, + F802821B381C10DE143B1174 /* ServerAMD.swift in Sources */, + 2D34799609A8A41448486E2F /* TestAMD.ice in Sources */, + 7C9749638F33756CAFCACFD7 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 701AECBCD0845BFB1876E088 /* Sources */ = { + 6620174E22DD4D6CCD3282CB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F2F8E672D0B6448433C0F8B5 /* Client.swift in Sources */, - 4F9F8F0810481C81391D8CB5 /* Test.ice in Sources */, + 94B38541371A80684508FFFC /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 70DAACF467A2AC80B181D4AE /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 9554BF43135121B7D65E2E7C /* Acceptor.cpp in Sources */, - 39A91BF44E483F22FC43BA29 /* AcceptorI.cpp in Sources */, - BA6136386C06CDE18915B249 /* ACM.cpp in Sources */, - B6FBDF0052EF47CE6B52F328 /* ArgVector.cpp in Sources */, - 5507F5352871DB46AA66235C /* Base64.cpp in Sources */, - 0A7EF887C9DAA79818FB599B /* BatchRequestQueue.cpp in Sources */, - 6361D79F77A9F19E3564564B /* Buffer.cpp in Sources */, - C60593303A3B702CBA40204D /* BuiltinSequences.ice in Sources */, - BB00A92C945030D3F7CB1108 /* CertificateI.cpp in Sources */, - D55FDB743E5A6E822F3AAF4A /* CollocatedRequestHandler.cpp in Sources */, - 5B30A1C7106D235EECD371A2 /* Communicator.cpp in Sources */, - 5B030C5AE731084E45F25138 /* CommunicatorF.cpp in Sources */, - E620BA872F0DE08AAF53BB43 /* CommunicatorI.cpp in Sources */, - 04CA57F572948DE12AF650F4 /* Cond.cpp in Sources */, - 89440AF05FA7CC8EB88BE86C /* Connection.cpp in Sources */, - ACDB50DB35A6779B56D47D82 /* ConnectionF.cpp in Sources */, - 8128D9ACC369D6F1247B8910 /* ConnectionFactory.cpp in Sources */, - 490A47684F9522DA0EB3B71D /* ConnectionI.cpp in Sources */, - 646D198397E749966DB40E3A /* ConnectionInfo.cpp in Sources */, - 34985EBE9C50CB06AA64D8BA /* ConnectionInfoF.cpp in Sources */, - 4963E6A2F3B94627BD3C2122 /* ConnectionRequestHandler.cpp in Sources */, - 9DCC3C21D3245727D4CCC405 /* Connector.cpp in Sources */, - C8F130C843CE329970CE6DF1 /* ConnectorI.cpp in Sources */, - C52A5C479A5C09FDFC29A368 /* ConnectRequestHandler.cpp in Sources */, - 88345F83E1301D2FF1C1D263 /* ConsoleUtil.cpp in Sources */, - 43A06A4A51A4558C24398F0D /* Context.ice in Sources */, - 8DCA1D0474EC0432EAC54AAA /* CountDownLatch.cpp in Sources */, - 4D90AA0165758DCA6F4E5573 /* CtrlCHandler.cpp in Sources */, - 845053DF8321A58CE6067BA5 /* Current.cpp in Sources */, - C971E7B0131BF13655D468B9 /* DefaultsAndOverrides.cpp in Sources */, - 324A50B00D435D4EF19DB035 /* DispatchInterceptor.cpp in Sources */, - B09C0508C2DBD6737E11665A /* DynamicLibrary.cpp in Sources */, - 89D3ACE4EC733E3DB21C14C3 /* Endpoint.cpp in Sources */, - D3A075A4E31396353AF654FC /* EndpointF.cpp in Sources */, - 54B208E550318720CF0886EC /* EndpointFactory.cpp in Sources */, - 6427196F2B0891F6524E55CF /* EndpointFactoryManager.cpp in Sources */, - 841BFE0613018387F3873E99 /* EndpointI.cpp in Sources */, - 303B30C955BE042B6D833660 /* EndpointI.cpp in Sources */, - 09402B549DA79E6153D5B1B5 /* EndpointInfo.cpp in Sources */, - 5B335989737F66B47BE61847 /* EndpointTypes.ice in Sources */, - DF841E9C81A9DD7D0D27B435 /* EventHandler.cpp in Sources */, - 27E037D96A065A7E61ED5B6A /* Exception.cpp in Sources */, - 9BC25E00F33F3AC0A0B7BAC2 /* FactoryTable.cpp in Sources */, - D7F868E56A6E9055EA7EE9B6 /* FactoryTableInit.cpp in Sources */, - A274AE19070174CC7E66E22C /* FileUtil.cpp in Sources */, - 3553F05E74B10F4A5FE9C0AB /* HttpParser.cpp in Sources */, - 3C02844A7DAA17DDECD68687 /* IconvStringConverter.cpp in Sources */, - 5A70341D32664BCC9FB6D922 /* Identity.ice in Sources */, - 360716F34BAC49A2B2B4B1B8 /* ImplicitContext.cpp in Sources */, - 68E284BBBE9AF0BDC7635E8B /* ImplicitContextF.cpp in Sources */, - 50E08BF2848339F9284E25ED /* ImplicitContextI.cpp in Sources */, - A4B79799AA177ECC2680F3E3 /* Incoming.cpp in Sources */, - B4B84F514376A4A8E4A6ED31 /* IncomingAsync.cpp in Sources */, - 31404AAF6DED540CAE1C7082 /* Initialize.cpp in Sources */, - 8D69DDFC431A064DC4647F12 /* InputStream.cpp in Sources */, - 238D6984DA57079300B269A2 /* InputUtil.cpp in Sources */, - 7374F6D453C0207902F43CFB /* Instance.cpp in Sources */, - 3697A9BB3D6A517328B6906D /* Instance.cpp in Sources */, - A230E5CB808BA0203AC69D4B /* Instrumentation.cpp in Sources */, - 52858702FE194D8B2F3FAF99 /* InstrumentationF.cpp in Sources */, - CB0EA922D4BEB16E6B68FFB6 /* InstrumentationI.cpp in Sources */, - 49071D3B86174CFAA05E7489 /* IPEndpointI.cpp in Sources */, - 521F04B4A86C343DF07CC55B /* LocalException.cpp in Sources */, - B904C69A68313FE87E876699 /* LocalObject.cpp in Sources */, - 99839C7C174F1AB6AE8344ED /* Locator.ice in Sources */, - 9C17134AC1DB656CA2F01C9E /* LocatorF.ice in Sources */, - A050D241D029DEDDB1DFC6E0 /* LocatorInfo.cpp in Sources */, - BD4668C593E2B731A449859D /* Logger.cpp in Sources */, - 73BA63A3CC9DCC9D20E64B64 /* LoggerAdminI.cpp in Sources */, - 972ADC32F17372B5C30532D0 /* LoggerF.cpp in Sources */, - DC744E01B81A89EEBEF1F1B5 /* LoggerI.cpp in Sources */, - 025FA88297B6C712DCAA8F25 /* LoggerUtil.cpp in Sources */, - 4446DF6E15D87AE4822DB2F3 /* Metrics.ice in Sources */, - 72BCBF10AB3B8FC119868A22 /* MetricsAdminI.cpp in Sources */, - B28964A958A1D4B9949032C5 /* MetricsObserverI.cpp in Sources */, - 4CF9B8FFCEC00582965D6CE3 /* MutexProtocol.cpp in Sources */, - CD1974E69E78E59EFB0451C3 /* Network.cpp in Sources */, - 25821E0287DE5D6CE40099AE /* NetworkProxy.cpp in Sources */, - 3EB9B210291BB7557E04374A /* Object.cpp in Sources */, - C48F676CD5319A8FCC64558F /* ObjectAdapter.cpp in Sources */, - 11023A79BA4F103EE71D9704 /* ObjectAdapterF.cpp in Sources */, - 392B692E590FF92F563A91BB /* ObjectAdapterFactory.cpp in Sources */, - 474229F67C964ECBC86FFE44 /* ObjectAdapterI.cpp in Sources */, - 51118B71D7D03F9E63CAAC8A /* ObserverHelper.cpp in Sources */, - 95C626F7F7EE5460E72969F6 /* OpaqueEndpointI.cpp in Sources */, - 40F08703FA8A937D09706386 /* OperationMode.ice in Sources */, - 60729C52D701EE8270A8BC44 /* Options.cpp in Sources */, - 33E46E944D89D0AECF0AEF10 /* OSLogLoggerI.cpp in Sources */, - 3995C27D07CB622FE667FC3E /* OutgoingAsync.cpp in Sources */, - 363083682BE458B2B4FBD36B /* OutputStream.cpp in Sources */, - E6D2CAE0C0295F5764C05900 /* OutputUtil.cpp in Sources */, - 5646AF5748468E8367A8B2B8 /* Plugin.cpp in Sources */, - 7735AFBC7F28D830774C507E /* PluginF.cpp in Sources */, - E2150CB6BA407CAEB82D3EA8 /* PluginI.cpp in Sources */, - 15FF52207BB3A882D4ACAD44 /* PluginManagerI.cpp in Sources */, - 33F02CA9F06C15FF0FB76A2A /* Process.ice in Sources */, - EB3DA38B8BFB0D4CB9619CC2 /* Properties.cpp in Sources */, - E434146673B4685DFAA0386E /* PropertiesAdmin.ice in Sources */, - F358B827B18187A436C6B807 /* PropertiesAdminI.cpp in Sources */, - 89A18A72BB4884C905C3D894 /* PropertiesF.cpp in Sources */, - 176FA0D9CAB57E17A1B6D457 /* PropertiesI.cpp in Sources */, - 623F35B1EE9BB8F4AEF24A81 /* PropertyDict.ice in Sources */, - DFDC8F8075A4114675F568FD /* PropertyNames.cpp in Sources */, - 53344552350017DCCC922BA5 /* Protocol.cpp in Sources */, - 7B4093DC56456EF617CD7CA9 /* ProtocolInstance.cpp in Sources */, - B2EEE757E6D5F3B2ABC5D2E1 /* ProtocolPluginFacade.cpp in Sources */, - 58731F415B7F60515B1023A4 /* Proxy.cpp in Sources */, - A6308AE13C3F31335293B164 /* ProxyFactory.cpp in Sources */, - F33F3FA8FDE07357527E668B /* Random.cpp in Sources */, - 38398D28689BE1AE27EFDB06 /* RecMutex.cpp in Sources */, - 2B5C13822C5D5F8528E32C06 /* Reference.cpp in Sources */, - 56DFADAF1768EA7556E0DDB6 /* ReferenceFactory.cpp in Sources */, - 0DA69726D275D0F638CCA647 /* RegisterPluginsInit.cpp in Sources */, - 595522F6099D05330116C450 /* RemoteLogger.ice in Sources */, - 4B35254B4B03D338C27D1448 /* RequestHandler.cpp in Sources */, - FDEE2605F7A6D5CEBFFE8454 /* RequestHandlerFactory.cpp in Sources */, - 97481AEC4000BC44F22F0712 /* RetryQueue.cpp in Sources */, - 721ABF1FCB1E91E0D979C9EE /* RFC2253.cpp in Sources */, - D5B136ECAE08DC357CBB0FC1 /* Router.ice in Sources */, - 0920F0B8C7B88597FBD511A0 /* RouterF.ice in Sources */, - 086044B8C7CD0025AC4D03D5 /* RouterInfo.cpp in Sources */, - 0FBBFD2A689370DD3A659CB4 /* SecureTransportCertificateI.cpp in Sources */, - D19EE30CA81B28E902F68A75 /* SecureTransportEngine.cpp in Sources */, - 6D66F60AD807A0D621B4FCDA /* SecureTransportPluginI.cpp in Sources */, - 6E3FD5DBDB9B448F1EDA89D7 /* SecureTransportTransceiverI.cpp in Sources */, - D54DD89128401A9E190A2CC4 /* SecureTransportUtil.cpp in Sources */, - 590B30F38A2DFC0CAEE33014 /* Selector.cpp in Sources */, - 681283AB3F4D3C57BA2DAD4E /* ServantLocator.cpp in Sources */, - 7B157DCB3C603A7EDAF35E77 /* ServantLocatorF.cpp in Sources */, - 308BEFAA1E891A3CD98EC312 /* ServantManager.cpp in Sources */, - 16C3FFA9C9C70E9616892007 /* Service.cpp in Sources */, - 79E24AF1F29BCC8EB16F5797 /* SHA1.cpp in Sources */, - 64FB14BBAB1B754BA393BF06 /* Shared.cpp in Sources */, - 63C4D368D4E7394F8C269507 /* SlicedData.cpp in Sources */, - 5FB0C48B0BB085684D1D05D6 /* SSLEngine.cpp in Sources */, - F7BCEDD8F080F78BF0C96B6F /* StreamSocket.cpp in Sources */, - 12E0C4C963DF5E2A484ED2B9 /* StringConverter.cpp in Sources */, - F560F6F9B086723C991AAF10 /* StringConverterPlugin.cpp in Sources */, - AAC4E4F6E9E71BB058B4ABF5 /* StringUtil.cpp in Sources */, - E1A31D3A169D4200F2F3F07A /* SysLoggerI.cpp in Sources */, - 0172BC3C5CA19454AA9B50D8 /* SystemdJournalI.cpp in Sources */, - AC45AA1D12ED92644FDFFE25 /* TcpAcceptor.cpp in Sources */, - 4C3E68F02B2C9BD2C28A4D7F /* TcpConnector.cpp in Sources */, - 1DB5F39372C7C1710966126C /* TcpEndpointI.cpp in Sources */, - F1E936862D17AF9C6D2B44D7 /* TcpTransceiver.cpp in Sources */, - C6B62EB8CD89E069E59ED384 /* Thread.cpp in Sources */, - FC9545FF8C73189660C16820 /* ThreadException.cpp in Sources */, - 498FC7DC4E527F8D28C5B260 /* ThreadPool.cpp in Sources */, - 8D780C8CBB06009CA2D3F5C7 /* Time.cpp in Sources */, - F9E6A31066990817284C9D29 /* Timer.cpp in Sources */, - CAA05AA07F9F217B0FD37667 /* TraceLevels.cpp in Sources */, - 3EB594D7B8B6AC35A80F6A4D /* TraceUtil.cpp in Sources */, - 4EC88C92AA0FC0A517F3C9FA /* Transceiver.cpp in Sources */, - 8FDB877BA52CA228C6CE9D88 /* TrustManager.cpp in Sources */, - E810AC28FA6CDF71929F2137 /* UdpConnector.cpp in Sources */, - 79503EB61471FE7225C2CD32 /* UdpEndpointI.cpp in Sources */, - 0E40C8BD89089A3DD6B11378 /* UdpTransceiver.cpp in Sources */, - BAE5D97C28D6B650ED4D4706 /* Util.cpp in Sources */, - 58F654A06BB0AEB3759FA754 /* UtilException.cpp in Sources */, - 4F4F9325271124005C734F42 /* UUID.cpp in Sources */, - CB3C7EE6E6D99CCCC6D9E51E /* Value.cpp in Sources */, - BA9A241562A265F29B588468 /* ValueFactory.cpp in Sources */, - BC7E4DBA7D73110E5CA447BA /* ValueFactoryManagerI.cpp in Sources */, - BCAD5735C893A46116E6A080 /* Version.ice in Sources */, - 7CEE74EF0FFA0AF462DDC54C /* WSAcceptor.cpp in Sources */, - 87072B81D09CA7998317AC57 /* WSConnector.cpp in Sources */, - 6897437304C4DFDB71F0B384 /* WSEndpoint.cpp in Sources */, - 89ECDC747A165854E1A4F971 /* WSTransceiver.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 719DA637A24B37A1CE54D834 /* Sources */ = { + 67155914C03ABD8C613F680E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2B1DFFB2FE624C8BA6D79DB0 /* AllTests.swift in Sources */, - BFB497D499A0397F7FDD2369 /* Client.swift in Sources */, - 7D592EE68A7CD7F0B34884B7 /* Server.swift in Sources */, - 67958EBA770BFD3838254333 /* Test.ice in Sources */, - 97E15FB52037B16AC187CBD8 /* TestI.swift in Sources */, + 64BF91EED61A1D3FE6C90E9D /* AllTests.swift in Sources */, + F1C6CF21D2E9B6AF66BA47FA /* Client.swift in Sources */, + A2001B962A3E23AC8698461A /* Server.swift in Sources */, + 6E00E1750B687743D25FC5A3 /* Test.ice in Sources */, + 61116BF9D1C69E856E850780 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7433C652AEC8941A21B9B39B /* Sources */ = { + 69DDECD27807D9D00780E084 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 44F660CF3E288CADA03C9E75 /* AllTests.swift in Sources */, - A6E9DDCB266F59F01E1D3E2A /* Client.swift in Sources */, - B966483371606869BB002249 /* Collocated.swift in Sources */, - A0BBE2FA8F876D16C2A73EB2 /* Forward.ice in Sources */, - 10202B13383E9F4B8247203E /* Server.swift in Sources */, - 7AE9BBD2B5985BA1C9A8A9DE /* Test.ice in Sources */, - 60BB3AE8CDE506001E498270 /* TestI.swift in Sources */, + 2B305AC06256E79C862653EF /* AllTests.swift in Sources */, + 83ADC83B0013D225A82582EA /* Client.swift in Sources */, + 07B52E45F10451703560A6DF /* Server.swift in Sources */, + 3B9BA3DCBFD517ACF2F26189 /* Test.ice in Sources */, + 0D2EBAE3BEC12140C8FFEAED /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 754369F2E5DE796468C3C840 /* Sources */ = { + 69FA2E241CE59E9C3369F708 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9069580CEF0C50BC0D548024 /* Client.swift in Sources */, - A0CC746B46CF2A1808F7694B /* Test.ice in Sources */, + E437D41C66B9C6EC28D6503A /* AllTests.swift in Sources */, + 488364CA860E4460F00E1783 /* Client.swift in Sources */, + 11704346304A31C19690E230 /* Collocated.swift in Sources */, + 9ACA67AB49660B8296EA466C /* Server.swift in Sources */, + 1A60D6921AA577F7F0C230B1 /* Test.ice in Sources */, + F0CEA2E719B332639087A122 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 77C324B2DDC186E954C3C4CD /* Sources */ = { + 6ABBD8B70A885D37B8A5E341 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 84D4C8F119C9EE1C09FD9884 /* AllTests.swift in Sources */, - 9E8DD612EA94C6AF073D2BE3 /* Client.swift in Sources */, - 1E143F0DD1082A6A97CF4F78 /* Server.swift in Sources */, - 3FD9D1D3C10723136813DBC7 /* Test.ice in Sources */, - D71B01B9823A114BA16DC5C2 /* TestI.swift in Sources */, + 6E654F0A8EC84E6037DE27D9 /* Client.swift in Sources */, + 6C398D7D5C1EDCC142FD4BC6 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 792BDCA9FBE22AB30651FA77 /* Sources */ = { + 716E3F78488DF0AFCCE91031 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CF9EC652EE21A343A2685988 /* Client.swift in Sources */, + C076AA6FB3BE0CEFA46D3006 /* AllTests.swift in Sources */, + 9815DDD9489CEB32587F6D06 /* Client.swift in Sources */, + 31E4CE81617D1D57DB5855DA /* ClientPrivate.ice in Sources */, + 61B43B09235BB754FAB8DDD6 /* Server.swift in Sources */, + FC789C6064EEFAC62846CF10 /* ServerPrivate.ice in Sources */, + 3E3FF2E3D9C5CA825A70EEC5 /* Test.ice in Sources */, + A23591B0BE17C73DBFFE3B05 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7C0AC4525A575C6705EF7727 /* Sources */ = { + 726C32E70C36A5B300698C1D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DA3CB710A71685FEC7F899BD /* AllTests.swift in Sources */, - 0479A525C9005DE348CDCAC7 /* Client.swift in Sources */, - 538B2C4025C32BF487869AE1 /* Server.swift in Sources */, - A1981A764085A99EEC5E4B4B /* Test.ice in Sources */, - 2113DB3454929A04F837BAD2 /* TestI.swift in Sources */, + 44D90D302B2EEC55F9628897 /* AllTests.swift in Sources */, + 621C5B6E7657FB86E6B7B51F /* Client.swift in Sources */, + C9842BC97C2C0889E4A153F3 /* Server.swift in Sources */, + 2D292BDD0A9A1E24479E4AC9 /* Test.ice in Sources */, + 11CB6E15E76A8A28DA82A0A0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8080F840DC63835F3A414E77 /* Sources */ = { + 78763EFE4244AF2640CEF60D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B2645C7AC36F03C6118E59E0 /* Admin.ice in Sources */, - CB7FCDA8BBA9538914A9D6B5 /* Descriptor.ice in Sources */, - 035B3023FCAC87E5D59B95B7 /* Exception.ice in Sources */, - FF7889ABF8FAE68C77657C16 /* FileParser.ice in Sources */, - 0DDAE46D5AD5AFABB7E57CF4 /* Registry.ice in Sources */, - 2634FE2D98EAED5260B52D13 /* Session.ice in Sources */, - 65A8AF2CF8EE9372DA44FE37 /* UserAccountMapper.ice in Sources */, + 6CB7CC4363D824D38DBB75BA /* AllTests.swift in Sources */, + A5E7463E93E51698C4FA62FC /* Client.swift in Sources */, + E7F0C5863C240F0C61C792D5 /* Server.swift in Sources */, + 94DD6CBBE02737D9EFFEC285 /* Test.ice in Sources */, + 298BCCC75141BF72F190CE7E /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8139460A05987B21367408BF /* Sources */ = { + 78C53CA1FF99A4EBF97916C9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 76DF8DADFFAA355F53083DCB /* ServerAMD.swift in Sources */, - F4524A3A925EA566BCDC4B69 /* TestAMD.ice in Sources */, - 6A3DC36E88854D99A7DF1CCA /* TestAMDI.swift in Sources */, + 039778551EDBA4E26DED4F50 /* AllTests.swift in Sources */, + 335624C3ECBAF9AB3A04F8D9 /* Client.swift in Sources */, + 00E6D2BCDB624F2D111697FC /* Server.swift in Sources */, + 42B377EB3735683014AB234B /* Test.ice in Sources */, + 566DF77C914EC3872FB39951 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8184C195194F6FB5999C1A34 /* Sources */ = { + 794CC756BC61DA86436DF30D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8F5D7506EF6BCB3D883E0303 /* IceStorm.ice in Sources */, - D073DA318597A838C099688F /* Metrics.ice in Sources */, + AFDB4215D50B3770598EA91C /* Clash.ice in Sources */, + 217623D13A3358D164F38F80 /* Client.swift in Sources */, + A8EC75556A8EFAD34C9C4AAF /* Key.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 81D0BB56AF1F3B4577276BE8 /* Sources */ = { + 7CA59DD48A5F2DD2F1203DA0 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D6F5990B7C76C78341F87B52 /* AllTests.swift in Sources */, - F08C001ECA218C73A5E4B48C /* Client.swift in Sources */, - 1551FC173CF39E02CDA0795A /* Server.swift in Sources */, - 63C6AC701FD2F02A5B60DFD8 /* Test.ice in Sources */, - 0C93CE252AE54609BE184AC6 /* TestI.swift in Sources */, + 51668FC30C14F66919C8B381 /* AllTests.swift in Sources */, + 6FD7A841F37161AE926047D4 /* Client.swift in Sources */, + 3E98E39692157C4AC1F9B666 /* Server.swift in Sources */, + AC8FA20A8E9A3591E503A3EA /* Test.ice in Sources */, + BC4A965F00389AFA1C4EC94E /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 837412A9BCB1C7BC61B63653 /* Sources */ = { + 7EDB299C07B10EFAD2A9D9EE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7A9DB38700D4C6ECE4AE53F8 /* ServerAMD.swift in Sources */, - 32F457506BE4112346FC25C2 /* TestAMD.ice in Sources */, - 15306E705C2B126FDFB5E91D /* TestAMDI.swift in Sources */, + FB826A2836E1BBE93F404820 /* AllTests.swift in Sources */, + 305A0C86472070B1AE564313 /* Client.swift in Sources */, + 815413C11DAC970EC4F0FEED /* Collocated.swift in Sources */, + EF8B25A4769EC04362C4D559 /* Forward.ice in Sources */, + C6F35C40C7CAD0C3F77FD4D2 /* Server.swift in Sources */, + B97CD3BF18905C818A868F12 /* Test.ice in Sources */, + F633A9D43A323F931BCC899B /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 89DC88D3768C291C5BE46F0D /* Sources */ = { + 82D6113098F570AFCEDF2A16 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A2E3516A08D310BECD05E875 /* ServerAMD.swift in Sources */, - A0149DC58918685B9C5F2976 /* TestAMD.ice in Sources */, - 4E79D345C7D2A366F7D1715F /* TestAMDI.swift in Sources */, + F7E9924F2C30B7BDCE908009 /* IceDiscovery.ice in Sources */, + 82C8426F92304576DE536C49 /* LocatorI.cpp in Sources */, + A4DFD3718AF68E0E47FA9D41 /* LookupI.cpp in Sources */, + 12C757825C2E077AF245A57A /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8B45AD9152CA20EE9FB12029 /* Sources */ = { + 88FBE0C1A68DEEAB8105F856 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7918C758E9FC4D94FAF9C75D /* AllTests.swift in Sources */, - 420559557CDAA1A07D378EA3 /* Client.swift in Sources */, - 48D6D2B0D802B078BA554DA9 /* Collocated.swift in Sources */, - 68BE71A6D1A2000E1CCF037E /* Server.swift in Sources */, - 21F24DFA62F1079EB03EF7A9 /* Test.ice in Sources */, - AAE75D6A127A5DDAFD75A272 /* TestI.swift in Sources */, + E7A19DC3180379FAE502829C /* AllTests.swift in Sources */, + F2B44C5B98EB645ABE40C16A /* Client.swift in Sources */, + EEA5EE91CC45E766332B8FFD /* Server.swift in Sources */, + F417584E7188CC80E8E277D6 /* Test.ice in Sources */, + 1A60CBD5A72816C85C3E687E /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 96447815E9D4871B57962CBE /* Sources */ = { + 8EE6710B66BF776E86C6ABE5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AD358F37A777336A39C8B99A /* ServerAMD.swift in Sources */, - 3EF0398FCB4591E2CDEA2FFB /* TestAMD.ice in Sources */, - D48F8AD05FF8E64BCBF7D3D1 /* TestAMDI.swift in Sources */, + 60E640C9B38DD0C3E07683BD /* AllTests.swift in Sources */, + A056BB0F75DC449BC21A868C /* Client.swift in Sources */, + A9790114286E03FDBEFEFF14 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 99007BBB653F6A4522FC1EB6 /* Sources */ = { + 8F2AC178E7873170615856A8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F4113CB3B13A1BE5DC7388F5 /* AllTests.swift in Sources */, - 191F66CD348B3CBE7EE7FC2A /* Client.swift in Sources */, - 8B6F0C3D7A777167E4FD4924 /* Server.swift in Sources */, - 81047873254ADAD8E58FEEC2 /* Test.ice in Sources */, - EC95DFA9D4A946EA82A21A69 /* TestI.swift in Sources */, + D3546FE15CF03316B5A91396 /* AllTests.swift in Sources */, + 2AC395DB52A3D7F577FE5113 /* Client.swift in Sources */, + 14B743A7A9FEB39E1FCFD3F0 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 99348C10095E9E5F3C0F5F56 /* Sources */ = { + 908875F30A31F98DBEEC6853 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BF563871B8C1710CB7C10DDE /* AllTests.swift in Sources */, - C82E8BEDDC20EC57EE94CCAB /* Client.swift in Sources */, - 067B6E6FA2EA192CDFCF9036 /* Server.swift in Sources */, - 9B62AC540356B46A318ABAFB /* Test.ice in Sources */, - A8E6141724C576A3EB73695C /* TestI.swift in Sources */, + DB7366CED937744025502032 /* Clash.ice in Sources */, + D3743F079C5AE339931CA1FD /* Client.swift in Sources */, + CDD67A8982DBF28CA51F1F31 /* Key.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 997D31D827F6C4B852418113 /* Sources */ = { + 928DFF172E1FC782D4A3C492 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 747A63095FC03440BD795862 /* ServerAMD.swift in Sources */, - FB6A27A456FA8598F97A504C /* ServerPrivateAMD.ice in Sources */, - BAF3246BCB036F3FDD4BEC82 /* TestAMD.ice in Sources */, - D7401A165877E9EA69A0165F /* TestAMDI.swift in Sources */, + 86F21F920A338C9B8E4C58D1 /* AllTests.swift in Sources */, + A218647C4ED5BCB5DEF2C856 /* Client.swift in Sources */, + EBDC44BBA0C2C638C4FDE665 /* Server.swift in Sources */, + 7AD8DD9EBBA848966B90E8CD /* Test.ice in Sources */, + CB095ABCB85EA416200469FC /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9A2EF05C4152549F1757F5FD /* Sources */ = { + 95A3D802A190A788C095FA55 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 04781CF1594EB616E0A82C3E /* ServerAMD.swift in Sources */, - 07D2C592286FA9396D82CC5B /* TestAMD.ice in Sources */, - B2B047120C9B97524D190BBB /* TestAMDI.swift in Sources */, + B2C6D001A53B337E96DAAF99 /* AppDelegate.swift in Sources */, + 9EF395D8FC087E745CC0E2B3 /* Assets.xcassets in Sources */, + 3A37F816C90ED30F4101C30B /* Controller.ice in Sources */, + 85BC01ACB28163CA71D951C6 /* ControllerI.swift in Sources */, + 0D5BB545FDA707CA2E9ECFB7 /* LaunchScreen.storyboard in Sources */, + C3FC196932AD70FF912918C2 /* Main.storyboard in Sources */, + 0A93FCD2AECB8E9CF8D55A29 /* ViewController.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9A7C513770B097DD6F2762A8 /* Sources */ = { + 97D68F07E18DC5E0A9FE3EDA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CD646C6A94062A9D0A397244 /* AllTests.swift in Sources */, - 73D741CD871F61247D2012D1 /* Client.swift in Sources */, - 9B9542CCAFF468634E1B1672 /* Collocated.swift in Sources */, - C3D21BDC151A7C398E3CB974 /* Server.swift in Sources */, - 29BA36D3727D013D7AE3B759 /* Test.ice in Sources */, - A1F4ECEC16BD53589AC95BC7 /* TestI.swift in Sources */, + ECDCC511C2F7E5E99513C31F /* Admin.ice in Sources */, + C171DF4EB004F8FAD5E6EA69 /* Descriptor.ice in Sources */, + CB21D6E2CFDC1DA5DFA706DB /* Exception.ice in Sources */, + 66986D65297867F370C71246 /* FileParser.ice in Sources */, + 584F1B182620F22BC9FE2CAB /* Registry.ice in Sources */, + ADBBFA59FAF09F9C1DE28C06 /* Session.ice in Sources */, + 51EF59C8C4309B80A6A73346 /* UserAccountMapper.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9DD41E3742F99BA20DEB4AF8 /* Sources */ = { + 98DA39F4403BBC2A614A5643 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7B311962159224E81FF3F6C9 /* Clash.ice in Sources */, - BA90DA40D414B0DB97A49CB5 /* Client.swift in Sources */, - 9541617B04428080C862F221 /* Key.ice in Sources */, + 7246969EF7456B34FA3D17CE /* BlobjectFacade.mm in Sources */, + E6DFEA695019BC4C971BF870 /* Communicator.mm in Sources */, + 596F5178CCEC404C6E0D465B /* Connection.mm in Sources */, + C3AEC7DB466BF3A156CE31ED /* Convert.mm in Sources */, + F75002F0E849D90CB8567BA2 /* Endpoint.mm in Sources */, + 1944F69679AB587CED597FF9 /* Exception.mm in Sources */, + A06F28264FE9AC00BF0C0030 /* IceUtil.mm in Sources */, + EBC02991D3AAB52FE34867D2 /* ImplicitContext.mm in Sources */, + 1F7E7557DB78D31D8B693A76 /* LocalObject.mm in Sources */, + 81DF90B58589897B66CE326E /* Logger.mm in Sources */, + DF00731D06ECAE6719AD64C0 /* ObjectAdapter.mm in Sources */, + 89E06C0162972C2C91BCDE55 /* ObjectPrx.mm in Sources */, + 43300A34CBEBFFA523449B96 /* Process.mm in Sources */, + FA7EA0C86DB3A74ED62C29DC /* Properties.mm in Sources */, + 015C3B4F1DF3714139598CF7 /* PropertiesAdmin.mm in Sources */, + C6F569F44F1FFFF5EB05547E /* TraceUtil.mm in Sources */, + 2A1B7F74C8C6C6059794135D /* UnsupportedAdminFacet.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9E882D250C2052D1241A3477 /* Sources */ = { + 9956BCFAA677883DD752707A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A274B3590B5C38EA5AD85E9A /* AppDelegate.swift in Sources */, - 9D6A459545335A93DE35A937 /* Assets.xcassets in Sources */, - 471A21D3CAA2EC4182B2D2DA /* Controller.ice in Sources */, - FEF7D62704721832132771C2 /* ControllerI.swift in Sources */, - 73F09AB536E76818864ACC32 /* LaunchScreen.storyboard in Sources */, - B36A489853F82B2E57647BD7 /* Main.storyboard in Sources */, - BFD6E1E93E91C48E46BB3353 /* ViewController.swift in Sources */, + C7DBEF7E416349E035A919C5 /* IceDiscovery.ice in Sources */, + 3D8DD8762C2BA500E5DFE5FE /* LocatorI.cpp in Sources */, + A78E5DDC9FF22C15DF996CEB /* LookupI.cpp in Sources */, + 0F2B48183718EAD49608D11C /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9EE920B777162881752C3D96 /* Sources */ = { + 9A8DF622A084ABC6AD5CEB09 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E8BE4DFEE22FD1758897D7FE /* Client.swift in Sources */, + 92C3862CB23C0C52E5E708BA /* AllTests.swift in Sources */, + 21CDF2E5F6BCFB580B4EB4C1 /* Client.swift in Sources */, + 897F454A2E54D6B9ED1CC39D /* Collocated.swift in Sources */, + 5737476E80EBB169B518968C /* ServantLocatorI.swift in Sources */, + 159D1DCC76ECE3CF996152BB /* Server.swift in Sources */, + 36CF43C7392987B46253C456 /* Test.ice in Sources */, + 77D9F4551EEEA292FFA03454 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9F4D72E50D3BEA7C97557374 /* Sources */ = { + 9BAD66AD0EC25C8BDC52C970 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1846C4B6AA0740E353A22F81 /* ServerAMD.swift in Sources */, - 53DE8F7FBACDBB37D1DA9101 /* TestAMD.ice in Sources */, - 20CCF9BE9008173E34CA8E6F /* TestAMDI.swift in Sources */, + 43E0EC14EBDBB1DE22D4CD5E /* ServerAMD.swift in Sources */, + AA726D1400A560CF97752832 /* TestAMD.ice in Sources */, + E224BC34CEE9B97DA6446042 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9F9350C956E6764F2417D41E /* Sources */ = { + 9BC3F6F228B2B8CC44C9A008 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 41C87D63EE0B4F7119F1AFED /* TestCommon.swift in Sources */, + 3EED6409FDB6D53AA939D95D /* AllTests.swift in Sources */, + 6895E4342971BB7DFF143A19 /* Client.swift in Sources */, + 5669D7A6BA9E41C504A360F3 /* Server.swift in Sources */, + A0134E2C57ED7ACA82FAE414 /* Test.ice in Sources */, + 54A1EF08C8A87DD1CDB2505D /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A5F8B288ACE2AA4F07185457 /* Sources */ = { + 9DD73DF35AB14838BEFD510B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D47E7EB5C8A2F63A302DF2AA /* BlobjectFacade.mm in Sources */, - 8CD7F5964EAE861660D6977A /* Communicator.mm in Sources */, - 387A307046DAE74D4B359D90 /* Connection.mm in Sources */, - EB31B1FBCB271396431126B1 /* Convert.mm in Sources */, - 7451CFE0B0DDF0536B287153 /* Endpoint.mm in Sources */, - E3CDD467EEBA8EAC5394CE7A /* Exception.mm in Sources */, - B2AD8E5819AF0F52E798EF1B /* IceUtil.mm in Sources */, - CB93D94A72ACB6460406106A /* ImplicitContext.mm in Sources */, - 553233BCC9A149A6061D671D /* LocalObject.mm in Sources */, - D0918E43C63B007F8787034D /* Logger.mm in Sources */, - 458EF9B014A0C7657AB8BD60 /* ObjectAdapter.mm in Sources */, - 9470D0DF053DE7012BF91D7D /* ObjectPrx.mm in Sources */, - 6DA0B9BB176F6BCCB270A5A4 /* Process.mm in Sources */, - 4E66421B983A52C43625EFF8 /* Properties.mm in Sources */, - C56F8DF28EE4E3EBBD329E91 /* PropertiesAdmin.mm in Sources */, - 583A5A675D444BA0B139780A /* TraceUtil.mm in Sources */, - C0F2252DBC9DF62F01802D0C /* UnsupportedAdminFacet.mm in Sources */, + 7D4BFF385409F41DDAA66BC3 /* AllTests.swift in Sources */, + ABA1232826877F82079AA611 /* Client.swift in Sources */, + 837E9D7B78BE00674EF13D4F /* ClientPrivate.ice in Sources */, + 138633C2D72C15353E1FAEE2 /* Server.swift in Sources */, + 58B68AE606BA3A81348B7585 /* ServerPrivate.ice in Sources */, + 1917AB2AB67D05D8EE504CE2 /* Test.ice in Sources */, + E8ECF125C99587AA89A85E87 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A6E11EF3B3E17130A401AA5F /* Sources */ = { + 9ECC6D430B808A89B3854A6B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 04BF5B027FC2EC31DFF1C3B4 /* AllTests.swift in Sources */, - 0774C7F1D02D5438905530E6 /* Client.swift in Sources */, - C53C9AD418AB700BC9B5B2CF /* Server.swift in Sources */, - 21A64A28833A269C102EAE91 /* Test.ice in Sources */, - AD62AF11D8BBC2CACC704697 /* TestI.swift in Sources */, + 854D6208F3303E72908EB06F /* IceStorm.ice in Sources */, + 4E2FA101FE0D14BB24E244BB /* Metrics.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AC5BC499C01824104D8ED5F2 /* Sources */ = { + 9FEC8E70B5CF85980CBBC182 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F3AEBFD1C3D3CE06735E9D64 /* AllTests.swift in Sources */, - FC3F53F10FE9848D4097C765 /* BatchOneways.swift in Sources */, - DE4F221E7B43ECB85073A654 /* BatchOnewaysAMI.swift in Sources */, - 9C869A7A50B22DB555CC9004 /* Client.swift in Sources */, - 39E05A2E3433BFBB8D58681C /* Collocated.swift in Sources */, - 5DDF39A2B0E18D7BC0644CEF /* Oneways.swift in Sources */, - 95B55872D9D23F15BFB4A57B /* OnewaysAMI.swift in Sources */, - 1236014A00E4E01EB379A952 /* Server.swift in Sources */, - 82405BD150C77B92AE21D727 /* Test.ice in Sources */, - D8CCB30783ED0346C979E749 /* TestI.swift in Sources */, - 56FBF3A9AB42F50ABC6D9428 /* Twoways.swift in Sources */, - 1D0BF0BD29DB97D61C0675DA /* TwowaysAMI.swift in Sources */, + B3756370B221CD6396E20656 /* Metrics.ice in Sources */, + 0870B5ABB7A3D930328ED6C2 /* PermissionsVerifier.ice in Sources */, + DC55B4A0C94773A803F89A57 /* Router.ice in Sources */, + 0DA845ADE51AAB9852C20481 /* Session.ice in Sources */, + CF514BFCB5FD644FC13CE4D7 /* SSLInfo.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - ACB7C5609B10FAB2A178F1A0 /* Sources */ = { + A07809F6BA4FB2EBCDA57A0E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A824549EE2D79F19D9E96045 /* ServerAMD.swift in Sources */, - 3D040DD5FCF7504343A2EC3D /* ServerPrivateAMD.ice in Sources */, - 7257C43AB0E12E76E38DB6C2 /* TestAMD.ice in Sources */, - F5144F08CA8D806B2D8428D9 /* TestAMDI.swift in Sources */, + 06315EAE2E8DEC55B85105E2 /* AllTests.swift in Sources */, + 41459A4D16FAA88A013E3141 /* Client.swift in Sources */, + E816790986F5BE0A937C0475 /* Server.swift in Sources */, + C6C52B22BD7BC8E9DAFC8FAE /* Test.ice in Sources */, + E8655F3D94350A7F0C8A7E62 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AE8534E1C05D72CB06E30E66 /* Sources */ = { + A51674944759CDA437CD977D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 41A357398D70D93257339E8B /* AllTests.swift in Sources */, - D493480967AAEB71801A0D46 /* Client.swift in Sources */, - 7726D14089BB24F5E567F6B6 /* Server.swift in Sources */, - B94C97890E9A5D64D52DCAEE /* Test.ice in Sources */, - 0B9335BFAA4E14EB94810181 /* TestI.swift in Sources */, + B977C81B5074600C563DCB93 /* Client.swift in Sources */, + 4DA7EE74FC425C8FA4A0D33D /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B0C83D7E31A8D4A8EBF9E33B /* Sources */ = { + A660EB5F9FF6AEDB20390263 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1A0421740818EE069D0CBEC4 /* AllTests.swift in Sources */, - 56455B5C8BE6ECA559D703C8 /* Client.swift in Sources */, - 8116182CE642218EE0297F19 /* Server.swift in Sources */, - E3B6DDA346162ADE50B1864E /* Test.ice in Sources */, - 3739D48403F7B64A879F8FA2 /* TestI.swift in Sources */, + 1CB22725EF77D35C961DC5CF /* AllTests.swift in Sources */, + D2AC08B5E7D7F5DA267CF8FB /* Client.swift in Sources */, + 77DC371E43381EF16158F9EE /* Server.swift in Sources */, + A082D8514D02C406D845DFDE /* Test.ice in Sources */, + B4812044969EDC648CF8759C /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B2FD5E0DDD2D8BCA6C586831 /* Sources */ = { + A987F7B6BD8618AE688E4ADD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 8BBC231865D38CC433D929BF /* AllTests.swift in Sources */, - 8C3F661FBF62FDE58807D739 /* Client.swift in Sources */, - 487D841EE5B42671944AE28A /* ClientPrivate.ice in Sources */, - 80EC62E70535BB96C57F58F9 /* Server.swift in Sources */, - 7B6916A88A0A037EF164D18E /* ServerPrivate.ice in Sources */, - 3E3965C73F6867AEEA31C03E /* Test.ice in Sources */, - E63AF4D08B9EFB88EA47A758 /* TestI.swift in Sources */, + CEC32138BC33E2696F3143BA /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B3AA78E727CE5C7CE7840AB9 /* Sources */ = { + ACC172DFEF365F0F73B16F5D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BF44643792D19A3A6AF218FE /* AllTests.swift in Sources */, - B5FCC340B092B2D332433AA8 /* Client.swift in Sources */, - 58C83AB506FA69E086CBBC6A /* Server.swift in Sources */, - D7278E9D2A77063BE213C0E8 /* Test.ice in Sources */, - 4B3D0D86BFA72510F02B26BB /* TestI.swift in Sources */, + A9A264A27202F290824CB808 /* AllTests.swift in Sources */, + B319E2588A5E524131DC1E57 /* Client.swift in Sources */, + 938AD770BF6739D032B7E255 /* ClientPrivate.ice in Sources */, + 6A1AD6198ED355D783C4ABA3 /* Server.swift in Sources */, + 4F80D4F7344E223FCD8F18A7 /* ServerPrivate.ice in Sources */, + 47E2D5917DCF925D43AA13E5 /* Test.ice in Sources */, + 3824528B30BE3C7E4502A4CD /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B7F74FA0EB42B9F35DD6B480 /* Sources */ = { + ACF2443A3629DCACA621F6AC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5ECCA1C3D4BF2684FA6E05D5 /* AllTests.swift in Sources */, - D918497C4CFF0B3FE6C8E9FF /* Client.swift in Sources */, - AD4272746FF4D38E8495E2E6 /* Test.ice in Sources */, + CBC9DC2609577E94AC193165 /* AllTests.swift in Sources */, + 0EDDFFAEC77ECB392806115F /* Client.swift in Sources */, + 3797173835AB3B517EAECC5D /* Server.swift in Sources */, + 8807378728C319C1F71FCF0F /* Test.ice in Sources */, + B916A32845E887D26A90BB8E /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BBDAE5B3B61B591AAD19589D /* Sources */ = { + ADC4D491A20D62BF0856C4E5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F628A90221011F3D8A44697E /* Acceptor.cpp in Sources */, - D9A262313E99DF4F916ACEAB /* AcceptorI.cpp in Sources */, - 876BD275061F47E61178094E /* ACM.cpp in Sources */, - A9CF883E427C334ADD258E16 /* ArgVector.cpp in Sources */, - 50EB15A0D6DF626B6EE6F2B1 /* Base64.cpp in Sources */, - E0171B0F8F9AD0DB8A46CE03 /* BatchRequestQueue.cpp in Sources */, - 15F7DCC09D0084F0822E576C /* Buffer.cpp in Sources */, - A2E672B4B4434441205D8769 /* BuiltinSequences.ice in Sources */, - 951B9BEDF850E9E38C146377 /* CertificateI.cpp in Sources */, - 1C12F304FB3287DB86E42E86 /* CollocatedRequestHandler.cpp in Sources */, - F7AB684C3F174249370B021B /* Communicator.cpp in Sources */, - B2F8335DA50D91649AD4A803 /* CommunicatorF.cpp in Sources */, - 6CC623094D0967F02F04F651 /* CommunicatorI.cpp in Sources */, - 75069E7FC7D00B2A003CD5BD /* Cond.cpp in Sources */, - 7CB5BE628EB7893853BA789E /* Connection.cpp in Sources */, - E9C9012DDE95D30E68B720FE /* ConnectionF.cpp in Sources */, - 4D60D0B72D3DD34473145C7D /* ConnectionFactory.cpp in Sources */, - 6EF5810F0D6DB1CD94969C3A /* ConnectionI.cpp in Sources */, - 623015A7A85F5AD04050E7B2 /* ConnectionInfo.cpp in Sources */, - A277D08D79C49F784F3E6105 /* ConnectionInfo.cpp in Sources */, - 16A39D292B555A395D8043FA /* ConnectionInfoF.cpp in Sources */, - 7EFB948C8F71C0940154D850 /* ConnectionRequestHandler.cpp in Sources */, - 6B2E2425DCEABA5C1EA2DBAE /* Connector.cpp in Sources */, - 37969434CF573FE2E107DC30 /* Connector.mm in Sources */, - 0C59DF32C4B266890E39489B /* ConnectorI.cpp in Sources */, - A62F8477FA3CBC17475FB322 /* ConnectRequestHandler.cpp in Sources */, - 4D11B7270E733B4273E0FA5D /* ConsoleUtil.cpp in Sources */, - F0B987226D3972F934B8BDE0 /* Context.ice in Sources */, - D359A277456C1432D3D2713D /* CountDownLatch.cpp in Sources */, - 142C7687076AAC2C8C72C5DD /* CtrlCHandler.cpp in Sources */, - F2DC38D190A55A61548531BB /* Current.cpp in Sources */, - 78062257E13BE39337E96538 /* DefaultsAndOverrides.cpp in Sources */, - 94D96E1E93C00C303E419E88 /* DispatchInterceptor.cpp in Sources */, - E97CEF9CD19A46E9C4CE76EF /* DynamicLibrary.cpp in Sources */, - 3FD8F288D9C3AED2649CA04F /* Endpoint.cpp in Sources */, - 2755D9B24F7C3B1826BCB535 /* EndpointF.cpp in Sources */, - 45C087E01EE697577A42E469 /* EndpointFactory.cpp in Sources */, - 233CB26F06DE77C312AA14F2 /* EndpointFactoryManager.cpp in Sources */, - A815DDA39526FA93C2851FB5 /* EndpointI.cpp in Sources */, - E8B76651846F221ED65BED57 /* EndpointI.cpp in Sources */, - 00B613DAA9C2BF3F770470F4 /* EndpointI.mm in Sources */, - 00697F0CF3B2AF39EE080EF7 /* EndpointInfo.cpp in Sources */, - 8C3C0F4EF3C2B59801C65447 /* EndpointInfo.cpp in Sources */, - 260604829BC6EF368BC06F2D /* EndpointTypes.ice in Sources */, - C26282DA482B3A282EC20CAB /* EventHandler.cpp in Sources */, - 857674BAC5C3DFB88B3B4ABD /* Exception.cpp in Sources */, - 56B312059BBB28373C60ECE7 /* FactoryTable.cpp in Sources */, - C9A2AE33C23EEFB2099F749E /* FactoryTableInit.cpp in Sources */, - 120C3846DF526D2CC01C6BFB /* FileUtil.cpp in Sources */, - 2FE5B3C36CA225765D9553A0 /* HttpParser.cpp in Sources */, - 17C3F67246D0DA4164CDF041 /* IconvStringConverter.cpp in Sources */, - F5A588A2CB3E1874486FE65E /* Identity.ice in Sources */, - 59139E6E230A3382F1E3715C /* ImplicitContext.cpp in Sources */, - D6D05F5C607B332E0FE623C2 /* ImplicitContextF.cpp in Sources */, - 834246E0E89FF486CAC79A89 /* ImplicitContextI.cpp in Sources */, - EA81884A036C1B83E353172D /* Incoming.cpp in Sources */, - 273746EEACA57E9DB33DA124 /* IncomingAsync.cpp in Sources */, - 4E12B6B1E647A3BBD18FA3B6 /* Initialize.cpp in Sources */, - 2967E3FB8D599E3DACF4AB60 /* InputStream.cpp in Sources */, - 84226DD2E2F66765A7D0143C /* InputUtil.cpp in Sources */, - C1AEE0EAC78A383EC6D234B0 /* Instance.cpp in Sources */, - C5F9D85C25B7333CE3ED978A /* Instance.cpp in Sources */, - 4A1722F2B254F5A7C51DC5C7 /* Instrumentation.cpp in Sources */, - AD542D5B6992526391AD8D25 /* InstrumentationF.cpp in Sources */, - 9E67E9EE49147CF058353C43 /* InstrumentationI.cpp in Sources */, - C834907D047E9AA3E4540029 /* IPEndpointI.cpp in Sources */, - 036B7294EF6C85869D4D99D0 /* LocalException.cpp in Sources */, - A357FB84B5FAC4E07572BCE9 /* LocalObject.cpp in Sources */, - FE391B7557F38AC35E039414 /* Locator.ice in Sources */, - 6EB9599AA1A7328CB5EEC889 /* LocatorF.ice in Sources */, - B342CA44502DE774A8E79975 /* LocatorInfo.cpp in Sources */, - 97134D0F45385D17BB4AD8CE /* Logger.cpp in Sources */, - 9FBEC4A643CE38595A7CB226 /* LoggerAdminI.cpp in Sources */, - 39BFDC307D3D2D55B1FDFB50 /* LoggerF.cpp in Sources */, - 52C90CA2DDEC67D745293E34 /* LoggerI.cpp in Sources */, - 53CA31576F7B085963D38037 /* LoggerUtil.cpp in Sources */, - 03AE2B78C6E447D09D6B1B9E /* Metrics.ice in Sources */, - F449A7BB4CF9C07F8749F812 /* MetricsAdminI.cpp in Sources */, - CBF0EEA7678D3359CAE68078 /* MetricsObserverI.cpp in Sources */, - AFCB1192BA3F48442D920C1C /* MutexProtocol.cpp in Sources */, - 4E5F2B5F0189D7BFB17FD725 /* Network.cpp in Sources */, - C6DF378AF6E6653008466E9C /* NetworkProxy.cpp in Sources */, - 435A0B3E906B0A91CC244021 /* Notifications.mm in Sources */, - 4B333E3B2B1960B959792FF8 /* Object.cpp in Sources */, - 836ED348F8A9705B34D613FA /* ObjectAdapter.cpp in Sources */, - F623630184815B0DE4997E35 /* ObjectAdapterF.cpp in Sources */, - C1EF67608B9D20245C3B4903 /* ObjectAdapterFactory.cpp in Sources */, - E5CBEC389C711B5308FF9381 /* ObjectAdapterI.cpp in Sources */, - 9948A17DD52514E7C2F0074B /* ObserverHelper.cpp in Sources */, - C309FA89F6823F3F6618FDA5 /* OpaqueEndpointI.cpp in Sources */, - 76FEC9B75CEC89A42B71C16A /* OperationMode.ice in Sources */, - 4AD65AA33D07C3122665572B /* Options.cpp in Sources */, - 8E54196DDD5049D8DAC54C1E /* OSLogLoggerI.cpp in Sources */, - 1AB0C9E8A36E7177EB9A0B18 /* OutgoingAsync.cpp in Sources */, - 05CD8A6BBC6A23919D9474CF /* OutputStream.cpp in Sources */, - AD17C0A7220054AF2343A0E5 /* OutputUtil.cpp in Sources */, - E8D67F1B923E3B3C5B2ED0EE /* Plugin.cpp in Sources */, - C6AFDA64C688FF06B9310908 /* PluginF.cpp in Sources */, - 1E53540A9D41DF7E0577619C /* PluginI.cpp in Sources */, - FFE50E379B96CC7FE138393C /* PluginManagerI.cpp in Sources */, - EA1EDFC25BB45BDD2E4ED129 /* Process.ice in Sources */, - 45D397710D514A934510642C /* Properties.cpp in Sources */, - B7F221C5248CAB086EB64C67 /* PropertiesAdmin.ice in Sources */, - 98D4C1B1369325C1133BBE98 /* PropertiesAdminI.cpp in Sources */, - 9D73435873964679C928BB13 /* PropertiesF.cpp in Sources */, - 8B6DB53E884B0623F78F9B96 /* PropertiesI.cpp in Sources */, - FEF1F5854B457272592D1ADC /* PropertyDict.ice in Sources */, - ED5787262CD1986FC4D09E77 /* PropertyNames.cpp in Sources */, - 363EBEE0E3EA26AC3E81669F /* Protocol.cpp in Sources */, - 1850762506CBCC3C99978655 /* ProtocolInstance.cpp in Sources */, - 245F0A9E8E40E18DCE5687C4 /* ProtocolPluginFacade.cpp in Sources */, - A9414CB4BCDB9E09B40E1249 /* Proxy.cpp in Sources */, - A2278BA50113911A136EDD47 /* ProxyFactory.cpp in Sources */, - 0072C42A6D23F148DF459251 /* Random.cpp in Sources */, - 7ADD4BB8DBFDDB60947DB5A1 /* RecMutex.cpp in Sources */, - 8905F8A712324754F451DFFF /* Reference.cpp in Sources */, - 3BA7B0B434E5E02B9D750C0A /* ReferenceFactory.cpp in Sources */, - DA8B7FCFA35AA56A3EFD271D /* RegisterPluginsInit.cpp in Sources */, - 9100D670BD0902AD4FBEDA79 /* RemoteLogger.ice in Sources */, - 7794C7FD958B1B638FA39434 /* RequestHandler.cpp in Sources */, - 9221FBCFB03BF7DB8E80316C /* RequestHandlerFactory.cpp in Sources */, - 038F68BDDAA7D82C87A4E358 /* RetryQueue.cpp in Sources */, - 43BEC394D6019C242A1965FD /* RFC2253.cpp in Sources */, - D06F6FD95F3B3DD60298A587 /* Router.ice in Sources */, - 2A15060058139663E7821C80 /* RouterF.ice in Sources */, - EDE9713BC451CE5E12CA1F8F /* RouterInfo.cpp in Sources */, - 84CC6162A6BBE3FC8B845E15 /* SecureTransportCertificateI.cpp in Sources */, - 18EB373F03969A5726EFB480 /* SecureTransportEngine.cpp in Sources */, - B31FF29C712A0585DA2B16A8 /* SecureTransportPluginI.cpp in Sources */, - CFE5F1C21970D5D8ECD4FC54 /* SecureTransportTransceiverI.cpp in Sources */, - F5D8C4461601E5387C59C544 /* SecureTransportUtil.cpp in Sources */, - 9991831C1643E2E62BA18219 /* Selector.cpp in Sources */, - 40700CF27FB897708C8E3FC9 /* ServantLocator.cpp in Sources */, - 287C4F650BFB6E84F2D89401 /* ServantLocatorF.cpp in Sources */, - 93C4965EBD4F44FAB183C5F4 /* ServantManager.cpp in Sources */, - 2591DF29610555BC8F376399 /* Service.cpp in Sources */, - 10980ECEFA4EE39659C106A3 /* SHA1.cpp in Sources */, - DA5FD412CA303435EC0BD6A8 /* Shared.cpp in Sources */, - CD50B206BDF7F3B5AAC0FEFA /* SlicedData.cpp in Sources */, - 0643622519CDC658F54DEA21 /* SSLEngine.cpp in Sources */, - A20E3E83764CBC9CC7D035C1 /* StreamAcceptor.cpp in Sources */, - 19DEAFA41AC58B52F3270072 /* StreamConnector.cpp in Sources */, - 55F6F002E5AD62ED4950F9D0 /* StreamEndpointI.cpp in Sources */, - BABB95F2BCAA9B4C835466C4 /* StreamSocket.cpp in Sources */, - 05BA88CFDB0A1B982F7DCBCA /* StreamTransceiver.cpp in Sources */, - C222CC7EE9494ECFC5EC8D6F /* StringConverter.cpp in Sources */, - 433753C318BA6309627F8436 /* StringConverterPlugin.cpp in Sources */, - AD82A51F863258B191EEB488 /* StringUtil.cpp in Sources */, - F253CC5000807172EC6C807B /* SysLoggerI.cpp in Sources */, - 3198230FECD6917F1E54E9A5 /* SystemdJournalI.cpp in Sources */, - D84966B3582B40ECC94EE434 /* Thread.cpp in Sources */, - 0A945DF4D48C7CF37CF3FE37 /* ThreadException.cpp in Sources */, - 1464A58CDA48D7EDC7455275 /* ThreadPool.cpp in Sources */, - 6EB55CA35B0042F8907ABB71 /* Time.cpp in Sources */, - DA777C2519E5B4091CF7C54C /* Timer.cpp in Sources */, - 6C9FA9D2501970F08B561AE9 /* TraceLevels.cpp in Sources */, - 21350A5903CD4A412B2D52EC /* TraceUtil.cpp in Sources */, - 58F819BF5E32F0301C276167 /* Transceiver.cpp in Sources */, - 64133ED7B6EDF761D206478F /* Transceiver.mm in Sources */, - 0BF831C6A17EE4C209FFB07D /* TrustManager.cpp in Sources */, - 34DACF0F45A29B2FABF70BD3 /* UdpConnector.cpp in Sources */, - F66F71C7ADF724DFA67D30B0 /* UdpEndpointI.cpp in Sources */, - 1137853C143EFCA34A542E73 /* UdpTransceiver.cpp in Sources */, - 440AA05E3A9604C6442EEA39 /* Util.cpp in Sources */, - D4D63EFCA9639B1347B119D2 /* UtilException.cpp in Sources */, - 71F4D472DBAEE211AC348305 /* UUID.cpp in Sources */, - 1CA9F9E21052C7E3766D8BD5 /* Value.cpp in Sources */, - EE19CE8B034CFA0F59078B90 /* ValueFactory.cpp in Sources */, - 7A7A4C7A80706237CFE714DD /* ValueFactoryManagerI.cpp in Sources */, - 86480249061BFEBB3EF8D4AA /* Version.ice in Sources */, - 8B18A9E9A12346C8ED49B6A9 /* WSAcceptor.cpp in Sources */, - 0018341987DE28CA1CA741D3 /* WSConnector.cpp in Sources */, - 379AFB2D0C62F742312A463B /* WSEndpoint.cpp in Sources */, - 1C9A0B565CB0C871EE3CABAE /* WSTransceiver.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - BF00BE8B9F09076ECFB79A05 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - D81AF7157AAAAD80CED907DF /* AllTests.swift in Sources */, - 42401834C114B2832139FF2E /* Client.swift in Sources */, - 7299858CC411A3BA51EA12CB /* Server.swift in Sources */, - 74629744424689F013519A6F /* Test.ice in Sources */, - 34A571D18E90FAE9D06B69EF /* TestI.swift in Sources */, + 2E760408E022B189EF18D310 /* ServantLocatorI.swift in Sources */, + D507F6AE61C100C49B391B8B /* ServerAMD.swift in Sources */, + ABE96A45D5047D07B494D811 /* TestAMD.ice in Sources */, + F5D528CD0959ED8FBE47D801 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C3F8C582C2352BF2FCC0F81A /* Sources */ = { + B2E76AB5325FD0B44497BBAA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 096D459BAE2FCF2E26D63288 /* AllTests.swift in Sources */, - 5A4FCB52A138384242EC41F2 /* Client.swift in Sources */, - 6AF5EB3E096847C86D409473 /* Collocated.swift in Sources */, - F13FBCE9EEA5B5820E2112C5 /* Server.swift in Sources */, - FF1C80A5D20366AB76CEA278 /* Test.ice in Sources */, - D53361B4E18F02F39AD71F7C /* TestI.swift in Sources */, + 2DCD004B98AAC958160F09D2 /* Client.swift in Sources */, + D69293571C79142BD4644BFF /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C42941CAE7C44F652D3A5CC4 /* Sources */ = { + B71341B8DCD3386E969D021F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B9D79D3ECA42805AE43C28E6 /* AllTests.swift in Sources */, - E46F315B2FE959CC2492512E /* Client.swift in Sources */, - B89F95BBC741F229F326FBB9 /* Server.swift in Sources */, - A4D36C0FD19DE530887B370F /* Test.ice in Sources */, - A92EAC6E21F6504793754DB2 /* TestI.swift in Sources */, + 45A5B7A80526F19EAE9A8213 /* AllTests.swift in Sources */, + DACF76C855E14513876EE388 /* BatchOneways.swift in Sources */, + 4FC731395B73EB87D18816C9 /* BatchOnewaysAMI.swift in Sources */, + 87AC8565D3129BB566C4E4BB /* Client.swift in Sources */, + 4E5192486BA4131D7C59C04E /* Collocated.swift in Sources */, + 788FF870AE92183F633E2547 /* Oneways.swift in Sources */, + 4CB50F7AEBAA2C7624FF53BC /* OnewaysAMI.swift in Sources */, + 657683B9E266C397C84D33D2 /* Server.swift in Sources */, + A5EC9178D79AA00619027912 /* Test.ice in Sources */, + 9CD19EC1CD1C690CE3BF1942 /* TestI.swift in Sources */, + 5FDB6870F64FBCC0F9DA7B01 /* Twoways.swift in Sources */, + C7BBC8F2BA3013ECBEACB528 /* TwowaysAMI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C81FD95798F618B58E1B0D22 /* Sources */ = { + C3172FA1F30C4892944AB13B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E37C083C51128D4F812DFECE /* AllTests.swift in Sources */, - 2167F438E88BB33B0802C78E /* Client.swift in Sources */, - CB08CC281534672927561D65 /* Server.swift in Sources */, - EDCFCF99DC5A895DF62E8929 /* Test.ice in Sources */, - 0431CDD713D70DDCBC01025B /* TestI.swift in Sources */, + B137642667AE3706E6A0A5DA /* AllTests.swift in Sources */, + D2C7FB4EE14AC7C9771B8872 /* Client.swift in Sources */, + 911E0D67438383EE6B41AA41 /* Collocated.swift in Sources */, + A329C64D7DEC8DA9EE2CC8A9 /* Server.swift in Sources */, + 21618E4743251E8681B2D50C /* Test.ice in Sources */, + 352E655F4D372EA208233852 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C85E6EAE3323C931667E87A4 /* Sources */ = { + C455DFC954703E8B86E8FB16 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D0B68D28A36F25DBDEEEE0B0 /* main.swift in Sources */, + 3D2E6350CD0369A8D7DCC7B9 /* AllTests.swift in Sources */, + CBFE90C015F5938E006F7B51 /* Client.swift in Sources */, + 7EB795072A11C2241D41CA7D /* Collocated.swift in Sources */, + BB5A9BB8BEA3E1E533FDD635 /* ServantLocatorI.swift in Sources */, + 7B0BB91AD2AAE0A9D6EEA849 /* Server.swift in Sources */, + 5DCC5C2EA2BFA97F799DC6FA /* Test.ice in Sources */, + 374B575A6906DE8A97FFAA8B /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C95E4F45F7796D2824F91CFD /* Sources */ = { + C5D06F06BDD0203C2A0D7EB4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FE70BFEF5C9234B3C7D50949 /* ServantLocatorI.swift in Sources */, - D3B2170996EE9D9A4178F087 /* ServerAMD.swift in Sources */, - A7EE2C1997021D64CF91787C /* TestAMD.ice in Sources */, - 68337CBF05C2DA45B34BCE3A /* TestAMDI.swift in Sources */, + 4E305CC8C23442E8892A5969 /* AllTests.swift in Sources */, + F6F9A7163D5CB24FBE765E4E /* Client.swift in Sources */, + 63015A531AD0039B53247592 /* Collocated.swift in Sources */, + 86C7FD865D845D0228E595AC /* Server.swift in Sources */, + B76CC8C18A41B77044FEF8F9 /* Test.ice in Sources */, + 5E48336FFA495568832DB7E5 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D34F40178ACFC211A11C58B9 /* Sources */ = { + C9862A8B24C5CD002B5B285E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F44CA32D2CDFDDE45F4E72D9 /* AllTests.swift in Sources */, - 7E3651954058DFC1CB0759F3 /* Client.swift in Sources */, - 8B86EBBE72B4D6104A5FCCCF /* Server.swift in Sources */, - 3419C76A03E29460F60A10A9 /* Test.ice in Sources */, - 3AE2B565314D08D3FF70C3B3 /* TestI.swift in Sources */, - ); + 3A81FB47D8BAEF9D47F67CAA /* Acceptor.cpp in Sources */, + 6D2E85B95C19A5BE0CBBD640 /* AcceptorI.cpp in Sources */, + CA0CC7435D5114B8AB44F7F6 /* ACM.cpp in Sources */, + BBFE1CB14B5EF1F55F39B2B0 /* ArgVector.cpp in Sources */, + 2B30A380F57B5CB57817CA97 /* Base64.cpp in Sources */, + AD100F4352996B95B7E7CEEC /* BatchRequestQueue.cpp in Sources */, + CB4DDB5C8CBC00891F4F6913 /* Buffer.cpp in Sources */, + 04CE142AF814C48EC05D3A57 /* BuiltinSequences.ice in Sources */, + 9F76CE45F0A14F83DBBBCC9C /* CertificateI.cpp in Sources */, + 6558EE541043DBC42195026B /* CollocatedRequestHandler.cpp in Sources */, + 5D06D578B67541E764B028E4 /* Communicator.cpp in Sources */, + D643181C088F9CE93D88F13E /* CommunicatorF.cpp in Sources */, + A59FDFD98086574E6A91CD4A /* CommunicatorI.cpp in Sources */, + A2A28FADC3A8F42D74F94152 /* Cond.cpp in Sources */, + 0CDA05DC036F12BC7933113F /* Connection.cpp in Sources */, + C0FC3735E785045EC4461BBB /* ConnectionF.cpp in Sources */, + FC61278C365AAC5B5EB0996B /* ConnectionFactory.cpp in Sources */, + 4B323EA94F5330CB76D61630 /* ConnectionI.cpp in Sources */, + FB5F2BF62D1A09A6073D031F /* ConnectionInfo.cpp in Sources */, + A0646964B11526959E15863F /* ConnectionInfoF.cpp in Sources */, + 15C8E2EBF9387EDE196AC06E /* ConnectionRequestHandler.cpp in Sources */, + 583B54EF8BC7A12EB7ECFF36 /* Connector.cpp in Sources */, + 8C1D9454BDD5D1D6813888B5 /* ConnectorI.cpp in Sources */, + 679797836BA03F28C23CEBB6 /* ConnectRequestHandler.cpp in Sources */, + 223D69B71DC50CCF692B7F5C /* ConsoleUtil.cpp in Sources */, + 3AF6C0BEB04AEEF81EE7D9CF /* Context.ice in Sources */, + 00C54888EF2A7C455F916280 /* CountDownLatch.cpp in Sources */, + B4125D5A6CDD59B0ACB46418 /* CtrlCHandler.cpp in Sources */, + 35D24984165CABD98088A6E3 /* Current.cpp in Sources */, + 2FF16A6CC846F2F5154FBC4A /* DefaultsAndOverrides.cpp in Sources */, + 4AEFE53F63AB7281FE54BB67 /* DispatchInterceptor.cpp in Sources */, + F557430C1BB366EE08B0B77C /* DynamicLibrary.cpp in Sources */, + DE96CD226BEB221D08CA1C20 /* Endpoint.cpp in Sources */, + 793F3B65373B8679C6E3B69E /* EndpointF.cpp in Sources */, + 9C13EC1D5BDDEF39E0035621 /* EndpointFactory.cpp in Sources */, + A3A56A528D7A874125579BE0 /* EndpointFactoryManager.cpp in Sources */, + 6B86FBA84BEDE9B92B7A8BED /* EndpointI.cpp in Sources */, + 03480C9ECD1C063F948DF2EA /* EndpointI.cpp in Sources */, + D2C9176747A7C81A27C095D6 /* EndpointInfo.cpp in Sources */, + 01D2D31B16EECA66BE55F042 /* EndpointTypes.ice in Sources */, + D76AF5DF6713A46A3F5713E9 /* EventHandler.cpp in Sources */, + 51E4E719DFABD7EA5EA818BB /* Exception.cpp in Sources */, + 61DB8351BB9DD2D2FAEA82D0 /* FactoryTable.cpp in Sources */, + 782E7FAE67003BE21307B1F6 /* FactoryTableInit.cpp in Sources */, + 074F2BE69D4B6E0B74D4F19A /* FileUtil.cpp in Sources */, + 91C62960606D8FCCF6747F78 /* HttpParser.cpp in Sources */, + E1E71D2982C42BEA77D98F1B /* IconvStringConverter.cpp in Sources */, + E97138E0D1B93F302A064640 /* Identity.ice in Sources */, + 73BA968691D9B340A52E44D0 /* ImplicitContext.cpp in Sources */, + 5D268EE9D1AD00B6ED31A5F9 /* ImplicitContextF.cpp in Sources */, + EBDEE2AC104C7DDFD21B5349 /* ImplicitContextI.cpp in Sources */, + C7B889058A1CE7DE22185681 /* Incoming.cpp in Sources */, + 2391835E95B662AB5F5E5375 /* IncomingAsync.cpp in Sources */, + 9BA0A38C0BD7E36A1BD60C32 /* Initialize.cpp in Sources */, + 5D8EB13A30F715EA61268B54 /* InputStream.cpp in Sources */, + B108FB61D8349D59B81F5072 /* InputUtil.cpp in Sources */, + 4B937F11A84BFBB5430E5CBE /* Instance.cpp in Sources */, + 736E2EF02C7B0796F4068902 /* Instance.cpp in Sources */, + 38847268EB2F2E4FF7AF0940 /* Instrumentation.cpp in Sources */, + DE86DF521D0A29EA2B0095BC /* InstrumentationF.cpp in Sources */, + 13E09FD31C14F9FE90AFFCC2 /* InstrumentationI.cpp in Sources */, + 75A8B4B6066AA93A556B8178 /* IPEndpointI.cpp in Sources */, + 1D2F1653E1F237366ED37E74 /* LocalException.cpp in Sources */, + 83D583E25B45CB7E322FA652 /* LocalObject.cpp in Sources */, + 25E71CF92C0AB9AC508B822B /* Locator.ice in Sources */, + 8DFB4A0306490FFF8426C78D /* LocatorF.ice in Sources */, + 22248D7C6A354BF4F3B37B9F /* LocatorInfo.cpp in Sources */, + 3CA10FE78E0D7F55CAD1CE77 /* Logger.cpp in Sources */, + 4039FCD3C24A18FF82E9FFCD /* LoggerAdminI.cpp in Sources */, + 19E0C061D8AC2085265BCB52 /* LoggerF.cpp in Sources */, + A0370BD7322D40CD43A9D333 /* LoggerI.cpp in Sources */, + D6A7CE6063A9BE0B0C82D0EA /* LoggerUtil.cpp in Sources */, + 649F89CE6DBA1882D9CA7381 /* Metrics.ice in Sources */, + 9DAFEBB1B955F5C465481165 /* MetricsAdminI.cpp in Sources */, + 4BF7802BDB2912938F8A5401 /* MetricsObserverI.cpp in Sources */, + C1E6B9220DF9020129DF71F3 /* MutexProtocol.cpp in Sources */, + 0F71DD6A67178D0C707B2F85 /* Network.cpp in Sources */, + 945D2F9580D30BECC37243CF /* NetworkProxy.cpp in Sources */, + 174897CF28EEF25C2FB22102 /* Object.cpp in Sources */, + F3F5E8F7A92DF0ED4C887F9A /* ObjectAdapter.cpp in Sources */, + 2265ABB36D033A2AEA5AF713 /* ObjectAdapterF.cpp in Sources */, + 6BDB81E44E8ED661D9D99FA7 /* ObjectAdapterFactory.cpp in Sources */, + A1EF1604B0D51B76BAFE7556 /* ObjectAdapterI.cpp in Sources */, + D58D8E08552392999A098329 /* ObserverHelper.cpp in Sources */, + F8B1A0BEF3AB75B1B3B5B0CE /* OpaqueEndpointI.cpp in Sources */, + DB5DD8C88730E98BC04AABDA /* OperationMode.ice in Sources */, + 7FC2B37350F3E5995B4ECECE /* Options.cpp in Sources */, + 5349563EEF2578DB61C4A973 /* OSLogLoggerI.cpp in Sources */, + 4FB3FB49E23C28F3D464FCEB /* OutgoingAsync.cpp in Sources */, + E1D2F7A064F903818BC5C81B /* OutputStream.cpp in Sources */, + 7997ECFD992D1B49A8B352D8 /* OutputUtil.cpp in Sources */, + F8D058617878D4D9B3E25EDB /* Plugin.cpp in Sources */, + 0B7E47D4AF20BEB3B3846836 /* PluginF.cpp in Sources */, + 31DEAC51BC34082B948D1968 /* PluginI.cpp in Sources */, + 97436689F8CB87D4C1FF11BE /* PluginManagerI.cpp in Sources */, + EBBFB1974A4E613A90B1324C /* Process.ice in Sources */, + 70BFA57D6FF9C7379186A4A0 /* Properties.cpp in Sources */, + 1961595FE9CC70DD3D0A7975 /* PropertiesAdmin.ice in Sources */, + 451002ACFD0D95E5DEB8FDC0 /* PropertiesAdminI.cpp in Sources */, + 27A328B4CE2F898DA5F44FF2 /* PropertiesF.cpp in Sources */, + 09A04454140CDCF98273DEC9 /* PropertiesI.cpp in Sources */, + F9F79CFA380A6BD76F0256F5 /* PropertyDict.ice in Sources */, + 7A0B0587DEFF310CF9B800D8 /* PropertyNames.cpp in Sources */, + 01110EBADB5441FECC1C4EDB /* Protocol.cpp in Sources */, + 3D3DBA3857372EC08983506C /* ProtocolInstance.cpp in Sources */, + F71B7394848C334C4FC51BFA /* ProtocolPluginFacade.cpp in Sources */, + 3B43ADB16168DD10352EF8FE /* Proxy.cpp in Sources */, + 0FD2142CD0E2EBC31B9B2CCE /* ProxyFactory.cpp in Sources */, + 214922BA289C0240CF8D93A4 /* Random.cpp in Sources */, + 4222160FD257F0C52E1A09CD /* RecMutex.cpp in Sources */, + 13F7AC00FF0C5CC44E51FEED /* Reference.cpp in Sources */, + 93EA132FFB90C6038E00C831 /* ReferenceFactory.cpp in Sources */, + C14B9D2ACDA59BBFF227D036 /* RegisterPluginsInit.cpp in Sources */, + 6A074A20E524994BFB355CC9 /* RemoteLogger.ice in Sources */, + 02E5E7016AC05F7A655E2219 /* RequestHandler.cpp in Sources */, + 3050ED6F4B7AB30BE192A06A /* RequestHandlerFactory.cpp in Sources */, + 4136956F7D6DE65A0E0D9582 /* RetryQueue.cpp in Sources */, + F968F0B69C9A21BDF84CEA63 /* RFC2253.cpp in Sources */, + D51E815892C6AB254E9A015B /* Router.ice in Sources */, + 67E0BA668DD8ED6D30348A10 /* RouterF.ice in Sources */, + CF21B01E38CB4A4001D47B3E /* RouterInfo.cpp in Sources */, + D572E08E607AF19F07ED7AAB /* SecureTransportCertificateI.cpp in Sources */, + 79B6C0C76C38F872B0C79378 /* SecureTransportEngine.cpp in Sources */, + 0A89B3A1F5FB92AADC45B237 /* SecureTransportPluginI.cpp in Sources */, + C4D1211585C895BB820057C0 /* SecureTransportTransceiverI.cpp in Sources */, + 8C61A337FDCC3B9BF1964ADF /* SecureTransportUtil.cpp in Sources */, + ED7BC22AAA04977B3356C7EB /* Selector.cpp in Sources */, + E7D9D3C909593D23FA8FDA7A /* ServantLocator.cpp in Sources */, + 45C96192E204B6AE5B272285 /* ServantLocatorF.cpp in Sources */, + F2F60590B4B53220278EE1EF /* ServantManager.cpp in Sources */, + 7E7DEABC002DFDE84F7C7784 /* Service.cpp in Sources */, + 58BD3A0CEAC9816BE48E7C1B /* SHA1.cpp in Sources */, + 7CC28E32C596E2B96BA97437 /* Shared.cpp in Sources */, + C0AF01F8C1A2680A86A26B01 /* SlicedData.cpp in Sources */, + BC3D6EC3D90A4AE009CC3D5F /* SSLEngine.cpp in Sources */, + 4D25051593A83339036F00C8 /* StreamSocket.cpp in Sources */, + 160043DED8FCC4B4461B8CC6 /* StringConverter.cpp in Sources */, + 6AD1CD753151676666EB72C9 /* StringConverterPlugin.cpp in Sources */, + 34C56ED108DA5603633185D5 /* StringUtil.cpp in Sources */, + 22F2090EBDD0134127A4717E /* SysLoggerI.cpp in Sources */, + C4FC8EAD023FB1FB5FA5F353 /* SystemdJournalI.cpp in Sources */, + 8886606759CF3C907ECEC53B /* TcpAcceptor.cpp in Sources */, + 8140A9ACBAFECD8048F2C4F6 /* TcpConnector.cpp in Sources */, + 5A0C72759744FAC248F76750 /* TcpEndpointI.cpp in Sources */, + 01EF086D0665E2D7DC2297D9 /* TcpTransceiver.cpp in Sources */, + 088A6BBCF4CE108259A3ED27 /* Thread.cpp in Sources */, + 49BFF564D0A72D4835A03029 /* ThreadException.cpp in Sources */, + 27C5B9CB32BB0B8E9E992910 /* ThreadPool.cpp in Sources */, + 54E34B14AD4D1750156935B2 /* Time.cpp in Sources */, + 002593FA6E99043AABEF19A8 /* Timer.cpp in Sources */, + ED868AC52D578FE5E1E32A0E /* TraceLevels.cpp in Sources */, + 2063A2A53076F3222EB4F4B0 /* TraceUtil.cpp in Sources */, + 558402645321D08AAE5D4765 /* Transceiver.cpp in Sources */, + 25F19EF255F8105DD0073F46 /* TrustManager.cpp in Sources */, + 64320C37681C5B634C5FAD97 /* UdpConnector.cpp in Sources */, + 799B94989EB0FB659DB5FD16 /* UdpEndpointI.cpp in Sources */, + D72E35AE8C558E7BC749F191 /* UdpTransceiver.cpp in Sources */, + 5D039B66F551328A0945E6F3 /* Util.cpp in Sources */, + BBBCAC7EEBFCAEA884101D8D /* UtilException.cpp in Sources */, + 00FE0665F407342D39498E2B /* UUID.cpp in Sources */, + 8039E0224BB29439AE536715 /* Value.cpp in Sources */, + AC66AEAB62812F101CC1A9FC /* ValueFactory.cpp in Sources */, + B0E111F7B287DD1530DDEA1A /* ValueFactoryManagerI.cpp in Sources */, + 6DE8A983BE1304DB333D5A54 /* Version.ice in Sources */, + 4006DB9C513AA2E07BEDB69C /* WSAcceptor.cpp in Sources */, + 5C158C1E51ABA0D75A47E202 /* WSConnector.cpp in Sources */, + 5CA9E7325A11D1072D3B998D /* WSEndpoint.cpp in Sources */, + 43F7AAF102E93B0FDFF85F8A /* WSTransceiver.cpp in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CCE2454EF62FDB1BEF8150C9 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 30BD1CC63A3B7E7A6A05253C /* AllTests.swift in Sources */, + CB74367931EFE9E5362CA132 /* Client.swift in Sources */, + 30884BEB531E5485E17BC923 /* Server.swift in Sources */, + 2B02CB531C54D4196BB7C999 /* Test.ice in Sources */, + 6918AA844C697E82C64B2F9F /* TestI.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + CF1B1444062FE5D9E38586D4 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 6E6366FBA97D46D0596795B4 /* AllTests.swift in Sources */, + A1491B81B02939D1F2695390 /* Client.swift in Sources */, + 101226D239A906D14D232C6E /* Server.swift in Sources */, + F194CDBC2AF32E45AA04AB45 /* Test.ice in Sources */, + DE39A43B950347837A88F697 /* TestI.swift in Sources */, + ); runOnlyForDeploymentPostprocessing = 0; }; - D9321E417D66FDC352F91E8A /* Sources */ = { + CF31E29D8FD14FD8A85C2403 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5AFA14CFA0D5B2602C25C72C /* AllTests.swift in Sources */, - 458A24FE79D3611E1E628182 /* Client.swift in Sources */, - B6F436312C61E057ECDECCD8 /* Collocated.swift in Sources */, - C03CEB6C13E93631A7A84FCD /* Server.swift in Sources */, - 257953F655C3275C12048FE4 /* Test.ice in Sources */, - E8FA35D450BF9D20E43A1B63 /* TestI.swift in Sources */, + 078296B9E5B53929C2EDAD43 /* AllTests.swift in Sources */, + D46E7C646A1E8D77C6AE1F5D /* Client.swift in Sources */, + DDDA7CC0304D7D1174EAFD93 /* Server.swift in Sources */, + 8E0523110D6C42D2134C4A47 /* Test.ice in Sources */, + B451AD2F2E8335D26E2DC8AA /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - DC9F71DD24521C3C5FCF9509 /* Sources */ = { + CF7B1CD3457464E44032ADFC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4ADF224365C51AD0BE287779 /* AdminFacetFactory.swift in Sources */, - 52E1DED4E3F543049FAF6EDC /* Blobject.swift in Sources */, - 3D0B4C2019194618E9AE34F6 /* BlobjectAsync.swift in Sources */, - D442A5075C050714DD84E2C2 /* BuiltinSequences.ice in Sources */, - 51B543350C9BC2DEA824F676 /* ClassResolver.swift in Sources */, - 21D837952971440E5EB330DF /* Communicator.swift in Sources */, - 1220A09A233ADD19F5B63EE2 /* CommunicatorI.swift in Sources */, - 19F695F5B7F0E3C2C25376C9 /* Connection.swift in Sources */, - 229EC81397D523D3DF52FB8F /* ConnectionI.swift in Sources */, - 0D91C27BAD60BBECB3C0FDC7 /* ConnectionInfoFactory.swift in Sources */, - F6550E4045DCA75D9D253C74 /* Context.ice in Sources */, - 110C0E024EB6945CD5EF31ED /* Current.swift in Sources */, - 39CD88EBD62959CEE9CBDF5F /* Endpoint.swift in Sources */, - B921CF701C7ABCB95B5489BA /* EndpointI.swift in Sources */, - 3C6D235D0D6DE82E42EA4632 /* EndpointInfoFactory.swift in Sources */, - E915365B65F166283C5A7F9D /* EndpointSelectionType.swift in Sources */, - 39989167034C3272CA3BD987 /* EndpointTypes.ice in Sources */, - F190A21FA780155868903D60 /* Exception.swift in Sources */, - D89777822ADB1527B2E9ECDF /* FacetMap.swift in Sources */, - 85D9AF5104CE3F3E362D3C63 /* FormatType.swift in Sources */, - 1662721D0ACE871AF8158F52 /* IAPConnectionInfo.swift in Sources */, - D7925782BB7F4C817FD0AA57 /* IAPEndpointInfo.swift in Sources */, - 9F3EC4CF229801630E4DA883 /* Identity.ice in Sources */, - F3E8FD1DDD07547A0DF7D91D /* ImplicitContext.swift in Sources */, - D12BFEE94D559BE97EA05925 /* ImplicitContextI.swift in Sources */, - 8DB73EBF4C2845D055412A18 /* Incoming.swift in Sources */, - B1431EBFEB84AD625884B324 /* InitializationData.swift in Sources */, - F36251032A3F4AD1E9C34A21 /* Initialize.swift in Sources */, - 353989250D7F2EB99BA92BF0 /* InputStream.swift in Sources */, - 292B54AD7E6FFDC4750B5A0C /* Instrumentation.swift in Sources */, - E24DAC092926FBEAF91679CB /* LocalException.swift in Sources */, - 170C4CFE00C77FC6EA64CB0E /* LocalExceptionDescription.swift in Sources */, - CF467ECA243473DAA814D048 /* LocalExceptionFactory.swift in Sources */, - 2C200E9E10BFA312E9E3F9FC /* LocalObject.swift in Sources */, - D5F6AB847BEEEF0A8646388B /* Locator.ice in Sources */, - 458E08E5F9B0736BA438BED1 /* LocatorF.ice in Sources */, - A074B308562DA349AB4659EA /* Logger.swift in Sources */, - EAE752895F55485E6B9D314E /* LoggerWrapper.swift in Sources */, - 5DDF47B7BB0721D19F9ADE42 /* Metrics.ice in Sources */, - CE3F516C6BCFD191F6EF75C5 /* Mutex.swift in Sources */, - AFD6AB5AD6800C6D202F9E08 /* NativePropertiesAdmin.swift in Sources */, - 05B4299FC837338C7C9F07F6 /* Object.swift in Sources */, - B83638F0D662B79B5A0975A3 /* ObjectAdapter.swift in Sources */, - 3DE78F344E8540CDFD5B4254 /* ObjectAdapterI.swift in Sources */, - B1C6A1EA2197139A7EECAD83 /* OperationMode.ice in Sources */, - B9B9FEAC21799ECDE7C16E09 /* OptionalFormat.swift in Sources */, - DF801682057D9E3481021BF9 /* OutputStream.swift in Sources */, - BE9763782AD0F8D1C9B367C0 /* Plugin.swift in Sources */, - 751560A68722B308F6C21119 /* Process.ice in Sources */, - 778723B748D759EFEC60C0F3 /* ProcessI.swift in Sources */, - 6DB6A62110660F912E3A425A /* Properties.swift in Sources */, - A3A50A3F5C0EF82A11B7EB07 /* PropertiesAdmin.ice in Sources */, - 6DDF0843AEE85A7BC67F6D1A /* PropertiesAdminI.swift in Sources */, - 80F1CE0419339022678607E2 /* PropertiesI.swift in Sources */, - 83FEEB974C87EBDC8EE7223A /* PropertyDict.ice in Sources */, - AFC826EB9C6FC596575BAB6C /* Proxy.swift in Sources */, - 04994BC95865F3AFF995FFBD /* RemoteLogger.ice in Sources */, - 0AC32732B6437A1A7136CC6B /* Router.ice in Sources */, - 623D02D1C7E5691F89015FB8 /* RouterF.ice in Sources */, - ECC4429CC6E5FD93D6461316 /* ServantLocator.swift in Sources */, - 0BE3033B3DC78D489AE854F6 /* ServantManager.swift in Sources */, - 179758EB67CBBAB3D244B28A /* SlicedData.swift in Sources */, - 6BD827012FAC4AC28D8F3086 /* SliceFlags.swift in Sources */, - ACA078A151886FF1B9180EB8 /* SliceInfo.swift in Sources */, - 419A77E8C424CB2E6558CA92 /* SSLConnectionInfo.swift in Sources */, - 3F0925A3511C364792909CA5 /* SSLEndpointInfo.swift in Sources */, - 10531B948E68D655E91C0BB9 /* UnknownSlicedValue.swift in Sources */, - 60E1A08BF3DF777FE43DEF83 /* Util.swift in Sources */, - 75182724EA5355E68E9DFFA6 /* Value.swift in Sources */, - D5B05C56684E9AF8549AAD04 /* ValueFactory.swift in Sources */, - 4A739393CA5A4D3034091082 /* ValueFactoryManagerI.swift in Sources */, - D2EB8D72E7B2D2C2C47BDBAB /* Version.ice in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - DFD24470B0E45F19AEDF55E6 /* Sources */ = { + 0124F5D1935B3D72A6E64EF2 /* AllTests.swift in Sources */, + B78646021526E09FAE9D9E3A /* Client.swift in Sources */, + 8BFEB606F665B7541EA1052E /* Collocated.swift in Sources */, + 00F487D3AD3785EACE924C0F /* Server.swift in Sources */, + 0299BA4B0F079501AA420194 /* Test.ice in Sources */, + 425141FE2ABC86DD5B948F74 /* TestI.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + D293DEB055122373A6D625CF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9A181D7F3BCDE13B2B12928D /* AllTests.swift in Sources */, - C707CDC8444931346E0E9A77 /* Client.swift in Sources */, - B64EEC007F67795539001A1C /* Server.swift in Sources */, - 2787D9A27A2FB75C90CC0FFF /* Test.ice in Sources */, - 4B17AEDCE912654DF4F1B81D /* TestI.swift in Sources */, + 1B90E097ED6BB4EE1E6E2D18 /* AllTests.swift in Sources */, + 595B4A531DE157B61D18422A /* Client.swift in Sources */, + 9FF2F13524A1987FB5A421FD /* Server.swift in Sources */, + 60AC310EEEF9B8BD4D60DAAF /* Test.ice in Sources */, + 9D398526A52E1A0DE368F2E4 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E12248A19E1B790525CD23AB /* Sources */ = { + DAE89EA2584CA56DA4BF1DEB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 9667D7FF72AC7F7F693E0496 /* IceLocatorDiscovery.ice in Sources */, - 9DB03E845F65202EB39E3115 /* PluginI.cpp in Sources */, + C0F045DEE2AE93566EEDB6ED /* ServerAMD.swift in Sources */, + BE5C0EBDADB099CCC3BB9156 /* TestAMD.ice in Sources */, + 8C4507D8EBD56AE7C70ECD02 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E1A96FD5802396C607420A5E /* Sources */ = { + DF8A023C84839E51364A1063 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4BF6604BC790A31F1C67EAB5 /* TestCommon.swift in Sources */, + 2110AA4BF29B32586B7D8012 /* AllTests.swift in Sources */, + 3309A74215F7525C83407C81 /* Client.swift in Sources */, + 8F3AB1BE615B4F7C552E3560 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E57FB46C09E60C578673E07F /* Sources */ = { + E0FA8EE687F03346A9E3EA5D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 178CDFD5D67D59A011CA09C2 /* AllTests.swift in Sources */, - 0A0B5C8B51AEA59D813EDDC8 /* Client.swift in Sources */, - 99844B3A968E31726EE5572E /* ClientPrivate.ice in Sources */, - 5B92C39D3E26B89A720C1108 /* Server.swift in Sources */, - 661618CE4D8FF002E5AD6890 /* ServerPrivate.ice in Sources */, - 1578DC0DA374E3252D218246 /* Test.ice in Sources */, - 1DEDDDBE872929D306A93333 /* TestI.swift in Sources */, + B0F3417F7C374C0F482F9DA5 /* ServerAMD.swift in Sources */, + 41FF5166052684179CBD44E6 /* ServerPrivateAMD.ice in Sources */, + 83ABA46B9D89440A0C8034D2 /* TestAMD.ice in Sources */, + 7904865EB4D9B844039CD2A6 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E5EAF4410D62B1919A140B78 /* Sources */ = { + E2F1BEE041F303D35091A880 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 65BCEDE5DBB4CD4617C6FF7D /* AllTests.swift in Sources */, - 369EF3D5503B14589E768982 /* Client.swift in Sources */, - A10198668C86E808ADAB0616 /* Collocated.swift in Sources */, - AB2D4F0471D4AE020F18FA29 /* Server.swift in Sources */, - 519646A83A47B52F8323EEAD /* Test.ice in Sources */, - 399E20453F0FFA4DE48A30F6 /* TestI.swift in Sources */, + EA34FB21DA849348CC580D41 /* ServerAMD.swift in Sources */, + 8016511938D5F624D464633A /* TestAMD.ice in Sources */, + 8D6130ECAA002485B2C17923 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E9DCD5998A1AFE37F795A360 /* Sources */ = { + E3A8DEA90BC4DD24203B4A0D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D65AAD574F10CC5260DEDF9B /* AllTests.swift in Sources */, - 74FC1F8681CD55379E111F23 /* Client.swift in Sources */, - AE7F49DDBCC0F010BD7A2EFF /* Collocated.swift in Sources */, - AAB7E9939903E4976A03CF5C /* ServantLocatorI.swift in Sources */, - F24BEAE12877F57261308991 /* Server.swift in Sources */, - 776BD0070DCDF3131A59D788 /* Test.ice in Sources */, - DECBEB44AF185A09A7FCC64F /* TestI.swift in Sources */, + F91B098208997F1EB1299E70 /* AllTests.swift in Sources */, + 34BC98DF30DC09C7B23D8CF0 /* Client.swift in Sources */, + 0CF450A0A2F39F0454148A99 /* Server.swift in Sources */, + 8622A720644080DF580FD0ED /* Test.ice in Sources */, + 89BD626D72A50F6924F340FB /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EBA356C27D4FAF52E2FB0AAB /* Sources */ = { + E43AE966BAECD1D3D4212564 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 317770D521D6E3A64899EBDF /* Client.swift in Sources */, - F21FCFEF6A0F15862F7627DB /* Test.ice in Sources */, + 88D7D9285A591764AE1DCFF1 /* AllTests.swift in Sources */, + A833858ADAD9204E9668A713 /* Client.swift in Sources */, + ACE982D339EDFFC653754B91 /* Server.swift in Sources */, + 3B3AD0090683BBDA262F5508 /* Test.ice in Sources */, + 2839DAC15D5287856ADEBFB0 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - ECA8E9D076A7FEA89EF29A0B /* Sources */ = { + EBFA09B91AB7A2B6617AAF3E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ACACE420C4781E94BA667B3B /* Client.swift in Sources */, - 8B7CF432027FB4D652E66F08 /* Test.ice in Sources */, + 89CBFE5358A64C8A08A8E908 /* ServerAMD.swift in Sources */, + 5729FC85A5F81362D64C788E /* TestAMD.ice in Sources */, + 4FBCFE426FEE604A4F5DC518 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - ED09550AE8FA94ADE0975A42 /* Sources */ = { + F10295EA2BA3F6C2C198BBC5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CF54DE141E09CF1FD2F8D99E /* ServerAMD.swift in Sources */, - 1C48D09188909E044E72FC0E /* TestAMD.ice in Sources */, - BBA1C03B0A59799B56B2C0DA /* TestAMDI.swift in Sources */, + 5F10DAB82E234F86D81B0EAA /* AllTests.swift in Sources */, + 48F81BC696321E7DD455531E /* Client.swift in Sources */, + 3B3E61B98E6458DBE8E1D134 /* Server.swift in Sources */, + 79A1925010F96055D419F173 /* Test.ice in Sources */, + C14261921EC5B6DE9586AA24 /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EE31D1023E6B2D6849A9FDCA /* Sources */ = { + F397727F47CFBB558C1BA0B0 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 5EE9E3167B275C2706119801 /* AdminFacetFactory.swift in Sources */, + E65A12912D5C10F7A5F78A49 /* Blobject.swift in Sources */, + 381F2E1A3E0357DD8D7F6A8F /* BlobjectAsync.swift in Sources */, + BD43FAB5A93C34E64E28BF55 /* BuiltinSequences.ice in Sources */, + 2E09829FB9961B1320CCECA3 /* ClassResolver.swift in Sources */, + 1C48E0521B537C80932E2D14 /* Communicator.swift in Sources */, + CA68D62399ACFCB8817B64C5 /* CommunicatorI.swift in Sources */, + 875EB2E0A298E0D4B82D425B /* Connection.swift in Sources */, + BAA9CFBA87D8EA695783DEA2 /* ConnectionI.swift in Sources */, + 7ED2872294B29183D74E6D87 /* ConnectionInfoFactory.swift in Sources */, + 3289BB4B1953834352FD82F1 /* Context.ice in Sources */, + EDC726E5116DF79B42E10724 /* Current.swift in Sources */, + FB530E3D167CA5BCDBE9BEC2 /* Endpoint.swift in Sources */, + 848E2A01CE44343781BEF6CD /* EndpointI.swift in Sources */, + 5B1A07BE7511FE3C61F2D046 /* EndpointInfoFactory.swift in Sources */, + 8FE65F6DAEDB22104FD0609A /* EndpointSelectionType.swift in Sources */, + D4344DFCF693191817C81A00 /* EndpointTypes.ice in Sources */, + 8758B7E46B770685B266FFC8 /* Exception.swift in Sources */, + DBF476418CD0E189A1673811 /* FacetMap.swift in Sources */, + 8A69ADDB57C84FBA4F528240 /* FormatType.swift in Sources */, + 126403DC6D1B09CDFC7EBAC4 /* IAPConnectionInfo.swift in Sources */, + 4B1606F2BA1FF3AA33BD2ACB /* IAPEndpointInfo.swift in Sources */, + B991982DFFEB4E157255AE6F /* Identity.ice in Sources */, + 6CA2DB9DDA91E513530F1D0D /* ImplicitContext.swift in Sources */, + D7B0002B1C68D0E52E8FAFEE /* ImplicitContextI.swift in Sources */, + 1B4323468E2ADA38457B870B /* Incoming.swift in Sources */, + EC177206816100D056A7C635 /* InitializationData.swift in Sources */, + 6F372057CC71DDD00F5D3B28 /* Initialize.swift in Sources */, + C8430DD25DF281D70F6CCCFA /* InputStream.swift in Sources */, + 75231CA5EA77CEA177619D68 /* Instrumentation.swift in Sources */, + 10F351325620C77D1E508B7B /* LocalException.swift in Sources */, + 387C9FBCF807EBD311D89BB2 /* LocalExceptionDescription.swift in Sources */, + E83D2828AA7D25CB5987291E /* LocalExceptionFactory.swift in Sources */, + FAF775CD4CC584724B6E4BFC /* LocalObject.swift in Sources */, + 9DE8B5F4F6CD04FC92F08A18 /* Locator.ice in Sources */, + 25FA9E5BB2F62F57E834F0D3 /* LocatorF.ice in Sources */, + ACBFD23F7C301915C5856651 /* Logger.swift in Sources */, + 39B5D32367FA4CE4F120027B /* LoggerWrapper.swift in Sources */, + 8311F26BE59DEFD56E414269 /* Metrics.ice in Sources */, + 59EB0033873F6E39267226DC /* Mutex.swift in Sources */, + FE4887740E46F96A432B6F75 /* NativePropertiesAdmin.swift in Sources */, + 723EE9C5CAAF84265489CADF /* Object.swift in Sources */, + 76537F251BBF45019A95995E /* ObjectAdapter.swift in Sources */, + 3B94BD4C53B501BBED67162A /* ObjectAdapterI.swift in Sources */, + 8D5DA597F06AB00006A334A0 /* OperationMode.ice in Sources */, + BBE742F1DFDDCEB7A3BE8625 /* OptionalFormat.swift in Sources */, + FB4AE4F1A6430ECE8CAD317F /* OutputStream.swift in Sources */, + A391F8627181A212266CE4F8 /* Plugin.swift in Sources */, + 5A270029AA086FCD68401A9F /* Process.ice in Sources */, + D19E0496C898E9B7697C0726 /* ProcessI.swift in Sources */, + D90123A4143E72D3ECDE112D /* Properties.swift in Sources */, + 0CB00C51D1538F274D69152F /* PropertiesAdmin.ice in Sources */, + 49510B169380DAE5FC8B2E10 /* PropertiesAdminI.swift in Sources */, + 00A667381383D7A104D11FA8 /* PropertiesI.swift in Sources */, + 668EC761627F2EC1BAAB953E /* PropertyDict.ice in Sources */, + 48E6810798AD40D0134A0BDC /* Proxy.swift in Sources */, + B4FED0CB275415CA0BDBE88C /* RemoteLogger.ice in Sources */, + F63F8F55A184BAAE3C16D5BB /* Router.ice in Sources */, + 08844D0461D00EFE56B5AD1B /* RouterF.ice in Sources */, + 03D4D96A2E376F6E49556346 /* ServantLocator.swift in Sources */, + 6EDCD02EC62F84DF7B9D7607 /* ServantManager.swift in Sources */, + 028A7F9998CD9F657744EE2B /* SlicedData.swift in Sources */, + DDF330BBC0C728B5BAEF0159 /* SliceFlags.swift in Sources */, + F7C188B7CAD692A761D796E8 /* SliceInfo.swift in Sources */, + D4C3F051368A99283CF157BD /* SSLConnectionInfo.swift in Sources */, + 7A4D6B16AAE5C59182AE40D1 /* SSLEndpointInfo.swift in Sources */, + A9C7285A0DF9DF7F94906A6E /* UnknownSlicedValue.swift in Sources */, + 1A44854689C4F681D3348B03 /* Util.swift in Sources */, + E61AF76EF66344DE9F88AE5C /* Value.swift in Sources */, + F27F39F7B04DE92D90D5CB28 /* ValueFactory.swift in Sources */, + 8A4F6176FCA37C036D7804DF /* ValueFactoryManagerI.swift in Sources */, + C2627C5A2479A57E5EE53629 /* Version.ice in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F55A84E3271B987BEDCD3FB2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ADB1AFEE08A56BB42FE008EF /* AllTests.swift in Sources */, - A26B148723583F5F831BF775 /* Client.swift in Sources */, - 35FFB634E9D15E5A4D978C9B /* Server.swift in Sources */, - 0C05B309530BDB59E82F9419 /* Test.ice in Sources */, - 38629B5251A9DBA7CF2F98A3 /* TestI.swift in Sources */, + 71AAF522F60C965C350446C9 /* AllTests.swift in Sources */, + B73417712AE0BFE19DC85E71 /* BatchOneways.swift in Sources */, + A3809439D9D0321CE539FDD0 /* BatchOnewaysAMI.swift in Sources */, + 7C2B31B5C272133DE1948E73 /* Client.swift in Sources */, + 3CC4943D16C9FEBE7E141812 /* Collocated.swift in Sources */, + 7C55661EC9DFAC0E5E0A4AF8 /* Oneways.swift in Sources */, + 56E97FDF069E8FF5D6198C8D /* OnewaysAMI.swift in Sources */, + A77DCD9B91D2E95FCC978260 /* Server.swift in Sources */, + 0EB0010773FB71EE1DF2308E /* Test.ice in Sources */, + F236DA1A4D2B575460EE9CEF /* TestI.swift in Sources */, + C04E44502642BFDC01773F49 /* Twoways.swift in Sources */, + 3AB6DA8D15B4E7A6EADF3857 /* TwowaysAMI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F19017E1D9F12DA2663861F9 /* Sources */ = { + F883BDAC576982772FA180AA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6BCCFE670D1A1A869E4F8EA6 /* AllTests.swift in Sources */, - 288FC7EBB1C6D1E680D6DB20 /* Client.swift in Sources */, - 7C8E9F28A7A5E23739A4E5AB /* Server.swift in Sources */, - 7A003E7134D70BDE825BD906 /* Test.ice in Sources */, - 3BD7F3DCBF353531853B9787 /* TestI.swift in Sources */, + BF7CED554DC9F717C953BEBD /* ServerAMD.swift in Sources */, + 96C46DF1A21FEC3E0065C7BD /* TestAMD.ice in Sources */, + EBAA5849483697AE5E16232A /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F3B366D49E6B2BFF8728E083 /* Sources */ = { + F9440AFC2469DF50591441D3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 570F91544266D4CADF784323 /* ServerAMD.swift in Sources */, - 1A5155B3EE7D2B39FE40516E /* ServerPrivateAMD.ice in Sources */, - 8F402940833F34C3FFDBA8C3 /* TestAMD.ice in Sources */, - 0706F0FA4CC01B88DD0D2DE8 /* TestAMDI.swift in Sources */, + 5E08EB311D6E16A25D4D5FEA /* AllTests.swift in Sources */, + BD08218A3D3AE414822402A2 /* Client.swift in Sources */, + 8C0A2D9F0804871932011BB5 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F6AAC081A93E2757B8F6E9AC /* Sources */ = { + FA4743AAA8336CD1C662C664 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D2D7AC43D47EAC4F693FEDC6 /* AllTests.swift in Sources */, - 02D7DC30D69353C1B161EEA1 /* Client.swift in Sources */, - FABCCCE9318EED5B0DC9F223 /* Server.swift in Sources */, - A6DD61F672BCEBB094EFA299 /* Test.ice in Sources */, - 12FE3D9CFB6D51E9A2F18E5F /* TestI.swift in Sources */, + 123AC9FEB47482139B9F4974 /* ServerAMD.swift in Sources */, + 9629F9484B15CF5546D3FD4C /* TestAMD.ice in Sources */, + 6A11080ED9C275CCBD4A3B60 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F6DF1DCD51C0EA0E25420646 /* Sources */ = { + FBAB2BF624487B3AD91E9DD2 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 97F5C6EE108405CBF7F7F9F1 /* AllTests.swift in Sources */, - E7E91715336C76DC5AD01D93 /* Client.swift in Sources */, - 9515D9FB6383BE8459D6E624 /* Collocated.swift in Sources */, - 698D678767BF41CA11BF7572 /* Server.swift in Sources */, - 7095D0B562AF1399B8AE8E1C /* Test.ice in Sources */, - 18795A6D49413B4DD3261EE1 /* TestI.swift in Sources */, + 842358F2A2C78210E827D854 /* BlobjectFacade.mm in Sources */, + 5FF72A1A2D75592EC9D2A447 /* Communicator.mm in Sources */, + 9CD7519D7A0B4FB0FC9B0627 /* Connection.mm in Sources */, + 417681F023BC2C9D3ED87D34 /* Convert.mm in Sources */, + 55D3DA41FC490F04DD2529B6 /* Endpoint.mm in Sources */, + EC62E2D762C81829674F1635 /* Exception.mm in Sources */, + 5E4EDDD599F3AED3672370B5 /* IceUtil.mm in Sources */, + 969285B4BE28CFEEC42C375E /* ImplicitContext.mm in Sources */, + 93B7487AB18E1A9A3B1781B9 /* LocalObject.mm in Sources */, + FCF032C01B28F823A151F4AE /* Logger.mm in Sources */, + FC92FCA370E4FBCA8079ABD1 /* ObjectAdapter.mm in Sources */, + 9C1B41496E95DD89E1AB38F6 /* ObjectPrx.mm in Sources */, + CC817ADCD9DDC10A912EE45A /* Process.mm in Sources */, + 8404E57A693222161BC56732 /* Properties.mm in Sources */, + 4192519E1A06C7457BC9DC1C /* PropertiesAdmin.mm in Sources */, + 82B07F81F92C82FC2C8E859C /* TraceUtil.mm in Sources */, + A663AD708EDDDF794AE80847 /* UnsupportedAdminFacet.mm in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FAD4ECED8BEEB141B2709A27 /* Sources */ = { + FDA13795394CA6C06A6E63B4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B8C52DF2827AE7AC5AA2FDD1 /* Clash.ice in Sources */, - 786328BEAE17891594F5B83F /* Client.swift in Sources */, - 1F72EE3605E5F8F02FDE798E /* Key.ice in Sources */, + 5DCACE4010ACB486CFBFCCA3 /* Client.swift in Sources */, + D31863D4C2285EE26B4B5BF5 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FAE41A6D65E6771F4FD09FCF /* Sources */ = { + FDC9787080C924D81B9C2280 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D39B227A38413AEFBAB8EE91 /* Client.swift in Sources */, + D93E9CE5FA4075E4129F5FFA /* AllTests.swift in Sources */, + 9C991835EB6469C2C8FE9028 /* Client.swift in Sources */, + CD1C57F0EB79D5859889637B /* Collocated.swift in Sources */, + 71FA006F994324C748C9AD24 /* Forward.ice in Sources */, + F7E8D1A74667461F322D5563 /* Server.swift in Sources */, + A74E2ACB156AC71ADF209D33 /* Test.ice in Sources */, + A202237B8A5762C836D3F45D /* TestI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 000557CC81C9632BB5D26D8B /* PBXTargetDependency */ = { + 004E3BD554C37FB3CBC4E2F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxy macOS"; - target = A292FEFD4AC0C53DF83589BE /* IceProxy macOS */; - targetProxy = 28308B058AA8525E4B221564 /* PBXContainerItemProxy */; + name = "IceTimeout macOS"; + target = 01B75CEA3EB80A6E664242B0 /* IceTimeout macOS */; + targetProxy = 48A05C6747E6A0EFD505F916 /* PBXContainerItemProxy */; }; - 00C7366750C45A1A322C6CF3 /* PBXTargetDependency */ = { + 023095BB736D389D21B94F2E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 5C2BDD1F7CD22C469FF2BC4D /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 214F2022F11C51A60354D2FD /* PBXContainerItemProxy */; }; - 01A23ACF74F5CD97CDD78FA1 /* PBXTargetDependency */ = { + 0298BDC1A4881843FD6359B6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 746F0F0BE070900F901A030E /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 1F6E39B0AF1CA523FE1104ED /* PBXContainerItemProxy */; }; - 01B16A341EAF3CA681B853AA /* PBXTargetDependency */ = { + 03134A7173C5F92037D8BC35 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 37F29581EFF202ECB7D4A0D4 /* PBXContainerItemProxy */; + name = "IceAdapterDeactivation macOS"; + target = 3639C4450BB9A2FD62EC83B1 /* IceAdapterDeactivation macOS */; + targetProxy = ABB6F45CD4ED637CBEED9AB2 /* PBXContainerItemProxy */; }; - 020A0AC03AB445E15CDBC364 /* PBXTargetDependency */ = { + 04E4526F7B2AA2655197C56F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = AC1F23397FF990BFB8F67C56 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = BFC9235FE83BA2E248689D61 /* PBXContainerItemProxy */; }; - 02823461962BC2A525DCCF4E /* PBXTargetDependency */ = { + 06AD476773998DB766063AA0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultValue macOS"; - target = 9938DD491B5B4A54DB0A80E3 /* IceDefaultValue macOS */; - targetProxy = 978A989313EC93B33642623B /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 20F7F3CB060E2090ED871F71 /* PBXContainerItemProxy */; }; - 03AE68141B2EDA6CE6C43620 /* PBXTargetDependency */ = { + 0711AC59187DD9DC662E4FFD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = B5F2564776EA1F243AB49D5C /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 74304FDE80AF64C29200E27D /* PBXContainerItemProxy */; }; - 04F7CA6C3F10A96A96850E6F /* PBXTargetDependency */ = { + 09D3052B0E301E57DB00C947 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 7113F8F89F2CEA84A61862D9 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = CC3F335017C739B8F7DFFE67 /* PBXContainerItemProxy */; }; - 053F3A49FFF23311FAC44489 /* PBXTargetDependency */ = { + 0B04243124955F9134481732 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = B5BFDAAF6AE364DD7061584B /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */; + targetProxy = 1CFB7F5DBEA57A48B2E1171E /* PBXContainerItemProxy */; + }; + 0BAF063A3E73FE1E9F85BBFF /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = E5EDE10DBD743B2B88272616 /* PBXContainerItemProxy */; }; - 07393B7DA0FDE71929409356 /* PBXTargetDependency */ = { + 0EF9EF4783171AF2103CFD5F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 3A3907750B192A4164843BD4 /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 487E2719252E3289C9CC2421 /* PBXContainerItemProxy */; + }; + 0FFDAC4A08652765099EA6F1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceDefaultValue iOS"; + target = A69CCF574C4233A49E864528 /* IceDefaultValue iOS */; + targetProxy = 932A74664455DA068E3A15C2 /* PBXContainerItemProxy */; }; - 07CE505BF5648B30269F4DC9 /* PBXTargetDependency */ = { + 1064301F302334151EA6390F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 7CC54CF37E775799AE523FFF /* PBXContainerItemProxy */; + }; + 120EC5E39F021DB7DC78826D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 5037CE3078B57AB307002568 /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = EFDC1B11E41C9B68528DA3AB /* PBXContainerItemProxy */; + }; + 13564D9121B17F14DA89ECD9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 2E24BDD2EB699E821381EE6E /* PBXContainerItemProxy */; }; - 07F76D4D9005A939736B6911 /* PBXTargetDependency */ = { + 1668D9984B544411EF6127A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "IceServices macOS"; - target = 065FE0308F8C069FEF18896D /* IceServices macOS */; - targetProxy = 1546F78CDC6948BFC536E89F /* PBXContainerItemProxy */; + target = E4350886F7ECE83389DE7799 /* IceServices macOS */; + targetProxy = 6447F140D3855CB2A934008B /* PBXContainerItemProxy */; }; - 087A9C1989AAA843B5590366 /* PBXTargetDependency */ = { + 16814372AF840708839F0163 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = E251CA04F82003BCE485A5CC /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 2AFEEC4032840A9398F816FE /* PBXContainerItemProxy */; }; - 090C3209AF384F8B6108121C /* PBXTargetDependency */ = { + 172590E345988F2A73800535 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = A27C6B11529DF945963C598D /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 49D8595FBEE292E8490C19DC /* PBXContainerItemProxy */; }; - 098D84548F556CCEB5C69F11 /* PBXTargetDependency */ = { + 17352DE6341BC3926B870B09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = EAE2CB011D2B1E218EBD8ED0 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 54727D84878D2D579323A84A /* PBXContainerItemProxy */; }; - 0A6AB4A2EDAB4DD0C9F9C4F7 /* PBXTargetDependency */ = { + 176CDC7FE90E8C736046CF72 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocatorDiscovery C++11 iOS"; - target = E84AD21BA9DB06F21E2D3BB3 /* IceLocatorDiscovery C++11 iOS */; - targetProxy = B0486932F2DD45930580B73A /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = BD25CE387C2F7A6673DC1249 /* PBXContainerItemProxy */; }; - 0FBE96A84BC1484537A5FD45 /* PBXTargetDependency */ = { + 17E9A9CB0540B86A5D180043 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 35ED6D2F347DF92D6FE7310B /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = CECFB40220DF43A9D4B2475A /* PBXContainerItemProxy */; }; - 11E7921B9E8504ED04C4DD20 /* PBXTargetDependency */ = { + 17EC27CE297AA6E9065BB02A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultValue iOS"; - target = F18532A4F881321CB6AE2614 /* IceDefaultValue iOS */; - targetProxy = 3DDD2A62396435A09C641971 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 31FBBDA3349CA05A02DCB97B /* PBXContainerItemProxy */; }; - 1310DBFEFF36C9AB05FE1342 /* PBXTargetDependency */ = { + 1A07374B3416C0DC9EDFA40C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = B644051E85864FAFA9B1ADE6 /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = D8416E33B6CD2C36AD8B6C5E /* PBXContainerItemProxy */; }; - 1331283ADDCD92BE4D72F968 /* PBXTargetDependency */ = { + 1B368E8F1EE4A7512FD3973F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxy iOS"; - target = CEE926A8FFE81634B9CBA64C /* IceProxy iOS */; - targetProxy = 25861C368313982F64FCFCE1 /* PBXContainerItemProxy */; + name = "IceTimeout iOS"; + target = FA5053DC63D60556D4AF6086 /* IceTimeout iOS */; + targetProxy = 4AEF98C694E4398B686F61DB /* PBXContainerItemProxy */; }; - 158203B2E8EA9B27230C32E6 /* PBXTargetDependency */ = { + 1B4708EFE676B0617E942186 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInfo macOS"; - target = 8B673B53CF2890202D016783 /* IceInfo macOS */; - targetProxy = 89BB66CA925FF81CC3C4702D /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 6BC063A5D73FD71B54DA9C89 /* PBXContainerItemProxy */; }; - 1655AE07C3C927D529A01CB9 /* PBXTargetDependency */ = { + 1C9F3CFD7598AFBA884A0ABC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceHold iOS"; - target = 6C9760FEBCAAE6CE0FA2DC30 /* IceHold iOS */; - targetProxy = 7815CFBD06551649906B5770 /* PBXContainerItemProxy */; + name = "IceUdp iOS"; + target = 0BE885FE5E5BBE860323877D /* IceUdp iOS */; + targetProxy = D204316036368C4278CE7559 /* PBXContainerItemProxy */; }; - 17D78C3590AD3341EAD750B1 /* PBXTargetDependency */ = { + 1CBF579EC013B2E376910769 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInterceptor iOS"; - target = EA1D2D4417E34B61AC64FEE1 /* IceInterceptor iOS */; - targetProxy = 9C7171466351C72E76E6896B /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = E074E4486CC1CB2F8544E30B /* PBXContainerItemProxy */; }; - 17FD8ED3B2D7E1AE7C5625E0 /* PBXTargetDependency */ = { + 1D34CC2EBD4CECFDDCDFB1BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 5AA83B738974FE7C022EE611 /* PBXContainerItemProxy */; + name = "IceProxyAMD macOS"; + target = 3EA20E16FBEAA1C5B0DA52BA /* IceProxyAMD macOS */; + targetProxy = 6AA66EDB612628ECEBD99430 /* PBXContainerItemProxy */; }; - 1898625C798054237255D989 /* PBXTargetDependency */ = { + 1D95A803903FF16821114567 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptions iOS"; - target = 0A1278D024EC2ADD3E42D968 /* IceExceptions iOS */; - targetProxy = ED10296BB17D4CD063607027 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = CAE51B4E432EBC708C039700 /* PBXContainerItemProxy */; }; - 191F2DF8F559B727A0B9A104 /* PBXTargetDependency */ = { + 1D9E349307B8AC6A78B16C9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm macOS"; - target = 0763ED05481F11F83E2EE767 /* IceStorm macOS */; - targetProxy = BADB735E88BEF016E412AC96 /* PBXContainerItemProxy */; + name = "IceFacets iOS"; + target = 21CBD45E7CE90BF8C75C80EB /* IceFacets iOS */; + targetProxy = EA43F5A92F5981734F841172 /* PBXContainerItemProxy */; }; - 193BA6ED5F91A3E91A7987F7 /* PBXTargetDependency */ = { + 1E85260D9970B3DEA09E1D7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceUdp macOS"; - target = 96F2227A2D1F58BCEA8ED0F6 /* IceUdp macOS */; - targetProxy = 852C05BDD534DB44709C07C3 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 6DB6FBBEEF9107C0356251CC /* PBXContainerItemProxy */; }; - 1A088D4452F3C164E5E671F3 /* PBXTargetDependency */ = { + 201B5C1C0AEC5EE1E56D1AF5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceObjects iOS"; - target = BAD99ED95E14E2F53810245D /* IceObjects iOS */; - targetProxy = 237A2AA7222257F643AE591A /* PBXContainerItemProxy */; + name = "IceServantLocatorAMD macOS"; + target = F5CD065672396E4209757A74 /* IceServantLocatorAMD macOS */; + targetProxy = 431323999F9B2609B23DDEB9 /* PBXContainerItemProxy */; }; - 1EBCCDD716930DF08A115916 /* PBXTargetDependency */ = { + 213019ABFBDB96BD8C65B7B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl iOS"; - target = A9149583C7CA34903D80B3C4 /* IceImpl iOS */; - targetProxy = C53DB7524D834CD967E9FA4D /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = F0CAC9CB4CB4C06E1BE93C9E /* PBXContainerItemProxy */; }; - 2073171DA6488766240C73C4 /* PBXTargetDependency */ = { + 21326B009F7622080ED1C8ED /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServices iOS"; - target = AD0E7F89F478FE77514A8842 /* IceServices iOS */; - targetProxy = 496CC30FB83C3D5689E55992 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 2056098B0E2B55DABA18B8EE /* PBXContainerItemProxy */; }; - 21E0947C7662A94A1C869D84 /* PBXTargetDependency */ = { + 2367577BB797E283A1A7213B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 1798C04524E372354944B484 /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 12BB418486F51E54CC92F9DA /* PBXContainerItemProxy */; }; - 21EFE1CC52F99DA8714377F4 /* PBXTargetDependency */ = { + 2515347844C24DEB2A01ECAE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInheritance macOS"; - target = D52144324A93F3717DC3A4BB /* IceInheritance macOS */; - targetProxy = 35640F3820EFC19B6758C50F /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 36AA695C134C523B6DD246EB /* PBXContainerItemProxy */; }; - 25163588E7567C9DC2B926F3 /* PBXTargetDependency */ = { + 26ED27E144843A00C086BEA1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAcm iOS"; - target = FF7948EAFE0A62518B685629 /* IceAcm iOS */; - targetProxy = 080DA5611BBDFB5DD434C97C /* PBXContainerItemProxy */; + name = "IceImpl macOS"; + target = E47E556F6FF734E970050937 /* IceImpl macOS */; + targetProxy = 2FF1C3EFC1E0BAFB52D6B55E /* PBXContainerItemProxy */; }; - 279A73BF587F532B1ED47130 /* PBXTargetDependency */ = { + 2716428E9B531A65D3377B42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid iOS"; - target = EACA18083EFA62557FBB6215 /* IceGrid iOS */; - targetProxy = CB8D00FE1ED96C2C67C62B36 /* PBXContainerItemProxy */; + name = "IceFacets macOS"; + target = 995512D73E07EFE9CD097A94 /* IceFacets macOS */; + targetProxy = D2736822D87D78823604F385 /* PBXContainerItemProxy */; }; - 2917EA502B354A6494B8FF02 /* PBXTargetDependency */ = { + 2768FAC75611D30E3DC16C0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = BA14EFBEC1ADAC16CFAF4570 /* PBXContainerItemProxy */; + name = "IceLocation iOS"; + target = 9A5B406340D1F54AA6A93582 /* IceLocation iOS */; + targetProxy = 017D617F05A79DC3E75E1867 /* PBXContainerItemProxy */; }; - 2929AD35171753BFA602F48D /* PBXTargetDependency */ = { + 27BCE5C17E0BC2EFE96D9805 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = B2D94D8BBB319F772FF7C077 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = A39C25EFE0F64DB7A9B478A0 /* PBXContainerItemProxy */; }; - 2BAAD90F90C6A90A021E6A76 /* PBXTargetDependency */ = { + 27FA504BD00219560AF87677 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 8587E52646DD02D89A81EBF2 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = C4AD91397B522AA9E23C597D /* PBXContainerItemProxy */; }; - 2F691D4411C45234858C1983 /* PBXTargetDependency */ = { + 295438B5CAFE9CE6A2060CE5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 1FDF92C740D86B8DAF02BC71 /* PBXContainerItemProxy */; + name = "IceBinding iOS"; + target = 4E2639095BC1D8AB5CABDD8E /* IceBinding iOS */; + targetProxy = 4CB60D7AE0828B4C5307A56B /* PBXContainerItemProxy */; }; - 31493DABA42FD09F7DFECB41 /* PBXTargetDependency */ = { + 2956B7B75F4D412AF02EFF31 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocatorDiscovery C++11 macOS"; - target = 8D692CC4BED85D90455B3611 /* IceLocatorDiscovery C++11 macOS */; - targetProxy = BFC93BE5D1A5B2CFD4575F9C /* PBXContainerItemProxy */; + name = "IceDefaultServant macOS"; + target = DEABBE98FF536A890AE33865 /* IceDefaultServant macOS */; + targetProxy = 06E2F46705DA55C6A2B74117 /* PBXContainerItemProxy */; }; - 35357E9E1A4B5309DE819116 /* PBXTargetDependency */ = { + 2976AD49BDA685FF3D348498 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = D27B32C7AB353D5AE4902D67 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = BD8948999598714FBF24D4CA /* PBXContainerItemProxy */; }; - 35B27061E8112FA1B6B66318 /* PBXTargetDependency */ = { + 2A12B9C7041B620AF29C39EC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceBinding macOS"; - target = 600F66FEB1C8FA05B0D86986 /* IceBinding macOS */; - targetProxy = 0D1D2EE5267D4EC47BDCC5D4 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 637B366C15B65850C6F90DCA /* PBXContainerItemProxy */; }; - 376ABE64AF659ECA8C22D231 /* PBXTargetDependency */ = { + 2B173C14DE63B3886B29223D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceEnums macOS"; - target = A5A118B8D38A8DF773729D3E /* IceEnums macOS */; - targetProxy = B7A43EE3A8546D7831BBE9CD /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 2119F0153B7672564FDE9352 /* PBXContainerItemProxy */; }; - 384D047B6C9F2863BFB31590 /* PBXTargetDependency */ = { + 2B93FFC81500D248421591C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceObjects macOS"; - target = A2BA1134828B7EE3273C5D13 /* IceObjects macOS */; - targetProxy = 470DB549AF0696DF551E03E8 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 31A6C9E7B044CD56F7F4B1BB /* PBXContainerItemProxy */; }; - 3BC969C7F2AFAD0E3A038D2B /* PBXTargetDependency */ = { + 2E7CD23A36D6ECD9DDB009F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = A2ED78FDF2B79D91463F89B8 /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = F6A28F925DEE920CAA8D477F /* PBXContainerItemProxy */; }; - 3C07DD43F02337996CE7092B /* PBXTargetDependency */ = { + 2EF0FF8E8B9198F8D0752DF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 12C39D1B6EEC499875CE301C /* PBXContainerItemProxy */; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 45E8B8739927241A85B77A0C /* PBXContainerItemProxy */; }; - 3CFDC36ED886B57BC4C00866 /* PBXTargetDependency */ = { + 2FE04E929B05A627C1689DEA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 77336DB172773086F33DE302 /* PBXContainerItemProxy */; + name = "IceExceptionsAMD macOS"; + target = 9F8CD7854A90F92273855E8E /* IceExceptionsAMD macOS */; + targetProxy = E2C6757F98AD2F3BCFA443AB /* PBXContainerItemProxy */; }; - 3D9D49B469AA2053E8E30785 /* PBXTargetDependency */ = { + 30C046AADB977BE9C4A79B12 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = F33737401446C0666AA11215 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 53286E42A0BF3C0F24DEDFDE /* PBXContainerItemProxy */; }; - 3DBE085DFD2E881FF58E52E9 /* PBXTargetDependency */ = { + 31A66F09B3162862E4B3954A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProperties macOS"; - target = 9FAA9797D207A26125233020 /* IceProperties macOS */; - targetProxy = AA3A356C6953B9401698C4F9 /* PBXContainerItemProxy */; + name = "IceOperations macOS"; + target = D3BDE8AC40C1810EB2A14067 /* IceOperations macOS */; + targetProxy = 8B6199793E858890BE13B8C1 /* PBXContainerItemProxy */; }; - 3DE284C4F6FCB5781D328A55 /* PBXTargetDependency */ = { + 31F711D9B60355CC16FE3A48 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptions macOS"; - target = 836D0AD1DCC62D99CC1CB8EA /* IceExceptions macOS */; - targetProxy = 0ED57033457114F5ED5B4752 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = A84BFF87D0198C1872FE0CD9 /* PBXContainerItemProxy */; }; - 3F1836C3085B01562B38C2EE /* PBXTargetDependency */ = { + 33C9B29A2C6F71E8AC4A5273 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStream iOS"; - target = AFBF627FDB9280859A796E95 /* IceStream iOS */; - targetProxy = B72EB5F999F616B79B17B6AF /* PBXContainerItemProxy */; + name = "IceServantLocator macOS"; + target = A7EE978EE70DDA201B41538D /* IceServantLocator macOS */; + targetProxy = 29AC2C7E0DB10E41A627D4AA /* PBXContainerItemProxy */; }; - 40D1956EA1F9DD10651A5E14 /* PBXTargetDependency */ = { + 340386BFD6092E294F96DDB2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = BC5EC2C581CEA0BED68A07E0 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = EEB85058AAB0ED8D1F09CA5B /* PBXContainerItemProxy */; }; - 40EEF1DCFF711E9F2594E63D /* PBXTargetDependency */ = { + 356D04B529083865813959EB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = B8EC0A4D5ACA3C64100F5519 /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 503C194C0BB2C054BB9B4C87 /* PBXContainerItemProxy */; }; - 410FDF4952B010B0945C3C8C /* PBXTargetDependency */ = { + 365A22EBF5A4FDADF221E23F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptionsAMD macOS"; - target = 3922C5D52BCDB27B7A0BD1C2 /* IceExceptionsAMD macOS */; - targetProxy = D1C34263362C925446B8169C /* PBXContainerItemProxy */; + name = "IceInterceptor macOS"; + target = 055B3C0D85846EE14E87127C /* IceInterceptor macOS */; + targetProxy = 1384274EDEE7A7FAA55AD26F /* PBXContainerItemProxy */; }; - 4200DF6902C6C3AF1A0FE39F /* PBXTargetDependency */ = { + 37013EDE8DFC3E9D2FD76CE4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 514855FEB49BFD6BB1472BD6 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 1191388E89BA38934CD70895 /* PBXContainerItemProxy */; }; - 4276032127E7F02B88B45E29 /* PBXTargetDependency */ = { + 374811107DE398E12960D278 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = 137A22811E93D82B716007C8 /* Glacier2 macOS */; - targetProxy = 7475914DC76F68487DDE435E /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = B015EA95DFADDD31E102004C /* Glacier2 iOS */; + targetProxy = E32CCBD20385AB74896F5913 /* PBXContainerItemProxy */; }; - 4330C12D8249B9BBC55614A2 /* PBXTargetDependency */ = { + 3801411212C153DF30A2252F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */; - targetProxy = 9FE3D1A04B09E6CF7F7502C5 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 85E74D5D665AC53235A8BA7B /* PBXContainerItemProxy */; }; - 452CA0172D244CBC9D248302 /* PBXTargetDependency */ = { + 38E9400954C5518735939765 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 66998044C76BFAC007A08089 /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 065709735975E1794527B9B7 /* PBXContainerItemProxy */; }; - 45FF4770D67E760A94627B7F /* PBXTargetDependency */ = { + 3936611C36535AD3F4155E07 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptionsAMD macOS"; - target = 204D17961BE241E9AA6931C4 /* IceSlicingExceptionsAMD macOS */; - targetProxy = 9FFED967233D448C9D5FCD1E /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 4A2DD3FCD2B58B84CEA19C63 /* PBXContainerItemProxy */; }; - 461396EE57D51DE72FBAB3CE /* PBXTargetDependency */ = { + 3A944994753FF0CAFC681A28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = F11C9AD6C3166B60D9EAB0D7 /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 80796B2D618056666858C9F6 /* PBXContainerItemProxy */; }; - 46275F2AE1F5949678E5B7E6 /* PBXTargetDependency */ = { + 3B6087890EFE699EE58EBC82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 88E9909EB6F7154046E78033 /* PBXContainerItemProxy */; - }; - 46CB383F272BEC717AFCE66E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceStorm iOS"; - target = 02E12A01B24B3B3E6927EAD6 /* IceStorm iOS */; - targetProxy = 05A958A1B7047AB7DD79AF63 /* PBXContainerItemProxy */; + name = "IceSlicingExceptionsAMD iOS"; + target = D09FEEF78E85A083AFB9AA4D /* IceSlicingExceptionsAMD iOS */; + targetProxy = 130D31F8BD9124BA58249168 /* PBXContainerItemProxy */; }; - 485AD32FFF655BD454B30F80 /* PBXTargetDependency */ = { + 3CC75AD56303036F1EBB8998 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 90611DDF57B019E5E078509F /* PBXContainerItemProxy */; + name = "IceStorm macOS"; + target = C7C6F15DD53FB4E2316C8AA3 /* IceStorm macOS */; + targetProxy = 8A1ED9492B7471048F9E9B5C /* PBXContainerItemProxy */; }; - 4965F928F33AA93E7729C0D6 /* PBXTargetDependency */ = { + 3DBE51302F6C198FD8C49ECF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 5513FD3EB06702845234B6E6 /* PBXContainerItemProxy */; + name = "IceImpl iOS"; + target = 15259193E3C55F25AB0F68C2 /* IceImpl iOS */; + targetProxy = 05C361795C27A9E377A5C00E /* PBXContainerItemProxy */; }; - 4A4786C4294D9D9EB04A12A1 /* PBXTargetDependency */ = { + 3DC15ECB7A44F56792CB7070 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = EFB6982D58325AEC0E826519 /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = AF68E94A7402B6E6732C6E90 /* PBXContainerItemProxy */; }; - 4ADC78295866FB7F4959DDFA /* PBXTargetDependency */ = { + 3F1CB2E5551EEDC59E1E432F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 53755BAD7B2EA1AD79CAEDBE /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = A100CA95376252E5800514F5 /* PBXContainerItemProxy */; }; - 4B11CDADF3FB598BD15FDD82 /* PBXTargetDependency */ = { + 421BF68BAE989652701BB2EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 65E4D69F83161D7FD6CD98D7 /* PBXContainerItemProxy */; + name = "IceOptionalAMD macOS"; + target = CA2ED7A56EF4FAC83454B118 /* IceOptionalAMD macOS */; + targetProxy = D39B58791CFE826FC5C0B3CE /* PBXContainerItemProxy */; }; - 4B8BC5B7F645DE838ACA6606 /* PBXTargetDependency */ = { + 42C8E46CBBDE065DD4F3AE64 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSSLConfiguration iOS"; - target = AA9DCC224B96540517FC8217 /* IceSSLConfiguration iOS */; - targetProxy = 4D9DC67DA712ACC2EF7313A5 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = CEF1ED2A44B2BAE0AE0B676B /* PBXContainerItemProxy */; }; - 4CF1CCC42365A82C633CD504 /* PBXTargetDependency */ = { + 42FE01A7DDE457D508342618 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = B3D3F185D102E0E8FE8D4788 /* PBXContainerItemProxy */; + name = "IceBinding macOS"; + target = F4DA824A9FD9930888BD262E /* IceBinding macOS */; + targetProxy = 443297BF76E4DEDA5E7D1E75 /* PBXContainerItemProxy */; }; - 4DF062ECC947761147A8B958 /* PBXTargetDependency */ = { + 43CE86862EBAEC29625C6B12 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = FF1E1593F0B50EF869897059 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 69719D3E20250DD8CAE426F2 /* PBXContainerItemProxy */; }; - 4E2B168180317E2A65AFB156 /* PBXTargetDependency */ = { + 43FD2DE664E32B8F89030A19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceTimeout macOS"; - target = 8716086DA12B2BDD0A0AB020 /* IceTimeout macOS */; - targetProxy = 1A66F60C8D1392CB576BB6E9 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = DE9F785118DDEF3B4D7CFAC0 /* PBXContainerItemProxy */; }; - 4F22349D73BE3FB82942A9F8 /* PBXTargetDependency */ = { + 462EF77A0D83099CC171DD6B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceFacets iOS"; - target = 57641F57B5FDCF62AD0FCD45 /* IceFacets iOS */; - targetProxy = 2AD592A2235556B7CF68D372 /* PBXContainerItemProxy */; + name = "IceSlicingObjects iOS"; + target = 0CC992ABE92F26754D8B7AC6 /* IceSlicingObjects iOS */; + targetProxy = 2F4791483C4760E90314EFD8 /* PBXContainerItemProxy */; }; - 4F565C91BA73514F2E9B1EC9 /* PBXTargetDependency */ = { + 470B6D2077BC29AB1E28CEFA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = AB1F8CB427C7F0F350F353F1 /* PBXContainerItemProxy */; + name = "IceSSLConfiguration iOS"; + target = B4169718E508CA7736735EF9 /* IceSSLConfiguration iOS */; + targetProxy = BE56FBD87AA52E5AC92C9110 /* PBXContainerItemProxy */; }; - 4FBF9E4A9DF99D3F75579BFA /* PBXTargetDependency */ = { + 47708FB0075A1C13990F2FD3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocation iOS"; - target = AE646D18FFEFFFB65901B9D9 /* IceLocation iOS */; - targetProxy = 17A8BFF896953B1998E75E96 /* PBXContainerItemProxy */; + name = "IceDefaultValue macOS"; + target = 5E8A324AC0641CA083A50D0F /* IceDefaultValue macOS */; + targetProxy = 47B6C0242181C35322973D86 /* PBXContainerItemProxy */; }; - 5115402FB20281796EBBF688 /* PBXTargetDependency */ = { + 48F7FFB5A72CDB6B20901312 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 79462F2296ABDFB8BD15906C /* PBXContainerItemProxy */; + name = "IceDiscovery C++11 macOS"; + target = 665EE5441D076F90F4516A23 /* IceDiscovery C++11 macOS */; + targetProxy = BF06298AD8E4646AE89AE32D /* PBXContainerItemProxy */; }; - 516DC0CF307323B0D5D88662 /* PBXTargetDependency */ = { + 4A3ED2B405EC21507ADAF8AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = A4BA589A6533E902A79E9953 /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = AD112DE19AB3306F14D5B1C1 /* PBXContainerItemProxy */; }; - 51F741133673DEAA1459FE79 /* PBXTargetDependency */ = { + 4B73F09BAD7093CC023E236A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 31043A801393C80C771D88C3 /* PBXContainerItemProxy */; + name = "IceLocatorDiscovery C++11 iOS"; + target = CBED3CEC107C5D8FD12D1423 /* IceLocatorDiscovery C++11 iOS */; + targetProxy = F882422A1D0EA82F4DB7EEB8 /* PBXContainerItemProxy */; }; - 5284D32BE16809CC3BF4C3F8 /* PBXTargetDependency */ = { + 4D9C9F1E7021B8459797BE64 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 7D1311CCD0AD0D14DF684101 /* PBXContainerItemProxy */; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 5C7237AFB448374F73E30851 /* PBXContainerItemProxy */; }; - 53A0109717E72F079E06AE34 /* PBXTargetDependency */ = { + 4DD30FA8F8C40E68D1B364F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = A3AFC54E8EA145173239BD48 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 124775A9F6E93C3CF3D7B005 /* PBXContainerItemProxy */; }; - 54F09B88FD7F3FE9236B23FD /* PBXTargetDependency */ = { + 4F2C2FCF937DF0F70D8A6B90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 587C03CD19778AC277402EC8 /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 70248659A5F8BBC954BC26E2 /* PBXContainerItemProxy */; }; - 555EAEE8DFFC8D4D221B2BB2 /* PBXTargetDependency */ = { + 4F59EB9BA4DDB8492E6B49FA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceFacets macOS"; - target = 0210DABE4A3F8E46162FC09A /* IceFacets macOS */; - targetProxy = 47FAFF9D6569E68CABF65040 /* PBXContainerItemProxy */; + name = "IceAmi iOS"; + target = 4BB02C0AE52711EB3F20C5D7 /* IceAmi iOS */; + targetProxy = C66710A873A6375613BB94E8 /* PBXContainerItemProxy */; }; - 56513DA127D1C68ACCBA0B8C /* PBXTargetDependency */ = { + 503E702ADDC8FD6011CAD63D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid macOS"; - target = CFA7C016ADBDBC9AE9AB0FF7 /* IceGrid macOS */; - targetProxy = 40EC11FC36AD38007C21C6EB /* PBXContainerItemProxy */; + name = "IceHold iOS"; + target = 283F1EEEFDF95C8EA1294341 /* IceHold iOS */; + targetProxy = 32859D088768354421E2C3F2 /* PBXContainerItemProxy */; }; - 566680A0045B5FC0A2FBB40E /* PBXTargetDependency */ = { + 505CBB999F89EAF643CAB88D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = E69E5BCED226C2529340C152 /* PBXContainerItemProxy */; + name = "IceSlicingObjects macOS"; + target = C80A8E405B320E680839566D /* IceSlicingObjects macOS */; + targetProxy = C9B59001DFFF30A9E98EE502 /* PBXContainerItemProxy */; }; - 56F6B03F04DC7DD5F2FB148A /* PBXTargetDependency */ = { + 50B9C0D91F208AF8AD49BB9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 0AB1D88FDB0B571F67339DB0 /* PBXContainerItemProxy */; + name = "IceProxyAMD iOS"; + target = E73C245D51F93B4E9024CF4C /* IceProxyAMD iOS */; + targetProxy = 154D5E7DD7CCA693A8B80FA1 /* PBXContainerItemProxy */; }; - 574BB9348375C75E94B6FA23 /* PBXTargetDependency */ = { + 51172D8ABCC4360E0461FCEC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdapterDeactivation iOS"; - target = 61321B12DA134239ABC63556 /* IceAdapterDeactivation iOS */; - targetProxy = 785910A02E277731751D94FF /* PBXContainerItemProxy */; + name = "IceOptional macOS"; + target = 98CD3D7B6AB129005DDDED37 /* IceOptional macOS */; + targetProxy = C34BCDB1C760A2DCC9950149 /* PBXContainerItemProxy */; }; - 580FC8590D7564D6621587CA /* PBXTargetDependency */ = { + 53A98460378A24B6F10DAAFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 1E776D0361C6D4CA7ADAA8B3 /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = 27BA347B00896E18F811823C /* Glacier2 macOS */; + targetProxy = 9BA0C4349EF5EC69F4456D61 /* PBXContainerItemProxy */; }; - 58EAF68E11B46086E0F06344 /* PBXTargetDependency */ = { + 542C81497575401A8F247803 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */; - targetProxy = 8569D3B6F0C1240326500260 /* PBXContainerItemProxy */; + name = "IceSSLConfiguration macOS"; + target = 478A8F3068E5FF5F72F783EC /* IceSSLConfiguration macOS */; + targetProxy = 284488109C19406A338C318F /* PBXContainerItemProxy */; }; - 59FC8466F9EA87D242A3BBA2 /* PBXTargetDependency */ = { + 547F233ED8B9A05358310B09 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */; - targetProxy = DFB7D5AA00C0BB078188829E /* PBXContainerItemProxy */; + name = "IceAdmin iOS"; + target = A58A9C1B02FC1B2964645F6D /* IceAdmin iOS */; + targetProxy = D7E079C305C44DE9B4CD61BB /* PBXContainerItemProxy */; }; - 5A0FCC92D3699768A160D6D6 /* PBXTargetDependency */ = { + 54EC40BBC1C029B6732B2879 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAmi macOS"; - target = 68767C0FE145D39DE4D88779 /* IceAmi macOS */; - targetProxy = F1763831D933F47A6857F5FB /* PBXContainerItemProxy */; + name = "IceProperties macOS"; + target = C01CDDFC69A3BAEE2DBC5560 /* IceProperties macOS */; + targetProxy = FBD1556FF95503AFAD857D61 /* PBXContainerItemProxy */; }; - 5BF9522711D21979665731D0 /* PBXTargetDependency */ = { + 55EB74D578CA62B140CDDE41 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = DC335AD85FEA67D0DFA5E868 /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = FCAC7B70417844AE5079A64E /* PBXContainerItemProxy */; }; - 5DFC199C350523CFAA6A5ED9 /* PBXTargetDependency */ = { + 576DFD365EE603CDE8CAA9C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 5DF3D971056622D31D908176 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 2FE96DCC2A6E467FC8B9AD7B /* PBXContainerItemProxy */; }; - 5E712366BD04AB698D4EEE87 /* PBXTargetDependency */ = { + 57FBAB8574FD4EF3C78F098A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceHold macOS"; - target = 214682343A5CDC54C07B1A1B /* IceHold macOS */; - targetProxy = 77DF3890E1786A15A18724C0 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 7BACB03973B944A4910038F6 /* PBXContainerItemProxy */; }; - 5EC0BF68CBF859070F7C60E0 /* PBXTargetDependency */ = { + 58DA9CF4530A5339A0E89DBF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = B9310496AD9B4161E3EFB68F /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 10DD7D30096FC40DE3F91A69 /* PBXContainerItemProxy */; }; - 61CBA0870CF5AE106D507737 /* PBXTargetDependency */ = { + 5948E0E3CBA886404C166D46 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */; - targetProxy = A5D3113454C161DD75477BA5 /* PBXContainerItemProxy */; + name = "IceStream iOS"; + target = C6AFD5D37CF11FE461D86DD8 /* IceStream iOS */; + targetProxy = EFFE91856D641568551E0037 /* PBXContainerItemProxy */; }; - 643721BE480E516C3780AD4C /* PBXTargetDependency */ = { + 5A27B9C89C9598CFB6BB153B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 0B4C82CA734FA90D97995650 /* PBXContainerItemProxy */; + name = "IceProxy iOS"; + target = EB3EA3436E39E34BB754ECF1 /* IceProxy iOS */; + targetProxy = B41E82BC6E8AA6D7768B6039 /* PBXContainerItemProxy */; }; - 644D2CB48445102AD4EB961F /* PBXTargetDependency */ = { + 5A3127CFCA184D1967C19B95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 1F3CA22617C41E7E5DC92496 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = A9329B710B1FB152D0828949 /* PBXContainerItemProxy */; }; - 677D8EB8A364B50453E41043 /* PBXTargetDependency */ = { + 5A5F490E3C9235C51179AAE6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 60B1571F8AEFCD29A0DD20CD /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 5A59BC1ABA375B56BA8F06CC /* PBXContainerItemProxy */; }; - 680C8D1C94B4328EEB837B9A /* PBXTargetDependency */ = { + 5D5F29E46A8930E120396A7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 50128C099A3CF7A9D7D34405 /* PBXContainerItemProxy */; + name = "IceStream macOS"; + target = BCECD790F76F93F791126123 /* IceStream macOS */; + targetProxy = E7EE39CAA698BC3A8AAC4904 /* PBXContainerItemProxy */; }; - 6BB1369014EC7A395354080A /* PBXTargetDependency */ = { + 5E904894107853C99797608D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptionsAMD iOS"; - target = D62438E4F1A3CC9836A8E287 /* IceSlicingExceptionsAMD iOS */; - targetProxy = D8FC56D106C26473144FAB83 /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = 27BA347B00896E18F811823C /* Glacier2 macOS */; + targetProxy = EE042DB16B155396659BCB8A /* PBXContainerItemProxy */; }; - 6C652077FC7503CFC40710A8 /* PBXTargetDependency */ = { + 5EDE335AB5C67153012820C4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 8DE974F341AADB664C9BC5F9 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 31FA4B87FE7AA6F1831B6A28 /* PBXContainerItemProxy */; }; - 6CB0A7D9CEBAB7FEDE893965 /* PBXTargetDependency */ = { + 5FEC7F91F2FB629D2923CCDD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */; - targetProxy = 62BBA732C3711A7003559032 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 58603EC9606806B7A3EA7A1C /* PBXContainerItemProxy */; }; - 6DB6D2BE6BA8F692AF940220 /* PBXTargetDependency */ = { + 6081B6A17344A1480287164E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = F697CB11BE5CDAEE843BFD83 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 7F26E8F0312AC4387C551222 /* PBXContainerItemProxy */; }; - 6E5028C1155E6A2A4C4C4E98 /* PBXTargetDependency */ = { + 608F0166FCDB893FC4748FEB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptional iOS"; - target = B0A77BB6DFBFBE8B44E34482 /* IceOptional iOS */; - targetProxy = B365A4BAEE25960F7C19EF20 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 16491446254BF6DA0F57E718 /* PBXContainerItemProxy */; }; - 6E7CA6DF8E06C7F5DF811FA7 /* PBXTargetDependency */ = { + 60C26C61835A0ED1FE59D87C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 21073CC71FE922B62C6FA61C /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = EBDF70525CF268A20F7D6539 /* PBXContainerItemProxy */; }; - 6EA80965AC7EBF95F050A721 /* PBXTargetDependency */ = { + 61444C015F295C95E1D0DC4E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = D68E9B85F7C0297292175F63 /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 291EFFBB81B18BF46AE26242 /* PBXContainerItemProxy */; }; - 70BA3A6EAE132BF56B919C33 /* PBXTargetDependency */ = { + 6377997689E7691F99CEDD82 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 0E84347D1A08F7F15DC27ED3 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 66D397E6F385363810F73DED /* PBXContainerItemProxy */; }; - 71C2564C0663504A3DF487CF /* PBXTargetDependency */ = { + 6488CCA4C33A18941B6512B3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = F10FBFB1C1BCBACCAD0EF873 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 7F3F3950F5D4BA9E76C5FC5D /* PBXContainerItemProxy */; }; - 71CCF13118C59068AE4C30A4 /* PBXTargetDependency */ = { + 657B7F580C2C29007B695ADC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStream macOS"; - target = BC8AD08D72ABA5BDCF4A07E3 /* IceStream macOS */; - targetProxy = A1564C6A6F504130C7B077E4 /* PBXContainerItemProxy */; + name = "IceInfo macOS"; + target = 9B91000B96831D134868EF00 /* IceInfo macOS */; + targetProxy = 8C51AABB3038D9E5B2902E67 /* PBXContainerItemProxy */; }; - 72E0A24D82A3611248E7A55E /* PBXTargetDependency */ = { + 65EC0246623D2174EBB69059 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SliceEscape iOS"; - target = 4E4074DFF5890EB17098C624 /* SliceEscape iOS */; - targetProxy = D36C2411C435C799F754506E /* PBXContainerItemProxy */; + name = "IceExceptionsAMD iOS"; + target = 5658AB3FB70284E862079845 /* IceExceptionsAMD iOS */; + targetProxy = 5DF535E937A6D64A50F2F2A3 /* PBXContainerItemProxy */; }; - 747C6EDCFF53A92C7918E498 /* PBXTargetDependency */ = { + 66BB78C5509FDEF0963665E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = E334451CB20D9C36CF4DAF28 /* PBXContainerItemProxy */; + name = "IceObjects iOS"; + target = 124476FE277A9E3ABE9F4A34 /* IceObjects iOS */; + targetProxy = C951F048C4F5208A6E9DA412 /* PBXContainerItemProxy */; }; - 74A57853F75F6CDA4348E446 /* PBXTargetDependency */ = { + 6951A5349AAC4517CC9BC0F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxyAMD macOS"; - target = 866E8F0547A584631426B2A5 /* IceProxyAMD macOS */; - targetProxy = 37B09DA87F27CB7ABE8325BC /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = E5B684721705FCA27DC73170 /* PBXContainerItemProxy */; }; - 7537F99FF2EC0F183328E38A /* PBXTargetDependency */ = { + 6A5F97B6B824293DA375BCCB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperations iOS"; - target = 90FA36CD9B0F6F2C3BC99401 /* IceOperations iOS */; - targetProxy = AD75D3B0464DD8529292B622 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 1F4AB26DE65D4BB01E237717 /* PBXContainerItemProxy */; }; - 7542658B1836A7406DA10C95 /* PBXTargetDependency */ = { + 6A7B12069DE9EF5071D8D206 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid macOS"; - target = CFA7C016ADBDBC9AE9AB0FF7 /* IceGrid macOS */; - targetProxy = FD38DE0D1285459EBF5C368C /* PBXContainerItemProxy */; + name = "IceServices iOS"; + target = 8919247F07DEFFC41FDA9486 /* IceServices iOS */; + targetProxy = 04F7EF21288FCCF003111EAD /* PBXContainerItemProxy */; }; - 75BCB4C7CF48F12841EC9185 /* PBXTargetDependency */ = { + 6B9057CED3EE87007DBBEE61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptionsAMD iOS"; - target = 287E9414F6A74860FF1188EE /* IceExceptionsAMD iOS */; - targetProxy = F78DD79E88AA7C72D2C7630B /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 8380A0037DB411A405266CD5 /* PBXContainerItemProxy */; }; - 76EBAA25C0E89FC850447018 /* PBXTargetDependency */ = { + 6C84C09A147E85B35E086BF1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 5308F3A03AE16A651E327C44 /* PBXContainerItemProxy */; + name = "IceHold macOS"; + target = D2C1A9BA75231D8469946A3C /* IceHold macOS */; + targetProxy = D650A6A6607044C14838039D /* PBXContainerItemProxy */; }; - 76F827D5F22741F0DE0112CB /* PBXTargetDependency */ = { + 6EAF8977CBD757836D3C473C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxyAMD iOS"; - target = 330758B0C9821D7E1E2243D3 /* IceProxyAMD iOS */; - targetProxy = 1DA75F379586881F62DEC72A /* PBXContainerItemProxy */; + name = "IceInterceptor iOS"; + target = 0CCC3C20156C399AF82BA12D /* IceInterceptor iOS */; + targetProxy = C148D02B6CEDAB28D97CAF65 /* PBXContainerItemProxy */; }; - 77EC7D9DEE34A6B7F04BCD70 /* PBXTargetDependency */ = { + 70CD224FB8E80C601FC7F1DB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = 137A22811E93D82B716007C8 /* Glacier2 macOS */; - targetProxy = 0B84F4707C85691977B46138 /* PBXContainerItemProxy */; + name = "IceServantLocator iOS"; + target = F27C8BBF5E4DB22EF58AF515 /* IceServantLocator iOS */; + targetProxy = 725FDDE0666ADDEF228E1844 /* PBXContainerItemProxy */; }; - 77F8492EF73ECDDC1787218E /* PBXTargetDependency */ = { + 7131C3403A2D441863F7E186 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceScope iOS"; - target = 0FE313AA3347701853A8ACC2 /* IceScope iOS */; - targetProxy = 2791207B562F08EEDE8694BE /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = EF17EE72FA310A0624E0A94F /* PBXContainerItemProxy */; }; - 784F589616673E41E6E10577 /* PBXTargetDependency */ = { + 720BF5D1D44C8F77A5585337 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = B19A744D8AB77B2B729518B8 /* PBXContainerItemProxy */; + name = "IceEnums iOS"; + target = 429CEDF95141D2685FE9AB01 /* IceEnums iOS */; + targetProxy = 713A2BBD74543BE9186E4FF3 /* PBXContainerItemProxy */; }; - 7A0D34B2D177C32128C645D0 /* PBXTargetDependency */ = { + 74564A42D52BBFA9E9715A73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = BB40FADABEB7A74BCFAF8930 /* Glacier2 iOS */; - targetProxy = 02F1D59BE481F8A321545E57 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 5A205E5256B40B6042194080 /* PBXContainerItemProxy */; }; - 7A7758F7AE666F1EBFDF5EB3 /* PBXTargetDependency */ = { + 74A503EEED98844A79AB1833 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl macOS"; - target = 9FEDBE2BC73385F81D251350 /* IceImpl macOS */; - targetProxy = 4B036C207C08D140D8ECDF94 /* PBXContainerItemProxy */; + name = "IceInfo iOS"; + target = FFD3EBD911A26B666F11DC8C /* IceInfo iOS */; + targetProxy = F2B2A9DEA03772448940BD96 /* PBXContainerItemProxy */; }; - 7ABF6AB7E9FC1E0443C5DF9E /* PBXTargetDependency */ = { + 7C9E2B828CEC22051C74CEFD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 4076824240EA3725053168B9 /* PBXContainerItemProxy */; + name = "IceGrid iOS"; + target = 3E1C18FAE5F2A3A2849292E9 /* IceGrid iOS */; + targetProxy = 6EBFF7F48E74EF95B563C696 /* PBXContainerItemProxy */; }; - 7AEC5A1458DB23B92EEB3D31 /* PBXTargetDependency */ = { + 7E97DDF1A5A8DECE5F1A021B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjectsAMD iOS"; - target = 1F921787D1BBEBC84AF46F5D /* IceSlicingObjectsAMD iOS */; - targetProxy = B1A28AE71B094403C2C0C8C7 /* PBXContainerItemProxy */; + name = "IceOptionalAMD iOS"; + target = 37631E1832EC47AB18B6F9F8 /* IceOptionalAMD iOS */; + targetProxy = A0B964A97E56EA4A520F2D12 /* PBXContainerItemProxy */; }; - 7B086A6685E226D7555642CE /* PBXTargetDependency */ = { + 7F5BC227C2BDD56F0A6C7308 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 5A357832ED6DB437413B159E /* PBXContainerItemProxy */; + name = "IceImpl iOS"; + target = 15259193E3C55F25AB0F68C2 /* IceImpl iOS */; + targetProxy = E14468F9EC4A90BE63C326F8 /* PBXContainerItemProxy */; }; - 7B7193622EFEA69428F66DE9 /* PBXTargetDependency */ = { + 7FDDCCA36B06D44409F6806F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 97B35E09FB8379402B16C9B9 /* PBXContainerItemProxy */; + name = "IceProxy macOS"; + target = 92A668B7841CFDC57756D6E7 /* IceProxy macOS */; + targetProxy = 6C00C204CBF7B1506CE50E8B /* PBXContainerItemProxy */; }; - 7B9A2F265DC3ACF93454979F /* PBXTargetDependency */ = { + 800E83C2B330AFEAD399DD60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 04774B6B043E06B20DDA85EC /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = D9A193151B4BA9E858011342 /* PBXContainerItemProxy */; }; - 7CFB1EAE4986B09E929407BC /* PBXTargetDependency */ = { + 832C8EF29E8BF213A71811E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 39EFC00272C6203BA2739F55 /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = CCE86294CB35A02288A09380 /* PBXContainerItemProxy */; }; - 7DE539FEE90D1986BF41DDAF /* PBXTargetDependency */ = { + 84D63EA5B75EFD1433CE435A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInheritance iOS"; - target = C11F92A0F52BB78CE42B609D /* IceInheritance iOS */; - targetProxy = B8E082D0B95AECE4310FFBD5 /* PBXContainerItemProxy */; + name = "IceLocation macOS"; + target = 24DFB14E537F560FB7A2C4BB /* IceLocation macOS */; + targetProxy = 46CF9B45AC233FABDD79EFDD /* PBXContainerItemProxy */; }; - 7E7A154541DD3F5526DA6955 /* PBXTargetDependency */ = { + 897EC357311088A4F5AA4A4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptions iOS"; - target = C353EC6DD74EF040A9869F1A /* IceSlicingExceptions iOS */; - targetProxy = 2F7DA7F9AD6E9BB9FD3237DC /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = B71C584CA75E8A5ED4B1ED58 /* PBXContainerItemProxy */; }; - 7ED6FE2BE0D824FEFE6F2BAD /* PBXTargetDependency */ = { + 8A9FD47E8658EE7705211187 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceUdp iOS"; - target = D0CB5D7E1779A34D43B5B89E /* IceUdp iOS */; - targetProxy = E6440D29EAE62D986D6FC567 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 07CDF98D8A1B02D1AD19FACC /* PBXContainerItemProxy */; }; - 7FB3F0BD3A0991E0CAF69DFA /* PBXTargetDependency */ = { + 8AAB5B505E0774A3ACC488F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocator macOS"; - target = F41AE083FE7A390670B538F9 /* IceServantLocator macOS */; - targetProxy = C7E6BB3A69B21AA9378983B1 /* PBXContainerItemProxy */; + name = "IceProperties iOS"; + target = B8B31D762B3677F746970AF6 /* IceProperties iOS */; + targetProxy = A0359E061251BE43F67CEEF6 /* PBXContainerItemProxy */; }; - 805D664C3733E17B045CD956 /* PBXTargetDependency */ = { + 8AC903386D3D6116DFDACF3F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 65E2CA13F3897003E6020246 /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */; + targetProxy = 22FB592105AF3E82C5B6B392 /* PBXContainerItemProxy */; }; - 80EF4016774DA399DD1B1987 /* PBXTargetDependency */ = { + 8BDB8A98B09045E5AB11B27F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInterceptor macOS"; - target = 1714972356F07102A679833E /* IceInterceptor macOS */; - targetProxy = 8B18A6C108529E5D0AE08A7C /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 5D22FFD629042D7E88A4C6FD /* PBXContainerItemProxy */; }; - 816C173A31F9452ADAF16BD9 /* PBXTargetDependency */ = { + 8C15E82AC048B7F75BF62545 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = AF3025EB1D4A3CDF25855D1B /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 63B459BA47359EAC6C74A3E7 /* PBXContainerItemProxy */; }; - 8372F8B77792626C7161922D /* PBXTargetDependency */ = { + 8D591E47149945369DF1771F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 0FFEF472F74C83504B38C5DA /* PBXContainerItemProxy */; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 3401CA5F00B4DEB13D644281 /* PBXContainerItemProxy */; }; - 8424FEE4E9D597D4BA072BEC /* PBXTargetDependency */ = { + 8EA188D77F70D24C2796F1F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAcm macOS"; - target = D7CF9E2B46E63FC31B7A1F92 /* IceAcm macOS */; - targetProxy = 6096BE5870763AC1855E4FEC /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = A79F4E7B8C8022F4E4E8E520 /* PBXContainerItemProxy */; }; - 8469BC8DE06514C0EC4415B2 /* PBXTargetDependency */ = { + 934DA8231C701557DF9C79CE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 9045E5A631A69D61EB1F9E8D /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 3759B96D9D365B8DDB0CEBC7 /* PBXContainerItemProxy */; + }; + 93D9D3EDF78007C8C23E1A41 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceAmi macOS"; + target = 0D82476565F3AEA63555293E /* IceAmi macOS */; + targetProxy = 4C89D5BB46AD1167F827A1FD /* PBXContainerItemProxy */; }; - 847597A48877E6EEE06837B9 /* PBXTargetDependency */ = { + 94E4BC494FADAB44F0A4A05E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = B68C23310174EDAB1C726EE7 /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = BE5965ED547B5BA3F3E5EA26 /* PBXContainerItemProxy */; }; - 87D911C3E22577CF86C47968 /* PBXTargetDependency */ = { + 9534CD955FA043C654E89173 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 1083543E7C3C54D87729DFFC /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 659A51CF1221C28304378595 /* PBXContainerItemProxy */; }; - 889161D8D617DAE3FB899EFE /* PBXTargetDependency */ = { + 97896DDCDED7480374941F2C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 3C299AFF4F7BCDF5320774F6 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 75C2A85B36D55E5EEF424BB6 /* PBXContainerItemProxy */; }; - 891470D2A3E36C5CA342397C /* PBXTargetDependency */ = { + 9882DAC1C90963F118992497 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDiscovery C++11 iOS"; - target = 85DA963BEF597DDF5EBD28D4 /* IceDiscovery C++11 iOS */; - targetProxy = B3ECC1E2787AE418FA27994C /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 5BADF5D9A4028AEDDFBB748E /* PBXContainerItemProxy */; }; - 89C9ED5DBA335F17B96A0507 /* PBXTargetDependency */ = { + 98FC60EF164A665E63B13F20 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocatorAMD macOS"; - target = 1849F40335AEAFEAB939B520 /* IceServantLocatorAMD macOS */; - targetProxy = 2056ABE6D73F234C39C0A109 /* PBXContainerItemProxy */; + name = "SliceEscape iOS"; + target = 4D5800AC0A437A45FB0049AB /* SliceEscape iOS */; + targetProxy = 036D846A6AF64973488231F6 /* PBXContainerItemProxy */; }; - 8D1A106E21F2556EE5A310A1 /* PBXTargetDependency */ = { + 990292A15E55958A41738506 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceBinding iOS"; - target = 1AAB45470D9803BF85F70BF0 /* IceBinding iOS */; - targetProxy = 4D3AF207C2965ADE012D2344 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = F7E75593187CF84DFF596746 /* PBXContainerItemProxy */; }; - 8DEE39D33DB085CA080A643B /* PBXTargetDependency */ = { + 99328E43F83EDAA0A512AF99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = F825B993E634C733D44A5574 /* PBXContainerItemProxy */; + name = "IceOptional iOS"; + target = C4C1475F0319943EE6BF6CAB /* IceOptional iOS */; + targetProxy = A2A1E77182CE84BD40C21B16 /* PBXContainerItemProxy */; }; - 8F3F465FF11C1D1348CB1EAA /* PBXTargetDependency */ = { + 9A48EDEDE82E2138C7527754 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultServant iOS"; - target = 408FAEC665C8C38D7A2248A7 /* IceDefaultServant iOS */; - targetProxy = 55D25AB9B857AE18CCAB5270 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 2A6BCBB826A171FFDBD954A6 /* PBXContainerItemProxy */; }; - 9026F726E66782655ECF0627 /* PBXTargetDependency */ = { + 9AF017062C8BBE42CF67CBB0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 43F27E2455DFDB8B0F43DF75 /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 731ECB1786180D7229E827DC /* PBXContainerItemProxy */; }; - 9265E9934EFD9A6F846D47E9 /* PBXTargetDependency */ = { + 9B992E1F5F07104C27BCC46B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdmin iOS"; - target = 45F2051058E66C596838C08E /* IceAdmin iOS */; - targetProxy = F4326B28E318075CA66DF1E8 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 93C12D6F5A8DB5FAD273F5B6 /* PBXContainerItemProxy */; }; - 92DCAC9E6B410FA728DDC0CB /* PBXTargetDependency */ = { + 9BD771586727B4841BFDEFC4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceEnums iOS"; - target = 595CBA41E37503369DC5E136 /* IceEnums iOS */; - targetProxy = 6E7BAB3FDAAFA5B13D1CC895 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = B523031CD273161B6D2E776F /* PBXContainerItemProxy */; }; - 94714092693980C3E9AB8A38 /* PBXTargetDependency */ = { + A4A639EE912CDFA594409636 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = F6C5BC7691501CEE31FF8230 /* PBXContainerItemProxy */; + name = "IceDiscovery C++11 iOS"; + target = 263F8736790034DA7D5B83D1 /* IceDiscovery C++11 iOS */; + targetProxy = 2902CAF1CFE84D4795C4C6B1 /* PBXContainerItemProxy */; }; - 970D63C1D4A4BF15FA93EC58 /* PBXTargetDependency */ = { + A4D2BF679F3B95A6B937905B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 3B24D3755A46DDD29C24B72D /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = F7ACA790D939A0F3860CFBFF /* PBXContainerItemProxy */; }; - 97B000A6252B61239F60D7A4 /* PBXTargetDependency */ = { + A57627368CC0EE1A16DCB109 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 8F82ACAB074FFBE3B4D8F339 /* Ice C++11 iOS */; - targetProxy = 5DB13D8EE71751CB075CD794 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = BEFAAB2D9FB1EEE67D4C764A /* PBXContainerItemProxy */; }; - 9836538E8EA0AF80582F8BC0 /* PBXTargetDependency */ = { + A5A0858FF649EA88502C6129 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = BEB34F0BDDE3C8CE03F2277A /* PBXContainerItemProxy */; + name = "IceAcm macOS"; + target = B0567014FA30FBBFC0E31969 /* IceAcm macOS */; + targetProxy = 062208D122C76FB49A69BA54 /* PBXContainerItemProxy */; }; - 994A88656CBB1B53490E2472 /* PBXTargetDependency */ = { + A5FF4459AFF629E41C5AD166 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocatorAMD iOS"; - target = 86D99596C3AC52CDD7C6A937 /* IceServantLocatorAMD iOS */; - targetProxy = 7F77B050D8D9177B58C744C6 /* PBXContainerItemProxy */; + name = "IceSlicingObjectsAMD macOS"; + target = 00F4F87A480D875F2C651B81 /* IceSlicingObjectsAMD macOS */; + targetProxy = 452481330D51BBEF58874AAD /* PBXContainerItemProxy */; }; - 999DBEC3129B500169220DB6 /* PBXTargetDependency */ = { + A6B47FEC89AB78ED55334147 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = A0F016AD1E999B7BEEFD079D /* PBXContainerItemProxy */; + name = "IceGrid iOS"; + target = 3E1C18FAE5F2A3A2849292E9 /* IceGrid iOS */; + targetProxy = FEA730C593FB853B9D5918F5 /* PBXContainerItemProxy */; }; - 99C57F8B7836AB8A160E5CE0 /* PBXTargetDependency */ = { + A7A853B5689F1F86A54D9059 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = C5ED53B11A35E611F70CD0BF /* PBXContainerItemProxy */; + name = "IceScope macOS"; + target = 68BE8ACEDDD7433FDD2E5099 /* IceScope macOS */; + targetProxy = 2D14FA2555165E862E5DFE97 /* PBXContainerItemProxy */; }; - 9AE0565ECFF368D791619365 /* PBXTargetDependency */ = { + A7E74AE38024FCF81760BB7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = DFA5BCC169F4D1EAE539311E /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = C4F17837E68B18F1150A9D09 /* PBXContainerItemProxy */; }; - 9B05D1352749078F9A4F050F /* PBXTargetDependency */ = { + A94CA64CC5DF9174C6BFB90D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm iOS"; - target = 02E12A01B24B3B3E6927EAD6 /* IceStorm iOS */; - targetProxy = 2BF05714148999A822860758 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = CFA71F24E3EF55BB92294A36 /* PBXContainerItemProxy */; }; - 9B5B74685DA573133A1206AE /* PBXTargetDependency */ = { + A9CA7AFB4C01AA70E2A69E0E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = B349CD7089A08FE116851B73 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 698E4783ACCF8203631D5A4E /* PBXContainerItemProxy */; }; - 9BE01873452B4CDE2505E761 /* PBXTargetDependency */ = { + AB3E1EEE0E8905A364D54485 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = F6CC7D98224224CD6B4D1B39 /* PBXContainerItemProxy */; + name = "IceExceptions iOS"; + target = E564301A82DF55065D5215D1 /* IceExceptions iOS */; + targetProxy = 4F697F775AFF7DEC113B1B3F /* PBXContainerItemProxy */; }; - 9C64C861ED970F6040F57C2D /* PBXTargetDependency */ = { + AC4CC6B8A2031AD2045B501A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 163882765647C8ED7AD33778 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 4BA17AA9E5DDCA68E293DAA9 /* PBXContainerItemProxy */; }; - 9C7E6B2770EB36DB2C4A986C /* PBXTargetDependency */ = { + ADB6979E4FEC016457718AE0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid iOS"; - target = EACA18083EFA62557FBB6215 /* IceGrid iOS */; - targetProxy = 0ADE15174170E0B43C1FEB12 /* PBXContainerItemProxy */; + name = "IceInheritance macOS"; + target = B3DD3174FEA726C76B98C914 /* IceInheritance macOS */; + targetProxy = FDA7520F217E9DCD8734D732 /* PBXContainerItemProxy */; }; - 9D2DD32A0256D385ACB54808 /* PBXTargetDependency */ = { + AE85E35BBB4EE9007FC59B34 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptionalAMD iOS"; - target = 032E51349714AC140B16B6B4 /* IceOptionalAMD iOS */; - targetProxy = 2406FB9C52A6CD48CF8E7E30 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 873CE4E43C3A14151F88412E /* PBXContainerItemProxy */; }; - 9E6E69F1F02510C56CDA7615 /* PBXTargetDependency */ = { + AECF227D9832582C2723CB16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = FA303C60AEC916F5237A3111 /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = B015EA95DFADDD31E102004C /* Glacier2 iOS */; + targetProxy = F29B89EA6B0E2094CEA3BB00 /* PBXContainerItemProxy */; }; - A02E59E12B944AD9B146C4D4 /* PBXTargetDependency */ = { + AED09B4E4172B4B44AA7DCA8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 1CF5C6CF222BB3A825FE1731 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 31FEEE23FA4CF66E31A7A873 /* PBXContainerItemProxy */; }; - A0E3D4AC198A6DC6808F2DEC /* PBXTargetDependency */ = { + B2588F8928BC033C40F3E59B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = FA116D1FBBE97D6621713DEC /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = EDB765EAF9B6F87E4B6F972C /* PBXContainerItemProxy */; }; - A497425BB144004D91B3A24C /* PBXTargetDependency */ = { + B2979DB87EC9525F4FC07F61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 3E0292931E0236A0D004F053 /* PBXContainerItemProxy */; + name = "IceOperationsAMD macOS"; + target = 6BA09F6BC0797F624A68E17E /* IceOperationsAMD macOS */; + targetProxy = 771D9AA9820D0ED832E73009 /* PBXContainerItemProxy */; }; - A54A8023DAA2646B9E387228 /* PBXTargetDependency */ = { + B3507191F0D173F77DCDC320 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = D7446F13E4963912133B5474 /* PBXContainerItemProxy */; + name = "IceInheritance iOS"; + target = 78DF05AE60584A8F9A7E374B /* IceInheritance iOS */; + targetProxy = 284D5E91C3E666A9474E965D /* PBXContainerItemProxy */; }; - A54FA4CF9616CE1B19F5865B /* PBXTargetDependency */ = { + B588339708F34300FC993054 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = C8F115F9CA8B54E9534DEEFC /* PBXContainerItemProxy */; + name = "SliceEscape macOS"; + target = 096C6B1CDEA03B0A33EF7AB7 /* SliceEscape macOS */; + targetProxy = 6C2D2F0E813CD0407F4628D6 /* PBXContainerItemProxy */; }; - A62FEAA4E469B98C82503827 /* PBXTargetDependency */ = { + B72170EFD46C6CC04FAD3073 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperations macOS"; - target = B502D4DB10FAD01329293155 /* IceOperations macOS */; - targetProxy = B7DAD4A79D1B39A351361B43 /* PBXContainerItemProxy */; + name = "IceAdmin macOS"; + target = 3E00BC6A9646D9FED455066C /* IceAdmin macOS */; + targetProxy = 576C5FBC4CC1D555CF56F894 /* PBXContainerItemProxy */; }; - A88ACEF96D50D5914BD3DC92 /* PBXTargetDependency */ = { + B8C1043C2FCAE46F711B6D95 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInvoke macOS"; - target = 6D2A74C3BC8748EAD4AF10CA /* IceInvoke macOS */; - targetProxy = 7909541A87A3969E62A8D76D /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = A0CA1F9B17E30E7BAF26B71C /* PBXContainerItemProxy */; }; - AC8A20FB7CE10C7C4352C472 /* PBXTargetDependency */ = { + B9BB69BAC71C0FAA58686230 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 1CA7EF0186E289C74677C302 /* PBXContainerItemProxy */; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = A3BC08A426E1EAF2D3E3C628 /* PBXContainerItemProxy */; }; - ACEDD98247F376B68E088EB8 /* PBXTargetDependency */ = { + BA5E9FBA424E548C1DFFCFB3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceRetry iOS"; - target = 26B6DCD78B127AE4BDB35209 /* IceRetry iOS */; - targetProxy = 1E0C5D84390243D1F093EAE9 /* PBXContainerItemProxy */; + name = "IceInvoke iOS"; + target = 6272130C7E84066D9A3C1C41 /* IceInvoke iOS */; + targetProxy = 4A7D14E003FE473FDF170A71 /* PBXContainerItemProxy */; }; - ADD406C16E8B6E9D5DAB1A80 /* PBXTargetDependency */ = { + BA76E7009C807481CDE371D6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 69C0973CE4AC597D87F0CC67 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = D4F4E1CE75C1E6E9EEED1551 /* PBXContainerItemProxy */; }; - ADFAB75E29386469C7988912 /* PBXTargetDependency */ = { + BAC4BB0CCC6787349A6306AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 97396975E754D36A4408A58E /* PBXContainerItemProxy */; + name = "IceEnums macOS"; + target = 14E9DB904AE22B49F37C4175 /* IceEnums macOS */; + targetProxy = E0BE0570BFAF46ED9153321D /* PBXContainerItemProxy */; }; - AF013F8FEADD5AA87CB921C4 /* PBXTargetDependency */ = { + BCE12792758EF8EA92B0B17E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = C454691EF6B4F7655269AFAB /* PBXContainerItemProxy */; + name = "IceUdp macOS"; + target = 39438194D11EA03199C6686E /* IceUdp macOS */; + targetProxy = A013D5E988F0FD2A59503BA5 /* PBXContainerItemProxy */; }; - AF533C8405620F251028A4E9 /* PBXTargetDependency */ = { + BD6A42DE2ED05DF514BF4656 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceRetry macOS"; - target = 3C1B36794C4B3EFB2B618967 /* IceRetry macOS */; - targetProxy = D3D242A6092E087E9C48B054 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 60C71CBF8E99A2D051443F3D /* PBXContainerItemProxy */; }; - B010D26E681F43AB12A9D221 /* PBXTargetDependency */ = { + BDDD5B9DCDD4094791EEB3BA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */; - targetProxy = D40E9987316CBD6277131445 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = EC5119E3EC0EF3AD72305691 /* PBXContainerItemProxy */; }; - B0F2306AD9E2F343B9691960 /* PBXTargetDependency */ = { + BEF15874D70EED59180D035F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAmi iOS"; - target = 8FBA8150AB11D2A819C1D2EA /* IceAmi iOS */; - targetProxy = 0C3FFB5250946DB2F62ED0B2 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 254F4C346B84994DAE5A76D5 /* PBXContainerItemProxy */; }; - B140730A523448E31C4552CE /* PBXTargetDependency */ = { + BFCE5FB9230491517B1F422D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjects macOS"; - target = EFD2EA453C644DB2E82BF9B6 /* IceSlicingObjects macOS */; - targetProxy = D426300D75A672E2E4B19816 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 87763892645110E58F8A6899 /* PBXContainerItemProxy */; }; - B1EA7490102A614CD39BDA79 /* PBXTargetDependency */ = { + BFE70C8A03062A01DB129678 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 124951D212D9706A742AAD8A /* PBXContainerItemProxy */; + name = "IceSlicingExceptions macOS"; + target = 2B6CEDAE0FF7E5682835597A /* IceSlicingExceptions macOS */; + targetProxy = BB3D6DAD19EBA911820ACFD7 /* PBXContainerItemProxy */; }; - B250A10EA0C9DECC08C517CE /* PBXTargetDependency */ = { + BFF201D84DE85053F0DDB77C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = D8F6F2757A01AC13B5411B8B /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */; + targetProxy = 6B7ECA4BD2F60079BF41B3AD /* PBXContainerItemProxy */; }; - B2F371E275144C1F37C08D65 /* PBXTargetDependency */ = { + C111472E48165E881EFF337E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 04E20A5BB846D91BB012068F /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */; + targetProxy = C58DECEDE46042796024EE83 /* PBXContainerItemProxy */; }; - B31CA61BAECA3671B98FC954 /* PBXTargetDependency */ = { + C25E171182CE76078011C5AD /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 70992C659FB809947542BF98 /* PBXContainerItemProxy */; + name = "IceObjects macOS"; + target = 8BCEB954ACECD9E143B3DD52 /* IceObjects macOS */; + targetProxy = 9682EE4EEAA6C1E874A6E4E7 /* PBXContainerItemProxy */; }; - B32A054F28A69988E16FDE93 /* PBXTargetDependency */ = { + C48DC5160B65EC80A35EED6B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm macOS"; - target = 0763ED05481F11F83E2EE767 /* IceStorm macOS */; - targetProxy = F84548D90CFD4FE124DF0010 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 49DC6ABB392A3D3F4D708706 /* PBXContainerItemProxy */; }; - B3D96F5FB71D69F5D938AC3C /* PBXTargetDependency */ = { + C6423C92B65868913DA5D155 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = C3DE4AFD27BC034B2AFA89FD /* PBXContainerItemProxy */; + name = "IceExceptions macOS"; + target = 969752F2E953B2ED36823477 /* IceExceptions macOS */; + targetProxy = 70F65C9FA842A68DE863558B /* PBXContainerItemProxy */; }; - B48AB98E8E8805BCBEC6BA31 /* PBXTargetDependency */ = { + C711DAE3B9BDBD24024146A2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl macOS"; - target = 9FEDBE2BC73385F81D251350 /* IceImpl macOS */; - targetProxy = BD7EBF2F4BEE5CE80F7FDE34 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 5F806804FDC3C3DCB802D603 /* PBXContainerItemProxy */; }; - B4972BED37D4C4FAF0372BC3 /* PBXTargetDependency */ = { + C7CAB4442CBF9EBCD7CDEEF0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptional macOS"; - target = E2CC2C0A9253A8A9567DA40C /* IceOptional macOS */; - targetProxy = 951326359780A13415B74340 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 26FD4E9CD44C491B6E962790 /* PBXContainerItemProxy */; }; - B56ACA4EB35E8DF442950B00 /* PBXTargetDependency */ = { + C81BC52B6E5E1B55AA526DCA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = DE066803381D22096C90B687 /* PBXContainerItemProxy */; + name = "IceStorm iOS"; + target = 5722522ABF0B09D7099DBA1F /* IceStorm iOS */; + targetProxy = 254EB829A6A55C1191255D58 /* PBXContainerItemProxy */; }; - B68D70820828D10DDE6DEFDC /* PBXTargetDependency */ = { + C952D4C257062F34819F1D02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 088E53D66ADCB77044B68F04 /* PBXContainerItemProxy */; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = A3DE40439BF5697F6F51FA48 /* PBXContainerItemProxy */; }; - B6A8FC2A6C0C716CE1C1573A /* PBXTargetDependency */ = { + CA1C927F4E7E3DBC98AEB662 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 2E362D204705D96236DA7308 /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 72E721853B32D87FC4962163 /* PBXContainerItemProxy */; }; - BB157A6DEBF88388B1D602FD /* PBXTargetDependency */ = { + CAC9A3B84C1B39ABEFF74F88 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = D4162EF180337D61BC95E0E3 /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 2BE57B1E72AABA6197DE52F5 /* PBXContainerItemProxy */; }; - BBEC5248251B42CD5A5C7BBD /* PBXTargetDependency */ = { + CADAFB3437C135AD3AC5469E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocator iOS"; - target = AF397ABBF2A5A4C1FCF90790 /* IceServantLocator iOS */; - targetProxy = 79291E616A79762AAA043BC8 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 16B38D07EC66222AD1CBE7E1 /* PBXContainerItemProxy */; }; - BD7815CE5D3ED4B6360BA769 /* PBXTargetDependency */ = { + CB3B7B0043F55BF6802CD033 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocation macOS"; - target = 0520084212F98FC56E36026A /* IceLocation macOS */; - targetProxy = 2C1760F84B17A927353B44D7 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 6A0E20DFD90E56FE5B1721D9 /* PBXContainerItemProxy */; }; - BF1240667740DFEF9BA536F9 /* PBXTargetDependency */ = { + CC7AFDDAAB23EC8E363F1BE9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 95898F407A05B5C7BF184F74 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 50ED7029C813B38C31E4AA07 /* PBXContainerItemProxy */; }; - C1FB66DD25250EB4BEFADE97 /* PBXTargetDependency */ = { + CDDBC496BCFD2351CD8295A9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = BE883B87719EC8D076FF6B78 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */; + targetProxy = F1D462422970113630813AAE /* PBXContainerItemProxy */; }; - C3138A5B1B62555F56113792 /* PBXTargetDependency */ = { + CE5A7F4270E7F56C10EC6FCC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptions macOS"; - target = BA6B1EBD97713F7883F4CA94 /* IceSlicingExceptions macOS */; - targetProxy = B2EF5A0F019D0798C8E56756 /* PBXContainerItemProxy */; + name = "IceRetry iOS"; + target = E08F994D81F1404BD2BF4D5A /* IceRetry iOS */; + targetProxy = AAE46F8A6CE4764CD1EB75C6 /* PBXContainerItemProxy */; }; - C81E1EEBD11F06A34298A694 /* PBXTargetDependency */ = { + CE5DAAAB7F64DF3F8A27B067 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceScope macOS"; - target = 94D926D5469FBD751BF9B740 /* IceScope macOS */; - targetProxy = AE9B904DF12B5B648AE23337 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = CD92B8558C26C6D9F51DC698 /* PBXContainerItemProxy */; }; - C8B015F8C20EF516FDB222EC /* PBXTargetDependency */ = { + CF36AA42B1C161B8DBB5B733 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 8779B8D8D3BACED7A8A54A9F /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = E77E183E549A254F40DE3B02 /* PBXContainerItemProxy */; }; - CD026E743E238B67FB126CF4 /* PBXTargetDependency */ = { + D035A62BF44ACC71CA42FCCA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = 137A22811E93D82B716007C8 /* Glacier2 macOS */; - targetProxy = 8490387359BE5724994B3D56 /* PBXContainerItemProxy */; + name = "IceServantLocatorAMD iOS"; + target = 77D3FCCE81BDE4D86C21D2FC /* IceServantLocatorAMD iOS */; + targetProxy = B4CEAFEF840521EE5CB279B2 /* PBXContainerItemProxy */; }; - CD7274BC30E2C97E3C21B93C /* PBXTargetDependency */ = { + D0BB0CEAEC672F130A0776D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 46EF2CE00F01F9EB508A2670 /* PBXContainerItemProxy */; + name = "IceGrid macOS"; + target = 770013F768356B5BE1BB460C /* IceGrid macOS */; + targetProxy = 58E82FCE800E5C3718A52B9B /* PBXContainerItemProxy */; }; - CD9514560682743BF11656FF /* PBXTargetDependency */ = { + D275F1DAA709D3AEF814C624 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = F000AFFB3A25C7ABC28E92B3 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 2F0B268568A407079B46543E /* PBXContainerItemProxy */; }; - CDA9FFCA9232FD60A26F7D22 /* PBXTargetDependency */ = { + D416128806C19231D0758179 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperationsAMD macOS"; - target = 4A4450AB007BDD9E08CDC48B /* IceOperationsAMD macOS */; - targetProxy = 2F8D1CAC651E8D59006EFD72 /* PBXContainerItemProxy */; + name = "IceOperationsAMD iOS"; + target = FB42232B69F121EBC030A837 /* IceOperationsAMD iOS */; + targetProxy = A9514F70D63C6A5A071F30C7 /* PBXContainerItemProxy */; }; - CDD8B021773917AC568C6F04 /* PBXTargetDependency */ = { + D7D4C3899E06FA984CF0ABA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 2DB10530B98F5C10277BDF10 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 22FF4760559EEC96A48CD0E1 /* PBXContainerItemProxy */; }; - CECFC659A6279C6A70417574 /* PBXTargetDependency */ = { + DBC12F078658209CBDE27327 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = DAC1B85E691C0D40E8D1F5FC /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = B97E399B4A2F2C32AF384EEB /* PBXContainerItemProxy */; }; - CF430178ACC315250CE4C1B2 /* PBXTargetDependency */ = { + DDF36C186BCD8C7411F54C61 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 7340355D75412875945DEE04 /* PBXContainerItemProxy */; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = A908C6545007DE1E5506F130 /* PBXContainerItemProxy */; }; - D0866759E0F64B5A3BDE27E1 /* PBXTargetDependency */ = { + DECBA1CB2D07F2D341550502 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SliceEscape macOS"; - target = 7E8564022216773735645574 /* SliceEscape macOS */; - targetProxy = DA826583F9B7BF0EEBF2FB41 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 259BAF7AA9AB756835E68D85 /* PBXContainerItemProxy */; }; - D127CB2E754E2DEFE38A24CE /* PBXTargetDependency */ = { + DFAE8AAB920636E63569BEB4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceTimeout iOS"; - target = 81EBCBBD81DAA61D4581DF4A /* IceTimeout iOS */; - targetProxy = 73CA73AF92CF2C882906C7EF /* PBXContainerItemProxy */; + name = "IceSlicingExceptions iOS"; + target = B0416354B0422CE06305497C /* IceSlicingExceptions iOS */; + targetProxy = CE2AE6F980B037377B66B113 /* PBXContainerItemProxy */; }; - D22A61F81811EA2A3879F9EF /* PBXTargetDependency */ = { + E0BF637470C41B5A1EDD5D66 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = E33E7B8EB30DF9BB129AA6C3 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = E32897EE35C8CACD0A7F8480 /* PBXContainerItemProxy */; }; - D2B93A66D1C5BFB26864EE66 /* PBXTargetDependency */ = { + E158DEA7863B9E28F883AEC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSSLConfiguration macOS"; - target = 182B60B239B1CC9AAF97C3ED /* IceSSLConfiguration macOS */; - targetProxy = 75E30D8BC5881EFBF70EA140 /* PBXContainerItemProxy */; + name = "IceImpl macOS"; + target = E47E556F6FF734E970050937 /* IceImpl macOS */; + targetProxy = 5563B0FB65D1914F101DC69E /* PBXContainerItemProxy */; }; - D39800CA0A56949337A5D33D /* PBXTargetDependency */ = { + E16FB8DFB5947B0E90BD3B28 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = E4E19538F1C589FEC4A22691 /* PBXContainerItemProxy */; + name = "IceAcm iOS"; + target = B6B9D5B730E90977303A8BE3 /* IceAcm iOS */; + targetProxy = 53967316851E8DD578A7CADF /* PBXContainerItemProxy */; }; - D514AB5DCED2A6361B7E6E9F /* PBXTargetDependency */ = { + E404EE64F84E3BBD294238F5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDiscovery C++11 macOS"; - target = 74391EA658CAB520F6080EFB /* IceDiscovery C++11 macOS */; - targetProxy = 22C284711804C2B72408557A /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = 27BA347B00896E18F811823C /* Glacier2 macOS */; + targetProxy = 47C1A51B4AD6D01F1A97913A /* PBXContainerItemProxy */; }; - D5D1116879BBBD478325357A /* PBXTargetDependency */ = { + E4187628621AC05D211283D5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice C++11 macOS"; - target = 9F316F6F4FE88F030A110125 /* Ice C++11 macOS */; - targetProxy = 10454185DE4E6FB837057223 /* PBXContainerItemProxy */; + target = 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */; + targetProxy = 1CFF3D08008F34CC6B0DED2E /* PBXContainerItemProxy */; }; - D844D0ECF798FA08E00F62AE /* PBXTargetDependency */ = { + E4EEDB6E0DB6CE2C862838D3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 10D49A2F0F75754D60170585 /* PBXContainerItemProxy */; + name = "IceLocatorDiscovery C++11 macOS"; + target = 1564B348BA2786B8C14E7ADE /* IceLocatorDiscovery C++11 macOS */; + targetProxy = A157DC24CBE36B244ACB33AB /* PBXContainerItemProxy */; }; - D9661EC214A87FEC6F26326F /* PBXTargetDependency */ = { + E5CC56D0327A0347CD9AB753 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 101049B04F050F0556BAEDC1 /* PBXContainerItemProxy */; + name = "IceOperations iOS"; + target = 27F3896A1D44D94EF855517D /* IceOperations iOS */; + targetProxy = B94FFD3BF72B7B892C425131 /* PBXContainerItemProxy */; }; - DBB9E5A459AABFB341F95ECE /* PBXTargetDependency */ = { + E6B46F39DA1C4362ABCC5A4F /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = E0482DF36F85D8040DD1A018 /* PBXContainerItemProxy */; - }; - DCD68B47F3B0FFB5D08298E3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceInvoke iOS"; - target = AD5C495F17B512B2D13CC822 /* IceInvoke iOS */; - targetProxy = BEDBE2EA1EECA7EFB1E39F8B /* PBXContainerItemProxy */; - }; - DF851CD15E175B9CF10F503A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 15E475DDE808AF169C09737D /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = F4338620F6575E0B75D4964F /* PBXContainerItemProxy */; }; - E5B1D04C114B228AAE5931FF /* PBXTargetDependency */ = { + E7AE64DDACDAA212A2356ADA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = AB49C261B8E6842F0934E90E /* PBXContainerItemProxy */; + target = 8F022C46667133AF20CDD4CC /* Ice macOS */; + targetProxy = 6AD2A0060F73499638F052C1 /* PBXContainerItemProxy */; }; - E68C4D1E19DC1BD7420EA436 /* PBXTargetDependency */ = { + E86A2C6BD0F6E31B15F04CC2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 6FD91744CC3C92594C713913 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = F686607852CB67216AA7BB52 /* PBXContainerItemProxy */; }; - E759A25BEB16FB95D4BFA75F /* PBXTargetDependency */ = { + E928D870FD0AA9E48537C782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInfo iOS"; - target = 53EC7722C4E553C8B5189060 /* IceInfo iOS */; - targetProxy = 826B47DEC92C7B1AA09ABB5C /* PBXContainerItemProxy */; + name = "IceInvoke macOS"; + target = 713B71D014689185E9E05395 /* IceInvoke macOS */; + targetProxy = 90EAEEBA767B1E67CDEACCD2 /* PBXContainerItemProxy */; }; - E7807E710FE56F54258C3529 /* PBXTargetDependency */ = { + E94DDB62ECF9533EA3F2112D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjects iOS"; - target = BC8247889BA776D5F194850C /* IceSlicingObjects iOS */; - targetProxy = 7BB5FF0440E7397329F730FF /* PBXContainerItemProxy */; + name = "IceAdapterDeactivation iOS"; + target = 28A1C2F2EB8DCCF1AFE83661 /* IceAdapterDeactivation iOS */; + targetProxy = 38088E7956F252C3262A6F6E /* PBXContainerItemProxy */; }; - E7D0BCA7B6CE9083E6FDA175 /* PBXTargetDependency */ = { + E9AC98A3B2B578F64DA7E752 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdapterDeactivation macOS"; - target = 30CD23A6E9655B858C148892 /* IceAdapterDeactivation macOS */; - targetProxy = 3894FA8C71251D14C413F375 /* PBXContainerItemProxy */; + name = "IceSlicingObjectsAMD iOS"; + target = EA20FD9B92B4F4A508F0738F /* IceSlicingObjectsAMD iOS */; + targetProxy = FAB4BD8100D683B13DF8CD38 /* PBXContainerItemProxy */; }; - E97C2275EAEF1641202D323F /* PBXTargetDependency */ = { + E9DABD37E785A712124E697A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = D37C81BBEC64F74D436EC901 /* PBXContainerItemProxy */; + name = "IceRetry macOS"; + target = CA4363C4B69F792FD44B1A13 /* IceRetry macOS */; + targetProxy = 3E6C8981BB05A82E5B46DA22 /* PBXContainerItemProxy */; }; - EB267888323925AD46EE8F50 /* PBXTargetDependency */ = { + EBF87720282F082544399E99 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultServant macOS"; - target = 85AD9F1A782BBCA078D72ECA /* IceDefaultServant macOS */; - targetProxy = 5B79C9D4A01E72B879EDEB10 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = F40C812FFC2DDF6D46FFC42D /* PBXContainerItemProxy */; }; - EBF1E054AF40F03178AEB36E /* PBXTargetDependency */ = { + EE82C6ED95BC44037DA4412B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 761A21ECE288F318C0F07F58 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 650507FC56E67E6424A58185 /* PBXContainerItemProxy */; }; - ED059F1D27D335B3B3C32D68 /* PBXTargetDependency */ = { + F03EA759905DEDFC7B18290C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdmin macOS"; - target = EC69EEBE9D64F07481829BFA /* IceAdmin macOS */; - targetProxy = FFE50197D1F8471ADAEC705D /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 47522CF62B0BDA6DDA9992C4 /* PBXContainerItemProxy */; }; - EE47DB68A54BFBE2BB606463 /* PBXTargetDependency */ = { + F10735D401705032A9100A7F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 9D65E855E55E1AB1E46C47C1 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 87ABD59DFD4BEA6D6A406C73 /* PBXContainerItemProxy */; }; - EE69B54FDCFCC9142CDAB66C /* PBXTargetDependency */ = { + F33665458C5E4F7379E8A069 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProperties iOS"; - target = 6204C55F63CC62BE2A2B08C9 /* IceProperties iOS */; - targetProxy = 5E92589DEC11FF0774D2FC4C /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = 1F3015AD5B46D646046CD330 /* PBXContainerItemProxy */; }; - EE8E0BD703C15E23C439CB28 /* PBXTargetDependency */ = { + F338CFC8737E1990D95E88D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperationsAMD iOS"; - target = C386F0ADF5BCB591C41D4FFD /* IceOperationsAMD iOS */; - targetProxy = 1F934DA62B7876554BFE25E3 /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = B015EA95DFADDD31E102004C /* Glacier2 iOS */; + targetProxy = 9A16ABC88E61CBD482EF810B /* PBXContainerItemProxy */; }; - EEE8DEA7998BB725A223FFDD /* PBXTargetDependency */ = { + F66CBACFBF5ACE1C684F0F2B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = AD2702EF42AD7DDA05EC2083 /* TestCommon macOS */; - targetProxy = 5F13CBE277E8222A756266A1 /* PBXContainerItemProxy */; + name = "IceGrid macOS"; + target = 770013F768356B5BE1BB460C /* IceGrid macOS */; + targetProxy = 0949EA22F4B01AD12CBB5979 /* PBXContainerItemProxy */; }; - EF8D9D52D26DEE70F42BF3C6 /* PBXTargetDependency */ = { + F792378C33010C66EEB34D7B /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 78B89ACEA5183EDBD231250B /* PBXContainerItemProxy */; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 15879DAC8086124116B6869D /* PBXContainerItemProxy */; }; - F05327602CDFF152C5D841C4 /* PBXTargetDependency */ = { + F7A765493A04F5E1A473ED60 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl iOS"; - target = A9149583C7CA34903D80B3C4 /* IceImpl iOS */; - targetProxy = F2B3FE6B4DECBBFC3B769C20 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = 780327C8CE3D30662467C4D5 /* PBXContainerItemProxy */; }; - F09E6328CE01286C6ADD95F9 /* PBXTargetDependency */ = { + F8B2F444158A861CFEFE71FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 8991DFD0D88BB4FBC68E3FF7 /* PBXContainerItemProxy */; + name = "IceScope iOS"; + target = 6ABC458490AA5F904B381F7D /* IceScope iOS */; + targetProxy = F16177A362E8400BCAED17B7 /* PBXContainerItemProxy */; }; - F1BA5260866BD4B2D46B9437 /* PBXTargetDependency */ = { + F93AB82337F7ABBBCCB73CAC /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = B4E319A813799C8D726C4379 /* PBXContainerItemProxy */; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = E695A78610E3BF21AF2E469C /* PBXContainerItemProxy */; }; - F5AD26B150EBC63B14C7C1A5 /* PBXTargetDependency */ = { + FA56A7280BEC89FE70519B68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = D75D41C2BE55D0728A6B69A5 /* PBXContainerItemProxy */; + name = "IceStorm macOS"; + target = C7C6F15DD53FB4E2316C8AA3 /* IceStorm macOS */; + targetProxy = 991E13A1336380BC10E34B65 /* PBXContainerItemProxy */; }; - F688DECE8B107A49A6AD8DCF /* PBXTargetDependency */ = { + FABB5A728EB763E133148B73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptionalAMD macOS"; - target = 205D8173670283F9A6ADDECA /* IceOptionalAMD macOS */; - targetProxy = 483533F0757ED3F22A50F73E /* PBXContainerItemProxy */; + name = "IceStorm iOS"; + target = 5722522ABF0B09D7099DBA1F /* IceStorm iOS */; + targetProxy = B2D2ED3DAE209ABD4665CF6C /* PBXContainerItemProxy */; }; - F693659B4A21E81E462246B8 /* PBXTargetDependency */ = { + FB94CB2385382EAB605FFA78 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = 8060445ABDBD1051C1344C96 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; + targetProxy = A49B5F2F56F51281018F1781 /* PBXContainerItemProxy */; }; - F828F317335931B5298DF358 /* PBXTargetDependency */ = { + FBC8B2CA9E0EC001FFDBCC4A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = BDB1F608C841B14238DB67CF /* Ice iOS */; - targetProxy = B898B88B9D2370C90091CA70 /* PBXContainerItemProxy */; + name = "IceSlicingExceptionsAMD macOS"; + target = 3682D0A08A431497D8699B03 /* IceSlicingExceptionsAMD macOS */; + targetProxy = D3C23D87DFDCA738814D482C /* PBXContainerItemProxy */; }; - F84CB7D8874C47223236E6E2 /* PBXTargetDependency */ = { + FC9B91912DEDE6206860CBB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjectsAMD macOS"; - target = E3479E14717F19236E306587 /* IceSlicingObjectsAMD macOS */; - targetProxy = D8A4B24B1515F28B19D2FAF9 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = 47EF87D7ED829723C501BBBC /* Ice iOS */; + targetProxy = 27E10F3E72C61E3680C6D05E /* PBXContainerItemProxy */; }; - FC70EE54AE34A09FE39B3613 /* PBXTargetDependency */ = { + FDDC6921F7FA776C8D389BC0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = A06E150DA767B6FC743BAF10 /* TestCommon iOS */; - targetProxy = 74871813383637AD809DB571 /* PBXContainerItemProxy */; - }; - FD14DE722F05C3B574DE1635 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 5B62EB88A0D7C4BC05CF553A /* PBXContainerItemProxy */; - }; - FD67C0C61277F39D5551F292 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 674B5652E10D914DD5AA0D14 /* PBXContainerItemProxy */; + target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; + targetProxy = CD9099A61B35FDCAC27B5E62 /* PBXContainerItemProxy */; }; - FECA0D68F9BE92C797C3726F /* PBXTargetDependency */ = { + FF15AD1FAD609A46D7E75A0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 1B61C6EBFA17380F9C3CC36E /* Ice macOS */; - targetProxy = 75CA660A2D6F6AEC6D522233 /* PBXContainerItemProxy */; + name = "IceDefaultServant iOS"; + target = 4685FAE2AEBE43E1EEA7F814 /* IceDefaultServant iOS */; + targetProxy = A3C1495B32AB5F22BE735595 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 06844834B982E90B8CC6C3FF /* Debug */ = { + 00C763F71BB41D64C72F5B08 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14263,55 +14265,61 @@ 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.SliceEscape; + PRODUCT_NAME = SliceEscape; + 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; }; - 098885B90E4705B56363648B /* Debug */ = { + 011CC2AF958F50548FC2A0FA /* 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/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.IceRetry; - PRODUCT_NAME = IceRetry; + 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; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 0A2F8D5157217E7EF2362077 /* Debug */ = { + 0347629109200410FC7237FF /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14320,25 +14328,29 @@ 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.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; }; - 0ABC20BC5DB552B51651EB4E /* Debug */ = { + 07B4CC6A8722B10798000EF4 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14348,8 +14360,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.IceServantLocator; + PRODUCT_NAME = IceServantLocator; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14359,100 +14371,111 @@ }; name = Debug; }; - 0AD023302845D15816606D5E /* Release */ = { + 0ABE4B874D9B891FDCC943B0 /* 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.IceObjects; - PRODUCT_NAME = IceObjects; - SDKROOT = iphoneos; + 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; 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; }; - 0C45ED2DBAB93E56CE73962C /* Debug */ = { + 0F3049905D9E501C160E9121 /* 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_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.IceExceptions; - PRODUCT_NAME = IceExceptions; - SDKROOT = iphoneos; + 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.TestCommon; + PRODUCT_NAME = TestCommon; + 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; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 0DF6FFF3F1F4C3710E2C287D /* Debug */ = { + 0FC5496CADC7C7D73E821F9D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceAmi; + PRODUCT_NAME = IceAmi; 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 = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 0ECD4B6E66FE045DD259E247 /* Debug */ = { + 10B53309D03E6CCFD9E43949 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14463,8 +14486,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14472,9 +14495,39 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; + name = Release; + }; + 112259378DEFD9415D29BB12 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceAdmin; + PRODUCT_NAME = IceAdmin; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; name = Debug; }; - 108318E9D09DBB3892066C9B /* Debug */ = { + 12BEA97FA2FDB585862360A7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -14488,6 +14541,7 @@ ICE_BUILDING_SRC, ICE_STATIC_LIBS, ICE_SWIFT, + NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -14498,23 +14552,26 @@ ); IPHONEOS_DEPLOYMENT_TARGET = 12.0; OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS"; - PRODUCT_NAME = "Ice++11iOS"; + 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 = Debug; + name = Release; }; - 11DE1042D18195C87E67C5B4 /* Debug */ = { + 132EFC9A96243B9910662B83 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14523,110 +14580,127 @@ 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.IceBinding; - PRODUCT_NAME = IceBinding; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; + PRODUCT_NAME = IceInfo; + 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; }; - 12BB8B82FBDDA28B8EE5E7C6 /* Release */ = { + 1365C74468FCEF15966DC571 /* Debug */ = { 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; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; + 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; }; - 131ACE7BA8FF5FD9E4578B3E /* Debug */ = { + 150321E7973095640FC098BD /* 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; 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, + NDEBUG, + ); 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; + 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.Ice++11iOS"; + PRODUCT_NAME = "Ice++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"; + VALIDATE_PRODUCT = YES; }; - name = Debug; + name = Release; }; - 152B0890011CFE07D2DB4F94 /* Debug */ = { + 1625D39D0C6F2EB7B99C0165 /* Debug */ = { 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, + ); 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; + 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; - WRAPPER_EXTENSION = bundle; + SUPPORTED_PLATFORMS = macosx; }; name = Debug; }; - 157199F0F3B47D97FD8675EE /* Release */ = { + 198661EE5CD1C319035315B4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14635,27 +14709,30 @@ 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.IceExceptionsAMD; - PRODUCT_NAME = IceExceptionsAMD; - 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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 1736DD342FFE69F0A5359F2F /* Release */ = { + 1D9AA09DB3B18BA39583735F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14666,8 +14743,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.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14675,16 +14752,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 189FF616FC0FEE9A0CD19745 /* Release */ = { + 1E4BAF1583875EDBA336D237 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14706,13 +14786,16 @@ }; name = Release; }; - 1949F8360B9A846261E2F134 /* Debug */ = { + 205C3B001D1785630498378E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14722,8 +14805,8 @@ 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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14733,14 +14816,16 @@ }; name = Debug; }; - 19B922212CCC674B5F28DF43 /* Release */ = { + 20D0C1B391680119AFE248AE /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14749,27 +14834,29 @@ 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; + 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; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 1A3BF0139A2C51089C7634F9 /* Debug */ = { + 217CEF0EA476A9DE4C798D13 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14780,8 +14867,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.IceInvoke; + PRODUCT_NAME = IceInvoke; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14789,47 +14876,82 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 1EE7CB56788485887BD523DD /* Debug */ = { + 21D226499A7361A419CEFE18 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; 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 = Release; + }; + 22E4AD97DA54E75E5AD28B99 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceFacets; + PRODUCT_NAME = IceFacets; + SDKROOT = macosx; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 20617B979B6C765726B1C015 /* Release */ = { + 2451DF474EA10000CBFCAFBB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14840,8 +14962,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.IceTimeout; + PRODUCT_NAME = IceTimeout; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14851,13 +14973,17 @@ }; name = Release; }; - 21F1EF92811CE1456684FE13 /* Debug */ = { + 26FA6B439D408D06CA1D55CB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14866,25 +14992,29 @@ 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; + 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 = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 2295A02DCC2CFEB08FC77B94 /* Debug */ = { + 27AEDD44314A9DA2ACAF62D6 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14894,8 +15024,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"; @@ -14905,14 +15035,17 @@ }; name = Debug; }; - 22D36A80E5D1757FC9880B4B /* Release */ = { + 287ADA50FE6D9E982B0D3A7A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14923,8 +15056,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; + PRODUCT_NAME = IceLocation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14934,44 +15067,46 @@ }; name = Release; }; - 259F1E2D0F4F5201C8AE9215 /* Debug */ = { + 28D310C2B0FBA44F114B4547 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.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; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 2BA2FA2D14201B0EC8B20373 /* Release */ = { + 2A869C9562BC45F1DAD26782 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14981,52 +15116,59 @@ 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.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; }; - 2EC06CBC2309C21CDDAB1F3D /* Debug */ = { + 2C5F3BADECC6CA58BE1C453E /* 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.IceBinding; - PRODUCT_NAME = IceBinding; + 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; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 2EF351F013043AAC711F7617 /* Release */ = { + 2CBD468F8A6CF787C4BA5DD6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15035,27 +15177,30 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; PRODUCT_NAME = IceHold; - SDKROOT = iphoneos; + 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; }; - 2FC4692CADA9A9221EF1DDEA /* Release */ = { + 2D450C72B46B986D09B55ED9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15066,8 +15211,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.IceServices; + PRODUCT_NAME = IceServices; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15075,15 +15220,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 31412436C3FF8E41562CBC28 /* Release */ = { + 2DD65509D64D176188D582A0 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15093,8 +15241,68 @@ 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; + 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; + }; + name = Debug; + }; + 3039B8BF73BA2B1CA7D1DB19 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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 = Debug; + }; + 30B12A81FD644A795EA13E83 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15105,14 +15313,17 @@ }; name = Release; }; - 3167CA1FDECBE2CC02B2B284 /* Release */ = { + 30E453DBB208267E59D830F1 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15123,8 +15334,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.SliceEscape; + PRODUCT_NAME = SliceEscape; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15134,14 +15345,17 @@ }; name = Release; }; - 320A9F2DEFC255AC1441A9DD /* Debug */ = { + 3B278C0C6C2D8B0E174555F7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15152,8 +15366,8 @@ 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.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15163,13 +15377,17 @@ }; name = Debug; }; - 322D229E972B84C8BEC0859F /* Release */ = { + 3C089350D7C122B295078195 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15178,27 +15396,30 @@ 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.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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 32853BBB924C235DEA92D741 /* Debug */ = { + 3D18B97208F3127AA4D3BA9F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15209,8 +15430,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.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15220,13 +15441,16 @@ }; name = Debug; }; - 35174B2162A9F1088527D094 /* Release */ = { + 3E27AE079302475EC7F05B37 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15236,8 +15460,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.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15248,44 +15472,48 @@ }; name = Release; }; - 3617458DA83008DD0D39430D /* Debug */ = { + 405BACCF3A9B3478F2EF994B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; 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; }; - 369E5410B96176F40BE2E9F8 /* Release */ = { + 420591BACB209C7C60D6A7C8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15307,13 +15535,16 @@ }; name = Release; }; - 371209B751B170DE3E7416D1 /* Debug */ = { + 4279868881B2DE6EAC027941 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15323,53 +15554,122 @@ 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.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; }; - 380D803E166E8524B7BC6492 /* Debug */ = { + 45A0D99A811AAACDC8C518D4 /* 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_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.IceUdp; - PRODUCT_NAME = IceUdp; + 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; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 4679AA721BFCCDCD65CB9408 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceExceptions; + PRODUCT_NAME = IceExceptions; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; }; - 38A995958390626333537929 /* Release */ = { + 4A96CE1C17B02803D67C1F73 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceObjects; + PRODUCT_NAME = IceObjects; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 4A96FF0775FD9B8261A908C1 /* Release */ = { 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"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_TESTABILITY = NO; @@ -15391,13 +15691,16 @@ }; name = Release; }; - 3DA7BC5262FE03DAFDC0BF63 /* Release */ = { + 4ACFD9F505479535A347F069 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15407,8 +15710,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15419,13 +15722,16 @@ }; name = Release; }; - 3F4C9F140104FC697FE6225C /* Debug */ = { + 4ADFFD2E5E75840AC32CA067 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15435,8 +15741,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15446,14 +15752,16 @@ }; name = Debug; }; - 3F640B23C985630758266492 /* Release */ = { + 4AE8B6D8551528AE40545B1B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15462,27 +15770,29 @@ 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.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 = Release; + name = Debug; }; - 3FC33F2C9947BE642671531C /* Release */ = { + 4B74CB3A587F6F127EDFC763 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15493,8 +15803,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.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15502,15 +15812,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 401FE55CA258D3C7A1D2CB2A /* Debug */ = { + 4E5559177B38BBC8AF832698 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15520,8 +15833,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"; @@ -15531,13 +15844,16 @@ }; name = Debug; }; - 423072900477705078ED07D2 /* Release */ = { + 4EE6049531ABE9D83CEF621A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15547,8 +15863,69 @@ 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.IceBinding; + PRODUCT_NAME = IceBinding; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 4FFDA4D7D709A98DD4C5C111 /* 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/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; + 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; + }; + 5002EC97CCF08EAC78615F2A /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15559,13 +15936,16 @@ }; name = Release; }; - 4292999A0719EF77D1AE8603 /* Debug */ = { + 50CAFBEBFA4C52005167582E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15575,8 +15955,8 @@ 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.SliceEscape; + PRODUCT_NAME = SliceEscape; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15586,14 +15966,17 @@ }; name = Debug; }; - 46388F40ABE8AEF9818F921C /* Debug */ = { + 51343BCE46CCF3D0EBF8974F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15604,8 +15987,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.IceStream; + PRODUCT_NAME = IceStream; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15615,13 +15998,16 @@ }; name = Debug; }; - 479D0D3708385ECBD8E57159 /* Release */ = { + 52CB59830C30C74F2D549DB0 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15631,25 +16017,27 @@ 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.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 = Release; + name = Debug; }; - 47DBCBADF8EE34D671A07CD8 /* Debug */ = { + 53C75FE2DC576E2DB33B0338 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15659,24 +16047,28 @@ 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.IceRetry; + PRODUCT_NAME = IceRetry; 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; }; - 481F2FB4B61D167FFD313B44 /* Release */ = { + 545E7D6B2266745FE716C2EA /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15686,8 +16078,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.IceInheritance; + PRODUCT_NAME = IceInheritance; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15698,14 +16090,17 @@ }; name = Release; }; - 49D10366C893D161B9DC36BF /* Debug */ = { + 57470DF6F499A483802F4409 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15716,8 +16111,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.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15725,74 +16120,82 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 4A3E808D8D2FE39EF551384D /* Debug */ = { + 58C370DFDA25589F5F814EB4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; 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; }; - 4BA1BF97B788E55118EC7543 /* Debug */ = { + 5A5D3ED1075BFCD7819B071A /* 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/Glacier2/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; - PRODUCT_NAME = IceProperties; + 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"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 4CA72070BA2C2FE2D916F051 /* Release */ = { + 5D4DCF542DEF20FCD712E5EB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15803,8 +16206,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15812,23 +16215,23 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 4D386413A12B56F03CCDC977 /* Release */ = { + 5D72F7A2FA24166F161E77BE /* Debug */ = { 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, ICE_STATIC_LIBS, ICE_SWIFT, - NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -15837,25 +16240,25 @@ "$(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.IceDiscovery++11macOS"; + PRODUCT_NAME = "IceDiscovery++11macOS"; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + SUPPORTED_PLATFORMS = macosx; }; - name = Release; + name = Debug; }; - 4DF4D65B047264086AFE2F78 /* Release */ = { + 5E4D6320B488378DDCE9DDA1 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15865,58 +16268,59 @@ 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.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; 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; }; - 5007A6FC395CB30A942A7D12 /* Release */ = { + 5EEF7F1110B5EA7231C45CE9 /* 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"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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, - 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/TestDriver/macOS/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; + 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; }; - name = Release; + name = Debug; }; - 50377A53FC123CA6BAB78543 /* Release */ = { + 60DC3753797AE277083A79DC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15925,26 +16329,29 @@ 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; + 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; }; - 508F06240711D1BA270E2A5B /* Debug */ = { + 622FED553C986FBB2E98C4B5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15954,101 +16361,89 @@ 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.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; 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; }; - 50E313944EC67C50E3517AFA /* Release */ = { + 624159B9005E625C69B2766D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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/", - ); - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; - PRODUCT_NAME = "IceDiscovery++11macOS"; - SDKROOT = macosx; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; + 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; }; - 5209AECA8D740DCBB75D3797 /* Debug */ = { + 62D11CD5B18A50F997534C1C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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, - ); 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.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 55B6A10B3A123EFAA25A227E /* Debug */ = { + 635FB8F29F3545CF5D1C2CCF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16059,8 +16454,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceFacets; + PRODUCT_NAME = IceFacets; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16068,15 +16463,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 55BD459489903FFCB9740629 /* Debug */ = { + 654A884C08F411226A4E1096 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16085,81 +16484,93 @@ 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.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; }; - 57FF97B0DC830C1B1C30A660 /* Release */ = { + 67770D43D33076741AA56821 /* 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 = 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.IceDefaultValue; - PRODUCT_NAME = IceDefaultValue; - 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; }; - 5D0DDEB6A12EA56B19FDC38D /* Debug */ = { + 69AF4ACB1345497CC8760BC3 /* 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.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; + 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; }; - 5EA6936BA1B758FAEA8D14EA /* Debug */ = { + 6B76C262F18DED8812CE4043 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16170,8 +16581,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.IceOperations; + PRODUCT_NAME = IceOperations; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16181,13 +16592,16 @@ }; name = Debug; }; - 5EEB923BF09AC0E6E0001F70 /* Debug */ = { + 6C507DA486A980470217DD18 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16197,24 +16611,28 @@ 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.IceBinding; + PRODUCT_NAME = IceBinding; 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; }; - 5F4451B0E9D0DAE732EF1C85 /* Release */ = { + 6C5716235443937679696276 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16224,8 +16642,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.IceExceptions; + PRODUCT_NAME = IceExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16236,43 +16654,16 @@ }; name = Release; }; - 6074F9C1B0191FABA2544FE3 /* 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.IceServantLocator; - PRODUCT_NAME = IceServantLocator; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - 60D008DB5DCFE7241BE06EEC /* Release */ = { + 6DBC2F6DCFCC8FDF8640187A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16281,27 +16672,29 @@ 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.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; }; - 619AEDC98AB8DBD071357B49 /* Release */ = { + 704C49473DB46BD1A3AD7431 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16310,86 +16703,122 @@ 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.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; + 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; }; - 61C715BA3C7F551B289160C4 /* Debug */ = { + 73AA6C1E546A2A0DFFAD33B7 /* 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.IceProperties; - PRODUCT_NAME = IceProperties; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; + 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; }; - 64B7A9D392DD962F8CFECE9E /* Release */ = { + 7417FC9553D0752B212C80A1 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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"; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.Ice; - PRODUCT_NAME = Ice; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; 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; }; - 655BCA539106BC0761DF42E4 /* Release */ = { + 746D9445BC2F683E373882E4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16399,8 +16828,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.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16411,11 +16840,12 @@ }; name = Release; }; - 657164E644EFC97AC771AC22 /* Release */ = { + 74B4F808449BD133F7D215B4 /* 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 = NO; DYLIB_COMPATIBILITY_VERSION = 0; @@ -16425,32 +16855,33 @@ 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 = src/IceStorm/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.Ice; - PRODUCT_NAME = Ice; - SDKROOT = iphoneos; + 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; 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"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Release; }; - 66EFD47EB56BD08D28560A09 /* Release */ = { + 74EEB8ED8BC649A164D44D5A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16461,8 +16892,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; @@ -16470,15 +16901,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 670EBBACEE6AAA8F98CDA40C /* Release */ = { + 76A34945520A32193465D243 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16488,8 +16922,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16500,13 +16934,48 @@ }; name = Release; }; - 67112B9637BABB17A6239343 /* Release */ = { + 77568847C4326D667191703B /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.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; + }; + 77FF3CC4C1DEA6D3EA793236 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16516,8 +16985,8 @@ 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.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16528,13 +16997,16 @@ }; name = Release; }; - 6A553F8BD5A5C1A33D2F7D53 /* Debug */ = { + 7830EF6D4934D2D5794C75E8 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16544,8 +17016,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16555,13 +17027,17 @@ }; name = Debug; }; - 6AE2474D67786DF0282F1601 /* Debug */ = { + 7855E109704F59DEF3504EEB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16570,25 +17046,29 @@ 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.IceInfo; + PRODUCT_NAME = IceInfo; + 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; }; - 6B1C7050D255F704F3FC6CAD /* Release */ = { + 79E624FA79C750FFDE1E3B2E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16598,8 +17078,8 @@ 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.IceFacets; + PRODUCT_NAME = IceFacets; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16610,14 +17090,17 @@ }; name = Release; }; - 6CE2195BFC862A22798FB9AF /* Debug */ = { + 7BB8D657EA4D1A675D50E1B9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16628,8 +17111,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.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16639,47 +17122,49 @@ }; name = Debug; }; - 6F803A2E67CFC72BB6E9C8CB /* Release */ = { + 7CA1D2A04997DC911739BDC3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + 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; - 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/", - ); - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS"; - PRODUCT_NAME = "Ice++11macOS"; - 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; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 6F93183EA59D32F95DA183F4 /* Debug */ = { + 7D50FD009A17A71A0477734F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16690,8 +17175,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.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16699,15 +17184,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 7051DD7345372F6FA1F88074 /* Release */ = { + 7F038F0E39CE843194A0FF04 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16716,27 +17205,30 @@ 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.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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 70BA444A65CCA7A8BAF2CCC0 /* Debug */ = { + 8272FEB0A6D1093F72EE92B6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16747,8 +17239,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; + PRODUCT_NAME = IceScope; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16756,16 +17248,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 7196A23969C8124DE20803FD /* Debug */ = { + 83C48DF5B7B05719C6F7E2AF /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16776,8 +17271,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16787,40 +17282,83 @@ }; name = Debug; }; - 73DC1E987DA62C45F491A607 /* Debug */ = { + 83F0437DDE8EA40FDCA8E1F4 /* 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.IceOptionalAMD; - PRODUCT_NAME = IceOptionalAMD; + 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.IceLocatorDiscovery++11iOS"; + PRODUCT_NAME = "IceLocatorDiscovery++11iOS"; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 8506411B6F66811B9F3AF489 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceProxy; + PRODUCT_NAME = IceProxy; + 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; }; - 73E1C606A2874AF700918731 /* Debug */ = { + 86FAAB0280B252900A322015 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16830,24 +17368,28 @@ 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; + 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 = Debug; + name = Release; }; - 74292F4340F3225AE2085CA5 /* Debug */ = { + 88496326373DAD5ABADBA984 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16857,8 +17399,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16868,14 +17410,91 @@ }; name = Debug; }; - 75DD191D18D01914B74CEB40 /* Release */ = { + 8BBD11CC665F6D0D472C81CA /* 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; + 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; + 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 = Debug; + }; + 8FF84525302075EE367FBB39 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.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; + }; + 9129AEC5D18413C87330E818 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16886,8 +17505,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.IceAdmin; + PRODUCT_NAME = IceAdmin; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16895,16 +17514,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 763C6D448F7B5D1C1B549E26 /* Release */ = { + 93CFBF6BF8C6A835CDC6F358 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16915,8 +17537,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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16924,15 +17546,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 76F91F7B2B9BAD361F022CDB /* Debug */ = { + 9406A6CF8EEEA324012871AE /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16942,8 +17567,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.IceServices; + PRODUCT_NAME = IceServices; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16953,13 +17578,16 @@ }; name = Debug; }; - 77981C847182A134155BDF99 /* Debug */ = { + 9677F3607D2D482339DADB85 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16969,8 +17597,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.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16980,68 +17608,16 @@ }; name = Debug; }; - 78E719EDEDB223BC70EB7AA3 /* 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; - }; - 7A17EA827AA131278EEBDF60 /* Release */ = { + 982E9558F3D919C717C33E7B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17051,26 +17627,28 @@ 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; + 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; }; - 7A25C3B7E20CC599400F7939 /* Release */ = { + 99C4530DC1169A541CF0025B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17081,8 +17659,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17090,16 +17668,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 7A98754BD3D21211865AAC3B /* Release */ = { + 9A87C1FAC5021EFD0F153CCF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17108,100 +17688,71 @@ 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.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; }; - 7B436DF42D24228CEAB52FF3 /* Release */ = { + 9C67E7158243AE9BBED3DB4C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; 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; }; - 7E02A44F23461601FD54DA3F /* Release */ = { + 9D1716F294A6D62558E8B993 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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"; - MACOSX_DEPLOYMENT_TARGET = 11; - 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; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 7F528957E8579B094A44E4A8 /* 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_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.SliceEscape; - PRODUCT_NAME = SliceEscape; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; + PRODUCT_NAME = IceServices; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17212,13 +17763,17 @@ }; name = Release; }; - 7FF164880ECD590A12CD42EC /* Release */ = { + 9F2FED871388C948F0171559 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17227,20 +17782,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.IceProxyAMD; - PRODUCT_NAME = IceProxyAMD; - SDKROOT = iphoneos; + 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 = "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; }; - 7FF7489A228CDEB532D0FFD7 /* Release */ = { + A119980529BB02FF8D4392B5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17269,16 +17824,19 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - 821E3BE980A1D2DA3F554CE6 /* Debug */ = { + A22BD33109C6BEA55E18DB0D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17289,8 +17847,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.IceProperties; + PRODUCT_NAME = IceProperties; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17300,14 +17858,17 @@ }; name = Debug; }; - 8395B969BD0526BA37487EE7 /* Debug */ = { + A443BE882D9C496DB96AF46D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17318,8 +17879,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.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17327,16 +17888,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 83CCF56FFBE322D0D6C9A516 /* Debug */ = { + A6D6DF96DE9B609CE1F67B11 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17347,8 +17911,40 @@ 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.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 = Release; + }; + A992A64B551306E52EBFFA70 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17358,13 +17954,16 @@ }; name = Debug; }; - 84A6E5BCE03C887855E0C426 /* Release */ = { + AA657A8480CFE70725FEB6F3 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17374,26 +17973,27 @@ 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.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; }; - 856AAFA0AC9D42C133F8BB83 /* Debug */ = { + AAE4AD255551004EADF51BD7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17402,27 +18002,29 @@ 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.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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 869E6D7BE5688A650CD6AA58 /* Release */ = { + AC8E443C05576E025FF51C1B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17433,8 +18035,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.IceScope; + PRODUCT_NAME = IceScope; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17442,16 +18044,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 871D7F4032E9C1D0D21CCA59 /* Debug */ = { + AD22694864642BA851786963 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17462,8 +18067,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.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17471,80 +18076,79 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 893B0D5241A16760B6ACC8FC /* Debug */ = { + AE1B04F3622818478F347040 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceDiscovery++11iOS"; - PRODUCT_NAME = "IceDiscovery++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; }; - 899C4BEC1FFB08BAFD8483B7 /* Debug */ = { + B0E0E6358F6068CF85A96E53 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; - PRODUCT_NAME = IceGrid; - SDKROOT = macosx; + INFOPLIST_FILE = test/TestCommon/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; + 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; }; - 8B27BA96885C810DDE1A7461 /* Release */ = { + B1EDA408C2AA15D820B1C19A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17553,27 +18157,29 @@ 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.IceServantLocatorAMD; - PRODUCT_NAME = IceServantLocatorAMD; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; + 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; }; - 8BD5C5B7B93380512E8134AE /* Release */ = { + B37631B2E178C85C0BD7416D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17582,27 +18188,30 @@ 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.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 = Release; }; - 8D23DFC43FFE60D18CAC3F61 /* Debug */ = { + B451467279E39C98ACA0D2A7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17613,8 +18222,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.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17624,39 +18233,68 @@ }; name = Debug; }; - 8EA02B2A91FE365252E1FE11 /* Release */ = { + B5FC310418A6D9DA79A0820D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceProxy; + PRODUCT_NAME = IceProxy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + B65244A117A1628C45A692D1 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; 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; }; - 8F0408C819D3E8BE8FC0CF14 /* Debug */ = { + B67DEA58EDF38D2146555E43 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17669,79 +18307,66 @@ 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 = 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; - OTHER_LDFLAGS = ( - "-lbz2", - "-liconv", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; - PRODUCT_NAME = IceImpl; + 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; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; name = Debug; }; - 90A42F2A4FBD1889EF4A2258 /* Release */ = { + B70958A07820F24153C82D69 /* 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"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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, - ); + 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/TestDriver/iOS/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11iOS"; - PRODUCT_NAME = "IceDiscovery++11iOS"; + 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; - 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; }; - name = Release; + name = Debug; }; - 916F4272294AFD13020CC6D1 /* Release */ = { + B9CB2F17BB60D2A93774E9AF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17750,27 +18375,30 @@ 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.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 = Release; }; - 91E4665E3E3B6CE2E9ABDBB5 /* Debug */ = { + BA11D8584470852444BF8934 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17781,8 +18409,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; + PRODUCT_NAME = IceInfo; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17790,43 +18418,51 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 92956A080545092479A5EF48 /* Debug */ = { + BADB147846512CDC8EC00AD9 /* 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.IceInvoke; - PRODUCT_NAME = IceInvoke; + 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; }; - 92C03B295FA15AFCBBD588DD /* Release */ = { + BB06D6D5BF72325BAE0F1B94 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17837,8 +18473,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.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17846,16 +18482,19 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 95C72C627789540E6B7BC581 /* Debug */ = { + BB89164D04115B81A55A28EB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17866,8 +18505,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.IceProxy; + PRODUCT_NAME = IceProxy; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17877,13 +18516,17 @@ }; name = Debug; }; - 96917D139D853A621D4465A9 /* Debug */ = { + BCAC3A75E4CAAF3919AA30CF /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17892,25 +18535,29 @@ 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.SliceEscape; - PRODUCT_NAME = SliceEscape; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; + PRODUCT_NAME = IceAcm; + 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; }; - 975AEC4C1EC99E67F674DD35 /* Release */ = { + BDAFAC3D6B2F4A315FA24E54 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17920,26 +18567,28 @@ 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.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; + name = Debug; }; - 9D7EFC173A5D11BF0AF5D8C0 /* Debug */ = { + C0062FCF81519D76B1255855 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17950,8 +18599,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17961,41 +18610,60 @@ }; name = Debug; }; - 9FA771C091D707A597DA87DC /* Debug */ = { + C1A3C77248B736730997AD8F /* 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_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; + 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.IceSSLConfiguration; - PRODUCT_NAME = IceSSLConfiguration; + 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; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - A0AD46E4F58AAF97141D1080 /* Debug */ = { + C230C000D0FCA1D35318241C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18006,8 +18674,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocator; + PRODUCT_NAME = IceServantLocator; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18015,16 +18683,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - A19605357CD31BECCE52E732 /* Release */ = { + C27B521B497DE5FBBE1EBD28 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18033,27 +18703,29 @@ 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; + 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 = Release; + name = Debug; }; - A2580E4897DA69D50FB1E2FC /* Release */ = { + C29728A7401614F494367D38 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18064,8 +18736,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; + PRODUCT_NAME = IceAcm; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18075,70 +18747,47 @@ }; name = Release; }; - A5F357FFB899E13C5A4CA0D2 /* Release */ = { + C3722EB1E530D97837CD26CE /* 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.IceEnums; - PRODUCT_NAME = IceEnums; + 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; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - A83BE6F7823DEE2EFE00E47A /* 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_SYMBOLS_PRIVATE_EXTERN = YES; - GCC_TREAT_WARNINGS_AS_ERRORS = YES; - 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; TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - ABC31BA096E1426EDDF5DCF2 /* Release */ = { + C61A0F02E93ADD988CD97C4E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18148,8 +18797,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"; @@ -18160,13 +18809,17 @@ }; name = Release; }; - ABC8C3AA71A1A2F8B6DA6CA0 /* Debug */ = { + C65AD7E4113A848C59513B71 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18175,26 +18828,30 @@ 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.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; + 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; }; - ACE933F815C05F926BA6ED11 /* Release */ = { + C6F0D3C48F7AF28F3D2E2807 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18205,8 +18862,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18214,15 +18871,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - AD94DA9586B50FBBF47C6325 /* Release */ = { + C87C6044B643B62B21050611 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18232,8 +18892,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; + PRODUCT_NAME = IceOperations; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18244,40 +18904,135 @@ }; name = Release; }; - AECE602422D42F6B1AEAFC8E /* Debug */ = { + C9B8EFE9B9017FBCF0F50FD4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + 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; + }; + CA30A575821BD6DFDB1CA02D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + 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; + 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; + 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 = Release; + }; + CA65B01C95D602822A48ED60 /* 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 = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; - PRODUCT_NAME = IceTimeout; - SDKROOT = iphoneos; + 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.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; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - AF2922FD05E6067E3EFB73B7 /* Debug */ = { + CA9FA5D725CDB3801AC8CBEF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18287,24 +19042,29 @@ 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.IceProxy; + PRODUCT_NAME = IceProxy; 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; }; - AFA5CB2BD77BA351E3FF1D8E /* Release */ = { + CEF445C20B9435947C182348 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18313,64 +19073,65 @@ 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.IceLocation; + PRODUCT_NAME = IceLocation; + 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; }; - B3F77065E61B1F4E7F3D3D31 /* Debug */ = { + CFED7F1F6617B1CF2D3D4D32 /* 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"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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"; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Swift-Test-Controller"; - PRODUCT_NAME = TestDriver; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; + PRODUCT_NAME = IceObjects; 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; }; - B8AE478F8F93BE3BD8041011 /* Release */ = { + D204410F3C771B53C68A5009 /* Debug */ = { 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; @@ -18379,33 +19140,28 @@ "$(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"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - B91709731889A7959098E27D /* Debug */ = { + D3D001F8E544D390D0D1AF51 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18414,36 +19170,33 @@ 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; + 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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - BA06BEA110D4A7D795AB7CB8 /* Release */ = { + D48E3016D5ADE10C3A00DFC4 /* 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 = 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; @@ -18452,31 +19205,28 @@ "$(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; + 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 = macosx; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; }; - name = Release; + name = Debug; }; - BB4F25BA94E2C437D66848C5 /* Debug */ = { + D780534798616EC4BFDF9FD3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18485,26 +19235,30 @@ 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.IceFacets; - PRODUCT_NAME = IceFacets; - 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; }; - BE68347B468B847F2142F2D2 /* Release */ = { + D961DAA17BD6AC10C7ECB17B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18515,8 +19269,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.IceAmi; + PRODUCT_NAME = IceAmi; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18524,15 +19278,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - BF3D4CF954AA65030BDF983C /* Release */ = { + DBCDB6AEE8716E3AE99E8BAB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18542,8 +19299,8 @@ 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.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18554,14 +19311,17 @@ }; name = Release; }; - C0ECE15CD376C02C6868A0DC /* Release */ = { + DE013AECC305883A62CBDFEC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18572,8 +19332,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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18583,84 +19343,26 @@ }; name = Release; }; - C1441DD72D21EE92199BCDF0 /* Release */ = { + DE833C97F990B7F608AF3545 /* 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 = 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.IceOperationsAMD; - PRODUCT_NAME = IceOperationsAMD; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; - C17D8BEEE4ABFA214C799A70 /* 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.IceTimeout; - PRODUCT_NAME = IceTimeout; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - C184B826555584E0C7DDF91B /* 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/Ice/Info.plist; + INFOPLIST_FILE = src/IceStorm/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.Ice; - PRODUCT_NAME = Ice; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; + PRODUCT_NAME = IceStorm; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18672,13 +19374,17 @@ }; name = Debug; }; - C239A92EFD220A0838924352 /* Release */ = { + DEDD9294323B4DFC822104AC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18687,27 +19393,30 @@ GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; INFOPLIST_FILE = test/TestCommon/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAmi; PRODUCT_NAME = IceAmi; - SDKROOT = iphoneos; + 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; }; - C3F6C239B915A8390D55ADB5 /* Release */ = { + DF791BBC010C7DEA35C6288B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18718,8 +19427,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.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18729,14 +19438,17 @@ }; name = Release; }; - C617E3CF96DC71AFA8AAE1A9 /* Release */ = { + DF80BA1DD3440176640EB8C4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18747,8 +19459,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.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18758,42 +19470,17 @@ }; name = Release; }; - CA229B479D76F2CECBD88E4C /* 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.IceOperations; - PRODUCT_NAME = IceOperations; - 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; - }; - CA3D873C971A8D89D88952AA /* Release */ = { + E0E0C87104F919DDE32F19EC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18804,8 +19491,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.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18815,96 +19502,16 @@ }; name = Release; }; - CA7A3F0ECAF0A664414C71BB /* 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.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; - }; - CA828F1B3BB19A9E631497DD /* 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.IceSSLConfiguration; - PRODUCT_NAME = IceSSLConfiguration; - 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; - }; - CAB6B6A56C0DFF620F995025 /* 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.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - CB18606496E6E0EA9A73BA6E /* Debug */ = { + E1AD6FECB9FD4526CC295047 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18914,265 +19521,49 @@ 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.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - CBA99D2DF00CC3E5F4DCA81D /* 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; - }; - CF18244341C78BFE411D88C9 /* 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.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; - }; - name = Debug; - }; - CF889F1FD89DBB0771680031 /* 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.IceLocatorDiscovery++11macOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - }; - name = Debug; - }; - CF9A298BE46B85C55BF4F29F /* 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.IceDiscovery++11macOS"; - PRODUCT_NAME = "IceDiscovery++11macOS"; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - }; - name = Debug; - }; - CFBCC4EA992F4C843C738531 /* 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.IceSlicingObjects; - PRODUCT_NAME = IceSlicingObjects; - SDKROOT = macosx; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - D2E6046AD5CE7CB47704C7DC /* 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/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; - 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; }; - D4200B6C370F6400D0AF2246 /* Release */ = { + E22DB570F4B3184DAE1E4BB8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceInvoke; + PRODUCT_NAME = IceInvoke; 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; }; - D42BA7F808848EAE6E69C1B1 /* Release */ = { + E2D31ED62E6C3D699254A5FD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19186,32 +19577,34 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Glacier2/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.Glacier2; - PRODUCT_NAME = Glacier2; + 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; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - D42CE8C0D80787ACAFDC7A64 /* Debug */ = { + E41FC74F1042766105A53541 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19222,8 +19615,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.IceAdmin; + PRODUCT_NAME = IceAdmin; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19231,16 +19624,49 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; + name = Release; + }; + E54DD2BC48D7DABDFC986791 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 3.7.10; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceInterceptor; + PRODUCT_NAME = IceInterceptor; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; name = Debug; }; - D518D02A051F086AF13FB3C2 /* Release */ = { + E6616EE3382A5B4F1755C5CB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19260,15 +19686,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - D5855CD42B93F5CBF3CD4523 /* Debug */ = { + E6D88E40851CA6206B232133 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19278,25 +19707,29 @@ 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.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 = Debug; + name = Release; }; - D5B687F801F16A817C82CD50 /* Release */ = { + E7F47928E080A245266CEA61 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19307,8 +19740,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.IceInvoke; + PRODUCT_NAME = IceInvoke; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19316,73 +19749,158 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; + name = Debug; + }; + EB0799B2B3A8067AFC224C24 /* 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_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = src/IceStorm/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; + 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; }; - D891762C88F0C3985D829190 /* Debug */ = { + EC0D969108C9AC1353BF3F9C /* 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 = 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; - 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; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - D93A8947B1EB19B41CB8917E /* Release */ = { + ED83A473D1943A5FD3884024 /* 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/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.SliceEscape; - PRODUCT_NAME = SliceEscape; + 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; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - D99F9793EA08AAF8E0DBF7A9 /* Release */ = { + EDBEDCAC04DE41B3F53864DE /* Debug */ = { 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, + 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; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = macosx; + }; + name = Debug; + }; + EE14543D05758DB6D05CE53E /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19391,27 +19909,29 @@ 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.IceDefaultServant; - PRODUCT_NAME = IceDefaultServant; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; + PRODUCT_NAME = IceInheritance; + 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; }; - E0F9C85BDA51275220626881 /* Release */ = { + EE232280D015186BEDFB9F87 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19420,58 +19940,74 @@ 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.IceBinding; - PRODUCT_NAME = IceBinding; - 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 = Release; + name = Debug; }; - E1BB6764B69D6E7F4BCC95F1 /* Debug */ = { + EF59A7BB816EBCC1AE48790E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; 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"; 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 = src/IceStorm/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; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStorm; - PRODUCT_NAME = IceStorm; + 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; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - E2EA448E76E0BA1ED8526696 /* Debug */ = { + EF60AA9DB9FC3D6C95A263BA /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19482,8 +20018,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperations; + PRODUCT_NAME = IceOperations; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19491,16 +20027,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - E3767D4B0D53281579D1E3CE /* Debug */ = { + F0D908A5A98B609F695B28AE /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19509,27 +20047,30 @@ 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.IceExceptions; - PRODUCT_NAME = IceExceptions; - 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; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - E520F2811D3EE429A050B2ED /* Release */ = { + F1BAF8B6DED5E94738BB4669 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19540,8 +20081,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.IceInheritance; + PRODUCT_NAME = IceInheritance; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19549,22 +20090,24 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - E7F13EE9B9065F0C92692469 /* Debug */ = { + F374F3D5438C236C87A58A73 /* 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, ICE_STATIC_LIBS, ICE_SWIFT, + NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -19573,54 +20116,56 @@ "$(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; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; + PRODUCT_NAME = "IceDiscovery++11macOS"; + SDKROOT = macosx; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; + SUPPORTED_PLATFORMS = macosx; }; - name = Debug; + name = Release; }; - EAEA4904AC1FF24501848E4B /* Debug */ = { + F3E273E3BF86133FE3672542 /* 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/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.IceObjects; - PRODUCT_NAME = IceObjects; + 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 = Debug; + name = Release; }; - EB6F985CF31C039458C83C24 /* Debug */ = { + F3E9114AB4CD6F863CFF72CB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - COMBINE_HIDPI_IMAGES = YES; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19629,26 +20174,30 @@ 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.IceProperties; + PRODUCT_NAME = IceProperties; + 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; }; - EBD1294A5BD217EF33147F8A /* Release */ = { + F4680B102DF5832D606C2591 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19657,57 +20206,59 @@ 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.IceExceptions; - PRODUCT_NAME = IceExceptions; - 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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - EF0A626A8AD8CDBB8BF0248D /* Debug */ = { + F63EB3889A540862B5C1409E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = NO; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.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"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - EF26BD773C33A817D8FF0435 /* Debug */ = { + F659780EFCABF3F48709A7C8 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19717,8 +20268,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.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19728,14 +20279,17 @@ }; name = Debug; }; - EF5558979D23D317FA4A6AD8 /* Release */ = { + FA754E7056636EED796F69E7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19746,8 +20300,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.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19755,15 +20309,18 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - EFE70859EC10B82EEB0E0D6E /* Release */ = { + FA7B8E9B6AECB88CD2CF7167 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19773,8 +20330,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.IceObjects; + PRODUCT_NAME = IceObjects; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19785,14 +20342,17 @@ }; name = Release; }; - F00C037A99F2CC9D8E01231E /* Debug */ = { + FC7A0050481D2D6FAAF4591F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19803,8 +20363,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.SliceEscape; + PRODUCT_NAME = SliceEscape; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19814,34 +20374,38 @@ }; name = Debug; }; - F1717E3880274E71FE1031AC /* Debug */ = { + FC9C9F9E579C1F434D78DF44 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceExceptionsAMD; - PRODUCT_NAME = IceExceptionsAMD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + 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; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - F254C8FA0267896A6E26D05A /* Release */ = { + FD705E568316F758E8D0CC2F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -19855,7 +20419,6 @@ ICE_BUILDING_SRC, ICE_STATIC_LIBS, ICE_SWIFT, - NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -19872,49 +20435,52 @@ SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; }; - name = Release; + name = Debug; }; - F2BF77CE786F4101DAECAB47 /* Release */ = { + FD741080A0C1B98C1D1B75E3 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEFINES_MODULE = YES; + DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceObjects; + PRODUCT_NAME = IceObjects; 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; }; - F50BEA838D275AA65A6FE37B /* Release */ = { + FE669A089EFEC864BB290077 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19925,8 +20491,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.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19936,14 +20502,17 @@ }; name = Release; }; - F8C7F789E66ED84DECF0D2DB /* Debug */ = { + FEBEBBD015A0D4A547FE9595 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19954,8 +20523,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19965,13 +20534,16 @@ }; name = Debug; }; - FAB9FA228AE0A74B39FDF8ED /* Release */ = { + FF95D0AC21DB3D6207E35630 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; + DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19993,993 +20565,901 @@ }; name = Release; }; - FABCEBA4B5EDF6D358C5E7E9 /* 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; - }; - FC9A60D6ECFA08BEEAA95F02 /* 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; - 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/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; - 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; - }; - FF340377D2F1925C754ECEFA /* 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; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 033036AB57A2BC13CF9B6D90 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = { + 03C104B96C3644524557A697 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CF9A298BE46B85C55BF4F29F /* Debug */, - 50E313944EC67C50E3517AFA /* Release */, + B67DEA58EDF38D2146555E43 /* Debug */, + 0F3049905D9E501C160E9121 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 082B20DA5873A1E188F2B846 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = { + 08B22C9A9A85F18B106D85BA /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5D0DDEB6A12EA56B19FDC38D /* Debug */, - EFE70859EC10B82EEB0E0D6E /* Release */, + AC8E443C05576E025FF51C1B /* Debug */, + 8272FEB0A6D1093F72EE92B6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 11498C7C982D7FA44A2E3AB9 /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = { + 08C75263908EA0F1DB23F0E4 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 47DBCBADF8EE34D671A07CD8 /* Debug */, - 2EF351F013043AAC711F7617 /* Release */, + FEBEBBD015A0D4A547FE9595 /* Debug */, + FE669A089EFEC864BB290077 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 12D84B08BD2E17377429CD9A /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = { + 092F36D88613D1A5972D047F /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 76F91F7B2B9BAD361F022CDB /* Debug */, - 7051DD7345372F6FA1F88074 /* Release */, + 9129AEC5D18413C87330E818 /* Debug */, + E41FC74F1042766105A53541 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1DBCCE68ABE336FDD111EB69 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = { + 0A75FB26B366B04407C83993 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9FA771C091D707A597DA87DC /* Debug */, - CA828F1B3BB19A9E631497DD /* Release */, + DE833C97F990B7F608AF3545 /* Debug */, + EB0799B2B3A8067AFC224C24 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 23EB73EBAAF47155243FEAF5 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = { + 0B05EAB79BFAA962F80CF8AC /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - B3F77065E61B1F4E7F3D3D31 /* Debug */, - 12BB8B82FBDDA28B8EE5E7C6 /* Release */, + C1A3C77248B736730997AD8F /* Debug */, + EF59A7BB816EBCC1AE48790E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 260FA577E2C3E38F2A27CF02 /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = { + 0BFC94187CF7D53768ABBC15 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0C45ED2DBAB93E56CE73962C /* Debug */, - EBD1294A5BD217EF33147F8A /* Release */, + 5E4D6320B488378DDCE9DDA1 /* Debug */, + 3E27AE079302475EC7F05B37 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2670006D13340F29628611E7 /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = { + 0C54B13449B12B4038C3F423 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6AE2474D67786DF0282F1601 /* Debug */, - 4DF4D65B047264086AFE2F78 /* Release */, + FD705E568316F758E8D0CC2F /* Debug */, + 83F0437DDE8EA40FDCA8E1F4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 26A5B6B0FCBC7609F683D25F /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = { + 0D88577E87719A0CF76623A9 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 899C4BEC1FFB08BAFD8483B7 /* Debug */, - 7E02A44F23461601FD54DA3F /* Release */, + 4B74CB3A587F6F127EDFC763 /* Debug */, + 57470DF6F499A483802F4409 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 29F615027D13C4A96FA1E765 /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = { + 0EE3B8E1D1C40DE7FA588CCC /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 61C715BA3C7F551B289160C4 /* Debug */, - D5B687F801F16A817C82CD50 /* Release */, + 205C3B001D1785630498378E /* Debug */, + B65244A117A1628C45A692D1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D984BDC022D5237A7868BA4 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = { + 0EFAE24B5CC863CCCA4508F9 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9D7EFC173A5D11BF0AF5D8C0 /* Debug */, - ACE933F815C05F926BA6ED11 /* Release */, + BCAC3A75E4CAAF3919AA30CF /* Debug */, + C29728A7401614F494367D38 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 304C8B1D7F902B92FF4F7FD7 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = { + 10E1403F759E228BC195828D /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CAB6B6A56C0DFF620F995025 /* Debug */, - D99F9793EA08AAF8E0DBF7A9 /* Release */, + 7BB8D657EA4D1A675D50E1B9 /* Debug */, + C65AD7E4113A848C59513B71 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 311CC0626756F8DC8C37E0C0 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = { + 141A424AF6A38313304014AE /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D2E6046AD5CE7CB47704C7DC /* Debug */, - FC9A60D6ECFA08BEEAA95F02 /* Release */, + 4ADFFD2E5E75840AC32CA067 /* Debug */, + 30B12A81FD644A795EA13E83 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 31E91A99438DF7CF294196DC /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = { + 1884127EAB4501CE6C47D3E9 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6A553F8BD5A5C1A33D2F7D53 /* Debug */, - 322D229E972B84C8BEC0859F /* Release */, + FC7A0050481D2D6FAAF4591F /* Debug */, + 30E453DBB208267E59D830F1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3693852902D60EDEB5D8B27F /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = { + 1AF909433E628EC26457205C /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 55B6A10B3A123EFAA25A227E /* Debug */, - 4CA72070BA2C2FE2D916F051 /* Release */, + 5EEF7F1110B5EA7231C45CE9 /* Debug */, + FC9C9F9E579C1F434D78DF44 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3A6C21E6CCF11A3B56CDE33C /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = { + 1C904D2FB673DBE16373FA83 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4A3E808D8D2FE39EF551384D /* Debug */, - F2BF77CE786F4101DAECAB47 /* Release */, + CA65B01C95D602822A48ED60 /* Debug */, + F3E273E3BF86133FE3672542 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3AF2DB398FBE9F5CE8512D28 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = { + 1FBF92B4CD04CC8C9EFB5E86 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0ABC20BC5DB552B51651EB4E /* Debug */, - 50377A53FC123CA6BAB78543 /* Release */, + 0FC5496CADC7C7D73E821F9D /* Debug */, + F0D908A5A98B609F695B28AE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3DECEE29BBC1B56CC203D718 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = { + 20FB15239DAE99F4DCE2B62A /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 821E3BE980A1D2DA3F554CE6 /* Debug */, - 869E6D7BE5688A650CD6AA58 /* Release */, + 83C48DF5B7B05719C6F7E2AF /* Debug */, + DF80BA1DD3440176640EB8C4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3E24D4F20919277433AEDC55 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = { + 225D7B3D02FECE8F0BFF6D90 /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 380D803E166E8524B7BC6492 /* Debug */, - 7A17EA827AA131278EEBDF60 /* Release */, + 51343BCE46CCF3D0EBF8974F /* Debug */, + 198661EE5CD1C319035315B4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3FD629EDBC13AE102B167FDA /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = { + 25EC7192854BA2624581D9F0 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 32853BBB924C235DEA92D741 /* Debug */, - 189FF616FC0FEE9A0CD19745 /* Release */, + 7417FC9553D0752B212C80A1 /* Debug */, + 10B53309D03E6CCFD9E43949 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 40905CDE358A5972012DE4E9 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = { + 270B29BCEE9A0485CBB85E84 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E3767D4B0D53281579D1E3CE /* Debug */, - D518D02A051F086AF13FB3C2 /* Release */, + 27AEDD44314A9DA2ACAF62D6 /* Debug */, + 622FED553C986FBB2E98C4B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 45336E8FD09E7C44847CE073 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = { + 2B547B22617DE6EA322A9DE6 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 508F06240711D1BA270E2A5B /* Debug */, - 423072900477705078ED07D2 /* Release */, + 3B278C0C6C2D8B0E174555F7 /* Debug */, + 654A884C08F411226A4E1096 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 45862DFB6380EC9C50A9DC9B /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = { + 2C6B159FF806CA13EF38DE93 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 92956A080545092479A5EF48 /* Debug */, - AFA5CB2BD77BA351E3FF1D8E /* Release */, + 4EE6049531ABE9D83CEF621A /* Debug */, + 6C507DA486A980470217DD18 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 492CD0CF5E358D907F90FEEE /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = { + 2D22126AE89A3BAA829CC1AC /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0A2F8D5157217E7EF2362077 /* Debug */, - AD94DA9586B50FBBF47C6325 /* Release */, + 9F2FED871388C948F0171559 /* Debug */, + C230C000D0FCA1D35318241C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 49B609DA78AD14FEB7B6AC6E /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = { + 2D55C68F1B8DFD8505B722F7 /* Build configuration list for PBXProject "ice" */ = { isa = XCConfigurationList; buildConfigurations = ( - 320A9F2DEFC255AC1441A9DD /* Debug */, - 6074F9C1B0191FABA2544FE3 /* Release */, + 73AA6C1E546A2A0DFFAD33B7 /* Debug */, + C9B8EFE9B9017FBCF0F50FD4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 49D01C61AD8758D2B471AA02 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = { + 3335761187FD8F6B86CBDFBE /* Build configuration list for PBXNativeTarget "Ice macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D5855CD42B93F5CBF3CD4523 /* Debug */, - 6B1C7050D255F704F3FC6CAD /* Release */, + 011CC2AF958F50548FC2A0FA /* Debug */, + ED83A473D1943A5FD3884024 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4CE4778CBD0A4E6FC82775E9 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = { + 33815915876E472B4F87E193 /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8395B969BD0526BA37487EE7 /* Debug */, - 2FC4692CADA9A9221EF1DDEA /* Release */, + 99C4530DC1169A541CF0025B /* Debug */, + 2CBD468F8A6CF787C4BA5DD6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4E620899F914B71F71320AE8 /* Build configuration list for PBXProject "ice" */ = { + 381EE69BF39E2A31A9574035 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CBA99D2DF00CC3E5F4DCA81D /* Debug */, - 78E719EDEDB223BC70EB7AA3 /* Release */, + C27B521B497DE5FBBE1EBD28 /* Debug */, + FF95D0AC21DB3D6207E35630 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5220219DB0289DD3A3F01180 /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = { + 39202D7414A70877BE45837D /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 73DC1E987DA62C45F491A607 /* Debug */, - 2BA2FA2D14201B0EC8B20373 /* Release */, + 624159B9005E625C69B2766D /* Debug */, + E6D88E40851CA6206B232133 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5B338167339629249D8AC3DB /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = { + 40F601399935EA83044348DE /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CF18244341C78BFE411D88C9 /* Debug */, - 20617B979B6C765726B1C015 /* Release */, + 4679AA721BFCCDCD65CB9408 /* Debug */, + 6C5716235443937679696276 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 60E1781E3558EB9101081746 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = { + 469CC415C2CD4E23C9440A03 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 77981C847182A134155BDF99 /* Debug */, - 84A6E5BCE03C887855E0C426 /* Release */, + EDBEDCAC04DE41B3F53864DE /* Debug */, + 0ABE4B874D9B891FDCC943B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6369F01292BFF3B59B2B41C7 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = { + 4D82084280C676C2093AF62F /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 83CCF56FFBE322D0D6C9A516 /* Debug */, - 1736DD342FFE69F0A5359F2F /* Release */, + 2DD65509D64D176188D582A0 /* Debug */, + C87C6044B643B62B21050611 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 65DA3EE375E8CE4A5E2FCF3F /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = { + 4DB434BEC4D47FE241686799 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A0AD46E4F58AAF97141D1080 /* Debug */, - A2580E4897DA69D50FB1E2FC /* Release */, + 4E5559177B38BBC8AF832698 /* Debug */, + DBCDB6AEE8716E3AE99E8BAB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 67954058AE74D657CE73E879 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = { + 544FCAA3BF572ECC5525C591 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 371209B751B170DE3E7416D1 /* Debug */, - 35174B2162A9F1088527D094 /* Release */, + 7855E109704F59DEF3504EEB /* Debug */, + BA11D8584470852444BF8934 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6BB1BA7FF0A2AA43C1D29C03 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = { + 555A63D73D762337A889ABFE /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D891762C88F0C3985D829190 /* Debug */, - C3F6C239B915A8390D55ADB5 /* Release */, + 50CAFBEBFA4C52005167582E /* Debug */, + 00C763F71BB41D64C72F5B08 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6BEA27ACF920A238C41BE6D8 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = { + 5B649B5CD051BB6398F0AB73 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 871D7F4032E9C1D0D21CCA59 /* Debug */, - C617E3CF96DC71AFA8AAE1A9 /* Release */, + 6B76C262F18DED8812CE4043 /* Debug */, + EF60AA9DB9FC3D6C95A263BA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6F15C88FC57ADE62FA48D631 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = { + 5C6A38D5A003D8C2B10EB588 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3617458DA83008DD0D39430D /* Debug */, - 7FF7489A228CDEB532D0FFD7 /* Release */, + 112259378DEFD9415D29BB12 /* Debug */, + B9CB2F17BB60D2A93774E9AF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6F84589747125E7DC5257ACC /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = { + 5D60C6D4805FE0840A563B9A /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5EEB923BF09AC0E6E0001F70 /* Debug */, - C239A92EFD220A0838924352 /* Release */, + 4FFDA4D7D709A98DD4C5C111 /* Debug */, + 74B4F808449BD133F7D215B4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 718469A340DB715B2D705711 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = { + 5D6E3AC8616035B5AECEBBAC /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A83BE6F7823DEE2EFE00E47A /* Debug */, - 38A995958390626333537929 /* Release */, + 28D310C2B0FBA44F114B4547 /* Debug */, + 4ACFD9F505479535A347F069 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7504876954989971B7E0484C /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = { + 5FFFF89B11EECD1E5C41B703 /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6F93183EA59D32F95DA183F4 /* Debug */, - 66EFD47EB56BD08D28560A09 /* Release */, + 4A96CE1C17B02803D67C1F73 /* Debug */, + FA7B8E9B6AECB88CD2CF7167 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 753BACEB2F3CD6948FC5A58E /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = { + 602FD78BB42EED22AE69E70E /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 893B0D5241A16760B6ACC8FC /* Debug */, - 90A42F2A4FBD1889EF4A2258 /* Release */, + 8BBD11CC665F6D0D472C81CA /* Debug */, + EC0D969108C9AC1353BF3F9C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 75CED96DA2C86B269A2B872E /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = { + 62CB538FB022CED190E6659E /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 95C72C627789540E6B7BC581 /* Debug */, - 763C6D448F7B5D1C1B549E26 /* Release */, + AE1B04F3622818478F347040 /* Debug */, + B0E0E6358F6068CF85A96E53 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7A305DD21906A670D3F6D12C /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = { + 674190F44ED8DD47BBD3457E /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EB6F985CF31C039458C83C24 /* Debug */, - 7A25C3B7E20CC599400F7939 /* Release */, + B451467279E39C98ACA0D2A7 /* Debug */, + 26FA6B439D408D06CA1D55CB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7AF911822DEE95ED274B0A63 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = { + 686CA0DB8041143E1F8D142C /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2EC06CBC2309C21CDDAB1F3D /* Debug */, - 5F4451B0E9D0DAE732EF1C85 /* Release */, + 07B4CC6A8722B10798000EF4 /* Debug */, + 86FAAB0280B252900A322015 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7DD80A81A453D2724906B5D5 /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = { + 688C1823288F9E68F1712F26 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 46388F40ABE8AEF9818F921C /* Debug */, - 3FC33F2C9947BE642671531C /* Release */, + 704C49473DB46BD1A3AD7431 /* Debug */, + 5002EC97CCF08EAC78615F2A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8179BCC8FF14781E23BB396E /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = { + 6CFA15E18CBCD5A1B9C078C2 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CF889F1FD89DBB0771680031 /* Debug */, - 5007A6FC395CB30A942A7D12 /* Release */, + 52CB59830C30C74F2D549DB0 /* Debug */, + 4279868881B2DE6EAC027941 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 90700B4EF9DB322D4479A91D /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = { + 70304980DAC6B5CAC7E8F6DE /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0ECD4B6E66FE045DD259E247 /* Debug */, - A19605357CD31BECCE52E732 /* Release */, + 5D4DCF542DEF20FCD712E5EB /* Debug */, + DF791BBC010C7DEA35C6288B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 90DED0A5E5C3E9810A4D086C /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = { + 72FFED9A8E87191EE3B81797 /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1A3BF0139A2C51089C7634F9 /* Debug */, - 75DD191D18D01914B74CEB40 /* Release */, + 7830EF6D4934D2D5794C75E8 /* Debug */, + B1EDA408C2AA15D820B1C19A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 92D3B5C3ABFC9059F3CB410E /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = { + 73CA9515792EA282705ECAD7 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4BA1BF97B788E55118EC7543 /* Debug */, - CA7A3F0ECAF0A664414C71BB /* Release */, + BDAFAC3D6B2F4A315FA24E54 /* Debug */, + C61A0F02E93ADD988CD97C4E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 96024CD2A213A56EA0CDB0C6 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = { + 73F016E3CC9A4846DC92237F /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 96917D139D853A621D4465A9 /* Debug */, - 7F528957E8579B094A44E4A8 /* Release */, + 1D9AA09DB3B18BA39583735F /* Debug */, + A443BE882D9C496DB96AF46D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 97E387EACA6AEBEE98FA605C /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = { + 79C62B5F4AC3F786B504F1F0 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EAEA4904AC1FF24501848E4B /* Debug */, - 619AEDC98AB8DBD071357B49 /* Release */, + 3C089350D7C122B295078195 /* Debug */, + 1E4BAF1583875EDBA336D237 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 98EC32A5E954BB63900D8FCE /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = { + 7D0F8BCAD5EDB101F823DEC0 /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4292999A0719EF77D1AE8603 /* Debug */, - 67112B9637BABB17A6239343 /* Release */, + A992A64B551306E52EBFFA70 /* Debug */, + 7D50FD009A17A71A0477734F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9A898F97439A84719F1671CF /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = { + 80944B96D7BD14FEB4A109E5 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 131ACE7BA8FF5FD9E4578B3E /* Debug */, - 19B922212CCC674B5F28DF43 /* Release */, + E6616EE3382A5B4F1755C5CB /* Debug */, + 7F038F0E39CE843194A0FF04 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9AC9195AE48E71CB74E51857 /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = { + 83AB53993A049DAAD70B1062 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CFBCC4EA992F4C843C738531 /* Debug */, - EF5558979D23D317FA4A6AD8 /* Release */, + 5A5D3ED1075BFCD7819B071A /* Debug */, + BADB147846512CDC8EC00AD9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A1E02F41A3A6C1296EC1ED1E /* Build configuration list for PBXNativeTarget "Ice iOS" */ = { + 8438D59C3B885588B64C9832 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C184B826555584E0C7DDF91B /* Debug */, - 657164E644EFC97AC771AC22 /* Release */, + E1AD6FECB9FD4526CC295047 /* Debug */, + 53C75FE2DC576E2DB33B0338 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A2ED652B8ACFE2E5D1830069 /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = { + 85C13ACAB3711BD642FCE4C4 /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 55BD459489903FFCB9740629 /* Debug */, - BF3D4CF954AA65030BDF983C /* Release */, + 2D450C72B46B986D09B55ED9 /* Debug */, + 77568847C4326D667191703B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A369A5BC026AEE26F64C934F /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = { + 8D6981486561EBD3BEBBE95C /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D42CE8C0D80787ACAFDC7A64 /* Debug */, - 92C03B295FA15AFCBBD588DD /* Release */, + 9677F3607D2D482339DADB85 /* Debug */, + 9A87C1FAC5021EFD0F153CCF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A5032BE58483039660530CEB /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = { + 8FEE51B6A3BE6A237451E98D /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EF26BD773C33A817D8FF0435 /* Debug */, - ABC31BA096E1426EDDF5DCF2 /* Release */, + A22BD33109C6BEA55E18DB0D /* Debug */, + 60DC3753797AE277083A79DC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A9397B603612590159730228 /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = { + 9353801B529260F737851CAA /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F8C7F789E66ED84DECF0D2DB /* Debug */, - 22D36A80E5D1757FC9880B4B /* Release */, + F63EB3889A540862B5C1409E /* Debug */, + 132EFC9A96243B9910662B83 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AA9E2FD9844A0304BAEED206 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = { + 96C433DB6D4ADD824EF8C135 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5EA6936BA1B758FAEA8D14EA /* Debug */, - BE68347B468B847F2142F2D2 /* Release */, + 1365C74468FCEF15966DC571 /* Debug */, + 8FF84525302075EE367FBB39 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AAA4B5634CFAF599D5CF0A53 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = { + 9DE455849AC8D536550B2EEC /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 74292F4340F3225AE2085CA5 /* Debug */, - 57FF97B0DC830C1B1C30A660 /* Release */, + 88496326373DAD5ABADBA984 /* Debug */, + 77FF3CC4C1DEA6D3EA793236 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AD161EDD9CF2D67496627B0D /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = { + A42CCFD6344CE2EDEC80786E /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - ABC8C3AA71A1A2F8B6DA6CA0 /* Debug */, - 3DA7BC5262FE03DAFDC0BF63 /* Release */, + B5FC310418A6D9DA79A0820D /* Debug */, + CA9FA5D725CDB3801AC8CBEF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B097866F7C9739FE146CBADC /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = { + A587A06D5F6E132F5A3B9C1F /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E1BB6764B69D6E7F4BCC95F1 /* Debug */, - 8EA02B2A91FE365252E1FE11 /* Release */, + FD741080A0C1B98C1D1B75E3 /* Debug */, + CFED7F1F6617B1CF2D3D4D32 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B19B12C0EA85D69FF9269DB2 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = { + A73372CD2DFDD509AAC6B941 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 70BA444A65CCA7A8BAF2CCC0 /* Debug */, - 7A98754BD3D21211865AAC3B /* Release */, + AA657A8480CFE70725FEB6F3 /* Debug */, + F3E9114AB4CD6F863CFF72CB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B2B98177DDD46EE593305650 /* Build configuration list for PBXNativeTarget "Ice macOS" */ = { + A9DB78C0FD4634D297D9ACE3 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 259F1E2D0F4F5201C8AE9215 /* Debug */, - 64B7A9D392DD962F8CFECE9E /* Release */, + 5D72F7A2FA24166F161E77BE /* Debug */, + F374F3D5438C236C87A58A73 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B351BA953215FB9837A9C550 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = { + A9F09C08CD7BD7CA33AF995F /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E7F13EE9B9065F0C92692469 /* Debug */, - F254C8FA0267896A6E26D05A /* Release */, + 0347629109200410FC7237FF /* Debug */, + D780534798616EC4BFDF9FD3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B5B25621875C8E1002F9A022 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = { + AE759CF313ADE80AD78FF935 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C17D8BEEE4ABFA214C799A70 /* Debug */, - 3167CA1FDECBE2CC02B2B284 /* Release */, + 93CFBF6BF8C6A835CDC6F358 /* Debug */, + DE013AECC305883A62CBDFEC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B6024535BA37B28DFB01C3FC /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = { + AFAD3A592F040172798F6AF8 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 21F1EF92811CE1456684FE13 /* Debug */, - 670EBBACEE6AAA8F98CDA40C /* Release */, + C6F0D3C48F7AF28F3D2E2807 /* Debug */, + E0E0C87104F919DDE32F19EC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B759C973487A012F6C373F82 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = { + B177DF1D1629B1AE10FE43D1 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 06844834B982E90B8CC6C3FF /* Debug */, - 916F4272294AFD13020CC6D1 /* Release */, + E2D31ED62E6C3D699254A5FD /* Debug */, + 7CA1D2A04997DC911739BDC3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BAA00BA6A0C39AAC123B5915 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = { + B3EB63E7E80278C3A46AB5D0 /* Build configuration list for PBXNativeTarget "Ice iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 152B0890011CFE07D2DB4F94 /* Debug */, - 369E5410B96176F40BE2E9F8 /* Release */, + C3722EB1E530D97837CD26CE /* Debug */, + 69AF4ACB1345497CC8760BC3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BF17C6FB528CF9EC0E545D1B /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = { + B6686F53B6B2DB01F7D2D51E /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 11DE1042D18195C87E67C5B4 /* Debug */, - E0F9C85BDA51275220626881 /* Release */, + 62D11CD5B18A50F997534C1C /* Debug */, + 9C67E7158243AE9BBED3DB4C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C0BAC8D2F2BDDC628B47F70C /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = { + B6AFDDBBEE1B3573134850DE /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 49D10366C893D161B9DC36BF /* Debug */, - E520F2811D3EE429A050B2ED /* Release */, + B70958A07820F24153C82D69 /* Debug */, + 4A96FF0775FD9B8261A908C1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C13AEC2E435E896E8FBD5649 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = { + B89F4C4E44F64BDD966EE1B5 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F00C037A99F2CC9D8E01231E /* Debug */, - 8B27BA96885C810DDE1A7461 /* Release */, + D204410F3C771B53C68A5009 /* Debug */, + 150321E7973095640FC098BD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C375060CFF20E4DE39D6CFF3 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = { + BF4C2C5F37875869E7BF37E8 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CB18606496E6E0EA9A73BA6E /* Debug */, - FAB9FA228AE0A74B39FDF8ED /* Release */, + F659780EFCABF3F48709A7C8 /* Debug */, + 21D226499A7361A419CEFE18 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C404B8DF51F2446BE3BB6BD9 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = { + C55E74E3597122A4D2934E60 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - B91709731889A7959098E27D /* Debug */, - CA229B479D76F2CECBD88E4C /* Release */, + 982E9558F3D919C717C33E7B /* Debug */, + B37631B2E178C85C0BD7416D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CAB0B77B83FB59AC0194739E /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = { + C75CE301532817FB9F18CF2D /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 401FE55CA258D3C7A1D2CB2A /* Debug */, - 975AEC4C1EC99E67F674DD35 /* Release */, + D3D001F8E544D390D0D1AF51 /* Debug */, + 2451DF474EA10000CBFCAFBB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CBEB8379016775C75645A394 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = { + C774EC4F7B80A9DC640C4A98 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0DF6FFF3F1F4C3710E2C287D /* Debug */, - 7B436DF42D24228CEAB52FF3 /* Release */, + CEF445C20B9435947C182348 /* Debug */, + 287ADA50FE6D9E982B0D3A7A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CDABCC82729DB49FD47FFE3D /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = { + CAA6AB848FDFE69287273CB7 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2295A02DCC2CFEB08FC77B94 /* Debug */, - 479D0D3708385ECBD8E57159 /* Release */, + D48E3016D5ADE10C3A00DFC4 /* Debug */, + 12BEA97FA2FDB585862360A7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CDCDD4A7D4900CC95A64A7D0 /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = { + CB1B55F276722B4DC699283F /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 856AAFA0AC9D42C133F8BB83 /* Debug */, - CA3D873C971A8D89D88952AA /* Release */, + D961DAA17BD6AC10C7ECB17B /* Debug */, + DEDD9294323B4DFC822104AC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CFEEBC29960A3220CBC34132 /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = { + D0CCC607E5806E77831B1416 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5209AECA8D740DCBB75D3797 /* Debug */, - B8AE478F8F93BE3BD8041011 /* Release */, + AAE4AD255551004EADF51BD7 /* Debug */, + 6DBC2F6DCFCC8FDF8640187A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D186B9D2354DEEF650F4EFBB /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = { + D12D148799602A4AC7FF510F /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AECE602422D42F6B1AEAFC8E /* Debug */, - 31412436C3FF8E41562CBC28 /* Release */, + F1BAF8B6DED5E94738BB4669 /* Debug */, + EE14543D05758DB6D05CE53E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D4BBF305714A95BEF18C3D36 /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = { + D19A58BF707835F960F106B8 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8F0408C819D3E8BE8FC0CF14 /* Debug */, - BA06BEA110D4A7D795AB7CB8 /* Release */, + 1625D39D0C6F2EB7B99C0165 /* Debug */, + CA30A575821BD6DFDB1CA02D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D589334357FA183D27798AED /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = { + D7544F8A922AE8F2EDB41A02 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F1717E3880274E71FE1031AC /* Debug */, - 157199F0F3B47D97FD8675EE /* Release */, + 20D0C1B391680119AFE248AE /* Debug */, + 79E624FA79C750FFDE1E3B2E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D6D26BFF9C8DBDB634F93FAA /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = { + D78ED8ECC0AE408DA83908A4 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E2EA448E76E0BA1ED8526696 /* Debug */, - 60D008DB5DCFE7241BE06EEC /* Release */, + E54DD2BC48D7DABDFC986791 /* Debug */, + 76A34945520A32193465D243 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D87EB862D7C1FAA82D04034A /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = { + D8007E39E45FCA7368E53B31 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 91E4665E3E3B6CE2E9ABDBB5 /* Debug */, - 3F640B23C985630758266492 /* Release */, + BB89164D04115B81A55A28EB /* Debug */, + 8506411B6F66811B9F3AF489 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D88854720B46BA2754326BFC /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = { + D85F93533003653E8BEEEDCF /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8D23DFC43FFE60D18CAC3F61 /* Debug */, - C1441DD72D21EE92199BCDF0 /* Release */, + 22E4AD97DA54E75E5AD28B99 /* Debug */, + 635FB8F29F3545CF5D1C2CCF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E0EBE04152FF4ED31AD30380 /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = { + D94673340A9825A2C0D0FF4A /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3F4C9F140104FC697FE6225C /* Debug */, - 0AD023302845D15816606D5E /* Release */, + 2A869C9562BC45F1DAD26782 /* Debug */, + 746D9445BC2F683E373882E4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E5F229C1A5B95628F5542D9B /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = { + DA5782EA7C56F1C9C9EE074A /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 098885B90E4705B56363648B /* Debug */, - C0ECE15CD376C02C6868A0DC /* Release */, + C0062FCF81519D76B1255855 /* Debug */, + 405BACCF3A9B3478F2EF994B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E8FA4A91F8A3AABCF0C62675 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = { + DBB2EA67BA6CDCB7FCB3DE91 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 108318E9D09DBB3892066C9B /* Debug */, - 4D386413A12B56F03CCDC977 /* Release */, + 74EEB8ED8BC649A164D44D5A /* Debug */, + 58C370DFDA25589F5F814EB4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E9C9BFDEA2ED16B4476CCF6D /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = { + E15FE701211C54FAB6478CA8 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EF0A626A8AD8CDBB8BF0248D /* Debug */, - D42BA7F808848EAE6E69C1B1 /* Release */, + EE232280D015186BEDFB9F87 /* Debug */, + E22DB570F4B3184DAE1E4BB8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EA5565BC88E3B4CF63433B39 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = { + E4220777441E5EF3ECA5F089 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7196A23969C8124DE20803FD /* Debug */, - 8BD5C5B7B93380512E8134AE /* Release */, + A119980529BB02FF8D4392B5 /* Debug */, + 67770D43D33076741AA56821 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EA59AF9ED6271FF30295A838 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = { + E670FBC18F8DB839607BC8E3 /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AF2922FD05E6067E3EFB73B7 /* Debug */, - 655BCA539106BC0761DF42E4 /* Release */, + 9406A6CF8EEEA324012871AE /* Debug */, + 9D1716F294A6D62558E8B993 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - ED8B8EFE415F9FA463B0A59E /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = { + E84BF87A0A0D54A334C069D6 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FF340377D2F1925C754ECEFA /* Debug */, - D93A8947B1EB19B41CB8917E /* Release */, + 2C5F3BADECC6CA58BE1C453E /* Debug */, + 45A0D99A811AAACDC8C518D4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - ED8E7E82B168D7EB16E5E342 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = { + E9FFA63035886ECE1E9ECE85 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6CE2195BFC862A22798FB9AF /* Debug */, - F50BEA838D275AA65A6FE37B /* Release */, + BB06D6D5BF72325BAE0F1B94 /* Debug */, + AD22694864642BA851786963 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EEEEA9D05A20FB2C43336CD7 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = { + EDDCB3D00193C75D1E33B973 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FABCEBA4B5EDF6D358C5E7E9 /* Debug */, - 6F803A2E67CFC72BB6E9C8CB /* Release */, + 3D18B97208F3127AA4D3BA9F /* Debug */, + A6D6DF96DE9B609CE1F67B11 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F2A31FCBF6D5223BA39DC957 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = { + EE4E19AF95E379FC43413ABA /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - BB4F25BA94E2C437D66848C5 /* Debug */, - 481F2FB4B61D167FFD313B44 /* Release */, + E7F47928E080A245266CEA61 /* Debug */, + 217CEF0EA476A9DE4C798D13 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F2AC5AC49AC37FEC3087A7A1 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = { + FA1EA884977C3652AEBA8EBC /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1EE7CB56788485887BD523DD /* Debug */, - D4200B6C370F6400D0AF2246 /* Release */, + 3039B8BF73BA2B1CA7D1DB19 /* Debug */, + 545E7D6B2266745FE716C2EA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F5C049476C15902282285C7B /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = { + FAB7791B2C8C1018698D7909 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 73E1C606A2874AF700918731 /* Debug */, - 7FF164880ECD590A12CD42EC /* Release */, + 4AE8B6D8551528AE40545B1B /* Debug */, + 420591BACB209C7C60D6A7C8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FDB4D6BFB37F88D5E6A16C48 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = { + FBAF081DB3D9A6FADF284C05 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1949F8360B9A846261E2F134 /* Debug */, - A5F357FFB899E13C5A4CA0D2 /* Release */, + FA754E7056636EED796F69E7 /* Debug */, + F4680B102DF5832D606C2591 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = 2FC1D43765A7F931D9DC5184 /* Project object */; + rootObject = 6C4BDC12B235E63B3B624E92 /* Project object */; } diff --git a/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme b/swift/ice.xcodeproj/xcshareddata/xcschemes/Ice iOS.xcscheme index 51962c0f368..97afd963fae 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 3948bfb0966..37ecfbcf989 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"> From dcb5f2e0301d6cb4e0b220690f223ebfa75cd1a3 Mon Sep 17 00:00:00 2001 From: Bernard Normier Date: Sun, 14 Jan 2024 15:44:15 -0500 Subject: [PATCH 9/9] Unset DEVELOPMENT_TEAM --- swift/ice.xcodeproj/project.pbxproj | 21264 ++++++++-------- .../xcshareddata/xcschemes/Ice iOS.xcscheme | 10 +- .../xcshareddata/xcschemes/Ice macOS.xcscheme | 10 +- 3 files changed, 10402 insertions(+), 10882 deletions(-) diff --git a/swift/ice.xcodeproj/project.pbxproj b/swift/ice.xcodeproj/project.pbxproj index 2614cab6ccb..fcb568be4d8 100644 --- a/swift/ice.xcodeproj/project.pbxproj +++ b/swift/ice.xcodeproj/project.pbxproj @@ -7,1572 +7,1571 @@ objects = { /* Begin PBXBuildFile section */ - 0024142D08E8146ED6B749E4 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 284CD0E7A9CF17BA732ECF6B /* EndpointInfo.cpp */; }; - 002593FA6E99043AABEF19A8 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2F6024DEF147BA264B75062 /* Timer.cpp */; }; - 002761C37FEC1BD863FA8E09 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2FF3B3842F37F3295343B6C4 /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 003712874379D9EE3808F9E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 00A667381383D7A104D11FA8 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5794745FC0FAEAA72EC1AD49 /* PropertiesI.swift */; }; - 00C09BF817F1FC244083540A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 00C54888EF2A7C455F916280 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1EFF9091F708E5F6F0704B3 /* CountDownLatch.cpp */; }; - 00E6D2BCDB624F2D111697FC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A6263E6EB0712A439E75D09 /* Server.swift */; }; - 00F487D3AD3785EACE924C0F /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 933DB0C83248BF059A7F1C20 /* Server.swift */; }; - 00FE0665F407342D39498E2B /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC4BB865E8CEF17247111E25 /* UUID.cpp */; }; - 01110EBADB5441FECC1C4EDB /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7716384B8702730F154043B /* Protocol.cpp */; }; - 0124F5D1935B3D72A6E64EF2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8A8D9D48C0A5E19D013CFA /* AllTests.swift */; }; - 015BE93C41A3CAC4E6ECA5B0 /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5349B4AD3076D48E54DF2ADC /* IAPConnectionInfo.swift */; }; - 015C3B4F1DF3714139598CF7 /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = DD94218AB8FC82917266BC56 /* PropertiesAdmin.mm */; }; - 01901D0CA9AB329495A1E95C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 01D2D31B16EECA66BE55F042 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */; }; - 01EF086D0665E2D7DC2297D9 /* TcpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52104DAB06FD2367D5F4159A /* TcpTransceiver.cpp */; }; - 02189358E3DEAA3352126308 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 028A7F9998CD9F657744EE2B /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE088400874CD0479C5DBEB2 /* SlicedData.swift */; }; - 0299BA4B0F079501AA420194 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B538A5094459696C1D929F20 /* Test.ice */; }; - 02DDAFC836F2EC3E8E413597 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 668C6C0361ED4E7B91231D65 /* ServerPrivateAMD.ice */; }; - 02E5E7016AC05F7A655E2219 /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E2686345DB372E56936CAA9 /* RequestHandler.cpp */; }; - 032977B58E34C07E224720B1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 03480C9ECD1C063F948DF2EA /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34E8CB61ABA1F28BB7E698FA /* EndpointI.cpp */; }; - 03949E3F114B9055E063CCD5 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74C4E15A84E6E19C4F7072FE /* TestI.swift */; }; - 039778551EDBA4E26DED4F50 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A8FB36F298F50F55357C8BA /* AllTests.swift */; }; - 03BF29AA9F7A17F23A9C1835 /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 57B34B2AE4E0AB6BD04A92F0 /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 03D4D96A2E376F6E49556346 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7026D4F8367154C1BE4B7F26 /* ServantLocator.swift */; }; - 040A2963B9F96DED942BF394 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 0437614A624B265C6C91294E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 043D93ED61C15B54AE03FD26 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 55A1E522AC3532C58222E061 /* Test.ice */; }; - 0446C65D43F18EBBF3567AB3 /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BB0D9576EB2595A8BB30BC3A /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 04CE142AF814C48EC05D3A57 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */; }; - 04ECAF5D65B993AA6FEC994B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 051D59C471FDC1528AE471E0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 0525B9C6B3463614F468B342 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 0566211B24AFD8F6FC201F0D /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = CF258BC66CA2B0FD8CAE93F4 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 056A13A487D0269009F489FB /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 05F6543EDFBED1EBFC008F2B /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = FCD16A3852D0DAB23E0EE5DB /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 062DBE92B3468C7729A921A8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 06315EAE2E8DEC55B85105E2 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9460E602C8D4CFFC14B8BCDD /* AllTests.swift */; }; - 0645496C3D42A3DC78DD91A3 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 0663556E59DB2BCAD49E731C /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41551E09D595E50A24EF5892 /* Incoming.cpp */; }; - 06B2695071931FFA1A1464F1 /* libIceDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = AD73F53FFF7497EA96B009D6 /* libIceDiscovery C++11 iOS.a */; }; - 06D3D4E5620CA3A6A493BEE9 /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 021E511AD9C9C3E31BB6E815 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 06D6D868235FD52567DE309B /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; }; - 06FE7343E51654DF8A44C59F /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D2744013C529D8F086422990 /* Locator.ice */; }; - 070A544F88F5C9ADEEC6F00B /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E18609323F580043357FC2C /* Buffer.cpp */; }; - 072401D28B18ECDCEC8250D2 /* ServantLocator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7026D4F8367154C1BE4B7F26 /* ServantLocator.swift */; }; - 074F2BE69D4B6E0B74D4F19A /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F214226923D4CB01CC6D14A1 /* FileUtil.cpp */; }; - 076BC5E8463ED699DC235A28 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; }; - 078296B9E5B53929C2EDAD43 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52C032A6AC0462FD61E22750 /* AllTests.swift */; }; - 078873E8343ED44589D57347 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 0792D6EF94B03FBB419E442C /* IceHold.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4D3E7C6DAF7A1136E094036E /* IceHold.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 07B014AD0F72BC7A197F8071 /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85132CE480BFBD047F6718C3 /* LocalException.swift */; }; - 07B52E45F10451703560A6DF /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0C7FC0099BBEEB7A76312E5 /* Server.swift */; }; - 07D364FA5369EF6D8D4E5AA8 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A9B49B4C419054A03A217A /* Collocated.swift */; }; - 081CCE04946DEEEDA2549923 /* Connector.mm in Sources */ = {isa = PBXBuildFile; fileRef = DDA135F8EED8A314941972ED /* Connector.mm */; }; - 0821890B3D246581E1D1B1B1 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = A90D21866BAE0181F737C83C /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0870B5ABB7A3D930328ED6C2 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = D091865931D88D93A031BF38 /* PermissionsVerifier.ice */; }; - 087ED6AEA71048A2FE01505C /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7D8895A590B0D9627121789 /* ImplicitContext.cpp */; }; - 08844D0461D00EFE56B5AD1B /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F790BD181E9C75D456202B50 /* RouterF.ice */; }; - 088A6BBCF4CE108259A3ED27 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36463ABF4A88FE5854D32E77 /* Thread.cpp */; }; - 08C54E5DEBB4C78669163180 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BBBD22CE72373968131654 /* AllTests.swift */; }; - 08DE17DEFDD40B51CECB7C6F /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D2744013C529D8F086422990 /* Locator.ice */; }; - 08EAF643A2653FD89ABB7D42 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E41A2284123652035B9626D /* Glacier2.framework */; }; - 090798C938CF1CDC51DB3176 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB8F279A2779E598731A5601 /* DispatchInterceptor.cpp */; }; - 091491A97A97617EBEAD6299 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 092780B0FE2232D1CD619000 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 261E69F6A52C94909DF014AC /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0929B68F398D982D5850DA38 /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90D35835E18D79ADAB716A16 /* Options.cpp */; }; - 0963E3DCFF980E77CD4D47CD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 097470873DDB97B92F0BA0AE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 09A04454140CDCF98273DEC9 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEAEF19C75C1808D288CE761 /* PropertiesI.cpp */; }; - 0A4EA454CDC37B237D4D0068 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 0A89B3A1F5FB92AADC45B237 /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5AB0FB42BD3A39396266AC /* SecureTransportPluginI.cpp */; }; - 0A93FCD2AECB8E9CF8D55A29 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E69319811BB2583A562A6C15 /* ViewController.swift */; }; - 0AD7E8F712B6552BBAE3E0EC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 0AFB96465B8EEEC05ECAF412 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 272A8F85D1DA874AFB64025B /* TestAMD.ice */; }; - 0B1C6B9A74ACC04B0A179DB8 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F9015DB7A4BC8F5780598C5B /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 0B28D21E15B45D1ED33F3FFB /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C121A644BFC70CEBB7B25F34 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0B414F22DE059BE997F8DCF7 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AFA47DD3A3466A544964C35 /* Server.swift */; }; - 0B7E47D4AF20BEB3B3846836 /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96EF425FFAE7ADC67DD3FD81 /* PluginF.cpp */; }; - 0BA302A83685C2664019E98B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A635A54F2740AA6A0345900 /* TestI.swift */; }; - 0BAE1F47FB54A5D9966AFF03 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 54B51F429E8B56A715B61412 /* PropertyDict.ice */; }; - 0BF9304D519575F887C0D95B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 0C14941F15A92753776C0CDC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6927471763F231278861844 /* Server.swift */; }; - 0CA5D61E117CEC8D73FE01C8 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4F40F40EF79D1EFF0672F1C /* PluginI.cpp */; }; - 0CB00C51D1538F274D69152F /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */; }; - 0CDA05DC036F12BC7933113F /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B68A5626BF6AEC2DC151AA9 /* Connection.cpp */; }; - 0CE0F813D4862C914D0C9E72 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 0CF450A0A2F39F0454148A99 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D2B953157D627C928A6037A /* Server.swift */; }; - 0D1B0BF9795FBB8AED2DDD52 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A21AF317B8CCD5205D8A9013 /* ConnectionI.swift */; }; - 0D2EBAE3BEC12140C8FFEAED /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D440D5894319742F272192 /* TestI.swift */; }; - 0D383F343BD3B56CF3D71B12 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9158AF482E818BC8C94168F9 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 0D5BB545FDA707CA2E9ECFB7 /* LaunchScreen.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = 99AF422C184D4E445CBFDCA9 /* LaunchScreen.storyboard */; }; - 0D88CA2C06D1F4F887B5AD7C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 0DA845ADE51AAB9852C20481 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 850A2787B4B4A3CB3C74175F /* Session.ice */; }; - 0E000047E932B1183B39C94E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 0E9CAFCAAF91B99E5E3B78AA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 0EA185C86B7350E72419B0AC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 0EB0010773FB71EE1DF2308E /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DB4E7AC16E22943F389DA62 /* Test.ice */; }; - 0EDDFFAEC77ECB392806115F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78E2A2D2066C58262F423252 /* Client.swift */; }; - 0EDE49A3D761885D2096FA60 /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83AFD09B0973C33E42BBA73 /* Value.swift */; }; - 0EE1712A1DA0DAA8F783EF04 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF2962E761A9438BFEC2D88A /* AllTests.swift */; }; - 0F2B48183718EAD49608D11C /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 322A1089B56E24F412CCAD3A /* PluginI.cpp */; }; - 0F71DD6A67178D0C707B2F85 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F904E8A5B6258EDDEAF27A63 /* Network.cpp */; }; - 0F8ED0401A5862836389F95D /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6C1FECEA4BD0E885787FD4F /* OSLogLoggerI.cpp */; }; - 0FB5C078A576612E4E33EB1C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 0FD2142CD0E2EBC31B9B2CCE /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88D78672154E80AA54EA998A /* ProxyFactory.cpp */; }; - 100D9B6351AB634A84E6EA30 /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72BF04B404B4A6ABFA18A71A /* Connection.swift */; }; - 101226D239A906D14D232C6E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E14A708807768953B2379FD5 /* Server.swift */; }; - 102C37E47846D0EF9C75646F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 10A3BBE740D13AF0C740BC8E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0C7FC0099BBEEB7A76312E5 /* Server.swift */; }; - 10A917B381D58299302F0E9F /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 54B51F429E8B56A715B61412 /* PropertyDict.ice */; }; - 10F351325620C77D1E508B7B /* LocalException.swift in Sources */ = {isa = PBXBuildFile; fileRef = 85132CE480BFBD047F6718C3 /* LocalException.swift */; }; - 1128B88B961ACEA596CB93AD /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E41A2284123652035B9626D /* Glacier2.framework */; }; - 11414641E84F1809DDD3B613 /* IceExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 60F7DD828BF511AA7D9F0CFF /* IceExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 11704346304A31C19690E230 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = B354AAD31C61053198AA6359 /* Collocated.swift */; }; - 11A48FF3B68288AB5E816FF6 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 11AF59D1CAEA33AD50DB0A7D /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF62AE44540279291FBE8D46 /* WSConnector.cpp */; }; - 11CB6E15E76A8A28DA82A0A0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0875A1294F5D23AA2CB7EB75 /* TestI.swift */; }; - 11EE9AE06E06C28E26C86ABF /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6331AC6AD612A19D131621A7 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 121807157EC413FB87069F3F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 123AC9FEB47482139B9F4974 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39513FAD1AB0E49430E2633E /* ServerAMD.swift */; }; - 126403DC6D1B09CDFC7EBAC4 /* IAPConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5349B4AD3076D48E54DF2ADC /* IAPConnectionInfo.swift */; }; - 126AD68DB3E55E2881550C60 /* Thread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 36463ABF4A88FE5854D32E77 /* Thread.cpp */; }; - 127E17A1E5A7C739CC7CB1C0 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E59CE567CD0339935ECE174A /* StreamSocket.cpp */; }; - 12C757825C2E077AF245A57A /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 322A1089B56E24F412CCAD3A /* PluginI.cpp */; }; - 12F198DEDCC7F5FF1C915665 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */; }; - 1314E0CA8D759C03124C5A89 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37ABE7A8D0AB189693887A28 /* LocalException.cpp */; }; - 13281101D2A03AF0E39CEB91 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 135503B16ECF7FE8834B022B /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0C68422D8FEA96E3FB21520 /* UtilException.cpp */; }; - 13696A5AAC9DA9EFEDBC76C1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 137C1A5092681CB3AFD8A25D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 13808799A6443C9ED85394CF /* Connection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1B68A5626BF6AEC2DC151AA9 /* Connection.cpp */; }; - 138633C2D72C15353E1FAEE2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B507EB7D03295B2920C11D7 /* Server.swift */; }; - 13999E48614CE52A6FBCEAC3 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0875A1294F5D23AA2CB7EB75 /* TestI.swift */; }; - 13D94D7919F7C5CFD506420B /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0A0A432A404B1F07E7108C66 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 13E09FD31C14F9FE90AFFCC2 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03BAC263458A1F99AADFE0B5 /* InstrumentationI.cpp */; }; - 13F7AC00FF0C5CC44E51FEED /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C56F9DD18C4DA39D6933343C /* Reference.cpp */; }; - 146EBA16C94B5008FDE7403F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 1495E8C9AB710FDE4FE9B882 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91D39023FE37EB3ACD51A678 /* PropertiesAdminI.swift */; }; - 14B743A7A9FEB39E1FCFD3F0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B91C23CCEBC74093AC64126 /* Test.ice */; }; - 1521C12DDE5DAE9FE9AB3F30 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 1522E7E67E7F5EA1FEB64AD7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 152A2F71AF65CC663076A8DF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 159D1DCC76ECE3CF996152BB /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0972B81E52AE5219A0359F6 /* Server.swift */; }; - 15C8E2EBF9387EDE196AC06E /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41ECD3890AF22A95E9667E8F /* ConnectionRequestHandler.cpp */; }; - 15FD74806A0E0036DC93EFD2 /* AdminFacetFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C121A644BFC70CEBB7B25F34 /* AdminFacetFactory.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 160043DED8FCC4B4461B8CC6 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0832C0FE4DD00F57DBF41A23 /* StringConverter.cpp */; }; - 168BBC0D92DF7FCD60D03C5B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 169D64EEE25256A8EC47061C /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E83D440DF808EEF167018B4F /* Cond.cpp */; }; - 16B2DAB7DE56037E06A5CBB0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 16B9F0142D068E51EF591590 /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7226B2863E023A530714AEFD /* InputStream.swift */; }; - 16DD456DFAA5CCD7214C4A22 /* IceAmi.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C86CB8DA4BE954C9B5E50C78 /* IceAmi.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 174897CF28EEF25C2FB22102 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95F4BB6C69D370E2E329C2E7 /* Object.cpp */; }; - 177DD1BC6757798874CDC528 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33E7FA0C07F541066A9CE1C7 /* Client.swift */; }; - 17D81C30F65D3D520478406D /* SlicedData.swift in Sources */ = {isa = PBXBuildFile; fileRef = CE088400874CD0479C5DBEB2 /* SlicedData.swift */; }; - 17DCF21F4DDABFF050F0745E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B8BE69409380DAA8F3C39DC /* ServerAMD.swift */; }; - 17F49F00DA7907DF1A4E0251 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 1810E68E33A0ACFD934AFB00 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F189089F52472441A777F912 /* Security.framework */; }; - 188D33D572864891FB2C6AD3 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 18C072940A70F14F69FE3F40 /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C216F290E9890052BC928A0 /* ServantLocator.cpp */; }; - 19157D1B47D51F5EEAD12A62 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ECDDA9E457926810C0ACEE3D /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 1917AB2AB67D05D8EE504CE2 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 039C029EE5082592E88E387D /* Test.ice */; }; - 1944F69679AB587CED597FF9 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4419CDC00A0E26DD43BE74BD /* Exception.mm */; }; - 1961595FE9CC70DD3D0A7975 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */; }; - 19764FF1E36C227E2D6E9E51 /* PropertiesI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5794745FC0FAEAA72EC1AD49 /* PropertiesI.swift */; }; - 19E0C061D8AC2085265BCB52 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E8D76449FAFB649E9E74273 /* LoggerF.cpp */; }; - 1A44854689C4F681D3348B03 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A030366430881927186CFFF /* Util.swift */; }; - 1A5AD7AF937810A8F33FA8E9 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F87F4E054DCB94D81AF2BE4 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1A60CBD5A72816C85C3E687E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CD6F8266C083D7C5841D1E9 /* TestI.swift */; }; - 1A60D6921AA577F7F0C230B1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47144CDB90451B47BF3BCB58 /* Test.ice */; }; - 1ACBBDA263DC52EFE9B40BCE /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E03FB734840AA5D7A8F37DA /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1AD6E3BB5F9392CE05DEBC03 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 1B4323468E2ADA38457B870B /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5F7B7EC6A1313D15C1D5F60 /* Incoming.swift */; }; - 1B5FE007B263C0C5CE21B0EC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 1B7BB4266B61BADD75263B04 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF136F6E80A01F3C0C176C6D /* ReferenceFactory.cpp */; }; - 1B90E097ED6BB4EE1E6E2D18 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF9FCD3ACA9EEA864C2B86E /* AllTests.swift */; }; - 1BD2E3999984D85A4EF3D0C4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 1BD3A7F4BA5A57E971C6B144 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41EA629E4C3C316AA9FF1EC /* TestI.swift */; }; - 1C2566EF8DCE13602549EC96 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 1C47E77C80C89D12679DF230 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 1C48E0521B537C80932E2D14 /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EF15FCC42E00687BF6F16DE /* Communicator.swift */; }; - 1C78CE07064B9E14D410DC54 /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF1DF22CB01FFA62872EB861 /* EndpointI.swift */; }; - 1C94225DAECAEB72F170D53E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 1C9FF3BD071F50569EEF5B8B /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEF066D96D048F2BABE04F9D /* AllTests.swift */; }; - 1CB22725EF77D35C961DC5CF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73CE8E39782ED96D9A0DEE2 /* AllTests.swift */; }; - 1CD1D38A42A59FA95C281B9A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 1D0BDB269D00BAFC70F46DD0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 1D2F1653E1F237366ED37E74 /* LocalException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37ABE7A8D0AB189693887A28 /* LocalException.cpp */; }; - 1D52DAAEEECBAAB658304708 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34E8CB61ABA1F28BB7E698FA /* EndpointI.cpp */; }; - 1D7C04D443B33DB1206B5BCA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19E7F86972D806170B222DD /* TestI.swift */; }; - 1D986F77322F7C729F6DA3CB /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6A10305F53DC63F7512C53 /* IceStorm.framework */; }; - 1DEA3EF5FB9844787BF0B350 /* ProxyFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 88D78672154E80AA54EA998A /* ProxyFactory.cpp */; }; - 1E3DE5C8839A98964950D5E2 /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0D533DA9ED4A5E4635718FB /* RequestHandlerFactory.cpp */; }; - 1E4DC7E206F1EFD6CC78DF94 /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DDD904763300878E12820E2 /* Properties.cpp */; }; - 1EC42A7BFF0FE4B4F2F355D9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 1F7E7557DB78D31D8B693A76 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B07536035C11C1E0934299F /* LocalObject.mm */; }; - 1F87FA6503E2986C537BCF9D /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B678F2298413760C49C183ED /* ObjectAdapter.cpp */; }; - 1FD45EA7DD80CC11311BDA31 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2F8371C545BE433208E8DD7 /* Client.swift */; }; - 1FEE55628BA976D57C338860 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 205960CCD9421E7A27191DF8 /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1FF3BD3182DC2FD23143C3E5 /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2063A2A53076F3222EB4F4B0 /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE6FDA00BFC81B40451B476D /* TraceUtil.cpp */; }; - 207CEA59B4F540620C5A9902 /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E9F50378F7C12B118349B /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 20AF9AF75EC41050513EC67E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 2110AA4BF29B32586B7D8012 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1389F21CDF06949902AA2EA /* AllTests.swift */; }; - 214922BA289C0240CF8D93A4 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC5127D1D96F5CE76CAD417D /* Random.cpp */; }; - 21618E4743251E8681B2D50C /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8D32C52389F2ECA0048EE141 /* Test.ice */; }; - 217623D13A3358D164F38F80 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E47484D1D3DDA643748FDA4D /* Client.swift */; }; - 21BF35714A2046CC7C4DF8B1 /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC4B3614730C36B93E6CE83 /* CertificateI.cpp */; }; - 21CDF2E5F6BCFB580B4EB4C1 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44BC740D6506C3F1C8458122 /* Client.swift */; }; - 21F58D3D37C9BD39EF88E7F0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 220D8F9E8C5D43C960422E4F /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE7ED7DB9B386CE9925025BF /* FactoryTable.cpp */; }; - 22248D7C6A354BF4F3B37B9F /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2308C88106E21E86B64770B /* LocatorInfo.cpp */; }; - 222664EF561E9C7447CD18FA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 223D69B71DC50CCF692B7F5C /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B94A0EF9213206745C31CC8 /* ConsoleUtil.cpp */; }; - 224B69B54087CA089D7FBD7C /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDD807A24DFE6B5DE7A2B384 /* PropertyNames.cpp */; }; - 2265ABB36D033A2AEA5AF713 /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA7ECC88F49663429276843 /* ObjectAdapterF.cpp */; }; - 22F2090EBDD0134127A4717E /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFCBA8D98D4B3EE825A33F52 /* SysLoggerI.cpp */; }; - 22F2D81B8BC499073EEA3139 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 234E7A5FBA79D5798940A9C9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 2370F05BA8CD3A5DE60D5016 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E73B68A6243CD1C6AED87DFC /* SecureTransportEngine.cpp */; }; - 2391835E95B662AB5F5E5375 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3637F3FA49D41442776DFDA3 /* IncomingAsync.cpp */; }; - 2394083793788EDFF3EE4775 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB3E29E74373ED5837D69F8F /* Shared.cpp */; }; - 23FA0DE689D5B4E11968579E /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = A594F0C1849CEE5DE3E665BC /* SliceFlags.swift */; }; - 242B6F8412F43F68427F852B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 2462C4CBDA2826A41BE4E987 /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5E4ECB4BECCE515728C9F0 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2471D7580A492BA30C327A3B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 2491EC7A2D74733C470C6A68 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 89260FC783CBA8E95B993CBB /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 24E6ACFCBC8D63858A66F8E7 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38D440D5894319742F272192 /* TestI.swift */; }; - 25E71CF92C0AB9AC508B822B /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D2744013C529D8F086422990 /* Locator.ice */; }; - 25F19EF255F8105DD0073F46 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EB90003DBB8FFCE6E52AB05 /* TrustManager.cpp */; }; - 25FA9E5BB2F62F57E834F0D3 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B15F39FC8689FC1FCB89F477 /* LocatorF.ice */; }; - 261B9A566F38A036CDB8DE0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 262F1A7BECD5EACD2CC40FDF /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 998084A78E611312ABCE0CC7 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 26485651B696FE7658060E27 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD2FED021766EC049A1603D9 /* ThreadPool.cpp */; }; - 2690FE6928C7301F1171F909 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 2693EEA463DCA2747EDF41AB /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = CE428CC2328F83A0C7CF327B /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 26D98B6E9BC254A41188AF39 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 27181703FBC2E1DA0369B011 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F81F55C1F60FE16B0090352D /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2786A90145677A16513C7844 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C99CAAF3E88E8B7B746C43A4 /* Server.swift */; }; - 27A328B4CE2F898DA5F44FF2 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAE2612261AFAD9F126ABB05 /* PropertiesF.cpp */; }; - 27AC9C069FA287B5CBAF3DFE /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7AD3A474B7A1D069CCFC0AFF /* RouterInfo.cpp */; }; - 27C5B9CB32BB0B8E9E992910 /* ThreadPool.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BD2FED021766EC049A1603D9 /* ThreadPool.cpp */; }; - 27F90A37B3E7904B31A85347 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 14422400D546329D7D9926DF /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 283933A1953976C2DA9B7488 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A83C77E4B0D0283CA18020F /* AllTests.swift */; }; - 2839DAC15D5287856ADEBFB0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94E1968DB24F7AF587425A1C /* TestI.swift */; }; - 283BA03D63F2E5CCD241DAE2 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 49F7B52E1EBFD001EE29C9E6 /* Descriptor.ice */; }; - 286DBDDCA7308C38785E37B6 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5E41A2284123652035B9626D /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 287A26E9212E1D0E2A5C8FD9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 28879CEA796F54C475B2D579 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 212F6BD6C0162AF0C8440224 /* ServerPrivateAMD.ice */; }; - 28AA316F364B77A7B7DC2AB2 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A70C14B2E0E746A0591AF1D5 /* Service.cpp */; }; - 28B350177A5BD9DD6EF6B94B /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA48BF39278DC0F70FC216F1 /* IceImpl.framework */; }; - 28E61955AD742A460CBBC90C /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79108D2FF0232C16468D88DE /* RetryQueue.cpp */; }; - 2944A746A0AD5BCC69AB906E /* libIceDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 622CDB9E04A43DA05E046991 /* libIceDiscovery C++11 macOS.a */; }; - 298BCCC75141BF72F190CE7E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1EAC7DC09EDCDE664A6D412 /* TestI.swift */; }; - 2998ECF0FFAD5226217BB355 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 29D3ED44FB31C93EBFBE9A37 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C012332733DA4296E9354F12 /* Router.ice */; }; - 2A173AEEE9215CF18C978D36 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDD0F141EA94FBF630E95CA /* InitializationData.swift */; }; - 2A1B7F74C8C6C6059794135D /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 526B263C4E63A5FD88236538 /* UnsupportedAdminFacet.mm */; }; - 2A1BF705C2694060F11F41CD /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 817336550425E7439ECF507B /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2A1DB428E8E4B213D629E6C4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 2A37350E682D5A065F5B6DDB /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 2A85673264DD9C4FF629CA6A /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = A0D2E40EB5EB722B76219B03 /* Exception.ice */; }; - 2A93CE8856B63795C5EE6ADE /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = F71C3042386918BE757DF8CE /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2AC2F321EA8DF646A2F8ED2E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AEEFDD3BB442CB6663CD683 /* Collocated.swift */; }; - 2AC395DB52A3D7F577FE5113 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D1A1C798CA5E03EACE7C337 /* Client.swift */; }; - 2B02CB531C54D4196BB7C999 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 44DB441A5970DCEF394351B7 /* Test.ice */; }; - 2B305AC06256E79C862653EF /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B3BBBD22CE72373968131654 /* AllTests.swift */; }; - 2B30A380F57B5CB57817CA97 /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64B510708D04016FA459B8AA /* Base64.cpp */; }; - 2B58D579C89BC7384E631448 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 2B7BFA0E1A18A214B0817F80 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = EEF3B6F7FB1EF2FF9ED73F1C /* certs */; }; - 2BFB3DA0C51EACA54D43C16E /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = E14A708807768953B2379FD5 /* Server.swift */; }; - 2C19656A4AF5ADE9DDBAC7A2 /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6229E6CA09F91C68DAB3EBD2 /* InstrumentationF.cpp */; }; - 2C66AE552E67BA6B0E3279E9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78A482E000141177A98F078F /* Server.swift */; }; - 2C832AC371BCFF33D4BC6346 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 2D142331D29BB284AC8162D4 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; }; - 2D292BDD0A9A1E24479E4AC9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 442DF01B56EA1176B35EB3BB /* Test.ice */; }; - 2D34799609A8A41448486E2F /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3547A6F171E6B76B9FC63BAE /* TestAMD.ice */; }; - 2D8A2B0415C308C0966E225C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 2D8F31685029DE1A3E5BE883 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 2DBE706E25A1D98BAF735316 /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 07E2F60461505D97899C6536 /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2DCC8625E26DFEBB97885357 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 2DCD004B98AAC958160F09D2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25F81F514862521A7077DBE1 /* Client.swift */; }; - 2E09829FB9961B1320CCECA3 /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4CF2077C814A7377DDEE06A /* ClassResolver.swift */; }; - 2E760408E022B189EF18D310 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */; }; - 2EC1ACB1D1AED9D08FB2C85C /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 01FA7B3F816F4E1BBAC6D837 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2EDD058114B565BAEDC043DA /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */; }; - 2F32133784FFFE60DDB6CF8E /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A7CAB2E9D70B8A29FA66E759 /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2F5E8687DACCC41271E739BD /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 301D621EB654AC9C3E4E4E28 /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 2F84EC541FF7E5156D5ACEF5 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A2C21B3DB0E4BE665D1475F /* SSLEndpointInfo.swift */; }; - 2F8AE514AB33E0B549023000 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 2FF16A6CC846F2F5154FBC4A /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B33C3DAC38D7CB012602F1D5 /* DefaultsAndOverrides.cpp */; }; - 3050ED6F4B7AB30BE192A06A /* RequestHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0D533DA9ED4A5E4635718FB /* RequestHandlerFactory.cpp */; }; - 305A0C86472070B1AE564313 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22BA0A2A8A538610278E1A67 /* Client.swift */; }; - 30884BEB531E5485E17BC923 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D06539D647623F84D3C475 /* Server.swift */; }; - 30AB0ADF3483478E5ACA7E81 /* Util.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A030366430881927186CFFF /* Util.swift */; }; - 30BD1CC63A3B7E7A6A05253C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5453037F24499786E84EA5C /* AllTests.swift */; }; - 30CD85B4633420B63D7280C9 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 623BF93B592B69730EBB8EDA /* MetricsAdminI.cpp */; }; - 30F9B1C5622A20E712E8F578 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6BBD6CC1E3C2A7CCF12C722 /* Collocated.swift */; }; - 313B877D5F4FC1DC8134BD1A /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B584730D968F098A9E3D59A /* ConnectionInfoFactory.swift */; }; - 31465B39CD28025DA514741C /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */; }; - 319400CD6F1733AC4A5C67A5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 31DEAC51BC34082B948D1968 /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 803EE4274BE0AA9170794297 /* PluginI.cpp */; }; - 31E4CE81617D1D57DB5855DA /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9502656F9828A55BF15B904F /* ClientPrivate.ice */; }; - 31F9687277498B7F842EB5FD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 32093CD583078D225E5120A3 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F790BD181E9C75D456202B50 /* RouterF.ice */; }; - 3289BB4B1953834352FD82F1 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F972A8E2DD097AC08C4A781 /* Context.ice */; }; - 32D6D9111DB62134301F669A /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 390FE2A8AA85FA1F066DB95F /* TestI.swift */; }; - 32DE5ADD106045FA5CA17523 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBCA8B1BC5811A9ADA86ED97 /* TestI.swift */; }; - 3309A74215F7525C83407C81 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D1A1C798CA5E03EACE7C337 /* Client.swift */; }; - 3325ADD3479FEC8BA570AF2F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 334E0154C5339FA9329AA0B0 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 3207B48B98719A7CBFD2337B /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 335624C3ECBAF9AB3A04F8D9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A343A525055E169CE399ADF /* Client.swift */; }; - 3372567B45FEE2448D214402 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 55A1E522AC3532C58222E061 /* Test.ice */; }; - 33AFEF0D5E65901C071C1C94 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 342D8CF48C45CE057CE74D6D /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B17547CF25F9F6D499E59F4A /* IceGrid.framework */; }; - 3449B9201FDBCB134E91E359 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 34648D1661894C9189372B45 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DAF9FCD3ACA9EEA864C2B86E /* AllTests.swift */; }; - 346E08396546C485F32F403D /* IceOptionalAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6B5589624E8C18A764174736 /* IceOptionalAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 349CE6230F2A35214A748F97 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 349E070F6B2DE7E59497C907 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 34A5FAF205B1C97960404164 /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 87DF00D7836869F2204A3283 /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 34A8AE509874E979426723FC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 34B480D08F5C42E959C213B6 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 34BC98DF30DC09C7B23D8CF0 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78E2A2D2066C58262F423252 /* Client.swift */; }; - 34C56ED108DA5603633185D5 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C990D1538CF08ABB45003017 /* StringUtil.cpp */; }; - 34D0F93C003DC567F3914394 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 35133BE11FFC8A317FB38A02 /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62FF3521D46F685DF4E667C3 /* Exception.cpp */; }; - 3522FABD1EAB55A5FCD80BAD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 352E655F4D372EA208233852 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E9093C94D6596E3660EDFBB /* TestI.swift */; }; - 3558C96DFC3290A6100F2D27 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F23A1CF4CB61B7741942A35 /* AllTests.swift */; }; - 35AEC3F894DDA7F8F781BCE5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 35D24984165CABD98088A6E3 /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44837E3321ED1322DA4D4AE9 /* Current.cpp */; }; - 35FFAA7246FD899886CFC418 /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6F7C2EFAAD90AF05C836E8AD /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 36791393A4409B89D926A227 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA4F363A3C06C04C4B7E187E /* Instance.cpp */; }; - 36831A8229401DFDBE395F96 /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37F1FC9323F6C45B1AC35F58 /* LoggerAdminI.cpp */; }; - 36CF43C7392987B46253C456 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 137ED7A94BB9E11CC053CEEF /* Test.ice */; }; - 374B575A6906DE8A97FFAA8B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9226ABAA5FAF037A4782672D /* TestI.swift */; }; - 37770D76CEE3C0C488D51DB9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 3797173835AB3B517EAECC5D /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8D2B953157D627C928A6037A /* Server.swift */; }; - 37A7AFE9702BDAF42C2F9F38 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = BFC3A3040FFC8B6EAFCA158D /* Test.ice */; }; - 381F2E1A3E0357DD8D7F6A8F /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73EC11AA0D472514A88B1245 /* BlobjectAsync.swift */; }; - 3824528B30BE3C7E4502A4CD /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC8A0F90321653214F836FE0 /* TestI.swift */; }; - 3858453259EA40101098D345 /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 145ACBB9D8EC5ABDF5109CD9 /* LoggerUtil.cpp */; }; - 387C9FBCF807EBD311D89BB2 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7A67EB9002C23EFFD4F4331 /* LocalExceptionDescription.swift */; }; - 38847268EB2F2E4FF7AF0940 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDFC1CF071BE8BC5D2E9356F /* Instrumentation.cpp */; }; - 38D6ECE8850D5A354E086011 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 40E032E865784822992B0432 /* TestAMD.ice */; }; - 39268F660BBE6359E8AE7A88 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 724325600514092A8D262EAA /* Server.swift */; }; - 3930F2425131AD14D8FF8A43 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 3995F0DB81BD82BF3885934B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 39A90996478580DFA113B50C /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7C3C842B0893C4AC6BA6C676 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 39B5D32367FA4CE4F120027B /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5CBC38E08DDBAA7ABAEF6E /* LoggerWrapper.swift */; }; - 3A1DB79600F0C7ADE8B85F30 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 3A37F816C90ED30F4101C30B /* Controller.ice in Sources */ = {isa = PBXBuildFile; fileRef = A7091E2B84A51D7D4E990597 /* Controller.ice */; }; - 3A8010932AB49B8EA7B1F903 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 864A6D958111A066271C2056 /* TestAMDI.swift */; }; - 3A81FB47D8BAEF9D47F67CAA /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F67CEA524FF25FE6949915A /* Acceptor.cpp */; }; - 3AB6DA8D15B4E7A6EADF3857 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE247C4C7515E78416734AE3 /* TwowaysAMI.swift */; }; - 3AF6C0BEB04AEEF81EE7D9CF /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F972A8E2DD097AC08C4A781 /* Context.ice */; }; - 3B1E75699E8BF0FAA71699A1 /* LoggerWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A5CBC38E08DDBAA7ABAEF6E /* LoggerWrapper.swift */; }; - 3B3AD0090683BBDA262F5508 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 44DB441A5970DCEF394351B7 /* Test.ice */; }; - 3B3E61B98E6458DBE8E1D134 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BB1E5488617EE9721803F5E /* Server.swift */; }; - 3B43ADB16168DD10352EF8FE /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C18CB03DD5155C1C2B2E8A8D /* Proxy.cpp */; }; - 3B94BD4C53B501BBED67162A /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 336BA488F873C8ED6AC70009 /* ObjectAdapterI.swift */; }; - 3B9BA3DCBFD517ACF2F26189 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1239FA44EA72DF60C02E90F3 /* Test.ice */; }; - 3BAC27CEC5453D4304B6F587 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = C08D8DDDF0EA2D26B0BC84AF /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3BE4BCAAC743E7A5403A650C /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF74B405592DF882FC711C4F /* Plugin.cpp */; }; - 3C32347A7AB72AEAD51D1F5D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7FF54833864397ACE8E797E1 /* Test.ice */; }; - 3C7DBC6F0CD83B98E01D4CD7 /* libIce C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 9FF873ABC0C688353DDDFBD8 /* libIce C++11 macOS.a */; }; - 3C8FD1C2BE27B7363743D8E3 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */; }; - 3CA10FE78E0D7F55CAD1CE77 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8132A588131377350457A8A /* Logger.cpp */; }; - 3CB5C6939CE6B301FD9E1657 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 3CC4943D16C9FEBE7E141812 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 318B426F0ED72A433F61DD1B /* Collocated.swift */; }; - 3CF091986D8294BDD0805398 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD1ECACDD717AF71AF60969 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3D2E6350CD0369A8D7DCC7B9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB750BB47FEA9559FDA7DBDF /* AllTests.swift */; }; - 3D3DBA3857372EC08983506C /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D93BB1CEE95D6DBD647C1F66 /* ProtocolInstance.cpp */; }; - 3D8DD8762C2BA500E5DFE5FE /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE6326CC8423A7AB2E011674 /* LocatorI.cpp */; }; - 3DB2DC5A60D2FEF8C7AEBF0B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 3DB99BBABAB7C0D17101B41D /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 40E032E865784822992B0432 /* TestAMD.ice */; }; - 3DD95F32FA86A873399E022B /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 212F6BD6C0162AF0C8440224 /* ServerPrivateAMD.ice */; }; - 3E36C9FA26A5630D5673273F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 3E3FF2E3D9C5CA825A70EEC5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 039C029EE5082592E88E387D /* Test.ice */; }; - 3E508B3BB54CE3FF221930E0 /* BlobjectAsync.swift in Sources */ = {isa = PBXBuildFile; fileRef = 73EC11AA0D472514A88B1245 /* BlobjectAsync.swift */; }; - 3E98E39692157C4AC1F9B666 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 724325600514092A8D262EAA /* Server.swift */; }; - 3EA13F38B9051070A90B295B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1239FA44EA72DF60C02E90F3 /* Test.ice */; }; - 3EED6409FDB6D53AA939D95D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FB36E85F6FA876D88996239 /* AllTests.swift */; }; - 3F41FDEBAB1DAD3E79E0A918 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DC8A0F90321653214F836FE0 /* TestI.swift */; }; - 4006DB9C513AA2E07BEDB69C /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03031EB4AE5379FF32A3AE17 /* WSAcceptor.cpp */; }; - 4039FCD3C24A18FF82E9FFCD /* LoggerAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37F1FC9323F6C45B1AC35F58 /* LoggerAdminI.cpp */; }; - 406926F796CB77DBF6FA3561 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 407C3D11A0C3E4733F7C99B9 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7F2189733BCF9C8B454DB75 /* LocalObject.cpp */; }; - 40A14EE0B6207B29C7616CAF /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57EE371E56576A8317C8E490 /* IceLocatorDiscovery.ice */; }; - 40A42C5D3C188B503233C8B7 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 4136956F7D6DE65A0E0D9582 /* RetryQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79108D2FF0232C16468D88DE /* RetryQueue.cpp */; }; - 41459A4D16FAA88A013E3141 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59C9EF4D725171D05DFB4A4 /* Client.swift */; }; - 417681F023BC2C9D3ED87D34 /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67DA500D7FCA7E4FCAAEBE8B /* Convert.mm */; }; - 4192519E1A06C7457BC9DC1C /* PropertiesAdmin.mm in Sources */ = {isa = PBXBuildFile; fileRef = DD94218AB8FC82917266BC56 /* PropertiesAdmin.mm */; }; - 41DCD9F3CBE93222E74B7929 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 41E0DA93CD81990203545959 /* IceInheritance.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C7DAB3F7C68697A828A55533 /* IceInheritance.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 41FF5166052684179CBD44E6 /* ServerPrivateAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 668C6C0361ED4E7B91231D65 /* ServerPrivateAMD.ice */; }; - 4222160FD257F0C52E1A09CD /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59519EE11AE42BA7F6AF270A /* RecMutex.cpp */; }; - 4238E2CD900A7FE78DA5F8CB /* Base64.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64B510708D04016FA459B8AA /* Base64.cpp */; }; - 425141FE2ABC86DD5B948F74 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBCA8B1BC5811A9ADA86ED97 /* TestI.swift */; }; - 42623FB3A22D5A9F538E4DC8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 42B377EB3735683014AB234B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = BFC3A3040FFC8B6EAFCA158D /* Test.ice */; }; - 42D6CDCD1F1AA39A8710A58B /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D4683E4EEA3C7003504AE96 /* Test.ice */; }; - 43300A34CBEBFFA523449B96 /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A65FC585E09C2A76B625463 /* Process.mm */; }; - 43ABBB28ECBB5FB5DBC4B16A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = C99CAAF3E88E8B7B746C43A4 /* Server.swift */; }; - 43B04F48C318CB003D00F36C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 43B0E1298CB264DF6C7C335B /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */; }; - 43C041F80EFB1DEB20266001 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73CDB2D5673ECFD9B238AAB9 /* Time.cpp */; }; - 43DA7C98896E7FCBBEA77A79 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 442DF01B56EA1176B35EB3BB /* Test.ice */; }; - 43E0EC14EBDBB1DE22D4CD5E /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D2DBA835FDF24BF6450F945 /* ServerAMD.swift */; }; - 43F10B231BDC3A276EDC475F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 43F7AAF102E93B0FDFF85F8A /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7D45D866B9B71FB7B57D0E6 /* WSTransceiver.cpp */; }; - 4417A48F1C9C2AF14B7EA611 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 446C2528778DF27ACAD2F032 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 447023757EA980624C55B149 /* Instrumentation.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDFC1CF071BE8BC5D2E9356F /* Instrumentation.cpp */; }; - 448B14F91C6D399FDA3014C9 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 44D90D302B2EEC55F9628897 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EC92AF3F5FC050268FC433B /* AllTests.swift */; }; - 451002ACFD0D95E5DEB8FDC0 /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40EB3E43A832B13BDE8D4720 /* PropertiesAdminI.cpp */; }; - 453B1D72841FECE7DD81CAD2 /* Protocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7716384B8702730F154043B /* Protocol.cpp */; }; - 4582943A45BCCFF48F5781A0 /* IceAcm.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 773839314982B481FB9A5F0B /* IceAcm.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 45A5B7A80526F19EAE9A8213 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F28FEA3804836A76EBCC3C60 /* AllTests.swift */; }; - 45C96192E204B6AE5B272285 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD61825057BFBFBB41D39597 /* ServantLocatorF.cpp */; }; - 45DFE7C0805EDAD8916ACA5D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 47676F6C4415D7C2396021E0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 47753FB20D5A73A947BA72AE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2527DF77271CA0B2E6A8E151 /* Test.ice */; }; - 47E2D5917DCF925D43AA13E5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5FABA39878E8DF7941FB168E /* Test.ice */; }; - 47EBE96207D7DAD1B4A05816 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F1C224C87B599183A478B5D2 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 480AB36ADFC17F0A48F9C061 /* IceTimeout.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 23F70E58CAF1EDFC2272E758 /* IceTimeout.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 485B6A81CA77B322832278F1 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 250055BA1C62F324250B2548 /* Server.swift */; }; - 488364CA860E4460F00E1783 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C14F40BEFB46405B9613959 /* Client.swift */; }; - 48B12429F98610666A92254E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 48DE4F93CF3D8599F8ED2897 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 48E6810798AD40D0134A0BDC /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86BEC7DFBDFA7D664AA2948F /* Proxy.swift */; }; - 48F81BC696321E7DD455531E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D59C9EF4D725171D05DFB4A4 /* Client.swift */; }; - 4904EB407049E8EA654B7169 /* LocalObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F87F4E054DCB94D81AF2BE4 /* LocalObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 49440DE41C93F8BE96CD82BA /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 803EE4274BE0AA9170794297 /* PluginI.cpp */; }; - 49510B169380DAE5FC8B2E10 /* PropertiesAdminI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91D39023FE37EB3ACD51A678 /* PropertiesAdminI.swift */; }; - 49BFF564D0A72D4835A03029 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAD58C233C507C35334F1CC6 /* ThreadException.cpp */; }; - 4A0A85433AA1844F74CE92F7 /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90B2EAB5D9DCC4178F8B5B4 /* ObjectAdapter.swift */; }; - 4A16A9260EB179A795E4A1B3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 4A60F317B7C57A4BA4276CD5 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5D1D431EC03874A83605E840 /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 4AD38C3F3E071A3224EEB4A0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 4AD70268730EF7733C819FD0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 4AEFE53F63AB7281FE54BB67 /* DispatchInterceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB8F279A2779E598731A5601 /* DispatchInterceptor.cpp */; }; - 4B1606F2BA1FF3AA33BD2ACB /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A67621EF8B41A02D1A5852 /* IAPEndpointInfo.swift */; }; - 4B323EA94F5330CB76D61630 /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC642EC1944D582B3C794113 /* ConnectionI.cpp */; }; - 4B50AADFE0DFF81D7EC0883E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 4B937F11A84BFBB5430E5CBE /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AA4F363A3C06C04C4B7E187E /* Instance.cpp */; }; - 4BB6AD5396EB3BFB1C7CFEE2 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B17547CF25F9F6D499E59F4A /* IceGrid.framework */; }; - 4BF7802BDB2912938F8A5401 /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 787DA99C9345BD9AFAFE23BC /* MetricsObserverI.cpp */; }; - 4C24A8CD9D0C8D7685AD6971 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 4C2F700A5CEEF1722CC20508 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E052D5C173FB6BC71D76D94 /* Identity.ice */; }; - 4C316D1D7AC7677AEF8E39CA /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DA48BF39278DC0F70FC216F1 /* IceImpl.framework */; }; - 4C8BC3B2EB3417E69F88DA48 /* UUID.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC4BB865E8CEF17247111E25 /* UUID.cpp */; }; - 4CB50F7AEBAA2C7624FF53BC /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367CC264BC70C8FAE95481D /* OnewaysAMI.swift */; }; - 4CE8A1AED2F78DBC7A6F5911 /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = EDC1F699D0173A3262ED8783 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 4D25051593A83339036F00C8 /* StreamSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E59CE567CD0339935ECE174A /* StreamSocket.cpp */; }; - 4D93CBB4538E3DA31B4D9509 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 4D99483783F1AC42FE90CFF1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B6EF30F36318A639D638152 /* Test.ice */; }; - 4DA7EE74FC425C8FA4A0D33D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9600C016070409DE6568A37E /* Test.ice */; }; - 4DD2839688E91F883C110B2D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20B1410DBC821FBE25FF0338 /* AllTests.swift */; }; - 4DFB007003F91F0FA4685AD7 /* StreamConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FCAD591DFA056E0732E8B3CD /* StreamConnector.cpp */; }; - 4E2FA101FE0D14BB24E244BB /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 694A7AEF1BC68DE001EACE83 /* Metrics.ice */; }; - 4E305CC8C23442E8892A5969 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8E0CCA4C7037506934137C /* AllTests.swift */; }; - 4E478527FDA44E11ADE2D2C1 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E312FEE4E94C01795C8BBD9 /* Test.ice */; }; - 4E494762C46A37CDE3C4DFDB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 4E5192486BA4131D7C59C04E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 318B426F0ED72A433F61DD1B /* Collocated.swift */; }; - 4EACF0E5A18BA2EF76930E11 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C83A2E19EDF012C6703AB53 /* OutputUtil.cpp */; }; - 4EC5E9F6697A9843D9714C53 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 4ECFCAD561920DC45A770E30 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 4EF1CFD1E2EE8924554E5C30 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 4F5EFC4F5C35BC8BA3DAAF61 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3B0B441C377169B54CEB0DC /* AllTests.swift */; }; - 4F80D4F7344E223FCD8F18A7 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 98A6F84D22ACDB0E77E825ED /* ServerPrivate.ice */; }; - 4FB3FB49E23C28F3D464FCEB /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C630DCAC52483EE71792F541 /* OutgoingAsync.cpp */; }; - 4FB740BB1EA5F46970098735 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E90B07958C12B403F8FF0C /* Collocated.swift */; }; - 4FBCFE426FEE604A4F5DC518 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD8E68C39A86BCA8855BE97 /* TestAMDI.swift */; }; - 4FC731395B73EB87D18816C9 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F0C20EFBCAFF52B67C7AD11 /* BatchOnewaysAMI.swift */; }; - 4FDF4241D3A950D22006028D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 4FFC82EC0B0C3618EF922C5C /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 914E1A04B42CF82EDA413850 /* Object.swift */; }; - 505CDF80EEF8B1D50E79B835 /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAE482789CF229EB04641D21 /* ConnectionInfo.cpp */; }; - 51244B53B4AE8A7CC88FDDCE /* Transceiver.mm in Sources */ = {isa = PBXBuildFile; fileRef = E4538B61358B8FF03922527F /* Transceiver.mm */; }; - 5132AE8676BA0DE8C1328C18 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D253A2160FCD5C0E019B003 /* SliceInfo.swift */; }; - 51668FC30C14F66919C8B381 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF2962E761A9438BFEC2D88A /* AllTests.swift */; }; - 51E4E719DFABD7EA5EA818BB /* Exception.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62FF3521D46F685DF4E667C3 /* Exception.cpp */; }; - 51EF59C8C4309B80A6A73346 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = F5FA2C9600E75B1FCD46907F /* UserAccountMapper.ice */; }; - 52078C9A5B75240335B04E85 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 5219348A3397452F75226943 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDAA337977433E1B2F9235CA /* Client.swift */; }; - 522382E5C10D04C87636A854 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 52488E1CF652C3BA12DBB7B8 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E052D5C173FB6BC71D76D94 /* Identity.ice */; }; - 527E15A291C202A19879B6EA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CCDC8C722C7D08EBC696FC /* TestI.swift */; }; - 52A5E961C78A39186663169A /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 863A6469470E9F1912BC6E4F /* Mutex.swift */; }; - 52C9EE165E8D6C94EFEB4380 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01EC749BC2A7D4FCA7490B47 /* Endpoint.cpp */; }; - 52DABF5017CEBE347B8FF3DF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 5349563EEF2578DB61C4A973 /* OSLogLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6C1FECEA4BD0E885787FD4F /* OSLogLoggerI.cpp */; }; - 535AA68DEA4DE9AA044CF914 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 5385448290174C711B57CE51 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5873A42F0D248A8146E98350 /* StringConverterPlugin.cpp */; }; - 53B126E081D0367234EF6CB5 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F23A1CF4CB61B7741942A35 /* AllTests.swift */; }; - 5431C4CE5BB733E53F0F9203 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 5437389FCE14EF4107E150A2 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 54A1EF08C8A87DD1CDB2505D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0CD6F8266C083D7C5841D1E9 /* TestI.swift */; }; - 54E34B14AD4D1750156935B2 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73CDB2D5673ECFD9B238AAB9 /* Time.cpp */; }; - 558402645321D08AAE5D4765 /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5300396B18CE9C2FCA0A8E2F /* Transceiver.cpp */; }; - 559004F4BE7AEA5CD275952D /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = C61C5DA6F7F7080FC83FE964 /* Exception.swift */; }; - 55D25A5EACBD3D706C3A0FE0 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B5064B9C0DABEB987B39730 /* TestI.swift */; }; - 55D3DA41FC490F04DD2529B6 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 724C0E53DAF83BB50C3912A4 /* Endpoint.mm */; }; - 5636B65B339485B359629946 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D9D973870D744362BE6CD5 /* Version.ice */; }; - 5669D7A6BA9E41C504A360F3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE0FC793581C11E605079EEC /* Server.swift */; }; - 566DF77C914EC3872FB39951 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A577A9FBA08AE185D53C990 /* TestI.swift */; }; - 56AD68617C9B97CE16FE249C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 56E97FDF069E8FF5D6198C8D /* OnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0367CC264BC70C8FAE95481D /* OnewaysAMI.swift */; }; - 5711DF87DE433AC4C316D958 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 5729FC85A5F81362D64C788E /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 272A8F85D1DA874AFB64025B /* TestAMD.ice */; }; - 5737476E80EBB169B518968C /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */; }; - 5739F0353ED109F18A7AC24A /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 25FB164477089E05881BEDAF /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 573E061CC78DFC9E0D5B62B6 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 57E7D2C86D9A05EBAC1AE60B /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */; }; - 58081577C9F8D17931A251CC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 5822DF2756D7E2DAAEB81DF0 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73CE8E39782ED96D9A0DEE2 /* AllTests.swift */; }; - 583B54EF8BC7A12EB7ECFF36 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 532C14EE7E6458905C05203B /* Connector.cpp */; }; - 584F1B182620F22BC9FE2CAB /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4EE29237269F09AE7E678DB3 /* Registry.ice */; }; - 588EA7C63CAEBB5D835D832E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 58B68AE606BA3A81348B7585 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = EEAE2A3EA52301D744C2238C /* ServerPrivate.ice */; }; - 58BD3A0CEAC9816BE48E7C1B /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCD020CA509B152C8FCE8798 /* SHA1.cpp */; }; - 58C9E17F05FC8E47E55F4734 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 58E9746CB646F7B7935D5526 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */; }; - 5918480D42F258D0ACB415D9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 5930CC7F7118841036A6B7EF /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A46BEB423DACD76BF4A68A19 /* ObserverHelper.cpp */; }; - 595B4A531DE157B61D18422A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 33E7FA0C07F541066A9CE1C7 /* Client.swift */; }; - 596F5178CCEC404C6E0D465B /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECBCA68A7DF08B26236F860F /* Connection.mm */; }; - 597EA71AA303CB1111E243AC /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07F1F50A48CFD4DA0680F11B /* CFNetwork.framework */; }; - 59AE3A025BB7D51366750BCB /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E218220353976A1D5C07CF1 /* Current.swift */; }; - 59BC1051CB1DA24224ED354E /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 59CE05A8316A450D8348A5F6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 59D55BBECC6B6E3C99441DD9 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DC6A10305F53DC63F7512C53 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 59EB0033873F6E39267226DC /* Mutex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 863A6469470E9F1912BC6E4F /* Mutex.swift */; }; - 5A0C72759744FAC248F76750 /* TcpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34811EA9E8187AFA7F8C8D41 /* TcpEndpointI.cpp */; }; - 5A270029AA086FCD68401A9F /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = C57D6F7125325B748CB60975 /* Process.ice */; }; - 5A7ADD214B9F2723C29FC653 /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D7B75346EB6CBAA407B78C44 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 5AAA4A39F5881DFE802FFC5A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 5ACCF59D35ABE8D74765D44B /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B15F39FC8689FC1FCB89F477 /* LocatorF.ice */; }; - 5AFCF7ACD7E7F9BC3668F91E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 5B1A07BE7511FE3C61F2D046 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D168BB468F0B9234386530C /* EndpointInfoFactory.swift */; }; - 5B26531E8A3FF54A690616A8 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */; }; - 5B67AE7059D8DB516B629E14 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 5B6A0348E48C2CE822785978 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 911DD6C3D079AAD2A68FE941 /* EndpointFactoryManager.cpp */; }; - 5B740A799439BF031F3F8F4C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 5BAE4094CCE5A0B4AC95DEBA /* IceImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 25FB164477089E05881BEDAF /* IceImpl.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5BC367727BEF048C5FBC84CA /* ConnectionI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC642EC1944D582B3C794113 /* ConnectionI.cpp */; }; - 5C158C1E51ABA0D75A47E202 /* WSConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF62AE44540279291FBE8D46 /* WSConnector.cpp */; }; - 5C249AAA2B1FECEB2F99663C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22EB15880754E559CBAD530E /* Client.swift */; }; - 5C53735690988DBD907B0748 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */; }; - 5C80929FF3811A8E0A6BE04E /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E880F031CD68893D2F69EFB /* IconvStringConverter.cpp */; }; - 5C868AEA4D30A635B6550F25 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 5CA9E7325A11D1072D3B998D /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 136C9F1CB0181AA674220B28 /* WSEndpoint.cpp */; }; - 5D039B66F551328A0945E6F3 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 983A2CBA8E5E46F1AEE78B78 /* Util.cpp */; }; - 5D06D578B67541E764B028E4 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE26B6B169CD5B24ED29BB6 /* Communicator.cpp */; }; - 5D0E6032C6B38E1265DDFE2E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 5D268EE9D1AD00B6ED31A5F9 /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A1722EBDE6AC496F748A964 /* ImplicitContextF.cpp */; }; - 5D2B00CB36B9F707209466FF /* SHA1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DCD020CA509B152C8FCE8798 /* SHA1.cpp */; }; - 5D8EB13A30F715EA61268B54 /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A5C5A1DEA6B7BB5ABC8C7DA /* InputStream.cpp */; }; - 5DCACE4010ACB486CFBFCCA3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 25F81F514862521A7077DBE1 /* Client.swift */; }; - 5DCC5C2EA2BFA97F799DC6FA /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 137ED7A94BB9E11CC053CEEF /* Test.ice */; }; - 5E08EB311D6E16A25D4D5FEA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 265E767F5805E36FCC9CB2A0 /* AllTests.swift */; }; - 5E48336FFA495568832DB7E5 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2A40A64B4DEF4BDCD6C4742 /* TestI.swift */; }; - 5E4EDDD599F3AED3672370B5 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = B89D7DF2F9D676F96CB9635E /* IceUtil.mm */; }; - 5E83FB3F97A360E252C55FBD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 5E8AA985162D4E0887DEEC48 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 5EA75E67D518F03D9E89D911 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5FABA39878E8DF7941FB168E /* Test.ice */; }; - 5EB89B704EA537152536E101 /* Glacier2Swift.h in Headers */ = {isa = PBXBuildFile; fileRef = 89260FC783CBA8E95B993CBB /* Glacier2Swift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5EE9E3167B275C2706119801 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE15755ADD9B5EE9808D8C1 /* AdminFacetFactory.swift */; }; - 5F10DAB82E234F86D81B0EAA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9460E602C8D4CFFC14B8BCDD /* AllTests.swift */; }; - 5F3C138F87152028C505F187 /* TraceUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE6FDA00BFC81B40451B476D /* TraceUtil.cpp */; }; - 5F832F238CA8F9AF20070005 /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950579F4E8C4DFF646EF3C51 /* ServantManager.cpp */; }; - 5FC217CB7163D86B3526B426 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9AB56DEA09A30139787C127 /* ImplicitContextI.cpp */; }; - 5FDB6870F64FBCC0F9DA7B01 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = A05F7539468832F6A1D1FE8E /* Twoways.swift */; }; - 5FF72A1A2D75592EC9D2A447 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 627B9BCC0B4AD0B6A1F666D2 /* Communicator.mm */; }; - 6034C7EE1187099176DAB596 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9A343A525055E169CE399ADF /* Client.swift */; }; - 6057AE44CD17675570BEC787 /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 738DC08C9436E513AAF5205F /* ConnectionFactory.cpp */; }; - 60AC310EEEF9B8BD4D60DAAF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 03A03F30C5444AE9322EB66F /* Test.ice */; }; - 60E640C9B38DD0C3E07683BD /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 265E767F5805E36FCC9CB2A0 /* AllTests.swift */; }; - 61116BF9D1C69E856E850780 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56AD8F95D9A540F5AD97E976 /* TestI.swift */; }; - 61418C2C561D98E1C1F6B9B8 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 6193DB215E30BDE1EE5C02A5 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6D8A172CCED325773F9ACA7A /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 61AAF3E3DD069C0870837CFB /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7449FB4230AD540975DB4BA /* SecureTransportCertificateI.cpp */; }; - 61B43B09235BB754FAB8DDD6 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B507EB7D03295B2920C11D7 /* Server.swift */; }; - 61DB8351BB9DD2D2FAEA82D0 /* FactoryTable.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EE7ED7DB9B386CE9925025BF /* FactoryTable.cpp */; }; - 621C5B6E7657FB86E6B7B51F /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1504B193CDECAF18F430FF2B /* Client.swift */; }; - 62525224C960E2779D7756A2 /* InstrumentationI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03BAC263458A1F99AADFE0B5 /* InstrumentationI.cpp */; }; - 62DC095A2754C6118B0166E4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 62F38B37E6BC9A7EE1C4D82B /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA7BA874372EE36F4313939C /* Client.swift */; }; - 63015A531AD0039B53247592 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829AECC82389A2F5E05C2960 /* Collocated.swift */; }; - 634864BCBA1C3462B793A772 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4D165404C1661A879CC7DD9 /* TestI.swift */; }; - 63AB354CFAB355710CBFC26E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 64320C37681C5B634C5FAD97 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A26AA7659D06EBA6062EF982 /* UdpConnector.cpp */; }; - 648B5E9CE7EF05D4186DB43E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 648FDBD2BA6F923EEC0E66D4 /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC7FB9EE1A071911E227CCB /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 649F89CE6DBA1882D9CA7381 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */; }; - 64BF91EED61A1D3FE6C90E9D /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB925F57794F16F2734D08B4 /* AllTests.swift */; }; - 64C0FC4877E7312A6657335B /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 42A2439DC6CA50093CA51089 /* Admin.ice */; }; - 6530FF9E0CD891FD42A2E037 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 6558EE541043DBC42195026B /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50D65B51261AD566166DB14B /* CollocatedRequestHandler.cpp */; }; - 657683B9E266C397C84D33D2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DC88A1165E0648123E7B24E /* Server.swift */; }; - 65A4E903594F5CA87CA1B6DE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 65D15DB5067FC53F6BC3132D /* StreamAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2C7879A807808CED706CF2E /* StreamAcceptor.cpp */; }; - 662B2AD968F77F28EA555291 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 668EC761627F2EC1BAAB953E /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 54B51F429E8B56A715B61412 /* PropertyDict.ice */; }; - 66955246E47C08C7A9EEE8D4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2A40A64B4DEF4BDCD6C4742 /* TestI.swift */; }; - 66986D65297867F370C71246 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5CB34604AACBE72A2D272966 /* FileParser.ice */; }; - 66C7DAD1EFDD50460B86B902 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C3C55AD97EAC4C2C236144 /* EndpointFactory.cpp */; }; - 66F36E022D500E9B5D5D6673 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 14422400D546329D7D9926DF /* Exception.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 672ABFC7A04DBF3DFB694921 /* IceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E03FB734840AA5D7A8F37DA /* IceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6730EEF5F5B89AE65927B627 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 67413B15492AF4E88F2C127D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 67430986416ABE999B11F823 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 679797836BA03F28C23CEBB6 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B51E89BDF16FF1D23C5FFD2F /* ConnectRequestHandler.cpp */; }; - 67E0BA668DD8ED6D30348A10 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F790BD181E9C75D456202B50 /* RouterF.ice */; }; - 67EAAF7D96E5E6C24CEFF97F /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 6812902E002944DFB86BD1F9 /* Timer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2F6024DEF147BA264B75062 /* Timer.cpp */; }; - 68235D57AB04CF4E76F6496C /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B08D997BB8E4794D4200FB23 /* PluginManagerI.cpp */; }; - 68511C23940695BE53860DC2 /* StringUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C990D1538CF08ABB45003017 /* StringUtil.cpp */; }; - 6895E4342971BB7DFF143A19 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 945016AEA0FC7438D19E19B1 /* Client.swift */; }; - 68A7B3DE8BA3617FF30187D4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A8FB36F298F50F55357C8BA /* AllTests.swift */; }; - 68DC867AF4A533D05F1F47F9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 6918AA844C697E82C64B2F9F /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 94E1968DB24F7AF587425A1C /* TestI.swift */; }; - 6957E6514741A42CFB3FD843 /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FEE9254105C73243B44FFE6 /* OutputStream.swift */; }; - 6958A19EC00CB8C4F59FEC37 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 6A074A20E524994BFB355CC9 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */; }; - 6A11080ED9C275CCBD4A3B60 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A18062BD1E33BA800FDE662D /* TestAMDI.swift */; }; - 6A1AD6198ED355D783C4ABA3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AFA47DD3A3466A544964C35 /* Server.swift */; }; - 6A5DD9246DBD3A1F04ED77E2 /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 431D8C7B1791F56014305D03 /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6AD1CD753151676666EB72C9 /* StringConverterPlugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5873A42F0D248A8146E98350 /* StringConverterPlugin.cpp */; }; - 6B38C77E3992B139034FB720 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF9391197314E2751FD072B /* FormatType.swift */; }; - 6B86FBA84BEDE9B92B7A8BED /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 407EDDBF73A172C9F18D2E55 /* EndpointI.cpp */; }; - 6B998AE3EED188FC283FAD7D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 6BDB81E44E8ED661D9D99FA7 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFC73C8E6BFAEC766CD5D25C /* ObjectAdapterFactory.cpp */; }; - 6BF60F183E75B000A497D876 /* IceDefaultValue.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BE65FDBC053C9E1724BD1F80 /* IceDefaultValue.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6C02F6B469F85F21320E551E /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5621C5105CF819261AA00022 /* UnknownSlicedValue.swift */; }; - 6C041107E8811070F5C673CE /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C991DFF2AAC0B41C6A1F408 /* CommunicatorI.swift */; }; - 6C398D7D5C1EDCC142FD4BC6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9600C016070409DE6568A37E /* Test.ice */; }; - 6CA2DB9DDA91E513530F1D0D /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71DC04F4318C243C54C6708F /* ImplicitContext.swift */; }; - 6CB7CC4363D824D38DBB75BA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52C032A6AC0462FD61E22750 /* AllTests.swift */; }; - 6D0DA924998E95CEC4B9C9B7 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9732906011677017B8FE8A9 /* ServerAMD.swift */; }; - 6D2E85B95C19A5BE0CBBD640 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53016732D7F1EE45D95136EB /* AcceptorI.cpp */; }; - 6D763E251CF4A3EDA13C0878 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 6D8FDB93E8C66B54255B96B6 /* ServantLocatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CD61825057BFBFBB41D39597 /* ServantLocatorF.cpp */; }; - 6DE8A983BE1304DB333D5A54 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D9D973870D744362BE6CD5 /* Version.ice */; }; - 6E00E1750B687743D25FC5A3 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B2D7894B631B2D78882A8F57 /* Test.ice */; }; - 6E6366FBA97D46D0596795B4 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E4652309AE1C7E4EEE2D6D /* AllTests.swift */; }; - 6E654F0A8EC84E6037DE27D9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E783E25173DD3CB4652293E /* Client.swift */; }; - 6EC44E0D9D10E523E6D87478 /* IceStorm.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 6EDCD02EC62F84DF7B9D7607 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 307A532F3C4EB11FF4260F44 /* ServantManager.swift */; }; - 6F372057CC71DDD00F5D3B28 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628F9CA7D6D383137FC355E3 /* Initialize.swift */; }; - 6FD7A841F37161AE926047D4 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA7BA874372EE36F4313939C /* Client.swift */; }; - 7035E7C74D577600296FC4EC /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 706D46FADF7E67C19DD42C35 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 70BFA57D6FF9C7379186A4A0 /* Properties.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7DDD904763300878E12820E2 /* Properties.cpp */; }; - 71AAF522F60C965C350446C9 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F28FEA3804836A76EBCC3C60 /* AllTests.swift */; }; - 71AE26572DE03E7A8D380677 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA5FA8A0E09A3F3BC61D2909 /* Client.swift */; }; - 71D95D2B091D6FBAFDF2CEA2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 71FA006F994324C748C9AD24 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9E63A9A57CB0A4F537AA9E84 /* Forward.ice */; }; - 7226352D625E5F3A323F6544 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 723EE9C5CAAF84265489CADF /* Object.swift in Sources */ = {isa = PBXBuildFile; fileRef = 914E1A04B42CF82EDA413850 /* Object.swift */; }; - 7246969EF7456B34FA3D17CE /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CACDF62E69944DB57D56E47 /* BlobjectFacade.mm */; }; - 7247F656E5CA369BF5D62EBC /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 419431F09AEC1476FE7B4EFC /* Instance.cpp */; }; - 736E2EF02C7B0796F4068902 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 419431F09AEC1476FE7B4EFC /* Instance.cpp */; }; - 73BA968691D9B340A52E44D0 /* ImplicitContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B7D8895A590B0D9627121789 /* ImplicitContext.cpp */; }; - 73D63D830F8098C60C84A0BE /* WSAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 03031EB4AE5379FF32A3AE17 /* WSAcceptor.cpp */; }; - 74E30723342E074FA9B5FC62 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 75227D518ADE0FDD8BB56EC0 /* Glacier2.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 75231CA5EA77CEA177619D68 /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A1629C3A24F66265F742150 /* Instrumentation.swift */; }; - 752E35B46EA4505EC83EC1B4 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 75A8B4B6066AA93A556B8178 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 059F06CFD18E4BA02BA0E025 /* IPEndpointI.cpp */; }; - 76537F251BBF45019A95995E /* ObjectAdapter.swift in Sources */ = {isa = PBXBuildFile; fileRef = F90B2EAB5D9DCC4178F8B5B4 /* ObjectAdapter.swift */; }; - 7657975AD42AC20108D07027 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9FADED3C1D00A9AFBE02DACB /* TestAMD.ice */; }; - 7662016A7206E6C48AD1902A /* certs in Resources */ = {isa = PBXBuildFile; fileRef = F52E3E551A8F8B3901BECC9B /* certs */; }; - 7672767DFDB5782E780428B5 /* UnsupportedAdminFacet.h in Headers */ = {isa = PBXBuildFile; fileRef = 261E69F6A52C94909DF014AC /* UnsupportedAdminFacet.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 76D98EEF70E83DFAF18537D3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 76E199959830AB560F3E2F2F /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4E4652309AE1C7E4EEE2D6D /* AllTests.swift */; }; - 76E62DE475D6AFA64D784C9A /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A01CF5F8BB77C282B69730 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 76FBEAF279F6E0EF69F6FE4A /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15530AE76DACDC2FD0C54C11 /* FacetMap.swift */; }; - 773F119B5F739641ED07115E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 77A3E9F059780D8DFBAA3DC4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 77D9647970F1FF697D9D9C96 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 474135D6386C100AE4286B3D /* Server.swift */; }; - 77D9F4551EEEA292FFA03454 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9226ABAA5FAF037A4782672D /* TestI.swift */; }; - 77DC371E43381EF16158F9EE /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 250055BA1C62F324250B2548 /* Server.swift */; }; - 782E7FAE67003BE21307B1F6 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F71CAE50CD7CB4E7134D9FF3 /* FactoryTableInit.cpp */; }; - 7880F2DBCCF3B4FDF0BA9D30 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 638F85E5C6C7085DF46F390B /* TestAMDI.swift */; }; - 788FF870AE92183F633E2547 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E05BB1F95B7599533D83026 /* Oneways.swift */; }; - 78AC389A326D50268C9C1421 /* Network.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F904E8A5B6258EDDEAF27A63 /* Network.cpp */; }; - 78B10D1E2118BABF5FE5511F /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 86B4DBD2E99AD2E1D9D13F26 /* Router.ice */; }; - 78C42332584409B255BCB2DD /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 78D18BEA8C1E658FCED01C2C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 7904865EB4D9B844039CD2A6 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 638F85E5C6C7085DF46F390B /* TestAMDI.swift */; }; - 791772C90FDE29215C4F2171 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 793F3B65373B8679C6E3B69E /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01024283C896A201E69A8C38 /* EndpointF.cpp */; }; - 7997ECFD992D1B49A8B352D8 /* OutputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C83A2E19EDF012C6703AB53 /* OutputUtil.cpp */; }; - 799B94989EB0FB659DB5FD16 /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9883142AAE78B0D29D622EEB /* UdpEndpointI.cpp */; }; - 79A1925010F96055D419F173 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 28DF745A2D928C90F9F4419D /* Test.ice */; }; - 79B6C0C76C38F872B0C79378 /* SecureTransportEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E73B68A6243CD1C6AED87DFC /* SecureTransportEngine.cpp */; }; - 79C0E9A35E639B954B5CA27A /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 03A03F30C5444AE9322EB66F /* Test.ice */; }; - 7A0B0587DEFF310CF9B800D8 /* PropertyNames.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BDD807A24DFE6B5DE7A2B384 /* PropertyNames.cpp */; }; - 7A4D6B16AAE5C59182AE40D1 /* SSLEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A2C21B3DB0E4BE665D1475F /* SSLEndpointInfo.swift */; }; - 7A6E96D004F26E9B1BB8F989 /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4584337E9DC542C82D3CFB88 /* TestCommon.swift */; }; - 7AD8DD9EBBA848966B90E8CD /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B2D7894B631B2D78882A8F57 /* Test.ice */; }; - 7B0BB91AD2AAE0A9D6EEA849 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0972B81E52AE5219A0359F6 /* Server.swift */; }; - 7B0C4BBE8B0F40F09EF7E559 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 7BAC320CC9549BE3F30C380C /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E45A803280C9975C7D2D5B6 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C2B31B5C272133DE1948E73 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E386E5939BE4E20022B34C8 /* Client.swift */; }; - 7C47A846F07E602B46BC1ED0 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4067CCA4E285628C8AF454D9 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C5213F0AB4E84CD18A07676 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 7C55661EC9DFAC0E5E0A4AF8 /* Oneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7E05BB1F95B7599533D83026 /* Oneways.swift */; }; - 7C9749638F33756CAFCACFD7 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B930854633BDF8CF5FFE22C /* TestAMDI.swift */; }; - 7CC28E32C596E2B96BA97437 /* Shared.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB3E29E74373ED5837D69F8F /* Shared.cpp */; }; - 7D393B5197D8C9F764A4521A /* SecureTransportPluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E5AB0FB42BD3A39396266AC /* SecureTransportPluginI.cpp */; }; - 7D4BFF385409F41DDAA66BC3 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104B3F85E85A1F464938A580 /* AllTests.swift */; }; - 7D5B78742101708CFAA63B90 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 7D83FB69615A158017998208 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 7DE141A9B23DA02F0F055EDD /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 7E7DEABC002DFDE84F7C7784 /* Service.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A70C14B2E0E746A0591AF1D5 /* Service.cpp */; }; - 7EB795072A11C2241D41CA7D /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEF23AEA09540063DC96EA21 /* Collocated.swift */; }; - 7ED2872294B29183D74E6D87 /* ConnectionInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B584730D968F098A9E3D59A /* ConnectionInfoFactory.swift */; }; - 7EDBADF415026D08BE00ED54 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F4F28FF6999FB92889AECC /* Server.swift */; }; - 7F091880CC2BE16653F5C59B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 7F682B274ADF63F87E83B668 /* ImplicitContextF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A1722EBDE6AC496F748A964 /* ImplicitContextF.cpp */; }; - 7F840956F13F990D305C24D7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 7FC2B37350F3E5995B4ECECE /* Options.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 90D35835E18D79ADAB716A16 /* Options.cpp */; }; - 7FF35CA4033D4C38B644418F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 8016511938D5F624D464633A /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2F6CB1CBABB18103F23A7D3B /* TestAMD.ice */; }; - 8039E0224BB29439AE536715 /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB6F28F663DF2D21006713 /* Value.cpp */; }; - 803E001EC76589670027F378 /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24630F961292732B29C6782C /* ExternalAccessory.framework */; }; - 8081F030A606ECD461F96BF4 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 809E2D74023BFE23E61934E1 /* ObjectAdapterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DFC73C8E6BFAEC766CD5D25C /* ObjectAdapterFactory.cpp */; }; - 80D13332A162835326C3DF20 /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D5A45BA52FE831A3ADA94B1 /* ValueFactory.cpp */; }; - 810D238B45D8FE86375B6277 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5CD54C2AA8BE23781C057132 /* ClientPrivate.ice */; }; - 811836C9C6097B09684DFADF /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 8120E196F15D7A9C3000355B /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */; }; - 812EBC02D2A477A03EC2DDA3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 8140A9ACBAFECD8048F2C4F6 /* TcpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64F29DD7C25FD1D8C1FBF3CD /* TcpConnector.cpp */; }; - 815413C11DAC970EC4F0FEED /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD340E5FDD75011A7A85118 /* Collocated.swift */; }; - 815C651DE541122FE74E3CE5 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 816C8986F21DE2D43797087B /* TestCommon.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4584337E9DC542C82D3CFB88 /* TestCommon.swift */; }; - 81BE959AA332DC19671071D5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 81DF90B58589897B66CE326E /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B0D3189E1EC893F9D4E0 /* Logger.mm */; }; - 820B6CBB783F9CEFD62E1D50 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 828A8CC28F159BDCB54F2568 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFC516B10AAE738541716320 /* MutexProtocol.cpp */; }; - 828ACA81ADAEBD4A7C45BE44 /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02BEC5D52B98E16486723B15 /* OpaqueEndpointI.cpp */; }; - 82B07F81F92C82FC2C8E859C /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = A076886379887427EF43CAB5 /* TraceUtil.mm */; }; - 82B32CCF10B1F159B23F414C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 82C6992869FA3F7AEEFB8028 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 82C8426F92304576DE536C49 /* LocatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE6326CC8423A7AB2E011674 /* LocatorI.cpp */; }; - 830EF50D85A696229F7C3FB6 /* Connection.h in Headers */ = {isa = PBXBuildFile; fileRef = F71C3042386918BE757DF8CE /* Connection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8311F26BE59DEFD56E414269 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */; }; - 837206647A5313B84B7F7F8E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 837E9D7B78BE00674EF13D4F /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9502656F9828A55BF15B904F /* ClientPrivate.ice */; }; - 83993416308A2A5AD3C61067 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 83ABA46B9D89440A0C8034D2 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00EA1D526F07AB7E2403ACDE /* TestAMD.ice */; }; - 83ADC83B0013D225A82582EA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8748EAC5BFE5A97A4085F0DB /* Client.swift */; }; - 83CDBD33C1150230F2E74107 /* Current.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 44837E3321ED1322DA4D4AE9 /* Current.cpp */; }; - 83D583E25B45CB7E322FA652 /* LocalObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C7F2189733BCF9C8B454DB75 /* LocalObject.cpp */; }; - 8404E57A693222161BC56732 /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C5527D47B4AA93DCBF5B076 /* Properties.mm */; }; - 842358F2A2C78210E827D854 /* BlobjectFacade.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1CACDF62E69944DB57D56E47 /* BlobjectFacade.mm */; }; - 844D915B27090B848FB53FF3 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F214226923D4CB01CC6D14A1 /* FileUtil.cpp */; }; - 848E2A01CE44343781BEF6CD /* EndpointI.swift in Sources */ = {isa = PBXBuildFile; fileRef = CF1DF22CB01FFA62872EB861 /* EndpointI.swift */; }; - 854D6208F3303E72908EB06F /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5B2DF10CBEFF10D1055C9690 /* IceStorm.ice */; }; - 85BC01ACB28163CA71D951C6 /* ControllerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 216CADE6B58D39565FA60EB2 /* ControllerI.swift */; }; - 85D9C620E963F263940E25BA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 85E4BF86A36BB73D319B2CB4 /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 800A52A540F1DA8547B1D22A /* ConnectionF.cpp */; }; - 8622A720644080DF580FD0ED /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1ED43BAF74AEE3D118146F5D /* Test.ice */; }; - 867FFBB85F8B387BD12388E5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 37F4F28FF6999FB92889AECC /* Server.swift */; }; - 86C17A041AA408728024B6FC /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 86C7FD865D845D0228E595AC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51106D60A56141EBC49C9318 /* Server.swift */; }; - 86F21F920A338C9B8E4C58D1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB925F57794F16F2734D08B4 /* AllTests.swift */; }; - 87169C720693983968D640DF /* UdpEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9883142AAE78B0D29D622EEB /* UdpEndpointI.cpp */; }; - 8747793A01A5290FCF7E9443 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 8758B7E46B770685B266FFC8 /* Exception.swift in Sources */ = {isa = PBXBuildFile; fileRef = C61C5DA6F7F7080FC83FE964 /* Exception.swift */; }; - 875EB2E0A298E0D4B82D425B /* Connection.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72BF04B404B4A6ABFA18A71A /* Connection.swift */; }; - 876094B239F28C2B4D5E461A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 876383C8BA8FB8C7D16C9EC7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - 878083D5BDE5054FE67157E5 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE9DC976389286FF16B21B0 /* ProcessI.swift */; }; - 87A4D87227FBDF8E2E0CAD68 /* Acceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F67CEA524FF25FE6949915A /* Acceptor.cpp */; }; - 87AC8565D3129BB566C4E4BB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E386E5939BE4E20022B34C8 /* Client.swift */; }; - 8807378728C319C1F71FCF0F /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1ED43BAF74AEE3D118146F5D /* Test.ice */; }; - 884F27683269E2801ACE7C0A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 8886606759CF3C907ECEC53B /* TcpAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EEBC1443F0873050E5877725 /* TcpAcceptor.cpp */; }; - 88D7D9285A591764AE1DCFF1 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5453037F24499786E84EA5C /* AllTests.swift */; }; - 88F0C8A134460E85871730DA /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 8907AF3381428A2BD48E84F6 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 896CB4F4F0863FCF72FD6E58 /* FactoryTableInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F71CAE50CD7CB4E7134D9FF3 /* FactoryTableInit.cpp */; }; - 897F454A2E54D6B9ED1CC39D /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEF23AEA09540063DC96EA21 /* Collocated.swift */; }; - 8993C3461E4B72B1B4B9469B /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 89BD626D72A50F6924F340FB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15D305717C35A677E3D0BF24 /* TestI.swift */; }; - 89CBFE5358A64C8A08A8E908 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA5C303C571C95B5220FFF77 /* ServerAMD.swift */; }; - 89E06C0162972C2C91BCDE55 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 806B7171CB7F0D3E6F836117 /* ObjectPrx.mm */; }; - 8A4F6176FCA37C036D7804DF /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84BCFC47EF30B1DDA82EB275 /* ValueFactoryManagerI.swift */; }; - 8A60D09C00842CA98676C01D /* IceSlicingObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 474923F0179531C32355FF66 /* IceSlicingObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8A69ADDB57C84FBA4F528240 /* FormatType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9CF9391197314E2751FD072B /* FormatType.swift */; }; - 8A6F23CC7C2EA4096E2BD01A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 8AC2B9CE61F373C2968A8D78 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E8132A588131377350457A8A /* Logger.cpp */; }; - 8B072745B9D1BFB4FC07A09C /* IceDefaultServant.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A11FDE12E0158896D2902C2 /* IceDefaultServant.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8B54F2D56D337B2A5F4BF378 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - 8BD3590077F2A155B5486CC7 /* UdpConnector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A26AA7659D06EBA6062EF982 /* UdpConnector.cpp */; }; - 8BFEB606F665B7541EA1052E /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4AEEFDD3BB442CB6663CD683 /* Collocated.swift */; }; - 8C050D5071D18D46B1CA3401 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 8C0A2D9F0804871932011BB5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B4C555F0C2B146AF8D5EC356 /* Test.ice */; }; - 8C1D9454BDD5D1D6813888B5 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AE2E85C3FD16B73660AEE0A /* ConnectorI.cpp */; }; - 8C2809F5A2251554B81E0B1E /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42391EF6184A353552A00883 /* IceImpl.framework */; }; - 8C405EBA1694D7FF455A53FC /* IceLocation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0351F96883BE42489669584D /* IceLocation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8C4507D8EBD56AE7C70ECD02 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A18062BD1E33BA800FDE662D /* TestAMDI.swift */; }; - 8C61A337FDCC3B9BF1964ADF /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04ACFF850FB52C42D1D0256D /* SecureTransportUtil.cpp */; }; - 8C66DA4F73B513778AE9ED84 /* ConsoleUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B94A0EF9213206745C31CC8 /* ConsoleUtil.cpp */; }; - 8C757C6A801ACB43E07B3847 /* Util.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 983A2CBA8E5E46F1AEE78B78 /* Util.cpp */; }; - 8C92FDD3BB0828C5B8823621 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 8C96F0589C61C0B6A80E2344 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 8CB79E433C3F9800783D7070 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F972A8E2DD097AC08C4A781 /* Context.ice */; }; - 8CD5F889DC3FF2A42135DB08 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 8D05E1908CC1C02E65416C0B /* PluginF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96EF425FFAE7ADC67DD3FD81 /* PluginF.cpp */; }; - 8D5DA597F06AB00006A334A0 /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */; }; - 8D6130ECAA002485B2C17923 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64802AF97D0C116399E87B38 /* TestAMDI.swift */; }; - 8D7025DD6B71DCCFCD9D8C22 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 8DACC60172ED92FEE1413F8E /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCB4094FE32B8606EBB93BFB /* OptionalFormat.swift */; }; - 8DFB4A0306490FFF8426C78D /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B15F39FC8689FC1FCB89F477 /* LocatorF.ice */; }; - 8E0523110D6C42D2134C4A47 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC845309A10111AC9F465C23 /* Test.ice */; }; - 8E2A2651032B58C66F114454 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 8E49509F5EDD277F127B6B68 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - 8E63ECC4505FD2FAFEAFBC1F /* ConnectionRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41ECD3890AF22A95E9667E8F /* ConnectionRequestHandler.cpp */; }; - 8E94CBFE7990DA554FD8486B /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0D0C50C25B4B163B7098033F /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 8EF0D7A11A26D61A09ECFFB2 /* WSTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7D45D866B9B71FB7B57D0E6 /* WSTransceiver.cpp */; }; - 8F3AB1BE615B4F7C552E3560 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B91C23CCEBC74093AC64126 /* Test.ice */; }; - 8F49ABCAAC6E4187E2B6CA58 /* LoggerF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E8D76449FAFB649E9E74273 /* LoggerF.cpp */; }; - 8F5B27D45817CC9DC3486365 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ABB967DFEE9C5D24F7C42A2 /* Collocated.swift */; }; - 8F64A26110BDC58D8D54F3D9 /* ServantManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = 307A532F3C4EB11FF4260F44 /* ServantManager.swift */; }; - 8F77618E5C9F1B0967F8FA87 /* CountDownLatch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1EFF9091F708E5F6F0704B3 /* CountDownLatch.cpp */; }; - 8F88C5056F59C4F461B7E944 /* TrustManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5EB90003DBB8FFCE6E52AB05 /* TrustManager.cpp */; }; - 8FC1683310ADB8C866481055 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F59158F7D5C392A0D1D7CE8 /* ACM.cpp */; }; - 8FD90978C32771C60C66A1B3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 8FE65F6DAEDB22104FD0609A /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BDEAE47C449BAB487924895 /* EndpointSelectionType.swift */; }; - 90F0DB577F458B5BBF5CD826 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B19E7F86972D806170B222DD /* TestI.swift */; }; - 911E0D67438383EE6B41AA41 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ABB967DFEE9C5D24F7C42A2 /* Collocated.swift */; }; - 919FCBDA71FAA6B336A35F7A /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 680CE9BA4A204FA3FAC93375 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 91C62960606D8FCCF6747F78 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A345098C97240AE15EE3E355 /* HttpParser.cpp */; }; - 91DD1B6F9C757E9D1932DF5B /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DC6A10305F53DC63F7512C53 /* IceStorm.framework */; }; - 91F97CED743E6596CC82D08F /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D566AB986C3B8546B20A2AE0 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9201C71F9C04EB74313690A2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 9204AB6155317BC251CAD0A0 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 92205818C828E4B5D16AA8AC /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 00EA1D526F07AB7E2403ACDE /* TestAMD.ice */; }; - 926C330CAA2AF8AA9434FBD1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 9272CDC35077990FA0FC3DCE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - 92996512B2E2D9A664C2AE0D /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77E66F7A0331FF21333AE3FB /* BatchRequestQueue.cpp */; }; - 92C3862CB23C0C52E5E708BA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB750BB47FEA9559FDA7DBDF /* AllTests.swift */; }; - 92EB5200C3F206225868057F /* IceServices.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 79CF8D4448CD8F1D2AB9367C /* IceServices.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 930D5DC8FE58F79C670C4B53 /* IceServantLocator.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 055E1371140F03C46BE4933C /* IceServantLocator.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 935A5D2312914D36D943F35E /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = BFD8E68C39A86BCA8855BE97 /* TestAMDI.swift */; }; - 9364DD9F6D8DA434C268DBA6 /* UserAccountMapper.ice in Sources */ = {isa = PBXBuildFile; fileRef = F5FA2C9600E75B1FCD46907F /* UserAccountMapper.ice */; }; - 938AD770BF6739D032B7E255 /* ClientPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5CD54C2AA8BE23781C057132 /* ClientPrivate.ice */; }; - 939E3C8EF6821939BB399260 /* IceAdmin.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 72083FEA504B3EAD2B1B6FE2 /* IceAdmin.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 939F48B7A82E60A6459321C9 /* Context.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9F972A8E2DD097AC08C4A781 /* Context.ice */; }; - 93B7487AB18E1A9A3B1781B9 /* LocalObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B07536035C11C1E0934299F /* LocalObject.mm */; }; - 93EA132FFB90C6038E00C831 /* ReferenceFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DF136F6E80A01F3C0C176C6D /* ReferenceFactory.cpp */; }; - 94048BBB033060E615673533 /* AcceptorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 53016732D7F1EE45D95136EB /* AcceptorI.cpp */; }; - 945D2F9580D30BECC37243CF /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B67D5EFC0BB322E8EF9ED64C /* NetworkProxy.cpp */; }; - 947D36770B7E41C0CF6070AF /* IceProperties.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = ED3424BFB9925A53577998FB /* IceProperties.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 94B38541371A80684508FFFC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63B3CE5DAEFF4FCC9EC9707D /* Client.swift */; }; - 94DD6CBBE02737D9EFFEC285 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = DC845309A10111AC9F465C23 /* Test.ice */; }; - 95295F91978AE312AE371B47 /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = F33540D27F8ABA588FF9CFCF /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 953E91436CE58A04CBA8D31D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2E5EBCC2B8851DB99485BB9D /* Test.ice */; }; - 958F12473CEF81A81BBA41D4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 95A408FCF21100A8326796CF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 95AAE0C33FD07EF76E9D26FC /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A6263E6EB0712A439E75D09 /* Server.swift */; }; - 95C11CADB4A3F39ACF11B8D6 /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9947265006AE43D802120A4E /* LocalExceptionFactory.swift */; }; - 9629F9484B15CF5546D3FD4C /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B1834CCC901B15A44359D42A /* TestAMD.ice */; }; - 963D72FDB59EDAE42A1C2867 /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC1C3A7852A6CED90889B91 /* ImplicitContextI.swift */; }; - 968C3AD7FF2E24810965EC8D /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 864A6D958111A066271C2056 /* TestAMDI.swift */; }; - 969285B4BE28CFEEC42C375E /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FB7753A8D2686CAE06B2CE4 /* ImplicitContext.mm */; }; - 96B271D784D9299289F70657 /* Properties.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DD1ECACDD717AF71AF60969 /* Properties.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 96C46DF1A21FEC3E0065C7BD /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 3547A6F171E6B76B9FC63BAE /* TestAMD.ice */; }; - 97436689F8CB87D4C1FF11BE /* PluginManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B08D997BB8E4794D4200FB23 /* PluginManagerI.cpp */; }; - 9746010596C112B8051EFE24 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344C21FB7DF7176184125859 /* SystemdJournalI.cpp */; }; - 97686E8519D1BA7C21C8B3FF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - 97D14CB373FCCB20B5BC1FC7 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DED512BF02792FFCA52AE9E7 /* Initialize.cpp */; }; - 9815DDD9489CEB32587F6D06 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD36CD2D320F5953C219BB79 /* Client.swift */; }; - 9840A8A84FFBAAB19CAD7ED2 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 762976DF5DE13C4200542E0F /* UIKit.framework */; }; - 9859145304CA198B0C6AFFD9 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9467375F0E35C0FBB7688528 /* CtrlCHandler.cpp */; }; - 98B2A6FDFCCAF3D6A739C75D /* IceEnums.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F5C15610EC1017BFB49E9711 /* IceEnums.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 992E4DE39703E1A0D4718E38 /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C171909B3BA6EDB94DFE7617 /* CommunicatorF.cpp */; }; - 99B11670C9E0DC749C9D53CC /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86A893065E7D543BCF41F626 /* Endpoint.swift */; }; - 99F1F51264DCBBA1F7330936 /* HttpParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A345098C97240AE15EE3E355 /* HttpParser.cpp */; }; - 9A0155DDBCA4FFEC1A349FB3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = B354AAD31C61053198AA6359 /* Collocated.swift */; }; - 9A2338535217B7CFB2473F02 /* Connector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 532C14EE7E6458905C05203B /* Connector.cpp */; }; - 9A8700B1C2D39ACB29F88CBB /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D590A59E3F6155EADC253B1 /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9AC815A0E12A1B2FF66100B0 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 9ACA67AB49660B8296EA466C /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32C784477F9A73A13FD21C65 /* Server.swift */; }; - 9AF9489B8926192A481AF670 /* EndpointInfoFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0D168BB468F0B9234386530C /* EndpointInfoFactory.swift */; }; - 9B35EAB6F8BD88152D726AD3 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C6BBD6CC1E3C2A7CCF12C722 /* Collocated.swift */; }; - 9B4F4419119ACDACCA449256 /* IPEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 059F06CFD18E4BA02BA0E025 /* IPEndpointI.cpp */; }; - 9B97D6477B5DA5D0B6B6CBE1 /* IceServantLocatorAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1CA0FCE8D4431A2B65028231 /* IceServantLocatorAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9BA0A38C0BD7E36A1BD60C32 /* Initialize.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DED512BF02792FFCA52AE9E7 /* Initialize.cpp */; }; - 9BE9DBFF8F23C2B39DFA252A /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0D102CF3F4701F3AE046D7 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9C13EC1D5BDDEF39E0035621 /* EndpointFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C3C55AD97EAC4C2C236144 /* EndpointFactory.cpp */; }; - 9C1B41496E95DD89E1AB38F6 /* ObjectPrx.mm in Sources */ = {isa = PBXBuildFile; fileRef = 806B7171CB7F0D3E6F836117 /* ObjectPrx.mm */; }; - 9C24697B0F15EB28437FE156 /* EndpointI.mm in Sources */ = {isa = PBXBuildFile; fileRef = CCE36EC139B06D18C0C74BA7 /* EndpointI.mm */; }; - 9C8E0442382FED4435A53AD0 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 9C991835EB6469C2C8FE9028 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22BA0A2A8A538610278E1A67 /* Client.swift */; }; - 9CD19EC1CD1C690CE3BF1942 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FCD89BFC87D0D93ADD625C0 /* TestI.swift */; }; - 9CD7519D7A0B4FB0FC9B0627 /* Connection.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECBCA68A7DF08B26236F860F /* Connection.mm */; }; - 9D398526A52E1A0DE368F2E4 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A635A54F2740AA6A0345900 /* TestI.swift */; }; - 9D4B7F981422D4405C24BE23 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - 9D51E686F366773ACCC7178F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - 9DA06B2460129485D0D0FC13 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E826DFF464DFB4529E54EDC3 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - 9DAFEBB1B955F5C465481165 /* MetricsAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 623BF93B592B69730EBB8EDA /* MetricsAdminI.cpp */; }; - 9DE8B5F4F6CD04FC92F08A18 /* Locator.ice in Sources */ = {isa = PBXBuildFile; fileRef = D2744013C529D8F086422990 /* Locator.ice */; }; - 9DEDEAC427E2D4CC5FA01358 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - 9EA795C10EA59F5A12BD863D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F6E31AAAA244C75D4675291 /* Client.swift */; }; - 9EA9B5E79AFB53974ABC7AFE /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D678FFB619CCB86A3BC95515 /* RegisterPluginsInit.cpp */; }; - 9EF395D8FC087E745CC0E2B3 /* Assets.xcassets in Sources */ = {isa = PBXBuildFile; fileRef = B51AC77641CEE54D03AFFE1D /* Assets.xcassets */; }; - 9F76CE45F0A14F83DBBBCC9C /* CertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AC4B3614730C36B93E6CE83 /* CertificateI.cpp */; }; - 9F778C7AB6B7878B7B6EE569 /* IAPEndpointInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 36A67621EF8B41A02D1A5852 /* IAPEndpointInfo.swift */; }; - 9FF2F13524A1987FB5A421FD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73411F554849A6348D021C0 /* Server.swift */; }; - A00DBD175CCF5E771E9AB871 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - A0134E2C57ED7ACA82FAE414 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9A65923D521C078DCDBABA31 /* Test.ice */; }; - A02F2F29E635A0818DAF6DF6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - A0370BD7322D40CD43A9D333 /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8750D48101851C84B89B330A /* LoggerI.cpp */; }; - A056BB0F75DC449BC21A868C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52122170F02276E3275AAE2B /* Client.swift */; }; - A0646964B11526959E15863F /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18123528674C5DBEFE8DC183 /* ConnectionInfoF.cpp */; }; - A06F28264FE9AC00BF0C0030 /* IceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = B89D7DF2F9D676F96CB9635E /* IceUtil.mm */; }; - A073B6BB6331F5F166A7C157 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - A082D8514D02C406D845DFDE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2527DF77271CA0B2E6A8E151 /* Test.ice */; }; - A0A0F385D08C94CE9C7BA323 /* ObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E9F50378F7C12B118349B /* ObjectAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A0CA87BB2AD0D07F39804C8F /* ObjectAdapterF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AFA7ECC88F49663429276843 /* ObjectAdapterF.cpp */; }; - A0D01250B56FF47A79DEED94 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - A0D16DF3351D17928E3FC8EC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - A0E0182092093DD6E61C134F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - A0E4424A99CD859FD8FD25E7 /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A763F1E9B20B68CAD1D62D3F /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A0F0419D7371A0309C002C7D /* IceExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 461937D2DA4EABD1399760BD /* IceExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A0F6CDD4D0492D0F76120C5E /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 849D140524843186122E2B5D /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - A11B058C87B826A8A68318F2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51106D60A56141EBC49C9318 /* Server.swift */; }; - A1491B81B02939D1F2695390 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9CB8DB9B6B0E2D1D5F87503 /* Client.swift */; }; - A1EF1604B0D51B76BAFE7556 /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 436D4DDD3929D36CB74E51A9 /* ObjectAdapterI.cpp */; }; - A2001B962A3E23AC8698461A /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA4D36E0018BED4FBB96979 /* Server.swift */; }; - A202237B8A5762C836D3F45D /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16484C090CFD38F73675B0C6 /* TestI.swift */; }; - A218647C4ED5BCB5DEF2C856 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2951989E4ED79DB5A5BD840 /* Client.swift */; }; - A23591B0BE17C73DBFFE3B05 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2D266EA2336769024DD2B4 /* TestI.swift */; }; - A24BCC7D7FAF0CCB238BA4CF /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - A2647D6098A7EB77AAF8CA7E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDAA337977433E1B2F9235CA /* Client.swift */; }; - A2A28FADC3A8F42D74F94152 /* Cond.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E83D440DF808EEF167018B4F /* Cond.cpp */; }; - A2F6A13639EF17AAF9E8C3DA /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C012332733DA4296E9354F12 /* Router.ice */; }; - A30D8022B3F949FDB45AB264 /* LocalExceptionDescription.swift in Sources */ = {isa = PBXBuildFile; fileRef = B7A67EB9002C23EFFD4F4331 /* LocalExceptionDescription.swift */; }; - A329C64D7DEC8DA9EE2CC8A9 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 78A482E000141177A98F078F /* Server.swift */; }; - A32E44E679E01526BD2A5F58 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - A33F469D207EAFFDB8FB1D3A /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 850A2787B4B4A3CB3C74175F /* Session.ice */; }; - A360FF1048E84450C8886EE0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - A3809439D9D0321CE539FDD0 /* BatchOnewaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3F0C20EFBCAFF52B67C7AD11 /* BatchOnewaysAMI.swift */; }; - A391F8627181A212266CE4F8 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F674217427A6BB4384E16370 /* Plugin.swift */; }; - A3A56A528D7A874125579BE0 /* EndpointFactoryManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 911DD6C3D079AAD2A68FE941 /* EndpointFactoryManager.cpp */; }; - A4457F8891CC4A735E38473D /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68D9BDAF960BA51A8BF52198 /* ProtocolPluginFacade.cpp */; }; - A452507B04A887F15CE4634D /* EndpointSelectionType.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9BDEAE47C449BAB487924895 /* EndpointSelectionType.swift */; }; - A457D66D0A9DD47D91424E7E /* Value.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 57EB6F28F663DF2D21006713 /* Value.cpp */; }; - A4DFD3718AF68E0E47FA9D41 /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3D29F00E18E96EA4BA99C36 /* LookupI.cpp */; }; - A4E1145B88CE86D88F59F501 /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = C57D6F7125325B748CB60975 /* Process.ice */; }; - A584340DA436567581A583C4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - A59FDFD98086574E6A91CD4A /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAACEF4FECAF35BE85C20620 /* CommunicatorI.cpp */; }; - A5E7463E93E51698C4FA62FC /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1E2C99A6DBB9132B74F4845 /* Client.swift */; }; - A5E9EA2FF2470B46153CDA6A /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28BB763CB891D9E198CB4E13 /* LocalObject.swift */; }; - A5EC9178D79AA00619027912 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7DB4E7AC16E22943F389DA62 /* Test.ice */; }; - A628D09090DA1A976D4E7395 /* OutputStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D590A59E3F6155EADC253B1 /* OutputStream.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A63BB6DB081C31917F83692C /* IceSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC7FB9EE1A071911E227CCB /* IceSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A662F061162797200A98E0EC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - A663AD708EDDDF794AE80847 /* UnsupportedAdminFacet.mm in Sources */ = {isa = PBXBuildFile; fileRef = 526B263C4E63A5FD88236538 /* UnsupportedAdminFacet.mm */; }; - A6CE25350F236044EE002834 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - A6E6B51E80BBDC666B6E071C /* OutgoingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C630DCAC52483EE71792F541 /* OutgoingAsync.cpp */; }; - A71D57F16C95BFF0C9C49555 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 398A19BC7513CD91E69E4025 /* EndpointInfo.cpp */; }; - A73AA8A31476BD2803B0E84C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = BF8E0CCA4C7037506934137C /* AllTests.swift */; }; - A74E2ACB156AC71ADF209D33 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47085E57F8BA1CB63A56B0BD /* Test.ice */; }; - A77DCD9B91D2E95FCC978260 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5DC88A1165E0648123E7B24E /* Server.swift */; }; - A78E5DDC9FF22C15DF996CEB /* LookupI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3D29F00E18E96EA4BA99C36 /* LookupI.cpp */; }; - A7D8D3D0DBFD5F54A63F808C /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1504B193CDECAF18F430FF2B /* Client.swift */; }; - A8084181C6D306D4C49EEF59 /* Initialize.swift in Sources */ = {isa = PBXBuildFile; fileRef = 628F9CA7D6D383137FC355E3 /* Initialize.swift */; }; - A833858ADAD9204E9668A713 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCD3E590B98FDDB60A31C5B /* Client.swift */; }; - A8C766B134EA6FBA6AD2FB4D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - A8EC75556A8EFAD34C9C4AAF /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = F48616BFFA819BAF3F8B2FB8 /* Key.ice */; }; - A8FC1EAF0AA3504AFD846939 /* StreamEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 368C3BEB6491D68E441DBB33 /* StreamEndpointI.cpp */; }; - A937746D7A9A826BCE10211D /* libIce C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 8AF093375A28D692055B8973 /* libIce C++11 iOS.a */; }; - A958FBD4D8743332B89D8A9F /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = C57D6F7125325B748CB60975 /* Process.ice */; }; - A9790114286E03FDBEFEFF14 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B4C555F0C2B146AF8D5EC356 /* Test.ice */; }; - A9A264A27202F290824CB808 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = FEF066D96D048F2BABE04F9D /* AllTests.swift */; }; - A9C7285A0DF9DF7F94906A6E /* UnknownSlicedValue.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5621C5105CF819261AA00022 /* UnknownSlicedValue.swift */; }; - A9EC0A71C71B5FF5AFED4B18 /* AdminFacetFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4FE15755ADD9B5EE9808D8C1 /* AdminFacetFactory.swift */; }; - AA189CC4BFC36298AC8BE63E /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 4067CCA4E285628C8AF454D9 /* Config.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AA1B174000281436BC0479CA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6E9093C94D6596E3660EDFBB /* TestI.swift */; }; - AA3009A96E6750777D48DBB1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - AA679D0494B1BE11F9957A54 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - AA726D1400A560CF97752832 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2F6CB1CBABB18103F23A7D3B /* TestAMD.ice */; }; - AA86ECCB42291589A2FA8685 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - AAD2FE4692EF082485AF00E2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - ABA1232826877F82079AA611 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD36CD2D320F5953C219BB79 /* Client.swift */; }; - ABE96A45D5047D07B494D811 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9FADED3C1D00A9AFBE02DACB /* TestAMD.ice */; }; - AC63406EA7134396F84D027C /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C004314E294893A903BC059 /* DynamicLibrary.cpp */; }; - AC66AEAB62812F101CC1A9FC /* ValueFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D5A45BA52FE831A3ADA94B1 /* ValueFactory.cpp */; }; - AC74D2E9FA0C3AAD47C2DA14 /* IceInvoke.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B1EB3F3DCA4EBE0AC85EF8E1 /* IceInvoke.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - AC7FF1DC93E3F28F9D765448 /* Proxy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86BEC7DFBDFA7D664AA2948F /* Proxy.swift */; }; - AC8FA20A8E9A3591E503A3EA /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 2E5EBCC2B8851DB99485BB9D /* Test.ice */; }; - ACBFD23F7C301915C5856651 /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 910BCA66868673D701E802CE /* Logger.swift */; }; - ACE982D339EDFFC653754B91 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 54D06539D647623F84D3C475 /* Server.swift */; }; - AD100F4352996B95B7E7CEEC /* BatchRequestQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 77E66F7A0331FF21333AE3FB /* BatchRequestQueue.cpp */; }; - AD33B193FA912407F5246BC2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - AD875C52399723CE4475E71D /* MetricsObserverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 787DA99C9345BD9AFAFE23BC /* MetricsObserverI.cpp */; }; - ADBBFA59FAF09F9C1DE28C06 /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5E1178133F12C06313829C9E /* Session.ice */; }; - ADD0712DE7B899A47722FC2C /* IceLocatorDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 57EE371E56576A8317C8E490 /* IceLocatorDiscovery.ice */; }; - AE02E09E476B221CF30F36F9 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - AF2890B36A3BA35B274E95FD /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 46F06EE2B5CE1BD96013A0E1 /* IceSlicingExceptionsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - AF8FE0C50A15AC26FA776A54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - AFCB7A1C5AC5640DC7AD8058 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - AFDB4215D50B3770598EA91C /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = DCD2DF2F490C333AFC34E403 /* Clash.ice */; }; - AFF652ACDFD4F86D15C78356 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - AFFE613A4380B21C593CC677 /* TestCommon.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - AFFF5BDE06F6577570923410 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - B0906221F3F02F1FBAAC361F /* IceSlicingExceptions.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9EEEF7EF10C88BEAC2595F7E /* IceSlicingExceptions.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - B0E111F7B287DD1530DDEA1A /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6A7BC8F66C9728566A553B /* ValueFactoryManagerI.cpp */; }; - B0E914E71BCCE5ACDEF86913 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - B0F3417F7C374C0F482F9DA5 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A3AF2E27A291665E3020008 /* ServerAMD.swift */; }; - B108FB61D8349D59B81F5072 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB0CC3A93C44880C5C9C63D8 /* InputUtil.cpp */; }; - B137642667AE3706E6A0A5DA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227169D88E42D03490D191BE /* AllTests.swift */; }; - B18D0F17814EC2E9593CCBAD /* IceGridSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = AD5E4ECB4BECCE515728C9F0 /* IceGridSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B22FBD4C587015173AD9D77D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - B2943A4C4F3190D879BA87F0 /* Incoming.swift in Sources */ = {isa = PBXBuildFile; fileRef = B5F7B7EC6A1313D15C1D5F60 /* Incoming.swift */; }; - B2C6D001A53B337E96DAAF99 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAA42C2BC75B14E584DC7925 /* AppDelegate.swift */; }; - B309C311C3D80AB65DF93231 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - B319E2588A5E524131DC1E57 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8F6E31AAAA244C75D4675291 /* Client.swift */; }; - B31B43F77AF169D916DAB8C6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8857A465B5A01F88B674B7C8 /* Client.swift */; }; - B33093C6C7B960A8B169B494 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = BBBE5C0E398A59FC82DA5B22 /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - B35831336B9C8525C5766A9C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - B3756370B221CD6396E20656 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 07A58E70155739B4065E5FFC /* Metrics.ice */; }; - B39C9E6A53FAFD8517C24023 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - B4125D5A6CDD59B0ACB46418 /* CtrlCHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9467375F0E35C0FBB7688528 /* CtrlCHandler.cpp */; }; - B451AD2F2E8335D26E2DC8AA /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1EAC7DC09EDCDE664A6D412 /* TestI.swift */; }; - B4812044969EDC648CF8759C /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C41EA629E4C3C316AA9FF1EC /* TestI.swift */; }; - B483ED17520E297AC2B9B39D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - B493ACC09E287003922989ED /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - B4FED0CB275415CA0BDBE88C /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */; }; - B501D13A1A9EE63F7638605D /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8D32C52389F2ECA0048EE141 /* Test.ice */; }; - B51683D810232AB7F6965350 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4344142A2FC9DF9B5722AFD5 /* TestAMDI.swift */; }; - B66607F1562CDE6DE5F645A2 /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 525EFBA91C000927B6DE6289 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - B721015E7D1AAB5D755A8808 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - B72C238DEEB8B6E1BAECA9E0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - B73417712AE0BFE19DC85E71 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEE34A113E3DC71D9DB8450 /* BatchOneways.swift */; }; - B76CC8C18A41B77044FEF8F9 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7FF54833864397ACE8E797E1 /* Test.ice */; }; - B78646021526E09FAE9D9E3A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AA5FA8A0E09A3F3BC61D2909 /* Client.swift */; }; - B7BD0338EFA7C3DB8FF32672 /* EndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 407EDDBF73A172C9F18D2E55 /* EndpointI.cpp */; }; - B8454674D8DEC49DD27A5CAB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - B8A3F70E2863B1E5C60D56C1 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = FA5C303C571C95B5220FFF77 /* ServerAMD.swift */; }; - B8FED15A9B0BC3649AF07A73 /* EndpointF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01024283C896A201E69A8C38 /* EndpointF.cpp */; }; - B916A32845E887D26A90BB8E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15D305717C35A677E3D0BF24 /* TestI.swift */; }; - B977C81B5074600C563DCB93 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4E783E25173DD3CB4652293E /* Client.swift */; }; - B97CD3BF18905C818A868F12 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47085E57F8BA1CB63A56B0BD /* Test.ice */; }; - B97DA3D60EE182D1AB51D9EA /* BlobjectFacade.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0D102CF3F4701F3AE046D7 /* BlobjectFacade.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B991982DFFEB4E157255AE6F /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E052D5C173FB6BC71D76D94 /* Identity.ice */; }; - B9BBE89A10AD153981A385BB /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B5064B9C0DABEB987B39730 /* TestI.swift */; }; - B9C2DD2D5613D775575C333B /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - B9F9B086A2833382BF004F04 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - BA21EFBD517019D1C6150A7E /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - BA27D3FF886FCCB851238FEE /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D9CB8DB9B6B0E2D1D5F87503 /* Client.swift */; }; - BA286EB1F512C5B543AF5AC4 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - BAA9CFBA87D8EA695783DEA2 /* ConnectionI.swift in Sources */ = {isa = PBXBuildFile; fileRef = A21AF317B8CCD5205D8A9013 /* ConnectionI.swift */; }; - BAC78B4F595BD0F319B02618 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - BB5A9BB8BEA3E1E533FDD635 /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */; }; - BB6256A532AFE0F50633935A /* ObjectPrx.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A01CF5F8BB77C282B69730 /* ObjectPrx.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BBA7C9CA4A8AD0F8AE0C7C6B /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - BBBCAC7EEBFCAEA884101D8D /* UtilException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0C68422D8FEA96E3FB21520 /* UtilException.cpp */; }; - BBCB27DFA915FC2BCFFE092C /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 52675C01C923B38208A8C760 /* SSLInfo.ice */; }; - BBDF488A0D76D385FA9A778A /* Proxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C18CB03DD5155C1C2B2E8A8D /* Proxy.cpp */; }; - BBE742F1DFDDCEB7A3BE8625 /* OptionalFormat.swift in Sources */ = {isa = PBXBuildFile; fileRef = FCB4094FE32B8606EBB93BFB /* OptionalFormat.swift */; }; - BBFE1CB14B5EF1F55F39B2B0 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A86220A97A6EB0CBFC944D /* ArgVector.cpp */; }; - BC3D6EC3D90A4AE009CC3D5F /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89DACACD2C1AD4F3469CA088 /* SSLEngine.cpp */; }; - BC4A965F00389AFA1C4EC94E /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = C4D165404C1661A879CC7DD9 /* TestI.swift */; }; - BCA8A4514E249D3C06575584 /* RecMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59519EE11AE42BA7F6AF270A /* RecMutex.cpp */; }; - BCC0808B177FAE9FEABE3637 /* Ice.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - BCCA590876E281C9161D5EC3 /* PromiseKit.xcframework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - BD08218A3D3AE414822402A2 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 52122170F02276E3275AAE2B /* Client.swift */; }; - BD3417F2E2FBD12FD4B69013 /* IceInfo.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 2B615C29B6876A457E770F75 /* IceInfo.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - BD346138D37DBC38517DD6E4 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC5127D1D96F5CE76CAD417D /* Random.cpp */; }; - BD43FAB5A93C34E64E28BF55 /* BuiltinSequences.ice in Sources */ = {isa = PBXBuildFile; fileRef = 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */; }; - BD58792E9664068AC18DB148 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - BD80D443905E58947347F959 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 227169D88E42D03490D191BE /* AllTests.swift */; }; - BD8DDC19C1647AE129C36A07 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - BDD293FFBBCAF18CE46EAACC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - BE17229417D9AA1D213B521D /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - BE5C0EBDADB099CCC3BB9156 /* TestAMD.ice in Sources */ = {isa = PBXBuildFile; fileRef = B1834CCC901B15A44359D42A /* TestAMD.ice */; }; - BE7E09E447102CDC75718E7E /* LoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8750D48101851C84B89B330A /* LoggerI.cpp */; }; - BEA7F85366FA14A434C73117 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - BEBC27F6443E69C633906888 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - BEBE36991D9BACCE4939A67C /* NetworkProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B67D5EFC0BB322E8EF9ED64C /* NetworkProxy.cpp */; }; - BEF5ACC5DD0B74AADC279A1E /* ObjectAdapterI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 436D4DDD3929D36CB74E51A9 /* ObjectAdapterI.cpp */; }; - BF11A2E22C96DF6D2F20C2E8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - BF40E8BC2701770F6F2B1238 /* StringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0832C0FE4DD00F57DBF41A23 /* StringConverter.cpp */; }; - BF4C3C6393D615E64998F9C5 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - BF7CED554DC9F717C953BEBD /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7806EDFB543369686343312B /* ServerAMD.swift */; }; - BF82F5A44B264BBAF92AB412 /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A202DC196498CA41452751D4 /* Security.framework */; }; - BF86CC5BB50C374E2DD482E3 /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8335B51360FAD4A3774DBDC /* IceGrid.framework */; }; - BFE558871C8F222056FDC2D4 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3EA671155BA0EAA870D5F9A /* ValueFactory.swift */; }; - BFF4B06A3B63F0E279CB791A /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 42391EF6184A353552A00883 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C010724525B52C5A463A8FDB /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - C04E44502642BFDC01773F49 /* Twoways.swift in Sources */ = {isa = PBXBuildFile; fileRef = A05F7539468832F6A1D1FE8E /* Twoways.swift */; }; - C069E915226406AB4FC91B6B /* Communicator.h in Headers */ = {isa = PBXBuildFile; fileRef = F33540D27F8ABA588FF9CFCF /* Communicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C076AA6FB3BE0CEFA46D3006 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 104B3F85E85A1F464938A580 /* AllTests.swift */; }; - C0AF01F8C1A2680A86A26B01 /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBFE1FE5EDAEEC44CD547C8 /* SlicedData.cpp */; }; - C0EB837F25A195490E03F95B /* Session.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5E1178133F12C06313829C9E /* Session.ice */; }; - C0F045DEE2AE93566EEDB6ED /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 39513FAD1AB0E49430E2633E /* ServerAMD.swift */; }; - C0FC3735E785045EC4461BBB /* ConnectionF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 800A52A540F1DA8547B1D22A /* ConnectionF.cpp */; }; - C133EBD074843BFA71B97D18 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - C1343CBE720B2DC256CD1478 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - C14261921EC5B6DE9586AA24 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6DE756B8F16EAC3E04B2798 /* TestI.swift */; }; - C14B9D2ACDA59BBFF227D036 /* RegisterPluginsInit.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D678FFB619CCB86A3BC95515 /* RegisterPluginsInit.cpp */; }; - C14C7601DEFF28252384A909 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - C16730199AED9F96DA90412D /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E301CB7A257886B9F8760B6A /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C171DF4EB004F8FAD5E6EA69 /* Descriptor.ice in Sources */ = {isa = PBXBuildFile; fileRef = 49F7B52E1EBFD001EE29C9E6 /* Descriptor.ice */; }; - C1E6B9220DF9020129DF71F3 /* MutexProtocol.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FFC516B10AAE738541716320 /* MutexProtocol.cpp */; }; - C229FBDBE235645EB6EFCFB1 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - C232B65C84FEDD8CEEAB7B1E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D8A8D9D48C0A5E19D013CFA /* AllTests.swift */; }; - C2627C5A2479A57E5EE53629 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D9D973870D744362BE6CD5 /* Version.ice */; }; - C2B40613244370A8EDB5DCDA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - C2DD6C9517D54EE8170B01E7 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = C9A9B49B4C419054A03A217A /* Collocated.swift */; }; - C3346732134A7FF4E54A350E /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20B1410DBC821FBE25FF0338 /* AllTests.swift */; }; - C353812AD1FB72561FBEF9F0 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C30C6AF5ACDFF5254E06CAC6 /* EventHandler.cpp */; }; - C3AEC7DB466BF3A156CE31ED /* Convert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67DA500D7FCA7E4FCAAEBE8B /* Convert.mm */; }; - C3B4C1E3513CDFE981269530 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - C3FC196932AD70FF912918C2 /* Main.storyboard in Sources */ = {isa = PBXBuildFile; fileRef = F345F9DBACA2072E0A394485 /* Main.storyboard */; }; - C46DCDCC048DC9AA90572DED /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DA216EEEB74D482231E9424 /* SecureTransportTransceiverI.cpp */; }; - C4A9911E857795CC98245C08 /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0C651862FD101870CF346580 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C4C6B0C4FB541B81634C25EC /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 8E312FEE4E94C01795C8BBD9 /* Test.ice */; }; - C4D1211585C895BB820057C0 /* SecureTransportTransceiverI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DA216EEEB74D482231E9424 /* SecureTransportTransceiverI.cpp */; }; - C4FC8EAD023FB1FB5FA5F353 /* SystemdJournalI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 344C21FB7DF7176184125859 /* SystemdJournalI.cpp */; }; - C56FDA0CA4EF0501C54973D7 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - C584B5702105825549FB4F80 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - C5A09A75C25E6B7B97E82DDD /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 07A58E70155739B4065E5FFC /* Metrics.ice */; }; - C5F9F939CDCFF19348CEED27 /* Plugin.swift in Sources */ = {isa = PBXBuildFile; fileRef = F674217427A6BB4384E16370 /* Plugin.swift */; }; - C6670777D45B34F4F55383C8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBFF2AF509B1E71159DAECB0 /* Client.swift */; }; - C67E41468AFE0B965A90F29F /* main.swift in Sources */ = {isa = PBXBuildFile; fileRef = EC5A98A70A93BDFDEE865FFA /* main.swift */; }; - C6C52B22BD7BC8E9DAFC8FAE /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 28DF745A2D928C90F9F4419D /* Test.ice */; }; - C6F35C40C7CAD0C3F77FD4D2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1A0F1FD62421D88BD8F6E24 /* Server.swift */; }; - C6F569F44F1FFFF5EB05547E /* TraceUtil.mm in Sources */ = {isa = PBXBuildFile; fileRef = A076886379887427EF43CAB5 /* TraceUtil.mm */; }; - C6F645B973A0595EE324BCA1 /* IceProxyAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F4BB047ECA2C8C6E40017B49 /* IceProxyAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C70348CFD282CD7E9956F6B2 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - C70D891B4BEEE2ED25DD9FC0 /* PropertiesI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AEAEF19C75C1808D288CE761 /* PropertiesI.cpp */; }; - C732FF1B674435836AEA4266 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7EC92AF3F5FC050268FC433B /* AllTests.swift */; }; - C76FDB1D1DA0DA1D7C15C8B9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - C7B889058A1CE7DE22185681 /* Incoming.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 41551E09D595E50A24EF5892 /* Incoming.cpp */; }; - C7BBC8F2BA3013ECBEACB528 /* TwowaysAMI.swift in Sources */ = {isa = PBXBuildFile; fileRef = EE247C4C7515E78416734AE3 /* TwowaysAMI.swift */; }; - C7DBEF7E416349E035A919C5 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1683ABE87E8B25BC9C881B82 /* IceDiscovery.ice */; }; - C8430DD25DF281D70F6CCCFA /* InputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7226B2863E023A530714AEFD /* InputStream.swift */; }; - C8448ED4409CF9EBF0C49970 /* IceScope.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8D10DFF57F34E081EBF41AFF /* IceScope.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C8A271A6B9E2A3B373DEA321 /* IceOperations.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 950F3E962351FD9CFB2B4F24 /* IceOperations.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - C91DA74ACBFCAA2DB28D97D2 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = B33CD8E30BD014F5C4CA9222 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C95D74E612CD44A8E5E74803 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83F9EE39111E400F0CF2C17 /* Client.swift */; }; - C9842BC97C2C0889E4A153F3 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 474135D6386C100AE4286B3D /* Server.swift */; }; - C9CBD4B8E1EDB9F225E35A75 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - CA001DEF70908E891116A1B0 /* CommunicatorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAACEF4FECAF35BE85C20620 /* CommunicatorI.cpp */; }; - CA0CC7435D5114B8AB44F7F6 /* ACM.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F59158F7D5C392A0D1D7CE8 /* ACM.cpp */; }; - CA37756C70641135D69865CF /* ValueFactoryManagerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AB6A7BC8F66C9728566A553B /* ValueFactoryManagerI.cpp */; }; - CA68D62399ACFCB8817B64C5 /* CommunicatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9C991DFF2AAC0B41C6A1F408 /* CommunicatorI.swift */; }; - CA8BE400C1A388279ED6539C /* RequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7E2686345DB372E56936CAA9 /* RequestHandler.cpp */; }; - CB095ABCB85EA416200469FC /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 56AD8F95D9A540F5AD97E976 /* TestI.swift */; }; - CB21D6E2CFDC1DA5DFA706DB /* Exception.ice in Sources */ = {isa = PBXBuildFile; fileRef = A0D2E40EB5EB722B76219B03 /* Exception.ice */; }; - CB2687687AB5F910284C23CB /* Transceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5300396B18CE9C2FCA0A8E2F /* Transceiver.cpp */; }; - CB4DDB5C8CBC00891F4F6913 /* Buffer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6E18609323F580043357FC2C /* Buffer.cpp */; }; - CB6F1597E1BFF0463D10D0FC /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C0743CBF803A996FBBFE2C5 /* Blobject.swift */; }; - CB74367931EFE9E5362CA132 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = AFCD3E590B98FDDB60A31C5B /* Client.swift */; }; - CBB08BCE424AA196283AE1BB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - CBC4997044D30BC6B745F59C /* IceObjects.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 116A9F625EC4AC51F7044FFA /* IceObjects.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CBC9DC2609577E94AC193165 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B77BB5BC36ACDA87B6A69FF /* AllTests.swift */; }; - CBFE90C015F5938E006F7B51 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 44BC740D6506C3F1C8458122 /* Client.swift */; }; - CC0A1301E7FD1E4F851E58C7 /* Object.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95F4BB6C69D370E2E329C2E7 /* Object.cpp */; }; - CC62C41A43CDF7880146CA62 /* PropertiesAdmin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */; }; - CC817ADCD9DDC10A912EE45A /* Process.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2A65FC585E09C2A76B625463 /* Process.mm */; }; - CCC5479C72B8428C472A3F11 /* Glacier2.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E41A2284123652035B9626D /* Glacier2.framework */; }; - CCF0474FF11F73D43AD97785 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - CD0DB9D40B994E3361586193 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - CD1C57F0EB79D5859889637B /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = CAD340E5FDD75011A7A85118 /* Collocated.swift */; }; - CD1F9DFF380D7F1443D4FEF0 /* IceBinding.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 80FAAEBFCC3A3BCA918A1783 /* IceBinding.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CD710D8A5348968E403F003D /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - CD75B00F0A0905F76163A248 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - CD7938B5EBA8E41CE6BB84C0 /* IceProxy.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 9330809B9C47D804EF5BC5E3 /* IceProxy.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CDBB2803A82BE78292309065 /* certs in Resources */ = {isa = PBXBuildFile; fileRef = F52E3E551A8F8B3901BECC9B /* certs */; }; - CDD67A8982DBF28CA51F1F31 /* Key.ice in Sources */ = {isa = PBXBuildFile; fileRef = F48616BFFA819BAF3F8B2FB8 /* Key.ice */; }; - CE332DB5B59EF340DF237C87 /* IceRetry.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1B7B8369877501337E9D5211 /* IceRetry.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CE3A38CCDF2197E61C9E474D /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 5A1210D169DA5033BD26A6D9 /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CE927DA9106DD63E68BAF7C8 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = A3BB783984531DDB15DA995D /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CEB0D53A4A329405D2FF00FC /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - CEC11090BE9E6A05461EA506 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - CEC32138BC33E2696F3143BA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63B3CE5DAEFF4FCC9EC9707D /* Client.swift */; }; - CF21B01E38CB4A4001D47B3E /* RouterInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7AD3A474B7A1D069CCFC0AFF /* RouterInfo.cpp */; }; - CF2FE08D882509CAA6DD32B0 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 695139937807444B932DB3F3 /* UdpTransceiver.cpp */; }; - CF457D75AF0694811BDB3828 /* RouterF.ice in Sources */ = {isa = PBXBuildFile; fileRef = F790BD181E9C75D456202B50 /* RouterF.ice */; }; - CF514BFCB5FD644FC13CE4D7 /* SSLInfo.ice in Sources */ = {isa = PBXBuildFile; fileRef = 52675C01C923B38208A8C760 /* SSLInfo.ice */; }; - CF6AB1F9705D6C8677FF89CE /* IceGrid.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F8335B51360FAD4A3774DBDC /* IceGrid.framework */; }; - CF8B005366FF8F61870A8AE2 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B6927471763F231278861844 /* Server.swift */; }; - CF8B43B1EB3FF02ADD78BA43 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - CF98398C8D9504749631ADBE /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - CFA7149771E4E05F86CACAEC /* IceFacets.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 8188B41289F2C073375F3D48 /* IceFacets.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - CFFC7B30EF171CFF9B6DCC09 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - D007472094A8CCE6FC434CE8 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CABC46485C8349B0AD18EB39 /* Client.swift */; }; - D05452AB7F6E47B9704E8F2E /* InputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7A5C5A1DEA6B7BB5ABC8C7DA /* InputStream.cpp */; }; - D09BD849E9D7E5ED34430C35 /* IceImpl.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 42391EF6184A353552A00883 /* IceImpl.framework */; }; - D107F7D49FBB8D2A50E1CC8A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - D14A961DE90957A1DE3ECFB3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - D17F5D68F23CF1FA942D82A4 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - D18E260F1A9A7066AE2CC205 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - D19E0496C898E9B7697C0726 /* ProcessI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0AE9DC976389286FF16B21B0 /* ProcessI.swift */; }; - D1B49D38A4391950B9366FBA /* ServantLocatorI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */; }; - D1E1F1E6A16F7E1D1EFDC4A4 /* InputUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB0CC3A93C44880C5C9C63D8 /* InputUtil.cpp */; }; - D2485C66283CFD2F2C0E8250 /* PropertiesF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DAE2612261AFAD9F126ABB05 /* PropertiesF.cpp */; }; - D25FA1D4555B90AA8EA2CA6A /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 910BCA66868673D701E802CE /* Logger.swift */; }; - D278E7D277416C7F214529E1 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - D27FE379B6FA3B86DAB9C871 /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D3CBEB67344D577D334AFA7 /* Selector.cpp */; }; - D2AC08B5E7D7F5DA267CF8FB /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22EB15880754E559CBAD530E /* Client.swift */; }; - D2C7FB4EE14AC7C9771B8872 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = CABC46485C8349B0AD18EB39 /* Client.swift */; }; - D2C9176747A7C81A27C095D6 /* EndpointInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 398A19BC7513CD91E69E4025 /* EndpointInfo.cpp */; }; - D30EFAFE509B0F596DCB7C80 /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73E18D1ADAE4685486879439 /* OutputStream.cpp */; }; - D31863D4C2285EE26B4B5BF5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D406B3CFFDCECBDD678B23A /* Test.ice */; }; - D34E460845F60D96B659E1E9 /* Endpoint.h in Headers */ = {isa = PBXBuildFile; fileRef = B33CD8E30BD014F5C4CA9222 /* Endpoint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D3546FE15CF03316B5A91396 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1389F21CDF06949902AA2EA /* AllTests.swift */; }; - D3743F079C5AE339931CA1FD /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E47484D1D3DDA643748FDA4D /* Client.swift */; }; - D379195C8850680F7F9B72CE /* IceStorm.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */; }; - D3B3D1B2437C0DD09B6CEE9A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - D4344DFCF693191817C81A00 /* EndpointTypes.ice in Sources */ = {isa = PBXBuildFile; fileRef = 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */; }; - D46E7C646A1E8D77C6AE1F5D /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = B1E2C99A6DBB9132B74F4845 /* Client.swift */; }; - D47DEAD489D43174DEC9EAA7 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - D4C3F051368A99283CF157BD /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223354CEBDD25407EF26C216 /* SSLConnectionInfo.swift */; }; - D4DED64A5C28684FC11B9BBD /* Registry.ice in Sources */ = {isa = PBXBuildFile; fileRef = 4EE29237269F09AE7E678DB3 /* Registry.ice */; }; - D507F6AE61C100C49B391B8B /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9B8BE69409380DAA8F3C39DC /* ServerAMD.swift */; }; - D51E815892C6AB254E9A015B /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C012332733DA4296E9354F12 /* Router.ice */; }; - D572E08E607AF19F07ED7AAB /* SecureTransportCertificateI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F7449FB4230AD540975DB4BA /* SecureTransportCertificateI.cpp */; }; - D5765BB9B0FB122402F10B7C /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - D579E0158CD7C7A74B599CEF /* IceAdapterDeactivation.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 0F1198C1D619743981CCBB42 /* IceAdapterDeactivation.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D58D8E08552392999A098329 /* ObserverHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A46BEB423DACD76BF4A68A19 /* ObserverHelper.cpp */; }; - D5D15DD30033BEF6E843444D /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = 98A6F84D22ACDB0E77E825ED /* ServerPrivate.ice */; }; - D5EE45A18057938D31DF3CA9 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE1AA28CFE3208D7116FD69 /* NativePropertiesAdmin.swift */; }; - D5FD92490339073AB667D41E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - D643181C088F9CE93D88F13E /* CommunicatorF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C171909B3BA6EDB94DFE7617 /* CommunicatorF.cpp */; }; - D661B9213BD59B119EEF84EF /* ConnectionInfoF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18123528674C5DBEFE8DC183 /* ConnectionInfoF.cpp */; }; - D69293571C79142BD4644BFF /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1D406B3CFFDCECBDD678B23A /* Test.ice */; }; - D69426083BBC072A41B12214 /* PropertiesAdmin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E45A803280C9975C7D2D5B6 /* PropertiesAdmin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D6A7CE6063A9BE0B0C82D0EA /* LoggerUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 145ACBB9D8EC5ABDF5109CD9 /* LoggerUtil.cpp */; }; - D6B688373BBC43036B7FE9AF /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - D6CB4E18B0388D30588C0469 /* RemoteLogger.ice in Sources */ = {isa = PBXBuildFile; fileRef = CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */; }; - D72E35AE8C558E7BC749F191 /* UdpTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 695139937807444B932DB3F3 /* UdpTransceiver.cpp */; }; - D76AF5DF6713A46A3F5713E9 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C30C6AF5ACDFF5254E06CAC6 /* EventHandler.cpp */; }; - D788154F37EAF6DC77E8A713 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - D7B0002B1C68D0E52E8FAFEE /* ImplicitContextI.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDC1C3A7852A6CED90889B91 /* ImplicitContextI.swift */; }; - D88E1EF1901912C9F5A60E3C /* Process.h in Headers */ = {isa = PBXBuildFile; fileRef = CF258BC66CA2B0FD8CAE93F4 /* Process.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D90123A4143E72D3ECDE112D /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B81F0D55617DE7F0F891F6 /* Properties.swift */; }; - D9345ED4DE66A2BAA85CA059 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = F8335B51360FAD4A3774DBDC /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D93E9CE5FA4075E4129F5FFA /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5085715D52B4CB7BA1DD1F9E /* AllTests.swift */; }; - D98DDBE334D3B4A22B0E7877 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D78BFDA010F774B68B1D0943 /* IceSlicingObjectsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - D9C3898B35154D67070B59B6 /* Properties.swift in Sources */ = {isa = PBXBuildFile; fileRef = 79B81F0D55617DE7F0F891F6 /* Properties.swift */; }; - DA322673C2069A47E32B6574 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A577A9FBA08AE185D53C990 /* TestI.swift */; }; - DA8014084036AD0878EFE6B4 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - DACF76C855E14513876EE388 /* BatchOneways.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FEE34A113E3DC71D9DB8450 /* BatchOneways.swift */; }; - DB0B6ACB09E3F07029CCD0D6 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0C14F40BEFB46405B9613959 /* Client.swift */; }; - DB3C3EE5FE1AAA6E08A2EFF7 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C1AF990F79450A9C081DB784 /* libIceLocatorDiscovery C++11 iOS.a */; }; - DB5DD8C88730E98BC04AABDA /* OperationMode.ice in Sources */ = {isa = PBXBuildFile; fileRef = F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */; }; - DB695550603F9C75775666F4 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 32C784477F9A73A13FD21C65 /* Server.swift */; }; - DB7366CED937744025502032 /* Clash.ice in Sources */ = {isa = PBXBuildFile; fileRef = DCD2DF2F490C333AFC34E403 /* Clash.ice */; }; - DB91D7BC5E5818F7E8F40859 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - DBD1FF2867013D1CF374444E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - DBE9BB62EAF3D24495F2C24B /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 694A7AEF1BC68DE001EACE83 /* Metrics.ice */; }; - DBF476418CD0E189A1673811 /* FacetMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 15530AE76DACDC2FD0C54C11 /* FacetMap.swift */; }; - DC030D1A25ADC2A17F7AC392 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - DC55B4A0C94773A803F89A57 /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = 86B4DBD2E99AD2E1D9D13F26 /* Router.ice */; }; - DC65D9C12980318991DC0B67 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - DD2CC01F50A9FD8A0B59AE76 /* Version.ice in Sources */ = {isa = PBXBuildFile; fileRef = B7D9D973870D744362BE6CD5 /* Version.ice */; }; - DD91BDBDF304B914DD0AE38E /* PropertiesAdminI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40EB3E43A832B13BDE8D4720 /* PropertiesAdminI.cpp */; }; - DDBC1A2ECE67BCE6A3AB284C /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */ = {isa = PBXBuildFile; fileRef = BDC9CA0C36333F0F3089E6C1 /* libIceLocatorDiscovery C++11 macOS.a */; }; - DDDA7CC0304D7D1174EAFD93 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAEED543910AAE7DB26F2B2E /* Server.swift */; }; - DDEF658C0972A36DDD721FF0 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = B538A5094459696C1D929F20 /* Test.ice */; }; - DDF330BBC0C728B5BAEF0159 /* SliceFlags.swift in Sources */ = {isa = PBXBuildFile; fileRef = A594F0C1849CEE5DE3E665BC /* SliceFlags.swift */; }; - DE11B8B721005376E35AEB71 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - DE33309388A2D6D35E0D00C9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8748EAC5BFE5A97A4085F0DB /* Client.swift */; }; - DE39A43B950347837A88F697 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3CCDC8C722C7D08EBC696FC /* TestI.swift */; }; - DE86DF521D0A29EA2B0095BC /* InstrumentationF.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6229E6CA09F91C68DAB3EBD2 /* InstrumentationF.cpp */; }; - DE94840EAE0950C8BA79F949 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - DE96CD226BEB221D08CA1C20 /* Endpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01EC749BC2A7D4FCA7490B47 /* Endpoint.cpp */; }; - DECC2A6910E64F875FD34570 /* Reference.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C56F9DD18C4DA39D6933343C /* Reference.cpp */; }; - DF00731D06ECAE6719AD64C0 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3C699CA6ACD42014E3492D1 /* ObjectAdapter.mm */; }; - DF2C78175D84FDBC8C8315A2 /* Instrumentation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4A1629C3A24F66265F742150 /* Instrumentation.swift */; }; - DF5AF2DB0CD91E715F08042F /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - DF658B608E89DC95748E9022 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - DF94FB33F38943155FBEB05A /* IceSSLConfiguration.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 1CCF2A334B2BAF9588A6DB42 /* IceSSLConfiguration.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - DFDB5511012AC679182BDDB0 /* Communicator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFE26B6B169CD5B24ED29BB6 /* Communicator.cpp */; }; - DFE644290C720C34A146AAEC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - E02F6DDDD2ED9F8653D657CE /* IceOptional.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 30561094206DE7E5EB3B1E5B /* IceOptional.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - E046306C3015C877A3BE9084 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - E16774B99E16AD2190AB35F9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - E19DFBCAD181CF1C79CF3383 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - E1AB202BFCF1D5BB293C3560 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - E1C3660C58AA23A810E6A3CF /* PluginI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F4F40F40EF79D1EFF0672F1C /* PluginI.cpp */; }; - E1D2F7A064F903818BC5C81B /* OutputStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 73E18D1ADAE4685486879439 /* OutputStream.cpp */; }; - E1E71D2982C42BEA77D98F1B /* IconvStringConverter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E880F031CD68893D2F69EFB /* IconvStringConverter.cpp */; }; - E1F5AF99B627FEC2E8714A88 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - E20F5B09EF5C04746A4E87C0 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6328AE24A94F7B78F7B70026 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; - E224BC34CEE9B97DA6446042 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64802AF97D0C116399E87B38 /* TestAMDI.swift */; }; - E22DCE56F23EF9759DCEADB3 /* CollocatedRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 50D65B51261AD566166DB14B /* CollocatedRequestHandler.cpp */; }; - E2713AC292F225DC79A9B3E2 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - E2A512A72F8C1F3A55044BD3 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = A90D21866BAE0181F737C83C /* Logger.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E3455A6C3076D0EA2F0D4B3C /* ImplicitContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = 71DC04F4318C243C54C6708F /* ImplicitContext.swift */; }; - E3FAC91AC3A221C72A12F062 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - E437D41C66B9C6EC28D6503A /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3B0B441C377169B54CEB0DC /* AllTests.swift */; }; - E49A789A85D80DC904BE4D72 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = D67D8A64DA92416D5A34F56F /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; - E51AA40B2A63B7E6D2EB463C /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - E53053B6B36580F1FACF54E6 /* IceGrid.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = B17547CF25F9F6D499E59F4A /* IceGrid.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - E5370113AA58E064333184A2 /* TraceUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E301CB7A257886B9F8760B6A /* TraceUtil.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E56A2B5D84CF0D1438D587E6 /* ImplicitContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 680CE9BA4A204FA3FAC93375 /* ImplicitContext.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E5C6B5AED56F9BC934CC4DC7 /* ThreadException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAD58C233C507C35334F1CC6 /* ThreadException.cpp */; }; - E5E608DF1CF09D64C7F7569D /* SecureTransportUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04ACFF850FB52C42D1D0256D /* SecureTransportUtil.cpp */; }; - E5F6FEF06ABA37D0A16EF93E /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEAB4A7EE835A05B2C8DBB4 /* TraceLevels.cpp */; }; - E6034BDF230D6B0B34DABAEA /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - E61AF76EF66344DE9F88AE5C /* Value.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83AFD09B0973C33E42BBA73 /* Value.swift */; }; - E65A12912D5C10F7A5F78A49 /* Blobject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C0743CBF803A996FBBFE2C5 /* Blobject.swift */; }; - E684A9254F746D25D8F52B8A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - E686E59B93F9BECF552301B3 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBFF2AF509B1E71159DAECB0 /* Client.swift */; }; - E6CADC0AEA94CB6E36899759 /* IceImpl.framework in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = DA48BF39278DC0F70FC216F1 /* IceImpl.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - E6DFEA695019BC4C971BF870 /* Communicator.mm in Sources */ = {isa = PBXBuildFile; fileRef = 627B9BCC0B4AD0B6A1F666D2 /* Communicator.mm */; }; - E7A19DC3180379FAE502829C /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FB36E85F6FA876D88996239 /* AllTests.swift */; }; - E7AE9FD4848A0DEA84955812 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - E7D9D3C909593D23FA8FDA7A /* ServantLocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C216F290E9890052BC928A0 /* ServantLocator.cpp */; }; - E7E9C572C7C05E0813EF78C5 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 47144CDB90451B47BF3BCB58 /* Test.ice */; }; - E7F0C5863C240F0C61C792D5 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BAEED543910AAE7DB26F2B2E /* Server.swift */; }; - E80F03AADD7FDE54CBD7DCC2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - E816790986F5BE0A937C0475 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1BB1E5488617EE9721803F5E /* Server.swift */; }; - E83D2828AA7D25CB5987291E /* LocalExceptionFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9947265006AE43D802120A4E /* LocalExceptionFactory.swift */; }; - E8655F3D94350A7F0C8A7E62 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6DE756B8F16EAC3E04B2798 /* TestI.swift */; }; - E8ECF125C99587AA89A85E87 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A2D266EA2336769024DD2B4 /* TestI.swift */; }; - E8FACC1133C8E173A929F831 /* ConnectorI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6AE2E85C3FD16B73660AEE0A /* ConnectorI.cpp */; }; - E909DDEDE3DF9BAE2ED525AB /* ClassResolver.swift in Sources */ = {isa = PBXBuildFile; fileRef = E4CF2077C814A7377DDEE06A /* ClassResolver.swift */; }; - E96D9D0E119CF23373C46695 /* IceStorm.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5B2DF10CBEFF10D1055C9690 /* IceStorm.ice */; }; - E97138E0D1B93F302A064640 /* Identity.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1E052D5C173FB6BC71D76D94 /* Identity.ice */; }; - E9D4065FB98B8BA5D1CF4CF2 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - EA2E235B053E55B0E4177494 /* IceStormSwift.h in Headers */ = {isa = PBXBuildFile; fileRef = C08D8DDDF0EA2D26B0BC84AF /* IceStormSwift.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EA34FB21DA849348CC580D41 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4D2DBA835FDF24BF6450F945 /* ServerAMD.swift */; }; - EA55DBA8AB62EF9298A3B767 /* WSEndpoint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 136C9F1CB0181AA674220B28 /* WSEndpoint.cpp */; }; - EB41A9285C877C256F1A70B3 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - EB7415FC08516D8085425448 /* Metrics.ice in Sources */ = {isa = PBXBuildFile; fileRef = 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */; }; - EB86EAE346B18FD1386478AF /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6A3AF2E27A291665E3020008 /* ServerAMD.swift */; }; - EBAA5849483697AE5E16232A /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B930854633BDF8CF5FFE22C /* TestAMDI.swift */; }; - EBBFB1974A4E613A90B1324C /* Process.ice in Sources */ = {isa = PBXBuildFile; fileRef = C57D6F7125325B748CB60975 /* Process.ice */; }; - EBC02991D3AAB52FE34867D2 /* ImplicitContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2FB7753A8D2686CAE06B2CE4 /* ImplicitContext.mm */; }; - EBDA6DF9FFD8DA98E922E042 /* Convert.h in Headers */ = {isa = PBXBuildFile; fileRef = 6328AE24A94F7B78F7B70026 /* Convert.h */; settings = {ATTRIBUTES = (Private, ); }; }; - EBDC44BBA0C2C638C4FDE665 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7AA4D36E0018BED4FBB96979 /* Server.swift */; }; - EBDEE2AC104C7DDFD21B5349 /* ImplicitContextI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D9AB56DEA09A30139787C127 /* ImplicitContextI.cpp */; }; - EBF0FFBC4582779DAE204736 /* SliceEscape.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = E2FA87620B046FCEDC51EC6F /* SliceEscape.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - EC177206816100D056A7C635 /* InitializationData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3BDD0F141EA94FBF630E95CA /* InitializationData.swift */; }; - EC62E2D762C81829674F1635 /* Exception.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4419CDC00A0E26DD43BE74BD /* Exception.mm */; }; - ECD6E46B065E370B3598C98D /* SSLEngine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 89DACACD2C1AD4F3469CA088 /* SSLEngine.cpp */; }; - ECDCC511C2F7E5E99513C31F /* Admin.ice in Sources */ = {isa = PBXBuildFile; fileRef = 42A2439DC6CA50093CA51089 /* Admin.ice */; }; - ED6DD03F123C10F752D7CBBE /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = A9732906011677017B8FE8A9 /* ServerAMD.swift */; }; - ED7BC22AAA04977B3356C7EB /* Selector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D3CBEB67344D577D334AFA7 /* Selector.cpp */; }; - ED868AC52D578FE5E1E32A0E /* TraceLevels.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEAB4A7EE835A05B2C8DBB4 /* TraceLevels.cpp */; }; - EDAEC3B6C7BC3E68C9177631 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = B73411F554849A6348D021C0 /* Server.swift */; }; - EDC726E5116DF79B42E10724 /* Current.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0E218220353976A1D5C07CF1 /* Current.swift */; }; - EE0C58EBA222F0AA0F4C23DD /* IceInterceptor.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 030DE03918D9D61428E52F76 /* IceInterceptor.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - EE54595EDB60291258E1A374 /* ConnectRequestHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B51E89BDF16FF1D23C5FFD2F /* ConnectRequestHandler.cpp */; }; - EE6E78F71645C9163AAC6720 /* ObjectAdapterI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 336BA488F873C8ED6AC70009 /* ObjectAdapterI.swift */; }; - EE92D40F019F418F57F47E97 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - EEA5EE91CC45E766332B8FFD /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE0FC793581C11E605079EEC /* Server.swift */; }; - EEE99D5CCFD33EEF81868AB1 /* LocatorF.ice in Sources */ = {isa = PBXBuildFile; fileRef = B15F39FC8689FC1FCB89F477 /* LocatorF.ice */; }; - EEE9A2E49EC97E210B2B02E1 /* DefaultsAndOverrides.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B33C3DAC38D7CB012602F1D5 /* DefaultsAndOverrides.cpp */; }; - EEEE55D167009E5B52017EB7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; }; - EF8B25A4769EC04362C4D559 /* Forward.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9E63A9A57CB0A4F537AA9E84 /* Forward.ice */; }; - EFE3FDFFCC689FB65371BC90 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2F8371C545BE433208E8DD7 /* Client.swift */; }; - F05CAE7A600D66FEFEB492FF /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - F0676320A167101DC1E431E9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - F09310D12E519AE60924BCD6 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E90B07958C12B403F8FF0C /* Collocated.swift */; }; - F0BFE69F3E6EB11FF6C9A215 /* ProtocolInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D93BB1CEE95D6DBD647C1F66 /* ProtocolInstance.cpp */; }; - F0C7200AE0CEB8E3DD71036C /* SlicedData.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EDBFE1FE5EDAEEC44CD547C8 /* SlicedData.cpp */; }; - F0CEA2E719B332639087A122 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 390FE2A8AA85FA1F066DB95F /* TestI.swift */; }; - F11C89DE74F84A7D67BBEE11 /* LoggerWrapperI.h in Headers */ = {isa = PBXBuildFile; fileRef = D67D8A64DA92416D5A34F56F /* LoggerWrapperI.h */; settings = {ATTRIBUTES = (Private, ); }; }; - F14D90500BF758A100DF4918 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27DB5A110EBA9310691BDEFB /* RFC2253.cpp */; }; - F1719AF12FB78B7049AA9FD0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - F194CDBC2AF32E45AA04AB45 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1B6EF30F36318A639D638152 /* Test.ice */; }; - F1C6CF21D2E9B6AF66BA47FA /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = D2951989E4ED79DB5A5BD840 /* Client.swift */; }; - F1D6D8065192F452067CB422 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 6D4683E4EEA3C7003504AE96 /* Test.ice */; }; - F1E6365515003844B72F5FAD /* Notifications.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8DE17663D635E9A4C17FAF76 /* Notifications.mm */; }; - F236DA1A4D2B575460EE9CEF /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FCD89BFC87D0D93ADD625C0 /* TestI.swift */; }; - F2427061CF69C098C78D2C90 /* SysLoggerI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BFCBA8D98D4B3EE825A33F52 /* SysLoggerI.cpp */; }; - F27F39F7B04DE92D90D5CB28 /* ValueFactory.swift in Sources */ = {isa = PBXBuildFile; fileRef = E3EA671155BA0EAA870D5F9A /* ValueFactory.swift */; }; - F28792F31B175D0C5EFA9340 /* StreamTransceiver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 230B98F91F974374C839BF91 /* StreamTransceiver.cpp */; }; - F2B44C5B98EB645ABE40C16A /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 945016AEA0FC7438D19E19B1 /* Client.swift */; }; - F2CC30135189BB8CCEFAE021 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - F2F60590B4B53220278EE1EF /* ServantManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 950579F4E8C4DFF646EF3C51 /* ServantManager.cpp */; }; - F328CF7B99163CF43D402BCF /* IceStream.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 7C57A532F569AC857B5BAC2E /* IceStream.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F38172BEB03F49344B3FA4B7 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - F38E57C85B29C7AD0CA293E5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - F39E0F5A881ED716D5FFA86A /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; }; - F3F5E8F7A92DF0ED4C887F9A /* ObjectAdapter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B678F2298413760C49C183ED /* ObjectAdapter.cpp */; }; - F417584E7188CC80E8E277D6 /* Test.ice in Sources */ = {isa = PBXBuildFile; fileRef = 9A65923D521C078DCDBABA31 /* Test.ice */; }; - F4620828FEF5F90B32A5800F /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - F46D013DDA2E66DD86E2FB4B /* ValueFactoryManagerI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84BCFC47EF30B1DDA82EB275 /* ValueFactoryManagerI.swift */; }; - F4A4322B62B6CD345E5DB879 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A83C77E4B0D0283CA18020F /* AllTests.swift */; }; - F5519272B5FF97DA83D66E80 /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74C4E15A84E6E19C4F7072FE /* TestI.swift */; }; - F557430C1BB366EE08B0B77C /* DynamicLibrary.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C004314E294893A903BC059 /* DynamicLibrary.cpp */; }; - F5D528CD0959ED8FBE47D801 /* TestAMDI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4344142A2FC9DF9B5722AFD5 /* TestAMDI.swift */; }; - F5F6DE14CAD57D389D28AA0F /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ECA877329DEF57B54A08C55 /* ConnectionInfo.cpp */; }; - F60805692BF75F063F8788CA /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - F60EB885BE59E46B98CCC18D /* IceUdp.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = 03DCA74ACCAE41A0ADDF52A1 /* IceUdp.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - F633A9D43A323F931BCC899B /* TestI.swift in Sources */ = {isa = PBXBuildFile; fileRef = 16484C090CFD38F73675B0C6 /* TestI.swift */; }; - F63F8F55A184BAAE3C16D5BB /* Router.ice in Sources */ = {isa = PBXBuildFile; fileRef = C012332733DA4296E9354F12 /* Router.ice */; }; - F6F9A7163D5CB24FBE765E4E /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8857A465B5A01F88B674B7C8 /* Client.swift */; }; - F71B7394848C334C4FC51BFA /* ProtocolPluginFacade.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68D9BDAF960BA51A8BF52198 /* ProtocolPluginFacade.cpp */; }; - F75002F0E849D90CB8567BA2 /* Endpoint.mm in Sources */ = {isa = PBXBuildFile; fileRef = 724C0E53DAF83BB50C3912A4 /* Endpoint.mm */; }; - F7C188B7CAD692A761D796E8 /* SliceInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D253A2160FCD5C0E019B003 /* SliceInfo.swift */; }; - F7E8D1A74667461F322D5563 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1A0F1FD62421D88BD8F6E24 /* Server.swift */; }; - F7E9924F2C30B7BDCE908009 /* IceDiscovery.ice in Sources */ = {isa = PBXBuildFile; fileRef = 1683ABE87E8B25BC9C881B82 /* IceDiscovery.ice */; }; - F802821B381C10DE143B1174 /* ServerAMD.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7806EDFB543369686343312B /* ServerAMD.swift */; }; - F8576A7571826929C57CC91E /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - F879712854758F853F1BCA29 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */; }; - F891F1E74DA88E56DA8E50C4 /* ArgVector.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 92A86220A97A6EB0CBFC944D /* ArgVector.cpp */; }; - F8B1A0BEF3AB75B1B3B5B0CE /* OpaqueEndpointI.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 02BEC5D52B98E16486723B15 /* OpaqueEndpointI.cpp */; }; - F8B4CFF46EC035E9DC16D409 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - F8D058617878D4D9B3E25EDB /* Plugin.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF74B405592DF882FC711C4F /* Plugin.cpp */; }; - F90D8D9879F4143CF8A98257 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - F915629B1F571DFC1A3DC899 /* FileParser.ice in Sources */ = {isa = PBXBuildFile; fileRef = 5CB34604AACBE72A2D272966 /* FileParser.ice */; }; - F91B098208997F1EB1299E70 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B77BB5BC36ACDA87B6A69FF /* AllTests.swift */; }; - F930B86AD80EF1CF48C47AB9 /* Client.swift in Sources */ = {isa = PBXBuildFile; fileRef = A83F9EE39111E400F0CF2C17 /* Client.swift */; }; - F953B719B8FD5471D8BE983A /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - F968F0B69C9A21BDF84CEA63 /* RFC2253.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 27DB5A110EBA9310691BDEFB /* RFC2253.cpp */; }; - F97B740AC442AC4B0D143E62 /* IncomingAsync.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3637F3FA49D41442776DFDA3 /* IncomingAsync.cpp */; }; - F9A678E0D8142B0EAAF58818 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */; }; - F9F79CFA380A6BD76F0256F5 /* PropertyDict.ice in Sources */ = {isa = PBXBuildFile; fileRef = 54B51F429E8B56A715B61412 /* PropertyDict.ice */; }; - FA136CDF6745B64905666CB8 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - FA7EA0C86DB3A74ED62C29DC /* Properties.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7C5527D47B4AA93DCBF5B076 /* Properties.mm */; }; - FAE56358026884E7BD7AD702 /* Collocated.swift in Sources */ = {isa = PBXBuildFile; fileRef = 829AECC82389A2F5E05C2960 /* Collocated.swift */; }; - FAE6CDC113ECDCB7CA9E1377 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - FAF775CD4CC584724B6E4BFC /* LocalObject.swift in Sources */ = {isa = PBXBuildFile; fileRef = 28BB763CB891D9E198CB4E13 /* LocalObject.swift */; }; - FB17C62388DE6EC5CB5A056D /* IceOperationsAMD.bundle in Copy Frameworks */ = {isa = PBXBuildFile; fileRef = D9B018EB339EB9B238FEA4EC /* IceOperationsAMD.bundle */; settings = {ATTRIBUTES = (CodeSignOnCopy, ); }; }; - FB4AE4F1A6430ECE8CAD317F /* OutputStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7FEE9254105C73243B44FFE6 /* OutputStream.swift */; }; - FB530E3D167CA5BCDBE9BEC2 /* Endpoint.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86A893065E7D543BCF41F626 /* Endpoint.swift */; }; - FB5F2BF62D1A09A6073D031F /* ConnectionInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3ECA877329DEF57B54A08C55 /* ConnectionInfo.cpp */; }; - FB763296FEBB3F746AEF08A0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - FB826A2836E1BBE93F404820 /* AllTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5085715D52B4CB7BA1DD1F9E /* AllTests.swift */; }; - FB9F6BB94D193143D0B5E2C6 /* LocatorInfo.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A2308C88106E21E86B64770B /* LocatorInfo.cpp */; }; - FBB16729EB0F5F7BA5415885 /* Server.swift in Sources */ = {isa = PBXBuildFile; fileRef = 933DB0C83248BF059A7F1C20 /* Server.swift */; }; - FBD93475BF07B36B2DB91701 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24DEF718003A036A8518D89B /* Foundation.framework */; }; - FBF6416D19F7C22FC7C11A7A /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - FC155853488B9A0F41E99EFD /* Communicator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9EF15FCC42E00687BF6F16DE /* Communicator.swift */; }; - FC61278C365AAC5B5EB0996B /* ConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 738DC08C9436E513AAF5205F /* ConnectionFactory.cpp */; }; - FC789C6064EEFAC62846CF10 /* ServerPrivate.ice in Sources */ = {isa = PBXBuildFile; fileRef = EEAE2A3EA52301D744C2238C /* ServerPrivate.ice */; }; - FC7AF2821E75D1B3C11E0EA9 /* TestCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; }; - FC92FCA370E4FBCA8079ABD1 /* ObjectAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = A3C699CA6ACD42014E3492D1 /* ObjectAdapter.mm */; }; - FCF032C01B28F823A151F4AE /* Logger.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7CC8B0D3189E1EC893F9D4E0 /* Logger.mm */; }; - FD25A7D0C72352EA667FFC58 /* PromiseKit.xcframework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */; }; - FDA9DE94F10FC4107F22FAB9 /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - FDDC5812A0681FC18860451D /* Ice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; }; - FE12E1E0B0C51F3449556B9F /* SSLConnectionInfo.swift in Sources */ = {isa = PBXBuildFile; fileRef = 223354CEBDD25407EF26C216 /* SSLConnectionInfo.swift */; }; - FE4887740E46F96A432B6F75 /* NativePropertiesAdmin.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEE1AA28CFE3208D7116FD69 /* NativePropertiesAdmin.swift */; }; - FF341543F93F0A39F6D7EB65 /* PermissionsVerifier.ice in Sources */ = {isa = PBXBuildFile; fileRef = D091865931D88D93A031BF38 /* PermissionsVerifier.ice */; }; + 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 */ - 01108756FB1E50B366DCC087 /* PBXBuildRule */ = { + 04DD2A095C30642B8CC50942 /* 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/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/ami/Test.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/ami/*.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"; }; - 0224EEAD62D710B0CCFD076E /* PBXBuildRule */ = { + 0551E50A64EA50DF215E7B90 /* 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/ami/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/ami/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.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"; }; - 026B9995488EA94AC1BEB784 /* PBXBuildRule */ = { + 077C827730D516B87FCE7C69 /* 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/info/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/adapterDeactivation/Test.ice, + test/Ice/info/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/adapterDeactivation/*.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"; }; - 0427B4908F72AEECF55F409E /* PBXBuildRule */ = { + 095881B07F194A8C319DABAE /* 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/defaultValue/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/defaultValue/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/services/*.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"; }; - 052542FF38B26A85BA0EA4CC /* PBXBuildRule */ = { + 0B74A63CFEF7DC7B73AFDB43 /* 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/invoke/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/facets/Test.ice, + test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/facets/*.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"; }; - 10ED1FBB2458AE18FF84A3CF /* PBXBuildRule */ = { + 0D054AEC1F4A7E0B48A26195 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/objects/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceLocatorDiscovery/*.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, + "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/objects/*.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"; }; - 19CAC30D305C213455F0B913 /* PBXBuildRule */ = { + 0DD9AD4A7BD828C8FD11AB79 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -1589,670 +1588,700 @@ 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"; }; - 1D1CE901804E6FEB2E40314F /* PBXBuildRule */ = { + 14B388FC673F3EA219B586B4 /* 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/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/ami/Test.ice, + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/ami/*.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"; }; - 1EFAC4D5CFA3C5E69B7EBAE1 /* PBXBuildRule */ = { + 156C7100B7FBB44163EE0002 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/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 = "Slice Compiler for Ice/*.ice"; + name = "Slice Compiler for test/Ice/proxy/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Ice_$(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/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"; + 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"; }; - 1F899B47510EE1AF93E55F0B /* PBXBuildRule */ = { + 19382B6CA1842F4A00577156 /* 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/invoke/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/invoke/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - 1FE230AEDB37ADA5C1A5F0B2 /* PBXBuildRule */ = { + 1A67DD863C56824D6E2006C6 /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/interceptor/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/interceptor/*.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"; }; - 21338767AF02AA9557A7E132 /* PBXBuildRule */ = { + 1AACFC0222397DAB936D6C48 /* 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/timeout/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceStorm/IceStorm.ice", - "$SRCROOT/../slice/IceStorm/Metrics.ice", + test/Ice/timeout/Test.ice, ); isEditable = 1; - name = "Slice Compiler for IceStorm/*.ice"; + name = "Slice Compiler for test/Ice/timeout/*.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"; }; - 21640CB1591AF046394D5538 /* PBXBuildRule */ = { + 1B80CF27C9EDFA2D30FC4E48 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/stream/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; + filePatterns = "*/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/stream/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/stream/*.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"; }; - 2B5499CC882C269A50E4E91D /* PBXBuildRule */ = { + 1E983DE40B938FAE71CA7E93 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/servantLocator/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Glacier2/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.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 = "Slice Compiler for test/Ice/servantLocator/*.ice"; + name = "Slice Compiler for Glacier2/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(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\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/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"; }; - 2C47615478A63B89451FB3F0 /* PBXBuildRule */ = { + 1FFB7E77246CEEA7A9792AA1 /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultValue/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultValue/*.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"; }; - 2F333406D1D89EE25A9F5B70 /* PBXBuildRule */ = { + 206099BF9F8FCBCA2E0A413E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/TestCommon/*.ice"; + filePatterns = "*/test/Ice/udp/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestCommon/*.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"; }; - 301928FC4CFCE81BF608587F /* PBXBuildRule */ = { + 231EAF2E19204F70B23BF53F /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/inheritance/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/inheritance/*.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"; }; - 33B7EDB3C15FBDFF0E972DB9 /* PBXBuildRule */ = { + 24F2F01F8EEF2C4CB373FCC8 /* 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/hold/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/location/Test.ice, + test/Ice/hold/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/location/*.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"; }; - 37CA4220287721CCCA94A7B6 /* PBXBuildRule */ = { + 28D5EA1A1AA306E86C6AD163 /* 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/enums/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/location/Test.ice, + test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/location/*.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"; }; - 3B52119A5101E7960F4CF13E /* PBXBuildRule */ = { + 2CFED10F8D5236F9A148CD79 /* 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/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/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/servantLocator/*.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"; }; - 3C763D5640D0A71C8F9B65E4 /* PBXBuildRule */ = { + 30B5A14F5CA24A6F0DF27B48 /* 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/stream/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.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"; }; - 3FF30051062A719E638A7675 /* PBXBuildRule */ = { + 3582947254C6A89F45090F31 /* 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/timeout/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/info/Test.ice, + test/Ice/timeout/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/info/*.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"; }; - 406E2DEE7A5B133E3F08662B /* PBXBuildRule */ = { + 372D520C7C298EADCE492969 /* 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/hold/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/udp/Test.ice, + test/Ice/hold/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/udp/*.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"; }; - 4358EAC2A49AE9F92DC76B93 /* 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"; }; - 44DA8E8D55F55A34DC55CB39 /* PBXBuildRule */ = { + 3AE97D276ED0B4BFE3E8DBCC /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/invoke/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceGrid_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceGrid/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/invoke/Test.ice, + "$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/invoke/*.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"; }; - 4CD8EBACCF0E243B2EDF4C62 /* PBXBuildRule */ = { + 3BD71B5D8FE7BB861E7735DA /* 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/defaultValue/*.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/defaultValue/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.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"; }; - 4CEF5C0E326A4206091A6352 /* PBXBuildRule */ = { + 3DBFD7E2771A196AFF654CED /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Slice/escape/*.ice"; + filePatterns = "*/test/IceSSL/configuration/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Slice/escape/Clash.ice, - test/Slice/escape/Key.ice, + test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Slice/escape/*.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"; }; - 4F03E75BE283ADAFDDBB4294 /* PBXBuildRule */ = { + 3E20CDB335D45B24AAB78033 /* 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/services/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/inheritance/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/inheritance/*.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"; }; - 4F3B138BAE515ABBE84D61DD /* PBXBuildRule */ = { + 4482E372EED1C565C507D1FC /* 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/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/retry/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/retry/*.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"; }; - 4FC7968C899EC22E4BBC47F3 /* PBXBuildRule */ = { + 463E0A8328D24FF7AB6A70CA /* 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/enums/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/stream/Test.ice, + test/Ice/enums/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/stream/*.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"; }; - 5320F784202E4F95402C9409 /* PBXBuildRule */ = { + 4AC3702FD99D567A5A0C68EE /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/acm/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/acm/*.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"; }; - 554DC98EDF23F1B66C7CFB63 /* PBXBuildRule */ = { + 4C438A06989C337A19D68472 /* 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/slicing/objects/*.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/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 Glacier2/*.ice"; + name = "Slice Compiler for test/Ice/slicing/objects/*.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"; }; - 628D091CE6EF08872EB297E0 /* PBXBuildRule */ = { + 55FEE57C03D6A35EA220FDDD /* 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)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/interceptor/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", + test/Ice/interceptor/Test.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for IceDiscovery/*.ice"; + name = "Slice Compiler for test/Ice/interceptor/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceDiscovery/$(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/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\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"; }; - 63596B300BE41853DB663025 /* PBXBuildRule */ = { + 5783A48558F7B1883496DAAB /* 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/interceptor/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/adapterDeactivation/Test.ice, + test/Ice/interceptor/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/adapterDeactivation/*.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"; }; - 6A03A3B0C7B45FD91C4332FB /* PBXBuildRule */ = { + 5A461C2302DD2A6FD65D6113 /* 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/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.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/Ice/exceptions/*.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"; }; - 7181270112EF55C7A473FB8F /* PBXBuildRule */ = { + 5A9F1424ADE0E67F377B0CE5 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/servantLocator/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Glacier2_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Glacier2/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.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 = "Slice Compiler for test/Ice/servantLocator/*.ice"; + name = "Slice Compiler for Glacier2/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(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\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/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"; }; - 724A1BB4823A83846068F51A /* PBXBuildRule */ = { + 5D73B5413A7BCE0557AE9728 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; - filePatterns = "*/IceLocatorDiscovery/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/properties/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", ); isEditable = 1; - name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice"; + name = "Slice Compiler for test/Ice/properties/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(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/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"; + 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"; }; - 72D07EB438872CE2049E98D0 /* PBXBuildRule */ = { + 5F25180EEEA0D443EA83236C /* 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/defaultServant/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/exceptions/Test.ice, - test/Ice/exceptions/TestAMD.ice, + test/Ice/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/exceptions/*.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"; }; - 75059FD2BD70071EDBB2FBC2 /* PBXBuildRule */ = { + 6133AC6D17A3CADA95DE2E9E /* 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/binding/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/binding/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - 76CBBEA49BAC56302A0429EA /* PBXBuildRule */ = { + 67FE13D3766F926A7579EC1E /* 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/inheritance/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/TestAMD.ice, + test/Ice/inheritance/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/operations/*.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"; }; - 7C3C53A9A4E138E38DA558E2 /* PBXBuildRule */ = { + 699FC11E0421B9B10B6143D9 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/admin/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/admin/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/admin/*.ice"; + name = "Slice Compiler for Ice/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/Ice_$(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/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"; }; - 7CD3E60D98B7646CE30C2CCC /* PBXBuildRule */ = { + 6DAC5C185EDE20E713CBDF37 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/IceSSL/configuration/*.ice"; + filePatterns = "*/test/Slice/escape/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/IceSSL/configuration/Test.ice, + test/Slice/escape/Clash.ice, + test/Slice/escape/Key.ice, ); isEditable = 1; - name = "Slice Compiler for test/IceSSL/configuration/*.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"; }; - 7E2BBC5737A234E8D8303FA0 /* PBXBuildRule */ = { + 6F305A5284E48EE6CB083308 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/retry/*.ice"; + filePatterns = "*/test/Slice/escape/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/retry/Test.ice, + test/Slice/escape/Clash.ice, + test/Slice/escape/Key.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/retry/*.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"; }; - 802C39AE39FD920A6263970C /* PBXBuildRule */ = { + 72F3BFD2399D7F2FB703D929 /* 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/adapterDeactivation/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/adapterDeactivation/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/services/*.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"; }; - 8302F207827ECD75369F66EB /* PBXBuildRule */ = { + 7307596D8EA316DB28CCD79D /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/IceDiscovery/$(INPUT_FILE_BASE).d"; @@ -2270,116 +2299,113 @@ 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"; }; - 83299791E357A7E4FD16A79F /* PBXBuildRule */ = { + 7529A40C10A7F572FBAF0B05 /* 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/retry/*.ice"; fileType = pattern.proxy; inputFiles = ( + test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/properties/*.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"; }; - 834441FFE4C2351D450E1626 /* PBXBuildRule */ = { + 76F11CBA37048B7246B4A60D /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/scripts/*.ice"; + filePatterns = "*/test/Ice/scope/*.ice"; fileType = pattern.proxy; inputFiles = ( - ../scripts/Controller.ice, + test/Ice/scope/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestDriver/*.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"; }; - 8535D8C5726F499728E8C0DD /* PBXBuildRule */ = { + 789DE5283B32D8F2E82D7F99 /* 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/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/interceptor/Test.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/interceptor/*.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"; }; - 880A1FF72D078D481E1F6266 /* PBXBuildRule */ = { + 810C7830E1344D941EEAB39F /* 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/location/*.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/location/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/objects/*.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"; }; - 89683846F0C742C47E988B73 /* PBXBuildRule */ = { + 86C0367EB7AE7C4848EE6207 /* 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/slicing/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/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/objects/*.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"; }; - 8A9AD969E4AC48B3137708A7 /* PBXBuildRule */ = { + 8AC12DE0F5F2B1A24028F569 /* 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"; }; - 906E6E95E73C78CDFE13B1B3 /* PBXBuildRule */ = { + 8BE4F5636197AF4825C2478E /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -2397,282 +2423,273 @@ 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"; }; - 925E0DFA94B513AAC2D917C9 /* PBXBuildRule */ = { + 8C41009A1CF692F8BB063584 /* 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/slicing/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/operations/Test.ice, - test/Ice/operations/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/operations/*.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"; }; - 9272B0A660B5DE99729A198A /* PBXBuildRule */ = { + 91C79FB678F9C90F6D94E28B /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/Ice_$(INPUT_FILE_BASE).d"; - filePatterns = "*/slice/Ice/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/operations/*.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/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for Ice/*.ice"; + name = "Slice Compiler for test/Ice/operations/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Ice_$(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/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"; + 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"; }; - 92AE0C908A6F43BE269DFAE5 /* PBXBuildRule */ = { + 930A34F60C3CEB7E00D8AE72 /* 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"; }; - 935EACD88254C732BB9E9A95 /* PBXBuildRule */ = { + 9A95BDC1D13A3FAB26ADE6D5 /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/acm/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/acm/*.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"; }; - 9808011BF716973E5127722C /* PBXBuildRule */ = { + 9D78220D8786EA4469EE3E86 /* 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/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/admin/Test.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/admin/*.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"; }; - 9AF559A596B7B8DD3EEF1CA4 /* PBXBuildRule */ = { + 9F18FE1BE5E937D9A29A0AFC /* 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/facets/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/facets/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - 9DCADAFEFDB3EBDE12774132 /* PBXBuildRule */ = { + A15C5680CB5FEA04C8581ED9 /* 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/defaultServant/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/facets/Test.ice, + test/Ice/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/facets/*.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"; }; - A078EA5628FFB84DF0B0746C /* PBXBuildRule */ = { + A1844692DB4E384D1B0AA644 /* 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/properties/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultServant/*.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"; }; - A0D3544A6366CDEBB70F5523 /* PBXBuildRule */ = { + A2A2429F3D4DAF10B23E4547 /* 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/proxy/*.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/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for IceGrid/*.ice"; + name = "Slice Compiler for test/Ice/proxy/*.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"; }; - A23254B04EF0DFC199809C6E /* PBXBuildRule */ = { + A2C96297FD91C3D6AF4C2FBC /* 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/retry/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/IceSSL/configuration/Test.ice, + test/Ice/retry/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/IceSSL/configuration/*.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"; }; - A6BD0CCEAD9F8A1D852393B8 /* PBXBuildRule */ = { + A83197122320D98FEB65A31E /* 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/info/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/hold/Test.ice, + test/Ice/info/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/hold/*.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"; }; - A94AAB48237DF0C9ACB91F58 /* PBXBuildRule */ = { + AA0194279C077D1EEAC56FDD /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; + filePatterns = "*/scripts/*.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, + ../scripts/Controller.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.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"; }; - AC509A4977B6A68B18398393 /* PBXBuildRule */ = { + AA0A2796D4961F69F90B1644 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/proxy/*.ice"; + filePatterns = "*/test/IceSSL/configuration/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/IceSSL/configuration/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - AD50CCBC517A0207432FE63B /* PBXBuildRule */ = { + AB287FBAF4C96D37FAD92AA5 /* 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/acm/*.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/acm/Test.ice, ); isEditable = 1; - name = "Slice Compiler for IceGrid/*.ice"; + name = "Slice Compiler for test/Ice/acm/*.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"; + }; + ACD51CF6CDF44362F6898310 /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/slicing/objects/*.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, + ); + isEditable = 1; + 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"; }; - AD806B330650D3A3CF7F454F /* PBXBuildRule */ = { + B5C29E2549BA405D43648364 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; @@ -2693,32 +2710,29 @@ 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"; }; - AF546237D726CD2250E4A251 /* PBXBuildRule */ = { + B6041BC1A89CDEE8A98E68ED /* 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)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceLocatorDiscovery/*.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", + "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for Glacier2/*.ice"; + name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/Glacier2_$(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\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/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"; }; - B23A71024FB1EC235C7BA17C /* PBXBuildRule */ = { + BA9BC30B41821E0E528C2119 /* 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)/Ice_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/Ice/*.ice"; fileType = pattern.proxy; inputFiles = ( "$SRCROOT/../slice/Ice/BuiltinSequences.ice", @@ -2738,65 +2752,31 @@ "$SRCROOT/../slice/Ice/Version.ice", ); isEditable = 1; - name = "Slice2Cpp Compiler for Ice/*.ice"; - outputFiles = ( - "$(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/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"; - }; - B63F444955244A1EB61883A0 /* 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"; - }; - B656093C42BDE2CB471C3E0F /* PBXBuildRule */ = { - isa = PBXBuildRule; - compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/enums/*.ice"; - fileType = pattern.proxy; - inputFiles = ( - test/Ice/enums/Test.ice, - ); - isEditable = 1; - name = "Slice Compiler for test/Ice/enums/*.ice"; + name = "Slice Compiler for Ice/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(DERIVED_FILE_DIR)/Ice_$(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/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"; }; - B65DF0E5CC3617FCD6495418 /* PBXBuildRule */ = { + BB1E4B9A1CE49FF6469A7951 /* 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/admin/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/enums/Test.ice, + test/Ice/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/enums/*.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"; }; - BC55EE4522A96DAF80A52E30 /* PBXBuildRule */ = { + BFC94219BCB3D687503034E4 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/Ice/$(INPUT_FILE_BASE).d"; @@ -2828,409 +2808,429 @@ 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"; }; - BDD457CECD546D41165CAA57 /* PBXBuildRule */ = { + C05A427B4D1DAA3BA1510A0B /* 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/binding/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/binding/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - BF3B2FC5B3FFADD3BE32B708 /* PBXBuildRule */ = { + C3DBAF4F863DD4BB1DA91BEE /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/udp/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/udp/*.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"; }; - C22ED9CC12162007C4BA9774 /* PBXBuildRule */ = { + CAB49F048B30B609375CB071 /* 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/operations/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/timeout/Test.ice, + test/Ice/operations/Test.ice, + test/Ice/operations/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/timeout/*.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"; }; - C3260C78D6DFC54BF7C5943F /* PBXBuildRule */ = { + CB2D08021681EEEBFDD35666 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/scripts/*.ice"; + filePatterns = "*/test/Ice/stream/*.ice"; fileType = pattern.proxy; inputFiles = ( - ../scripts/Controller.ice, + test/Ice/stream/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/TestDriver/*.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"; }; - C5CE763A15C1297A21395D8A /* PBXBuildRule */ = { + CF57F7A5BBC6CA2B030C30FE /* 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/optional/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/invoke/Test.ice, + test/Ice/optional/Test.ice, + test/Ice/optional/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/invoke/*.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"; }; - CE6FEFB122A2A0EB2661FDC7 /* PBXBuildRule */ = { + D0653608084D464F8B138E2E /* 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/udp/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/proxy/Test.ice, - test/Ice/proxy/TestAMD.ice, + test/Ice/udp/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/proxy/*.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"; }; - CF919C583BCCE4B98D927A64 /* PBXBuildRule */ = { + D29588E5F45CCE70DBFAC56B /* 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/proxy/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/hold/Test.ice, + test/Ice/proxy/Test.ice, + test/Ice/proxy/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/hold/*.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"; }; - D0F6BEA25FBBFCCA4FF875E8 /* PBXBuildRule */ = { + D520D9B6825B931429E444E7 /* 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/services/*.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/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"; }; - D5DB8A3A0A5B9B8BBEB91C59 /* PBXBuildRule */ = { + D8E4DB9096E618C06F9C6623 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/slicing/exceptions/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceStorm/*.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, + "$SRCROOT/../slice/IceStorm/IceStorm.ice", + "$SRCROOT/../slice/IceStorm/Metrics.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/exceptions/*.ice"; + name = "Slice Compiler for IceStorm/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(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\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/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"; }; - D6B5E483B79BB55615965858 /* PBXBuildRule */ = { + E05FAD6A4F0429D09796CA8D /* 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)/IceDiscovery/$(INPUT_FILE_BASE).d"; + filePatterns = "*/IceDiscovery/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultValue/Test.ice, + "$SRCROOT/../slice/IceDiscovery/IceDiscovery.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultValue/*.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"; }; - D75DF2378F1BE3AA82BEFA71 /* PBXBuildRule */ = { + E116B57C40984DBBDF7AFE58 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/defaultServant/*.ice"; + filePatterns = "*/test/TestCommon/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/defaultServant/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/defaultServant/*.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"; }; - D7844059119B1D96117377BA /* PBXBuildRule */ = { + E280EEDFCE813E0957872778 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Ice/binding/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/IceStorm_$(INPUT_FILE_BASE).d"; + filePatterns = "*/slice/IceStorm/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/binding/Test.ice, + "$SRCROOT/../slice/IceStorm/IceStorm.ice", + "$SRCROOT/../slice/IceStorm/Metrics.ice", ); isEditable = 1; - name = "Slice Compiler for test/Ice/binding/*.ice"; + name = "Slice Compiler for IceStorm/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", + "$(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\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/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"; }; - DB182916D2274E5F2C244539 /* PBXBuildRule */ = { + E47B28EC2F168D6E639FF7A1 /* 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/acm/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/optional/Test.ice, - test/Ice/optional/TestAMD.ice, + test/Ice/acm/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/optional/*.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"; }; - DC7FB0E409E0F373AA2DF410 /* PBXBuildRule */ = { + E57C7F4A3075D292175D22FD /* 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/slicing/objects/*.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, ); isEditable = 1; - name = "Slice Compiler for test/Ice/properties/*.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"; }; - E03D72C8E9FF07D01FC7BFB2 /* PBXBuildRule */ = { + E793AF98611243937E18BDDA /* 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/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceStorm/IceStorm.ice", - "$SRCROOT/../slice/IceStorm/Metrics.ice", + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for IceStorm/*.ice"; + name = "Slice Compiler for test/Ice/exceptions/*.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"; }; - E8B2F1326E477454FC030D59 /* PBXBuildRule */ = { + E8B58B8D847476D4C18DA988 /* 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/servantLocator/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/info/Test.ice, + test/Ice/servantLocator/Test.ice, + test/Ice/servantLocator/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/info/*.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"; }; - EDB2A44EA2D0787FC0C7DA8D /* PBXBuildRule */ = { + EA835B94D979E1CCBE4F9FE8 /* 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/facets/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/servantLocator/Test.ice, - test/Ice/servantLocator/TestAMD.ice, + test/Ice/facets/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/servantLocator/*.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"; }; - EE5C55B0C4EE5B272194CA83 /* PBXBuildRule */ = { + EAFC23B13D59F9E878453C48 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; - dependencyFile = "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).d"; - filePatterns = "*/IceLocatorDiscovery/*.ice"; + dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; + filePatterns = "*/test/Ice/ami/*.ice"; fileType = pattern.proxy; inputFiles = ( - "$SRCROOT/../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice", + test/Ice/ami/Test.ice, ); isEditable = 1; - name = "Slice2Cpp Compiler for IceLocatorDiscovery/*.ice"; + name = "Slice Compiler for test/Ice/ami/*.ice"; outputFiles = ( - "$(DERIVED_FILE_DIR)/IceLocatorDiscovery/$(INPUT_FILE_BASE).cpp", - "$(SYMROOT)/$(PLATFORM_NAME)/include/IceLocatorDiscovery/$(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/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"; + 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"; }; - F0977AA6EDB770E8A7BB5F5A /* PBXBuildRule */ = { + EC1280117082EEA012A8AAE1 /* 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/adapterDeactivation/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/binding/Test.ice, + test/Ice/adapterDeactivation/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/binding/*.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"; }; - F65E53D41F3774164A27A2E3 /* PBXBuildRule */ = { + EEDEE9791746B5ED29E9944B /* 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/objects/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/timeout/Test.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/Ice/timeout/*.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"; }; - F72C9C41A743047D73876627 /* PBXBuildRule */ = { + F08D29DD1F607F3A2A0811E1 /* PBXBuildRule */ = { + isa = PBXBuildRule; + compilerSpec = com.apple.compilers.proxy.script; + 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 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"; + }; + F0E6D62A03E1FC5ED137EA52 /* 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/admin/*.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/admin/Test.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/slicing/objects/*.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"; }; - F826B3B3C2A53DB7BFB07EDD /* PBXBuildRule */ = { + F3441C411E476AFB3E7F2708 /* 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/exceptions/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Ice/scope/Test.ice, + test/Ice/exceptions/Test.ice, + test/Ice/exceptions/TestAMD.ice, ); isEditable = 1; - name = "Slice Compiler for test/Ice/scope/*.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"; }; - FB4C0218FC99C654D5B6CAA4 /* PBXBuildRule */ = { + F733CA456DE86E601559E187 /* PBXBuildRule */ = { isa = PBXBuildRule; compilerSpec = com.apple.compilers.proxy.script; dependencyFile = "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).d"; - filePatterns = "*/test/Slice/escape/*.ice"; + filePatterns = "*/scripts/*.ice"; fileType = pattern.proxy; inputFiles = ( - test/Slice/escape/Clash.ice, - test/Slice/escape/Key.ice, + ../scripts/Controller.ice, ); isEditable = 1; - name = "Slice Compiler for test/Slice/escape/*.ice"; + name = "Slice Compiler for test/TestDriver/*.ice"; outputFiles = ( "$(DERIVED_FILE_DIR)/$(INPUT_FILE_BASE).swift", ); @@ -3240,1704 +3240,1704 @@ /* End PBXBuildRule section */ /* Begin PBXContainerItemProxy section */ - 017D617F05A79DC3E75E1867 /* PBXContainerItemProxy */ = { + 00DE841C8687D0E197EE85CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9A5B406340D1F54AA6A93582; - remoteInfo = "IceLocation iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 036D846A6AF64973488231F6 /* PBXContainerItemProxy */ = { + 04A622B5D5B12F62B158F08A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4D5800AC0A437A45FB0049AB; - remoteInfo = "SliceEscape iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 04F7EF21288FCCF003111EAD /* PBXContainerItemProxy */ = { + 076A7FBA191D0BF483C0A3DE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8919247F07DEFFC41FDA9486; - remoteInfo = "IceServices iOS"; + remoteGlobalIDString = 3AA88FF2CD4BC207F3E38A68; + remoteInfo = "IceDiscovery C++11 macOS"; }; - 05C361795C27A9E377A5C00E /* PBXContainerItemProxy */ = { + 0909673234428DAD5D8D8243 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 15259193E3C55F25AB0F68C2; - remoteInfo = "IceImpl iOS"; + remoteGlobalIDString = E13AF536398A890833FFC655; + remoteInfo = "IceRetry macOS"; }; - 062208D122C76FB49A69BA54 /* PBXContainerItemProxy */ = { + 094C2E5066A5323901EC3AD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B0567014FA30FBBFC0E31969; - remoteInfo = "IceAcm macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 065709735975E1794527B9B7 /* PBXContainerItemProxy */ = { + 0994D1F501AAD22D7284006B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 06E2F46705DA55C6A2B74117 /* PBXContainerItemProxy */ = { + 09A3E52F59DDF46922C5FB89 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = DEABBE98FF536A890AE33865; - remoteInfo = "IceDefaultServant macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 07CDF98D8A1B02D1AD19FACC /* PBXContainerItemProxy */ = { + 09B639B4B4CE81CDDCBEC692 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 0949EA22F4B01AD12CBB5979 /* PBXContainerItemProxy */ = { + 09D86D6C5084A5D227EE225F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 770013F768356B5BE1BB460C; - remoteInfo = "IceGrid macOS"; + remoteGlobalIDString = 2B82F333BA11DB5D8BECDBF6; + remoteInfo = "IceInterceptor iOS"; }; - 10DD7D30096FC40DE3F91A69 /* PBXContainerItemProxy */ = { + 0B0BE533B1668784A4F6EE1D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = D2E3C388100CC50AD3052CDB; + remoteInfo = "IceServantLocatorAMD iOS"; }; - 1191388E89BA38934CD70895 /* PBXContainerItemProxy */ = { + 0B6551F9AB9BAA4EB2DFA780 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = D07E492BEFB243158D25D09C; + remoteInfo = "IceSlicingExceptionsAMD macOS"; + }; + 0D0E77FB031E59897244F92D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; + proxyType = 1; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 124775A9F6E93C3CF3D7B005 /* PBXContainerItemProxy */ = { + 0D834A00427086014DA514E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 12BB418486F51E54CC92F9DA /* PBXContainerItemProxy */ = { + 0D9BD4F49481916A916FF362 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 130D31F8BD9124BA58249168 /* PBXContainerItemProxy */ = { + 0DDD4EE66F91D09188619B17 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D09FEEF78E85A083AFB9AA4D; - remoteInfo = "IceSlicingExceptionsAMD iOS"; + remoteGlobalIDString = 26D8717EB0F318653FB9C763; + remoteInfo = "SliceEscape iOS"; }; - 1384274EDEE7A7FAA55AD26F /* PBXContainerItemProxy */ = { + 0EB89F1B2A18E897F751F54B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 055B3C0D85846EE14E87127C; - remoteInfo = "IceInterceptor macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 154D5E7DD7CCA693A8B80FA1 /* PBXContainerItemProxy */ = { + 0FC18BDE7D824822616376E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E73C245D51F93B4E9024CF4C; - remoteInfo = "IceProxyAMD iOS"; + remoteGlobalIDString = 915EFEBB1B2962C505C96286; + remoteInfo = "IceProxy macOS"; }; - 15879DAC8086124116B6869D /* PBXContainerItemProxy */ = { + 11F96F305582FC17417991AD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 737F194EFAAE24FEE20C5FF6; + remoteInfo = "IceSlicingExceptions iOS"; }; - 16491446254BF6DA0F57E718 /* PBXContainerItemProxy */ = { + 1405B64CF0AB7E8116B7FFF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 16B38D07EC66222AD1CBE7E1 /* PBXContainerItemProxy */ = { + 144D57699F421A453D879D0E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 1CFB7F5DBEA57A48B2E1171E /* PBXContainerItemProxy */ = { + 144F03DDB219C92CC0AD982B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1E5D4D4FE7BB61EAB8ECA266; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = 9F3B1821E0C570BF87946D26; + remoteInfo = "IceOperationsAMD iOS"; }; - 1CFF3D08008F34CC6B0DED2E /* PBXContainerItemProxy */ = { + 15E3D293BAB68AC851D74B14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0DA6226AD5937A1F51BF8750; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = 1767B82F1961C76D47FF467B; + remoteInfo = "IceStream iOS"; }; - 1F3015AD5B46D646046CD330 /* PBXContainerItemProxy */ = { + 17FD1919F9AFA945C049CE71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; + }; + 1819A3F4E2BF3546C183A010 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; + proxyType = 1; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 1F4AB26DE65D4BB01E237717 /* PBXContainerItemProxy */ = { + 18BD8B97402ED565EFA00DEC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 1F6E39B0AF1CA523FE1104ED /* PBXContainerItemProxy */ = { + 192BAF3A73C465B85A7C1F06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 2056098B0E2B55DABA18B8EE /* PBXContainerItemProxy */ = { + 195FCFDEE7EFAAB16AF81A5F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 20F7F3CB060E2090ED871F71 /* PBXContainerItemProxy */ = { + 197361DC1A8766585D3FFC5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = FBFB66FA3AA0C4BACD7CAEF1; + remoteInfo = "Glacier2 macOS"; }; - 2119F0153B7672564FDE9352 /* PBXContainerItemProxy */ = { + 19A7FC7514BFDF27540E6C14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 199245355B4B5CD9FF6A6386; + remoteInfo = "IceLocation iOS"; }; - 214F2022F11C51A60354D2FD /* PBXContainerItemProxy */ = { + 1AA5486C2B2780994FABE39E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 3889B46D2FBF6B61B7DA5A5A; + remoteInfo = "IceDefaultServant iOS"; }; - 22FB592105AF3E82C5B6B392 /* PBXContainerItemProxy */ = { + 1B73AE5BB2E857F560D937D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1E5D4D4FE7BB61EAB8ECA266; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 22FF4760559EEC96A48CD0E1 /* PBXContainerItemProxy */ = { + 1CA354496945D633B349F340 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 8F11329102906B0FE306EF9C; + remoteInfo = "IceFacets macOS"; }; - 254EB829A6A55C1191255D58 /* PBXContainerItemProxy */ = { + 1D8BD3CF996B922E28683DB1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 5722522ABF0B09D7099DBA1F; - remoteInfo = "IceStorm iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; + }; + 1E59CC1DE82AF2C223F12E78 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; + proxyType = 1; + remoteGlobalIDString = A250D484C77105742100E390; + remoteInfo = "IceGrid macOS"; }; - 254F4C346B84994DAE5A76D5 /* PBXContainerItemProxy */ = { + 1E5D3D36B7A333EDDDD3C5CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 259BAF7AA9AB756835E68D85 /* PBXContainerItemProxy */ = { + 1F2B3F76BEAF1A445EAD42B1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 26FD4E9CD44C491B6E962790 /* PBXContainerItemProxy */ = { + 208712A54D7C80A5E1D013C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 27E10F3E72C61E3680C6D05E /* PBXContainerItemProxy */ = { + 2090F85D0C4A629C299DAC0A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 284488109C19406A338C318F /* PBXContainerItemProxy */ = { + 20B470636241F129E7F93EC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 478A8F3068E5FF5F72F783EC; - remoteInfo = "IceSSLConfiguration macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 284D5E91C3E666A9474E965D /* PBXContainerItemProxy */ = { + 2152DAED3FAD6AB0B5DF41B0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 78DF05AE60584A8F9A7E374B; - remoteInfo = "IceInheritance iOS"; + remoteGlobalIDString = 2A0224A2EFBB3E87655C351C; + remoteInfo = "IceInfo iOS"; }; - 2902CAF1CFE84D4795C4C6B1 /* PBXContainerItemProxy */ = { + 21F2AE70E3D37455D567BBB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 263F8736790034DA7D5B83D1; - remoteInfo = "IceDiscovery C++11 iOS"; + remoteGlobalIDString = FBFB66FA3AA0C4BACD7CAEF1; + remoteInfo = "Glacier2 macOS"; }; - 291EFFBB81B18BF46AE26242 /* PBXContainerItemProxy */ = { + 221A2C420C1A9087B55E7CDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 4434399DDA0D789BDAB8EDCF; + remoteInfo = "IceLocation macOS"; }; - 29AC2C7E0DB10E41A627D4AA /* PBXContainerItemProxy */ = { + 231E3EB4B30195829B9C7C43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = A7EE978EE70DDA201B41538D; - remoteInfo = "IceServantLocator macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 2A6BCBB826A171FFDBD954A6 /* PBXContainerItemProxy */ = { + 232EE525AB7443632644DF3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 2AFEEC4032840A9398F816FE /* PBXContainerItemProxy */ = { + 256A70A32FCC1DB9CFA8A408 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 2BE57B1E72AABA6197DE52F5 /* PBXContainerItemProxy */ = { + 2C5DE750C359BC2A30F63723 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 2D14FA2555165E862E5DFE97 /* PBXContainerItemProxy */ = { + 2D02A219CBEBD9573C6A045D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 68BE8ACEDDD7433FDD2E5099; - remoteInfo = "IceScope macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 2E24BDD2EB699E821381EE6E /* PBXContainerItemProxy */ = { + 2F145549E2ECE2604831DFC1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 2F0B268568A407079B46543E /* PBXContainerItemProxy */ = { + 2F16B705DBEE879F8AEE845F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - 2F4791483C4760E90314EFD8 /* PBXContainerItemProxy */ = { + 2F4AB5C5978C4CB4D968B985 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CC992ABE92F26754D8B7AC6; - remoteInfo = "IceSlicingObjects iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 2FE96DCC2A6E467FC8B9AD7B /* PBXContainerItemProxy */ = { + 2F78747818E14907E05B6CE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A02AEC1FCAEDD308F0CBDCC6; + remoteInfo = "IceStream macOS"; }; - 2FF1C3EFC1E0BAFB52D6B55E /* PBXContainerItemProxy */ = { + 302E9DDA13EDEBAA0C1C6461 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E47E556F6FF734E970050937; - remoteInfo = "IceImpl macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 31A6C9E7B044CD56F7F4B1BB /* PBXContainerItemProxy */ = { + 30FB8DC6A686B05DEB1C3628 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 0A757D8B307D80F7BD3C5017; + remoteInfo = "IceAmi macOS"; }; - 31FA4B87FE7AA6F1831B6A28 /* PBXContainerItemProxy */ = { + 321D14768D089FF940693129 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 99D043CF9A0E172FCFC4C4B0; + remoteInfo = "IceSlicingObjects iOS"; }; - 31FBBDA3349CA05A02DCB97B /* PBXContainerItemProxy */ = { + 37ED755B12FCC0583ECA1212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 31FEEE23FA4CF66E31A7A873 /* PBXContainerItemProxy */ = { + 396D95E81049556B6818C49D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 32859D088768354421E2C3F2 /* PBXContainerItemProxy */ = { + 399FF3FB6347A6503490CFDE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 283F1EEEFDF95C8EA1294341; - remoteInfo = "IceHold iOS"; - }; - 3401CA5F00B4DEB13D644281 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 36AA695C134C523B6DD246EB /* PBXContainerItemProxy */ = { + 3D208A518B330B7F9465B12D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 3759B96D9D365B8DDB0CEBC7 /* PBXContainerItemProxy */ = { + 413D3258EDF4221463EBEB9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = A4F94E6B42A58EEF0623EC8F; + remoteInfo = "IceInvoke macOS"; }; - 38088E7956F252C3262A6F6E /* PBXContainerItemProxy */ = { + 458731DB8A8E8EFE42D7E6C3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 28A1C2F2EB8DCCF1AFE83661; - remoteInfo = "IceAdapterDeactivation iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 3E6C8981BB05A82E5B46DA22 /* PBXContainerItemProxy */ = { + 45D7F71E010A419A4F9BDD80 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = CA4363C4B69F792FD44B1A13; - remoteInfo = "IceRetry macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 431323999F9B2609B23DDEB9 /* PBXContainerItemProxy */ = { + 45EA93F06DC1579D94330C63 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = F5CD065672396E4209757A74; - remoteInfo = "IceServantLocatorAMD macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 443297BF76E4DEDA5E7D1E75 /* PBXContainerItemProxy */ = { + 484B59305DCF5D0F7D737D6E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = F4DA824A9FD9930888BD262E; - remoteInfo = "IceBinding macOS"; + remoteGlobalIDString = 8C1035C93AB58A55E8EB9B9D; + remoteInfo = "IceFacets iOS"; }; - 452481330D51BBEF58874AAD /* PBXContainerItemProxy */ = { + 4A4F8C5EAEFD06F4B880420C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 00F4F87A480D875F2C651B81; - remoteInfo = "IceSlicingObjectsAMD macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 45E8B8739927241A85B77A0C /* PBXContainerItemProxy */ = { + 4B24C60DD2735F19F92AB8D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 46CF9B45AC233FABDD79EFDD /* PBXContainerItemProxy */ = { + 4C60141AA1A8FD05F8685B95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 24DFB14E537F560FB7A2C4BB; - remoteInfo = "IceLocation macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 47522CF62B0BDA6DDA9992C4 /* PBXContainerItemProxy */ = { + 4CA0D05C006208E49B678FCC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 47B6C0242181C35322973D86 /* PBXContainerItemProxy */ = { + 4D812AF9E49B9BA1AF671E67 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 5E8A324AC0641CA083A50D0F; - remoteInfo = "IceDefaultValue macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 47C1A51B4AD6D01F1A97913A /* PBXContainerItemProxy */ = { + 4EEA7C7E13C8CB9FA6592163 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 27BA347B00896E18F811823C; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 487E2719252E3289C9CC2421 /* PBXContainerItemProxy */ = { + 4F280D704E7E30DBFF24D934 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - 48A05C6747E6A0EFD505F916 /* PBXContainerItemProxy */ = { + 5043D766A126E61F250463D1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 01B75CEA3EB80A6E664242B0; - remoteInfo = "IceTimeout macOS"; + remoteGlobalIDString = 2AA26A44152A667D249E2998; + remoteInfo = "IceSlicingObjectsAMD macOS"; }; - 49D8595FBEE292E8490C19DC /* PBXContainerItemProxy */ = { + 50A1FA2B88000EDD83006EF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 49DC6ABB392A3D3F4D708706 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; - }; - 4A2DD3FCD2B58B84CEA19C63 /* PBXContainerItemProxy */ = { + 51F244B025EF269D92B3F262 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = D6B732964F3D00D84F9428AC; + remoteInfo = "IceExceptionsAMD macOS"; }; - 4A7D14E003FE473FDF170A71 /* PBXContainerItemProxy */ = { + 534235D975DA598C3003B922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 6272130C7E84066D9A3C1C41; - remoteInfo = "IceInvoke iOS"; + remoteGlobalIDString = 60F33D27C2F25EAA1C58217D; + remoteInfo = "IceInterceptor macOS"; }; - 4AEF98C694E4398B686F61DB /* PBXContainerItemProxy */ = { + 547B75DA5DF24164A91EB88F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = FA5053DC63D60556D4AF6086; - remoteInfo = "IceTimeout iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 4BA17AA9E5DDCA68E293DAA9 /* PBXContainerItemProxy */ = { + 555E024B24C17A7DE5F0ADE3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 4C89D5BB46AD1167F827A1FD /* PBXContainerItemProxy */ = { + 56D67D1D13551ECC494292BC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0D82476565F3AEA63555293E; - remoteInfo = "IceAmi macOS"; + remoteGlobalIDString = BEBD5165FA221E0C61A12DD9; + remoteInfo = "IceProxy iOS"; }; - 4CB60D7AE0828B4C5307A56B /* PBXContainerItemProxy */ = { + 5710FC39CDFFBBD1632956E4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4E2639095BC1D8AB5CABDD8E; - remoteInfo = "IceBinding iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 4F697F775AFF7DEC113B1B3F /* PBXContainerItemProxy */ = { + 571722DCA58D3280510DBAE2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E564301A82DF55065D5215D1; - remoteInfo = "IceExceptions iOS"; + remoteGlobalIDString = FC49A3F19B353AC4051631B4; + remoteInfo = "IceInheritance macOS"; }; - 503C194C0BB2C054BB9B4C87 /* PBXContainerItemProxy */ = { + 5736D1BB77BBE6E9612973CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 50ED7029C813B38C31E4AA07 /* PBXContainerItemProxy */ = { + 5861FE679598D667D6219FC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 5DA5602D00AE3159023AFB5D; + remoteInfo = "Ice C++11 iOS"; }; - 53286E42A0BF3C0F24DEDFDE /* PBXContainerItemProxy */ = { + 59A627B94164E5E4A39D7900 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 10E56726E39C8E4E56D51BC4; + remoteInfo = "IceInfo macOS"; }; - 53967316851E8DD578A7CADF /* PBXContainerItemProxy */ = { + 59E2AF8828513099F1A302F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B6B9D5B730E90977303A8BE3; - remoteInfo = "IceAcm iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 54727D84878D2D579323A84A /* PBXContainerItemProxy */ = { + 5A8BB27B6F9BA4688ED7F443 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 5563B0FB65D1914F101DC69E /* PBXContainerItemProxy */ = { + 5B2F93B6F54E4110EE384EB4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E47E556F6FF734E970050937; - remoteInfo = "IceImpl macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 576C5FBC4CC1D555CF56F894 /* PBXContainerItemProxy */ = { + 5D87AD3193C4D90FD9C8179B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E00BC6A9646D9FED455066C; - remoteInfo = "IceAdmin macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 58603EC9606806B7A3EA7A1C /* PBXContainerItemProxy */ = { + 5D8A49A1E8DBBD731D1D4D8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - 58E82FCE800E5C3718A52B9B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 770013F768356B5BE1BB460C; - remoteInfo = "IceGrid macOS"; - }; - 5A205E5256B40B6042194080 /* PBXContainerItemProxy */ = { + 5E926C954F3A8858CB799B09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 5A59BC1ABA375B56BA8F06CC /* PBXContainerItemProxy */ = { + 6034F24196B01C89E967E0A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = BFD01B6CA65F9516862D1FA1; + remoteInfo = "IceEnums macOS"; }; - 5BADF5D9A4028AEDDFBB748E /* PBXContainerItemProxy */ = { + 60C30DE929B72855A8DD1372 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 696D6136245EB191F3A59E1A; + remoteInfo = "IceLocatorDiscovery C++11 iOS"; }; - 5C7237AFB448374F73E30851 /* PBXContainerItemProxy */ = { + 61EBF15B7A1C2349628E4AF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 5D22FFD629042D7E88A4C6FD /* PBXContainerItemProxy */ = { + 6392976D3234498D8EDEBFFA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AC5B52B4AAA6CC13CA8A2DDB; + remoteInfo = "Glacier2 iOS"; }; - 5DF535E937A6D64A50F2F2A3 /* PBXContainerItemProxy */ = { + 65275F3033D631BFFDB68F37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 5658AB3FB70284E862079845; - remoteInfo = "IceExceptionsAMD iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 5F806804FDC3C3DCB802D603 /* PBXContainerItemProxy */ = { + 6622A1F58AE077A765492903 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 1F284CA948D007302C982357; + remoteInfo = "IceUdp macOS"; }; - 60C71CBF8E99A2D051443F3D /* PBXContainerItemProxy */ = { + 6833646617F50B5F99224F96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 2646D8A7E773E3BDE5BE8E29; + remoteInfo = "IceGrid iOS"; }; - 637B366C15B65850C6F90DCA /* PBXContainerItemProxy */ = { + 68A0CA494016011E788CEF14 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 5DA5602D00AE3159023AFB5D; + remoteInfo = "Ice C++11 iOS"; }; - 63B459BA47359EAC6C74A3E7 /* PBXContainerItemProxy */ = { + 68FA5CD5D3BE1AE97589F1C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 6447F140D3855CB2A934008B /* PBXContainerItemProxy */ = { + 6CB8FFC27C1C7F3D2A0E974C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E4350886F7ECE83389DE7799; - remoteInfo = "IceServices macOS"; + remoteGlobalIDString = 7C5D25F9DE7921A57B72E85F; + remoteInfo = "IceOptionalAMD macOS"; }; - 650507FC56E67E6424A58185 /* PBXContainerItemProxy */ = { + 6CFFA5183F70AC0997AAD28F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - 659A51CF1221C28304378595 /* PBXContainerItemProxy */ = { + 6D0310C13A5DCC1002BCEDFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 66D397E6F385363810F73DED /* PBXContainerItemProxy */ = { + 6D8BD82FC4D2E7D88CD1E206 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 69719D3E20250DD8CAE426F2 /* PBXContainerItemProxy */ = { + 6F71D9490BEF8E58D04C1868 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 698E4783ACCF8203631D5A4E /* PBXContainerItemProxy */ = { + 718762720FB2D9A1D6045FCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = A3B6CDB0CD7C0059D4D3CBF9; + remoteInfo = "IceProperties iOS"; }; - 6A0E20DFD90E56FE5B1721D9 /* PBXContainerItemProxy */ = { + 7197824CC6154D953B46BE8A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = F1949C2140DCFA5E835C5C17; + remoteInfo = "IceBinding iOS"; }; - 6AA66EDB612628ECEBD99430 /* PBXContainerItemProxy */ = { + 720F330D49EF2814155C4761 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3EA20E16FBEAA1C5B0DA52BA; - remoteInfo = "IceProxyAMD macOS"; + remoteGlobalIDString = 84AAA301C5D3AF97E6828B9A; + remoteInfo = "IceBinding macOS"; }; - 6AD2A0060F73499638F052C1 /* PBXContainerItemProxy */ = { + 7330088081A46278F32264FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 6B7ECA4BD2F60079BF41B3AD /* PBXContainerItemProxy */ = { + 736425D866A7923A2719540C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0DA6226AD5937A1F51BF8750; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = 24A0E61D1931744BC729034A; + remoteInfo = "IceAdmin iOS"; + }; + 740DC98CDBA9B6B07DFF5C7F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; + proxyType = 1; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 6BC063A5D73FD71B54DA9C89 /* PBXContainerItemProxy */ = { + 758F86A89C7437E034F49AFC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - 6C00C204CBF7B1506CE50E8B /* PBXContainerItemProxy */ = { + 76390DCCAEA59C6D31FE48C2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 92A668B7841CFDC57756D6E7; - remoteInfo = "IceProxy macOS"; + remoteGlobalIDString = 38C1EA904D5C3BCB045C88A2; + remoteInfo = "IceProxyAMD macOS"; }; - 6C2D2F0E813CD0407F4628D6 /* PBXContainerItemProxy */ = { + 7672624AD54550F8521412D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 096C6B1CDEA03B0A33EF7AB7; - remoteInfo = "SliceEscape macOS"; + remoteGlobalIDString = 2646D8A7E773E3BDE5BE8E29; + remoteInfo = "IceGrid iOS"; }; - 6DB6FBBEEF9107C0356251CC /* PBXContainerItemProxy */ = { + 78F98741015DAF726FBA93FA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 529314BF4173169E9CB2F36B; + remoteInfo = "IceProperties macOS"; }; - 6EBFF7F48E74EF95B563C696 /* PBXContainerItemProxy */ = { + 79334374FD217F097648201E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E1C18FAE5F2A3A2849292E9; - remoteInfo = "IceGrid iOS"; + remoteGlobalIDString = 02BA85F98EB32966A7AA3C21; + remoteInfo = "IceRetry iOS"; }; - 70248659A5F8BBC954BC26E2 /* PBXContainerItemProxy */ = { + 7A4B14E50A9EF8889C043508 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 5DA5602D00AE3159023AFB5D; + remoteInfo = "Ice C++11 iOS"; }; - 70F65C9FA842A68DE863558B /* PBXContainerItemProxy */ = { + 7A68B6DCA42F642338D76D6C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 969752F2E953B2ED36823477; - remoteInfo = "IceExceptions macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - 713A2BBD74543BE9186E4FF3 /* PBXContainerItemProxy */ = { + 7B189B537112F1A3D8466612 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 429CEDF95141D2685FE9AB01; - remoteInfo = "IceEnums iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 725FDDE0666ADDEF228E1844 /* PBXContainerItemProxy */ = { + 7C0C367A5555B3F62AC3AFF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = F27C8BBF5E4DB22EF58AF515; - remoteInfo = "IceServantLocator iOS"; + remoteGlobalIDString = 140CB18515FA53ECB140F7CC; + remoteInfo = "IceServices macOS"; }; - 72E721853B32D87FC4962163 /* PBXContainerItemProxy */ = { + 7C4197A3AFACC893BF9F54EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 8D4D7F1ABB790FA722EC7917; + remoteInfo = "IceOperationsAMD macOS"; }; - 731ECB1786180D7229E827DC /* PBXContainerItemProxy */ = { + 7CA3910FB0789320EE20268F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 74304FDE80AF64C29200E27D /* PBXContainerItemProxy */ = { + 7CA52B64C6B2B6B870FF00A8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 16C02D2C934DC57FE079663F; + remoteInfo = "IceStorm iOS"; }; - 75C2A85B36D55E5EEF424BB6 /* PBXContainerItemProxy */ = { + 7E42163A5BD5EB9625515535 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 771D9AA9820D0ED832E73009 /* PBXContainerItemProxy */ = { + 7E4D632BC6E4DE248653A07D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 6BA09F6BC0797F624A68E17E; - remoteInfo = "IceOperationsAMD macOS"; + remoteGlobalIDString = FBFB66FA3AA0C4BACD7CAEF1; + remoteInfo = "Glacier2 macOS"; }; - 780327C8CE3D30662467C4D5 /* PBXContainerItemProxy */ = { + 7ED02EC4A652BACF79A7FBD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - 7BACB03973B944A4910038F6 /* PBXContainerItemProxy */ = { + 81E73D014721118BE76D87E0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 7CC54CF37E775799AE523FFF /* PBXContainerItemProxy */ = { + 831F35CFD61D8BB19FDD3A3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 04ABE78C2D82D8E0F3B6615C; + remoteInfo = "Ice C++11 macOS"; }; - 7F26E8F0312AC4387C551222 /* PBXContainerItemProxy */ = { + 838948C62C02702EC068F299 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 993C3F64323081AD7846C3D1; + remoteInfo = "IceScope macOS"; }; - 7F3F3950F5D4BA9E76C5FC5D /* PBXContainerItemProxy */ = { + 8460DD3ED78B8DA7BC8E0465 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 80796B2D618056666858C9F6 /* PBXContainerItemProxy */ = { + 854A090F6A66CEBF0AEDED26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - 8380A0037DB411A405266CD5 /* PBXContainerItemProxy */ = { + 8685E9A8FFDD5344998A5E70 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = D9AE09FB3585B148EE15E9D9; + remoteInfo = "IceEnums iOS"; }; - 85E74D5D665AC53235A8BA7B /* PBXContainerItemProxy */ = { + 89130D871CF9DB3F3FFB3C38 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 04ABE78C2D82D8E0F3B6615C; + remoteInfo = "Ice C++11 macOS"; }; - 873CE4E43C3A14151F88412E /* PBXContainerItemProxy */ = { + 894F108120051CBF396B7383 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 87763892645110E58F8A6899 /* PBXContainerItemProxy */ = { + 8BD2308214CF9938B6042169 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = E6806D7DB7060BC3A0C7306D; + remoteInfo = "IceOptionalAMD iOS"; }; - 87ABD59DFD4BEA6D6A406C73 /* PBXContainerItemProxy */ = { + 8DFC07199E95E21CB8D2ABF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - 8A1ED9492B7471048F9E9B5C /* PBXContainerItemProxy */ = { + 8F77F087CA76298635C6EB3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = C7C6F15DD53FB4E2316C8AA3; - remoteInfo = "IceStorm macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 8B6199793E858890BE13B8C1 /* PBXContainerItemProxy */ = { + 8FF049F5EBED88BB74760CA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D3BDE8AC40C1810EB2A14067; - remoteInfo = "IceOperations macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - 8C51AABB3038D9E5B2902E67 /* PBXContainerItemProxy */ = { + 919DC87F97E7B2AACBBD5B5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9B91000B96831D134868EF00; - remoteInfo = "IceInfo macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 90EAEEBA767B1E67CDEACCD2 /* PBXContainerItemProxy */ = { + 9211D311DD89DD888C03D35D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 713B71D014689185E9E05395; - remoteInfo = "IceInvoke macOS"; + remoteGlobalIDString = 9B13B57D40995B5A58986BCF; + remoteInfo = "IceServantLocatorAMD macOS"; }; - 932A74664455DA068E3A15C2 /* PBXContainerItemProxy */ = { + 929A515A6EDD66B671E40125 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = A69CCF574C4233A49E864528; - remoteInfo = "IceDefaultValue iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 93C12D6F5A8DB5FAD273F5B6 /* PBXContainerItemProxy */ = { + 9338026585418A72A05DEE35 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C5982316F62D05CD651717E7; + remoteInfo = "IceAdapterDeactivation macOS"; }; - 9682EE4EEAA6C1E874A6E4E7 /* PBXContainerItemProxy */ = { + 93BEBC05532306FA1AEDF168 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8BCEB954ACECD9E143B3DD52; - remoteInfo = "IceObjects macOS"; + remoteGlobalIDString = 983596DE8C0BFB636571955C; + remoteInfo = "IceSlicingObjectsAMD iOS"; }; - 991E13A1336380BC10E34B65 /* PBXContainerItemProxy */ = { + 947D552787CC836F5CD53736 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = C7C6F15DD53FB4E2316C8AA3; - remoteInfo = "IceStorm macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - 9A16ABC88E61CBD482EF810B /* PBXContainerItemProxy */ = { + 9597FB16871D9D4BDF6A58A9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B015EA95DFADDD31E102004C; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - 9BA0C4349EF5EC69F4456D61 /* PBXContainerItemProxy */ = { + 96EFEFE1AAD1D22BEBEADECE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 27BA347B00896E18F811823C; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - A013D5E988F0FD2A59503BA5 /* PBXContainerItemProxy */ = { + 9742AE7FC358856C1F997A37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 39438194D11EA03199C6686E; - remoteInfo = "IceUdp macOS"; + remoteGlobalIDString = 29279E4ADC71CC6522E7C012; + remoteInfo = "IceTimeout iOS"; }; - A0359E061251BE43F67CEEF6 /* PBXContainerItemProxy */ = { + 97A804BC39125A92D546055F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B8B31D762B3677F746970AF6; - remoteInfo = "IceProperties iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - A0B964A97E56EA4A520F2D12 /* PBXContainerItemProxy */ = { + 98DB500817B95AC1BE905C7A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 37631E1832EC47AB18B6F9F8; - remoteInfo = "IceOptionalAMD iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - A0CA1F9B17E30E7BAF26B71C /* PBXContainerItemProxy */ = { + 991264BBD05F5B0C3EB15175 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = BBA5FF013C8B19537743DE0C; + remoteInfo = "IceHold iOS"; }; - A100CA95376252E5800514F5 /* PBXContainerItemProxy */ = { + 9A9011F308379E6B0B07DF7C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - A157DC24CBE36B244ACB33AB /* PBXContainerItemProxy */ = { + 9C64BBEB1865EAF981E3B50B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1564B348BA2786B8C14E7ADE; - remoteInfo = "IceLocatorDiscovery C++11 macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - A2A1E77182CE84BD40C21B16 /* PBXContainerItemProxy */ = { + 9D1505E60C38D15B1D840713 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = C4C1475F0319943EE6BF6CAB; - remoteInfo = "IceOptional iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - A39C25EFE0F64DB7A9B478A0 /* PBXContainerItemProxy */ = { + 9D5A32D676174C1C468BC8C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 16C02D2C934DC57FE079663F; + remoteInfo = "IceStorm iOS"; }; - A3BC08A426E1EAF2D3E3C628 /* PBXContainerItemProxy */ = { + 9EAC2BB7D69A92CC378D399F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - A3C1495B32AB5F22BE735595 /* PBXContainerItemProxy */ = { + A14C3825AE339D2C4D4C65DF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4685FAE2AEBE43E1EEA7F814; - remoteInfo = "IceDefaultServant iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - A3DE40439BF5697F6F51FA48 /* PBXContainerItemProxy */ = { + A2C96F9A6982B7F377ED37D4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - A49B5F2F56F51281018F1781 /* PBXContainerItemProxy */ = { + A51CFA7AB7E9E40ED0DF1944 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 8E4EE2567B3C187D2F9C1173; + remoteInfo = "IceDefaultValue iOS"; }; - A79F4E7B8C8022F4E4E8E520 /* PBXContainerItemProxy */ = { + A5B8085302BFA40AF3522E4B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - A84BFF87D0198C1872FE0CD9 /* PBXContainerItemProxy */ = { + A6DC1B99D20022B136E62F81 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = CC929AD29689B47CA62D417E; + remoteInfo = "IceUdp iOS"; }; - A908C6545007DE1E5506F130 /* PBXContainerItemProxy */ = { + A9D86FD03FA249C0E1B1FF42 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - A9329B710B1FB152D0828949 /* PBXContainerItemProxy */ = { + AB0351D1ED35B9AC93D57E65 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 0EDA203583B355501DD47E73; + remoteInfo = "IceSSLConfiguration iOS"; }; - A9514F70D63C6A5A071F30C7 /* PBXContainerItemProxy */ = { + ABDC8BDE7C177CC5735A455B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = FB42232B69F121EBC030A837; - remoteInfo = "IceOperationsAMD iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - AAE46F8A6CE4764CD1EB75C6 /* PBXContainerItemProxy */ = { + ABE4C8E7C88C74E206D2105E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E08F994D81F1404BD2BF4D5A; - remoteInfo = "IceRetry iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - ABB6F45CD4ED637CBEED9AB2 /* PBXContainerItemProxy */ = { + ACE53CA2816C4E55258DDBF3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3639C4450BB9A2FD62EC83B1; - remoteInfo = "IceAdapterDeactivation macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - AD112DE19AB3306F14D5B1C1 /* PBXContainerItemProxy */ = { + AE9D345A351B33C079E3FC91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 45549440E1718C4D35E63237; + remoteInfo = "IceAcm macOS"; }; - AF68E94A7402B6E6732C6E90 /* PBXContainerItemProxy */ = { + B0030EF96F2C9179821DEEDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - B2D2ED3DAE209ABD4665CF6C /* PBXContainerItemProxy */ = { + B19925B9ED338D734914D922 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 5722522ABF0B09D7099DBA1F; - remoteInfo = "IceStorm iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - B41E82BC6E8AA6D7768B6039 /* PBXContainerItemProxy */ = { + B285BE39E77D3B8ED9754FD9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = EB3EA3436E39E34BB754ECF1; - remoteInfo = "IceProxy iOS"; + remoteGlobalIDString = C07B8E267CA90FCDBE4E7E7D; + remoteInfo = "IceImpl macOS"; }; - B4CEAFEF840521EE5CB279B2 /* PBXContainerItemProxy */ = { + B2DBBBA58DCF59CA9E9CA36B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 77D3FCCE81BDE4D86C21D2FC; - remoteInfo = "IceServantLocatorAMD iOS"; + remoteGlobalIDString = 2997C7A465709CD09CD4C4BB; + remoteInfo = "IceDefaultServant macOS"; }; - B523031CD273161B6D2E776F /* PBXContainerItemProxy */ = { + B38B23126632727546B9AF43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - B71C584CA75E8A5ED4B1ED58 /* PBXContainerItemProxy */ = { + B44F1E29F31C520BAD808D20 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - B94FFD3BF72B7B892C425131 /* PBXContainerItemProxy */ = { + B58780123737EA9831766563 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 27F3896A1D44D94EF855517D; - remoteInfo = "IceOperations iOS"; + remoteGlobalIDString = 34AC5913121CF6E0F793DEDD; + remoteInfo = "IceOptional iOS"; }; - B97E399B4A2F2C32AF384EEB /* PBXContainerItemProxy */ = { + B69CE10E62DE8F029C6CBA37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = B8D5C1F592E31ABE249CC078; + remoteInfo = "IceStorm macOS"; }; - BB3D6DAD19EBA911820ACFD7 /* PBXContainerItemProxy */ = { + B6C22FC8D0F087C940837712 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B6CEDAE0FF7E5682835597A; - remoteInfo = "IceSlicingExceptions macOS"; + remoteGlobalIDString = 4CDAAF1A166952EC0C4E0BF1; + remoteInfo = "IceImpl iOS"; }; - BD25CE387C2F7A6673DC1249 /* PBXContainerItemProxy */ = { + B7F1953731CF30A6D0C42344 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = AEE1F674AD81A9327E42EDDB; + remoteInfo = "IceAdapterDeactivation iOS"; }; - BD8948999598714FBF24D4CA /* PBXContainerItemProxy */ = { + B89F2D0235F69678736B2597 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; remoteInfo = "Ice iOS"; }; - BE56FBD87AA52E5AC92C9110 /* PBXContainerItemProxy */ = { + B92E478B0BBBA773E2AC843C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B4169718E508CA7736735EF9; - remoteInfo = "IceSSLConfiguration iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - BE5965ED547B5BA3F3E5EA26 /* PBXContainerItemProxy */ = { + B98AF5B51203F4D0188792E2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AC5B52B4AAA6CC13CA8A2DDB; + remoteInfo = "Glacier2 iOS"; }; - BEFAAB2D9FB1EEE67D4C764A /* PBXContainerItemProxy */ = { + BB2F38D82D49B3702C78F330 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - BF06298AD8E4646AE89AE32D /* PBXContainerItemProxy */ = { + BC08447AFDB3B5F220C7F52A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 665EE5441D076F90F4516A23; - remoteInfo = "IceDiscovery C++11 macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - BFC9235FE83BA2E248689D61 /* PBXContainerItemProxy */ = { + BC52C300EB2A04A651C8A75E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - C148D02B6CEDAB28D97CAF65 /* PBXContainerItemProxy */ = { + BC72A5BAF0F8B596CDDDDF97 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0CCC3C20156C399AF82BA12D; - remoteInfo = "IceInterceptor iOS"; + remoteGlobalIDString = 41AF2CA6936313B5E6F391BD; + remoteInfo = "IceHold macOS"; }; - C34BCDB1C760A2DCC9950149 /* PBXContainerItemProxy */ = { + BCC16596ECA2804FEDB53B69 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 98CD3D7B6AB129005DDDED37; - remoteInfo = "IceOptional macOS"; + remoteGlobalIDString = C07B8E267CA90FCDBE4E7E7D; + remoteInfo = "IceImpl macOS"; }; - C4AD91397B522AA9E23C597D /* PBXContainerItemProxy */ = { + BCEA82B1F942CA1B16338658 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = A250D484C77105742100E390; + remoteInfo = "IceGrid macOS"; }; - C4F17837E68B18F1150A9D09 /* PBXContainerItemProxy */ = { + BD3E6E18E657D24DC3A40C9D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - C58DECEDE46042796024EE83 /* PBXContainerItemProxy */ = { + BE1E84FF3A8338A1BA3DFE4A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 1E5D4D4FE7BB61EAB8ECA266; - remoteInfo = "Ice C++11 iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - C66710A873A6375613BB94E8 /* PBXContainerItemProxy */ = { + C177500A281F8265CCD482BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 4BB02C0AE52711EB3F20C5D7; - remoteInfo = "IceAmi iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - C951F048C4F5208A6E9DA412 /* PBXContainerItemProxy */ = { + C20D2C69AEEDD95371E42ACB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 124476FE277A9E3ABE9F4A34; - remoteInfo = "IceObjects iOS"; + remoteGlobalIDString = B7EFE020C9D77334FB6C5B4B; + remoteInfo = "IceOperations iOS"; }; - C9B59001DFFF30A9E98EE502 /* PBXContainerItemProxy */ = { + C266014555D8E6DBEF4A28F2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = C80A8E405B320E680839566D; - remoteInfo = "IceSlicingObjects macOS"; + remoteGlobalIDString = 7EB54A3072775CD2177DC7A7; + remoteInfo = "IceExceptions iOS"; }; - CAE51B4E432EBC708C039700 /* PBXContainerItemProxy */ = { + C35EB83D7756B70D9A40DD3E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - CC3F335017C739B8F7DFFE67 /* PBXContainerItemProxy */ = { + C4D21D47AAB3654BCCDC3144 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 04ABE78C2D82D8E0F3B6615C; + remoteInfo = "Ice C++11 macOS"; }; - CCE86294CB35A02288A09380 /* PBXContainerItemProxy */ = { + C640207D4C684B47C8580F7D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - CD9099A61B35FDCAC27B5E62 /* PBXContainerItemProxy */ = { + C6FAC2B7A282B158A959FF06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - CD92B8558C26C6D9F51DC698 /* PBXContainerItemProxy */ = { + CA56ABC7E7B37A199F53B865 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = AC5B52B4AAA6CC13CA8A2DDB; + remoteInfo = "Glacier2 iOS"; }; - CE2AE6F980B037377B66B113 /* PBXContainerItemProxy */ = { + CAFBDF8687533CCA806C1502 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B0416354B0422CE06305497C; - remoteInfo = "IceSlicingExceptions iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - CECFB40220DF43A9D4B2475A /* PBXContainerItemProxy */ = { + CD34B6091220C74DD1668C00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = D2A90EB733FA2B780783AADF; + remoteInfo = "IceOptional macOS"; }; - CEF1ED2A44B2BAE0AE0B676B /* PBXContainerItemProxy */ = { + CE57E0618D88D8B0EDCFAE66 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; + remoteGlobalIDString = A83EF428E73401A533092DB4; remoteInfo = "TestCommon macOS"; }; - CFA71F24E3EF55BB92294A36 /* PBXContainerItemProxy */ = { + CF727DA49691973064686C6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 1F99406342A96A78168E74BB; + remoteInfo = "IceServantLocator macOS"; }; - D204316036368C4278CE7559 /* PBXContainerItemProxy */ = { + D0EC1560DF36D4E14A0B954C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0BE885FE5E5BBE860323877D; - remoteInfo = "IceUdp iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - D2736822D87D78823604F385 /* PBXContainerItemProxy */ = { + D4D39EE0C45DB478740DD88A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 995512D73E07EFE9CD097A94; - remoteInfo = "IceFacets macOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - D39B58791CFE826FC5C0B3CE /* PBXContainerItemProxy */ = { + D515AAF200C59B874CB199F9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = CA2ED7A56EF4FAC83454B118; - remoteInfo = "IceOptionalAMD macOS"; + remoteGlobalIDString = C2F3B80C3A24BFA9444F31E1; + remoteInfo = "IceInheritance iOS"; }; - D3C23D87DFDCA738814D482C /* PBXContainerItemProxy */ = { + D60BD7E9DC5676E77F63EDDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3682D0A08A431497D8699B03; - remoteInfo = "IceSlicingExceptionsAMD macOS"; + remoteGlobalIDString = 46452DCDFFD6A246079637CB; + remoteInfo = "IceAcm iOS"; }; - D4F4E1CE75C1E6E9EEED1551 /* PBXContainerItemProxy */ = { + D673464449D815C693CED06F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - D650A6A6607044C14838039D /* PBXContainerItemProxy */ = { + D738E969E2DDF9D604BAAD45 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = D2C1A9BA75231D8469946A3C; - remoteInfo = "IceHold macOS"; - }; - D7E079C305C44DE9B4CD61BB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; - proxyType = 1; - remoteGlobalIDString = A58A9C1B02FC1B2964645F6D; - remoteInfo = "IceAdmin iOS"; + remoteGlobalIDString = E47FCF3BB733DC4EC57A0924; + remoteInfo = "IceObjects iOS"; }; - D8416E33B6CD2C36AD8B6C5E /* PBXContainerItemProxy */ = { + D97E20121570AE74FCF873DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - D9A193151B4BA9E858011342 /* PBXContainerItemProxy */ = { + DB666A0A9E696FCCA300C8D7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; + remoteGlobalIDString = EE743BE7277805136A7EEB71; remoteInfo = "Ice macOS"; }; - DE9F785118DDEF3B4D7CFAC0 /* PBXContainerItemProxy */ = { + DC5AE239C7B721B9673DD654 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 4CDAAF1A166952EC0C4E0BF1; + remoteInfo = "IceImpl iOS"; }; - E074E4486CC1CB2F8544E30B /* PBXContainerItemProxy */ = { + DC9398A2524EFC9ABDCDD65D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 57285D8128490A28FD5E1EA9; + remoteInfo = "IceSlicingExceptions macOS"; }; - E0BE0570BFAF46ED9153321D /* PBXContainerItemProxy */ = { + DC9533A8C2C8F985E804CD9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 14E9DB904AE22B49F37C4175; - remoteInfo = "IceEnums macOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - E14468F9EC4A90BE63C326F8 /* PBXContainerItemProxy */ = { + DD86754DFB50565D3B9C1645 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 15259193E3C55F25AB0F68C2; - remoteInfo = "IceImpl iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - E2C6757F98AD2F3BCFA443AB /* PBXContainerItemProxy */ = { + E00FE735E612D8AD79F39317 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 9F8CD7854A90F92273855E8E; - remoteInfo = "IceExceptionsAMD macOS"; + remoteGlobalIDString = 9A9DEB6418C9257648D6A235; + remoteInfo = "IceAmi iOS"; }; - E32897EE35C8CACD0A7F8480 /* PBXContainerItemProxy */ = { + E28C5869BB6C1CC613CD30BB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - E32CCBD20385AB74896F5913 /* PBXContainerItemProxy */ = { + E32F18D290F55AE591D00478 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B015EA95DFADDD31E102004C; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = A1FCF6486037B74ACCD22503; + remoteInfo = "IceSlicingObjects macOS"; }; - E5B684721705FCA27DC73170 /* PBXContainerItemProxy */ = { + E455388208A742768A7D24EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 57D39C477D54466601C5A786; + remoteInfo = "IceExceptionsAMD iOS"; }; - E5EDE10DBD743B2B88272616 /* PBXContainerItemProxy */ = { + E650749F9DE5664CE7EFD2FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = B8D5C1F592E31ABE249CC078; + remoteInfo = "IceStorm macOS"; }; - E695A78610E3BF21AF2E469C /* PBXContainerItemProxy */ = { + E6950B775308746D5C44E728 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = BCD219D62CE917ADBC7AFD22; + remoteInfo = "IceProxyAMD iOS"; }; - E77E183E549A254F40DE3B02 /* PBXContainerItemProxy */ = { + E7695BD8EE27DDCDDC9CD1C9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 3CB27B168E65D6B824278AE1; + remoteInfo = "IceSlicingExceptionsAMD iOS"; }; - E7EE39CAA698BC3A8AAC4904 /* PBXContainerItemProxy */ = { + E7C2FF626DBEF09B758F3F47 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = BCECD790F76F93F791126123; - remoteInfo = "IceStream macOS"; + remoteGlobalIDString = 627EF9C25191013A38BA3C83; + remoteInfo = "IceDefaultValue macOS"; }; - EA43F5A92F5981734F841172 /* PBXContainerItemProxy */ = { + E956E0C6D4280C3D1EC78328 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 21CBD45E7CE90BF8C75C80EB; - remoteInfo = "IceFacets iOS"; + remoteGlobalIDString = 14535688C6E2E4A839C04451; + remoteInfo = "IceLocatorDiscovery C++11 macOS"; }; - EBDF70525CF268A20F7D6539 /* PBXContainerItemProxy */ = { + E99774074A8FF35E057B2617 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - EC5119E3EC0EF3AD72305691 /* PBXContainerItemProxy */ = { + E9D5A68388B16A6E41C42542 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = F4A16370E4157DCD4CF7F964; + remoteInfo = "SliceEscape macOS"; }; - EDB765EAF9B6F87E4B6F972C /* PBXContainerItemProxy */ = { + EA5010438DC08BDCE3A224EC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = E1EEB80531F6CCE4CB628B62; + remoteInfo = "IceAdmin macOS"; }; - EE042DB16B155396659BCB8A /* PBXContainerItemProxy */ = { + EB4069F072DB9B568B95EE5A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 27BA347B00896E18F811823C; - remoteInfo = "Glacier2 macOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - EEB85058AAB0ED8D1F09CA5B /* PBXContainerItemProxy */ = { + EBDBA820E18BCDE686908DF9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 615480D42FAF508D7F8AA5BC; + remoteInfo = "IceOperations macOS"; }; - EF17EE72FA310A0624E0A94F /* PBXContainerItemProxy */ = { + EC4B7698A70E3DEE1849D547 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; - remoteInfo = "TestCommon iOS"; + remoteGlobalIDString = 31D342F49CC37B0DFA959D8A; + remoteInfo = "IceInvoke iOS"; }; - EFDC1B11E41C9B68528DA3AB /* PBXContainerItemProxy */ = { + ED22EDC542CA4128A4272E26 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - EFFE91856D641568551E0037 /* PBXContainerItemProxy */ = { + EE9FB5C41B9FBA5CC9ADF816 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = C6AFD5D37CF11FE461D86DD8; - remoteInfo = "IceStream iOS"; + remoteGlobalIDString = 3E69BE60A2C26A59EEE938DC; + remoteInfo = "IceScope iOS"; }; - F0CAC9CB4CB4C06E1BE93C9E /* PBXContainerItemProxy */ = { + EF4E1423CA3DE48796FBF7D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - F16177A362E8400BCAED17B7 /* PBXContainerItemProxy */ = { + F2074BD9EB83504F96A73C4C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 6ABC458490AA5F904B381F7D; - remoteInfo = "IceScope iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - F1D462422970113630813AAE /* PBXContainerItemProxy */ = { + F292D38B412A25F57B561E8C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 0DA6226AD5937A1F51BF8750; - remoteInfo = "Ice C++11 macOS"; + remoteGlobalIDString = 5A26265E443FF04358AE528C; + remoteInfo = "IceExceptions macOS"; }; - F29B89EA6B0E2094CEA3BB00 /* PBXContainerItemProxy */ = { + F2C07CC5EC3AE2EF3E48430B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B015EA95DFADDD31E102004C; - remoteInfo = "Glacier2 iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; - F2B2A9DEA03772448940BD96 /* PBXContainerItemProxy */ = { + F347A0D0390120C571DF18FE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = FFD3EBD911A26B666F11DC8C; - remoteInfo = "IceInfo iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - F40C812FFC2DDF6D46FFC42D /* PBXContainerItemProxy */ = { + F3A66F44F7A8713864CD6250 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 46A2B970AAE6DC244C6522E3; - remoteInfo = "TestCommon macOS"; + remoteGlobalIDString = 9F95E6A433F94E974D32566F; + remoteInfo = "IceTimeout macOS"; }; - F4338620F6575E0B75D4964F /* PBXContainerItemProxy */ = { + F3F9BFAF309FD4836BD0FDF4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = DF67C7AEC35876C0CCF4A96A; + remoteInfo = "IceServices iOS"; }; - F686607852CB67216AA7BB52 /* PBXContainerItemProxy */ = { + F56C6CA8F14343C786663240 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = E9620956250DB1FF4F31CD7B; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; remoteInfo = "TestCommon iOS"; }; - F6A28F925DEE920CAA8D477F /* PBXContainerItemProxy */ = { + F61FA6822996E3BB551D7DDB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - F7ACA790D939A0F3860CFBFF /* PBXContainerItemProxy */ = { + F8E3F3CD0C91D48B98C016D3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = 49D15054211B9CC6B08CB18E; + remoteInfo = "IceDiscovery C++11 iOS"; }; - F7E75593187CF84DFF596746 /* PBXContainerItemProxy */ = { + F999F6D9AA5364C5641B87EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F022C46667133AF20CDD4CC; - remoteInfo = "Ice macOS"; + remoteGlobalIDString = 08C942FD89E4D9E7FA113627; + remoteInfo = "IceServantLocator iOS"; }; - F882422A1D0EA82F4DB7EEB8 /* PBXContainerItemProxy */ = { + FA38DD4A2599FD79A1FCA902 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = CBED3CEC107C5D8FD12D1423; - remoteInfo = "IceLocatorDiscovery C++11 iOS"; + remoteGlobalIDString = C428EA0E3133ABA37187BE30; + remoteInfo = "TestCommon iOS"; }; - FAB4BD8100D683B13DF8CD38 /* PBXContainerItemProxy */ = { + FAF02CF1DDD58658039E04DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = EA20FD9B92B4F4A508F0738F; - remoteInfo = "IceSlicingObjectsAMD iOS"; + remoteGlobalIDString = AA856D3D0EBE73A655B10DCE; + remoteInfo = "Ice iOS"; }; - FBD1556FF95503AFAD857D61 /* PBXContainerItemProxy */ = { + FB51C03C494EF521DC56095E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = C01CDDFC69A3BAEE2DBC5560; - remoteInfo = "IceProperties macOS"; + remoteGlobalIDString = C4633684AA9C8E2D8E2A3BF1; + remoteInfo = "IceSSLConfiguration macOS"; }; - FCAC7B70417844AE5079A64E /* PBXContainerItemProxy */ = { + FBF4CD6EAD3CA367161D3B9C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 47EF87D7ED829723C501BBBC; - remoteInfo = "Ice iOS"; + remoteGlobalIDString = A83EF428E73401A533092DB4; + remoteInfo = "TestCommon macOS"; }; - FDA7520F217E9DCD8734D732 /* PBXContainerItemProxy */ = { + FC804A9AB6BDB06C3653BEDF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = B3DD3174FEA726C76B98C914; - remoteInfo = "IceInheritance macOS"; + remoteGlobalIDString = B564F6A99559D774EF563A3F; + remoteInfo = "IceObjects macOS"; }; - FEA730C593FB853B9D5918F5 /* PBXContainerItemProxy */ = { + FDF9A5645B0240D99DE2FF8B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 6C4BDC12B235E63B3B624E92 /* Project object */; + containerPortal = FD69C74E28D7406AE764029E /* Project object */; proxyType = 1; - remoteGlobalIDString = 3E1C18FAE5F2A3A2849292E9; - remoteInfo = "IceGrid iOS"; + remoteGlobalIDString = EE743BE7277805136A7EEB71; + remoteInfo = "Ice macOS"; }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ - 1A7952D3F70EC49CDEE66AD5 /* Copy Symbols */ = { + 7340F995D6B9555E6836DD71 /* Copy Symbols */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; @@ -4947,3120 +4947,3120 @@ name = "Copy Symbols"; runOnlyForDeploymentPostprocessing = 0; }; - 2E68AF26B73DB2B867826B67 /* Copy Frameworks */ = { + 78E695ABEF856CFDE7F09489 /* Copy Symbols */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; - dstSubfolderSpec = 10; + dstSubfolderSpec = 16; files = ( - 75227D518ADE0FDD8BB56EC0 /* Glacier2.framework in Copy Frameworks */, - BCC0808B177FAE9FEABE3637 /* Ice.framework in Copy Frameworks */, - 4582943A45BCCFF48F5781A0 /* IceAcm.bundle in Copy Frameworks */, - C4A9911E857795CC98245C08 /* IceAdapterDeactivation.bundle in Copy Frameworks */, - 939E3C8EF6821939BB399260 /* IceAdmin.bundle in Copy Frameworks */, - 16DD456DFAA5CCD7214C4A22 /* IceAmi.bundle in Copy Frameworks */, - 06D3D4E5620CA3A6A493BEE9 /* IceBinding.bundle in Copy Frameworks */, - 2693EEA463DCA2747EDF41AB /* IceDefaultServant.bundle in Copy Frameworks */, - 6BF60F183E75B000A497D876 /* IceDefaultValue.bundle in Copy Frameworks */, - 262F1A7BECD5EACD2CC40FDF /* IceEnums.bundle in Copy Frameworks */, - 35FFAA7246FD899886CFC418 /* IceExceptions.bundle in Copy Frameworks */, - 11414641E84F1809DDD3B613 /* IceExceptionsAMD.bundle in Copy Frameworks */, - CFA7149771E4E05F86CACAEC /* IceFacets.bundle in Copy Frameworks */, - E53053B6B36580F1FACF54E6 /* IceGrid.framework in Copy Frameworks */, - 0792D6EF94B03FBB419E442C /* IceHold.bundle in Copy Frameworks */, - E6CADC0AEA94CB6E36899759 /* IceImpl.framework in Copy Frameworks */, - 13D94D7919F7C5CFD506420B /* IceInfo.bundle in Copy Frameworks */, - 41E0DA93CD81990203545959 /* IceInheritance.bundle in Copy Frameworks */, - 4CE8A1AED2F78DBC7A6F5911 /* IceInterceptor.bundle in Copy Frameworks */, - AC74D2E9FA0C3AAD47C2DA14 /* IceInvoke.bundle in Copy Frameworks */, - 8C405EBA1694D7FF455A53FC /* IceLocation.bundle in Copy Frameworks */, - CBC4997044D30BC6B745F59C /* IceObjects.bundle in Copy Frameworks */, - C8A271A6B9E2A3B373DEA321 /* IceOperations.bundle in Copy Frameworks */, - CE3A38CCDF2197E61C9E474D /* IceOperationsAMD.bundle in Copy Frameworks */, - 2DBE706E25A1D98BAF735316 /* IceOptional.bundle in Copy Frameworks */, - 346E08396546C485F32F403D /* IceOptionalAMD.bundle in Copy Frameworks */, - 947D36770B7E41C0CF6070AF /* IceProperties.bundle in Copy Frameworks */, - 47EBE96207D7DAD1B4A05816 /* IceProxy.bundle in Copy Frameworks */, - 27181703FBC2E1DA0369B011 /* IceProxyAMD.bundle in Copy Frameworks */, - CE332DB5B59EF340DF237C87 /* IceRetry.bundle in Copy Frameworks */, - B33093C6C7B960A8B169B494 /* IceScope.bundle in Copy Frameworks */, - 4A60F317B7C57A4BA4276CD5 /* IceServantLocator.bundle in Copy Frameworks */, - 6193DB215E30BDE1EE5C02A5 /* IceServantLocatorAMD.bundle in Copy Frameworks */, - 92EB5200C3F206225868057F /* IceServices.bundle in Copy Frameworks */, - B0906221F3F02F1FBAAC361F /* IceSlicingExceptions.bundle in Copy Frameworks */, - 9DA06B2460129485D0D0FC13 /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, - 5A7ADD214B9F2723C29FC653 /* IceSlicingObjects.bundle in Copy Frameworks */, - D98DDBE334D3B4A22B0E7877 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, - B66607F1562CDE6DE5F645A2 /* IceSSLConfiguration.bundle in Copy Frameworks */, - 59D55BBECC6B6E3C99441DD9 /* IceStorm.framework in Copy Frameworks */, - F328CF7B99163CF43D402BCF /* IceStream.bundle in Copy Frameworks */, - 39A90996478580DFA113B50C /* IceTimeout.bundle in Copy Frameworks */, - F60EB885BE59E46B98CCC18D /* IceUdp.bundle in Copy Frameworks */, - BCCA590876E281C9161D5EC3 /* PromiseKit.xcframework in Copy Frameworks */, - EBF0FFBC4582779DAE204736 /* SliceEscape.bundle in Copy Frameworks */, - 41DCD9F3CBE93222E74B7929 /* TestCommon.framework in Copy Frameworks */, ); - name = "Copy Frameworks"; + name = "Copy Symbols"; runOnlyForDeploymentPostprocessing = 0; }; - 7265DF301F6A8C870B07C87B /* Copy Frameworks */ = { + A1C4BAC4C5B1AD05F298379D /* Copy Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; dstSubfolderSpec = 10; files = ( - 286DBDDCA7308C38785E37B6 /* Glacier2.framework in Copy Frameworks */, - 7226352D625E5F3A323F6544 /* Ice.framework in Copy Frameworks */, - 19157D1B47D51F5EEAD12A62 /* IceAcm.bundle in Copy Frameworks */, - D579E0158CD7C7A74B599CEF /* IceAdapterDeactivation.bundle in Copy Frameworks */, - 334E0154C5339FA9329AA0B0 /* IceAdmin.bundle in Copy Frameworks */, - 0D383F343BD3B56CF3D71B12 /* IceAmi.bundle in Copy Frameworks */, - CD1F9DFF380D7F1443D4FEF0 /* IceBinding.bundle in Copy Frameworks */, - 8B072745B9D1BFB4FC07A09C /* IceDefaultServant.bundle in Copy Frameworks */, - 2A1BF705C2694060F11F41CD /* IceDefaultValue.bundle in Copy Frameworks */, - 98B2A6FDFCCAF3D6A739C75D /* IceEnums.bundle in Copy Frameworks */, - A0F0419D7371A0309C002C7D /* IceExceptions.bundle in Copy Frameworks */, - 002761C37FEC1BD863FA8E09 /* IceExceptionsAMD.bundle in Copy Frameworks */, - A0E4424A99CD859FD8FD25E7 /* IceFacets.bundle in Copy Frameworks */, - D9345ED4DE66A2BAA85CA059 /* IceGrid.framework in Copy Frameworks */, - 0446C65D43F18EBBF3567AB3 /* IceHold.bundle in Copy Frameworks */, - BFF4B06A3B63F0E279CB791A /* IceImpl.framework in Copy Frameworks */, - BD3417F2E2FBD12FD4B69013 /* IceInfo.bundle in Copy Frameworks */, - 2EC1ACB1D1AED9D08FB2C85C /* IceInheritance.bundle in Copy Frameworks */, - EE0C58EBA222F0AA0F4C23DD /* IceInterceptor.bundle in Copy Frameworks */, - 05F6543EDFBED1EBFC008F2B /* IceInvoke.bundle in Copy Frameworks */, - 34A5FAF205B1C97960404164 /* IceLocation.bundle in Copy Frameworks */, - 8E94CBFE7990DA554FD8486B /* IceObjects.bundle in Copy Frameworks */, - A0F6CDD4D0492D0F76120C5E /* IceOperations.bundle in Copy Frameworks */, - FB17C62388DE6EC5CB5A056D /* IceOperationsAMD.bundle in Copy Frameworks */, - E02F6DDDD2ED9F8653D657CE /* IceOptional.bundle in Copy Frameworks */, - 11EE9AE06E06C28E26C86ABF /* IceOptionalAMD.bundle in Copy Frameworks */, - 2F5E8687DACCC41271E739BD /* IceProperties.bundle in Copy Frameworks */, - CD7938B5EBA8E41CE6BB84C0 /* IceProxy.bundle in Copy Frameworks */, - C6F645B973A0595EE324BCA1 /* IceProxyAMD.bundle in Copy Frameworks */, - 0B1C6B9A74ACC04B0A179DB8 /* IceRetry.bundle in Copy Frameworks */, - C8448ED4409CF9EBF0C49970 /* IceScope.bundle in Copy Frameworks */, - 930D5DC8FE58F79C670C4B53 /* IceServantLocator.bundle in Copy Frameworks */, - 9B97D6477B5DA5D0B6B6CBE1 /* IceServantLocatorAMD.bundle in Copy Frameworks */, - 205960CCD9421E7A27191DF8 /* IceServices.bundle in Copy Frameworks */, - 6A5DD9246DBD3A1F04ED77E2 /* IceSlicingExceptions.bundle in Copy Frameworks */, - AF2890B36A3BA35B274E95FD /* IceSlicingExceptionsAMD.bundle in Copy Frameworks */, - 8A60D09C00842CA98676C01D /* IceSlicingObjects.bundle in Copy Frameworks */, - CE927DA9106DD63E68BAF7C8 /* IceSlicingObjectsAMD.bundle in Copy Frameworks */, - DF94FB33F38943155FBEB05A /* IceSSLConfiguration.bundle in Copy Frameworks */, - 6EC44E0D9D10E523E6D87478 /* IceStorm.framework in Copy Frameworks */, - 03BF29AA9F7A17F23A9C1835 /* IceStream.bundle in Copy Frameworks */, - 480AB36ADFC17F0A48F9C061 /* IceTimeout.bundle in Copy Frameworks */, - 91F97CED743E6596CC82D08F /* IceUdp.bundle in Copy Frameworks */, - 752E35B46EA4505EC83EC1B4 /* PromiseKit.xcframework in Copy Frameworks */, - 2F32133784FFFE60DDB6CF8E /* SliceEscape.bundle in Copy Frameworks */, - AFFE613A4380B21C593CC677 /* TestCommon.framework in Copy Frameworks */, + 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 Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; - 7C24181BC1E542A189342A05 /* Copy Symbols */ = { + E5942E58C8A34C1C4ED4BD5C /* Copy Frameworks */ = { isa = PBXCopyFilesBuildPhase; buildActionMask = 2147483647; dstPath = ""; - dstSubfolderSpec = 16; + dstSubfolderSpec = 10; files = ( + 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 Symbols"; + name = "Copy Frameworks"; runOnlyForDeploymentPostprocessing = 0; }; /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 00EA1D526F07AB7E2403ACDE /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/exceptions/TestAMD.ice; sourceTree = ""; }; - 01024283C896A201E69A8C38 /* EndpointF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointF.cpp; path = ../cpp/src/Ice/EndpointF.cpp; sourceTree = ""; }; - 01EC749BC2A7D4FCA7490B47 /* Endpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Endpoint.cpp; path = ../cpp/src/Ice/Endpoint.cpp; sourceTree = ""; }; - 01FA7B3F816F4E1BBAC6D837 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 021E511AD9C9C3E31BB6E815 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 02BEC5D52B98E16486723B15 /* OpaqueEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OpaqueEndpointI.cpp; path = ../cpp/src/Ice/OpaqueEndpointI.cpp; sourceTree = ""; }; - 03031EB4AE5379FF32A3AE17 /* WSAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSAcceptor.cpp; path = ../cpp/src/Ice/WSAcceptor.cpp; sourceTree = ""; }; - 030DE03918D9D61428E52F76 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0351F96883BE42489669584D /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0367CC264BC70C8FAE95481D /* OnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OnewaysAMI.swift; path = test/Ice/operations/OnewaysAMI.swift; sourceTree = ""; }; - 039C029EE5082592E88E387D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/objects/Test.ice; sourceTree = ""; }; - 03A03F30C5444AE9322EB66F /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/hold/Test.ice; sourceTree = ""; }; - 03BAC263458A1F99AADFE0B5 /* InstrumentationI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationI.cpp; path = ../cpp/src/Ice/InstrumentationI.cpp; sourceTree = ""; }; - 03DCA74ACCAE41A0ADDF52A1 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 04ACFF850FB52C42D1D0256D /* SecureTransportUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportUtil.cpp; path = ../cpp/src/IceSSL/SecureTransportUtil.cpp; sourceTree = ""; }; - 055E1371140F03C46BE4933C /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 059F06CFD18E4BA02BA0E025 /* IPEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPEndpointI.cpp; path = ../cpp/src/Ice/IPEndpointI.cpp; sourceTree = ""; }; - 07A58E70155739B4065E5FFC /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Glacier2/Metrics.ice; sourceTree = ""; }; - 07E2F60461505D97899C6536 /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 07F1F50A48CFD4DA0680F11B /* 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; }; - 0832C0FE4DD00F57DBF41A23 /* StringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverter.cpp; path = ../cpp/src/IceUtil/StringConverter.cpp; sourceTree = ""; }; - 0875A1294F5D23AA2CB7EB75 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/info/TestI.swift; sourceTree = ""; }; - 0A0A432A404B1F07E7108C66 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0A20490EA6CDB84BD5F7B138 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Ice/Info.plist; sourceTree = ""; }; - 0AE9DC976389286FF16B21B0 /* ProcessI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ProcessI.swift; path = src/Ice/ProcessI.swift; sourceTree = ""; }; - 0AFA47DD3A3466A544964C35 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/exceptions/Server.swift; sourceTree = ""; }; - 0B930854633BDF8CF5FFE22C /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/exceptions/TestAMDI.swift; sourceTree = ""; }; - 0C14F40BEFB46405B9613959 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/exceptions/Client.swift; sourceTree = ""; }; - 0C651862FD101870CF346580 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0CD6F8266C083D7C5841D1E9 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/enums/TestI.swift; sourceTree = ""; }; - 0D0C50C25B4B163B7098033F /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0D168BB468F0B9234386530C /* EndpointInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointInfoFactory.swift; path = src/Ice/EndpointInfoFactory.swift; sourceTree = ""; }; - 0D1A1C798CA5E03EACE7C337 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultValue/Client.swift; sourceTree = ""; }; - 0E218220353976A1D5C07CF1 /* Current.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Current.swift; path = src/Ice/Current.swift; sourceTree = ""; }; - 0F1198C1D619743981CCBB42 /* IceAdapterDeactivation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdapterDeactivation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 0FE38FC76D319902C8A9D90F /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 0FEAB4A7EE835A05B2C8DBB4 /* TraceLevels.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceLevels.cpp; path = ../cpp/src/Ice/TraceLevels.cpp; sourceTree = ""; }; - 0FEE34A113E3DC71D9DB8450 /* BatchOneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOneways.swift; path = test/Ice/operations/BatchOneways.swift; sourceTree = ""; }; - 104B3F85E85A1F464938A580 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/objects/AllTests.swift; sourceTree = ""; }; - 107BEF97F3E06320E00B46A6 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/Glacier2/Info.plist; sourceTree = ""; }; - 116A9F625EC4AC51F7044FFA /* IceObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1239FA44EA72DF60C02E90F3 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/location/Test.ice; sourceTree = ""; }; - 136C9F1CB0181AA674220B28 /* WSEndpoint.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSEndpoint.cpp; path = ../cpp/src/Ice/WSEndpoint.cpp; sourceTree = ""; }; - 137ED7A94BB9E11CC053CEEF /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/servantLocator/Test.ice; sourceTree = ""; }; - 14422400D546329D7D9926DF /* Exception.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Exception.h; path = src/IceImpl/Exception.h; sourceTree = ""; }; - 145ACBB9D8EC5ABDF5109CD9 /* LoggerUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerUtil.cpp; path = ../cpp/src/Ice/LoggerUtil.cpp; sourceTree = ""; }; - 148E0EF0FB954A41B9CB2C83 /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 14C3C55AD97EAC4C2C236144 /* EndpointFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactory.cpp; path = ../cpp/src/Ice/EndpointFactory.cpp; sourceTree = ""; }; - 1504B193CDECAF18F430FF2B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/info/Client.swift; sourceTree = ""; }; - 15530AE76DACDC2FD0C54C11 /* FacetMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FacetMap.swift; path = src/Ice/FacetMap.swift; sourceTree = ""; }; - 15D305717C35A677E3D0BF24 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/scope/TestI.swift; sourceTree = ""; }; - 16484C090CFD38F73675B0C6 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/objects/TestI.swift; sourceTree = ""; }; - 1683ABE87E8B25BC9C881B82 /* IceDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceDiscovery.ice; path = ../slice/IceDiscovery/IceDiscovery.ice; sourceTree = ""; }; - 17A01CF5F8BB77C282B69730 /* ObjectPrx.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectPrx.h; path = src/IceImpl/ObjectPrx.h; sourceTree = ""; }; - 18123528674C5DBEFE8DC183 /* ConnectionInfoF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfoF.cpp; path = ../cpp/src/IceSSL/ConnectionInfoF.cpp; sourceTree = ""; }; - 1A6263E6EB0712A439E75D09 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/acm/Server.swift; sourceTree = ""; }; - 1A8FB36F298F50F55357C8BA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/acm/AllTests.swift; sourceTree = ""; }; - 1AC4B3614730C36B93E6CE83 /* CertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CertificateI.cpp; path = ../cpp/src/IceSSL/CertificateI.cpp; sourceTree = ""; }; - 1B507EB7D03295B2920C11D7 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/slicing/objects/Server.swift; sourceTree = ""; }; - 1B68A5626BF6AEC2DC151AA9 /* Connection.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connection.cpp; path = ../cpp/src/Ice/Connection.cpp; sourceTree = ""; }; - 1B6EF30F36318A639D638152 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/optional/Test.ice; sourceTree = ""; }; - 1B7B8369877501337E9D5211 /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1B91C23CCEBC74093AC64126 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultValue/Test.ice; sourceTree = ""; }; - 1BB1E5488617EE9721803F5E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/admin/Server.swift; sourceTree = ""; }; - 1C216F290E9890052BC928A0 /* ServantLocator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocator.cpp; path = ../cpp/src/Ice/ServantLocator.cpp; sourceTree = ""; }; - 1C3992E2FB7D669B8812B76F /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 1CA0FCE8D4431A2B65028231 /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1CACDF62E69944DB57D56E47 /* BlobjectFacade.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = BlobjectFacade.mm; path = src/IceImpl/BlobjectFacade.mm; sourceTree = ""; }; - 1CCF2A334B2BAF9588A6DB42 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 1D406B3CFFDCECBDD678B23A /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/stream/Test.ice; sourceTree = ""; }; - 1E052D5C173FB6BC71D76D94 /* Identity.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Identity.ice; path = ../slice/Ice/Identity.ice; sourceTree = ""; }; - 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocatorI.swift; path = test/Ice/servantLocator/ServantLocatorI.swift; sourceTree = ""; }; - 1ED43BAF74AEE3D118146F5D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/scope/Test.ice; sourceTree = ""; }; - 1FF3BD3182DC2FD23143C3E5 /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 20B1410DBC821FBE25FF0338 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/adapterDeactivation/AllTests.swift; sourceTree = ""; }; - 212F6BD6C0162AF0C8440224 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/objects/ServerPrivateAMD.ice; sourceTree = ""; }; - 216CADE6B58D39565FA60EB2 /* ControllerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ControllerI.swift; path = test/TestDriver/iOS/ControllerI.swift; sourceTree = ""; }; - 223354CEBDD25407EF26C216 /* SSLConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLConnectionInfo.swift; path = src/Ice/SSLConnectionInfo.swift; sourceTree = ""; }; - 227169D88E42D03490D191BE /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/proxy/AllTests.swift; sourceTree = ""; }; - 22BA0A2A8A538610278E1A67 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/objects/Client.swift; sourceTree = ""; }; - 22EB15880754E559CBAD530E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/IceSSL/configuration/Client.swift; sourceTree = ""; }; - 230B98F91F974374C839BF91 /* StreamTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamTransceiver.cpp; path = ../cpp/src/Ice/ios/StreamTransceiver.cpp; sourceTree = ""; }; - 23F70E58CAF1EDFC2272E758 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 242E9F50378F7C12B118349B /* ObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ObjectAdapter.h; path = src/IceImpl/ObjectAdapter.h; sourceTree = ""; }; - 24630F961292732B29C6782C /* 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; }; - 24DEF718003A036A8518D89B /* 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; }; - 250055BA1C62F324250B2548 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/IceSSL/configuration/Server.swift; sourceTree = ""; }; - 2527DF77271CA0B2E6A8E151 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/IceSSL/configuration/Test.ice; sourceTree = ""; }; - 25F81F514862521A7077DBE1 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/stream/Client.swift; sourceTree = ""; }; - 25FB164477089E05881BEDAF /* IceImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceImpl.h; path = src/IceImpl/IceImpl.h; sourceTree = ""; }; - 261E69F6A52C94909DF014AC /* UnsupportedAdminFacet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = UnsupportedAdminFacet.h; path = src/IceImpl/UnsupportedAdminFacet.h; sourceTree = ""; }; - 265E767F5805E36FCC9CB2A0 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultServant/AllTests.swift; sourceTree = ""; }; - 272A8F85D1DA874AFB64025B /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/operations/TestAMD.ice; sourceTree = ""; }; - 27DB5A110EBA9310691BDEFB /* RFC2253.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RFC2253.cpp; path = ../cpp/src/IceSSL/RFC2253.cpp; sourceTree = ""; }; - 284CD0E7A9CF17BA732ECF6B /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceIAP/EndpointInfo.cpp; sourceTree = ""; }; - 28BB763CB891D9E198CB4E13 /* LocalObject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalObject.swift; path = src/Ice/LocalObject.swift; sourceTree = ""; }; - 28DF745A2D928C90F9F4419D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/admin/Test.ice; sourceTree = ""; }; - 2A2C21B3DB0E4BE665D1475F /* SSLEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SSLEndpointInfo.swift; path = src/Ice/SSLEndpointInfo.swift; sourceTree = ""; }; - 2A5CBC38E08DDBAA7ABAEF6E /* LoggerWrapper.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LoggerWrapper.swift; path = src/Ice/LoggerWrapper.swift; sourceTree = ""; }; - 2A65FC585E09C2A76B625463 /* Process.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.mm; path = src/IceImpl/Process.mm; sourceTree = ""; }; - 2B615C29B6876A457E770F75 /* IceInfo.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInfo.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 2C0D102CF3F4701F3AE046D7 /* BlobjectFacade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = BlobjectFacade.h; path = src/IceImpl/BlobjectFacade.h; sourceTree = ""; }; - 2D3CBEB67344D577D334AFA7 /* Selector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Selector.cpp; path = ../cpp/src/Ice/Selector.cpp; sourceTree = ""; }; - 2D5A45BA52FE831A3ADA94B1 /* ValueFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactory.cpp; path = ../cpp/src/Ice/ValueFactory.cpp; sourceTree = ""; }; - 2E5EBCC2B8851DB99485BB9D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/udp/Test.ice; sourceTree = ""; }; - 2F59158F7D5C392A0D1D7CE8 /* ACM.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ACM.cpp; path = ../cpp/src/Ice/ACM.cpp; sourceTree = ""; }; - 2F6CB1CBABB18103F23A7D3B /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/optional/TestAMD.ice; sourceTree = ""; }; - 2FB7753A8D2686CAE06B2CE4 /* ImplicitContext.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ImplicitContext.mm; path = src/IceImpl/ImplicitContext.mm; sourceTree = ""; }; - 2FF3B3842F37F3295343B6C4 /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 301D621EB654AC9C3E4E4E28 /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 30561094206DE7E5EB3B1E5B /* IceOptional.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptional.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 307A532F3C4EB11FF4260F44 /* ServantManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantManager.swift; path = src/Ice/ServantManager.swift; sourceTree = ""; }; - 318B426F0ED72A433F61DD1B /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/operations/Collocated.swift; sourceTree = ""; }; - 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = TestCommon.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 3207B48B98719A7CBFD2337B /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 322A1089B56E24F412CCAD3A /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceDiscovery/PluginI.cpp; sourceTree = ""; }; - 32C784477F9A73A13FD21C65 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/exceptions/Server.swift; sourceTree = ""; }; - 336BA488F873C8ED6AC70009 /* ObjectAdapterI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapterI.swift; path = src/Ice/ObjectAdapterI.swift; sourceTree = ""; }; - 33E7FA0C07F541066A9CE1C7 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/hold/Client.swift; sourceTree = ""; }; - 344C21FB7DF7176184125859 /* SystemdJournalI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SystemdJournalI.cpp; path = ../cpp/src/Ice/SystemdJournalI.cpp; sourceTree = ""; }; - 34811EA9E8187AFA7F8C8D41 /* TcpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpEndpointI.cpp; path = ../cpp/src/Ice/TcpEndpointI.cpp; sourceTree = ""; }; - 34E8CB61ABA1F28BB7E698FA /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/IceSSL/EndpointI.cpp; sourceTree = ""; }; - 3547A6F171E6B76B9FC63BAE /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/exceptions/TestAMD.ice; sourceTree = ""; }; - 3637F3FA49D41442776DFDA3 /* IncomingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IncomingAsync.cpp; path = ../cpp/src/Ice/IncomingAsync.cpp; sourceTree = ""; }; - 36463ABF4A88FE5854D32E77 /* Thread.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Thread.cpp; path = ../cpp/src/Ice/Thread.cpp; sourceTree = ""; }; - 368C3BEB6491D68E441DBB33 /* StreamEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamEndpointI.cpp; path = ../cpp/src/Ice/ios/StreamEndpointI.cpp; sourceTree = ""; }; - 36A67621EF8B41A02D1A5852 /* IAPEndpointInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPEndpointInfo.swift; path = src/Ice/IAPEndpointInfo.swift; sourceTree = ""; }; - 37ABE7A8D0AB189693887A28 /* LocalException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalException.cpp; path = ../cpp/src/Ice/LocalException.cpp; sourceTree = ""; }; - 37F1FC9323F6C45B1AC35F58 /* LoggerAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerAdminI.cpp; path = ../cpp/src/Ice/LoggerAdminI.cpp; sourceTree = ""; }; - 37F4F28FF6999FB92889AECC /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/facets/Server.swift; sourceTree = ""; }; - 38D440D5894319742F272192 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/location/TestI.swift; sourceTree = ""; }; - 390FE2A8AA85FA1F066DB95F /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/exceptions/TestI.swift; sourceTree = ""; }; - 39513FAD1AB0E49430E2633E /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/proxy/ServerAMD.swift; sourceTree = ""; }; - 398A19BC7513CD91E69E4025 /* EndpointInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointInfo.cpp; path = ../cpp/src/IceSSL/EndpointInfo.cpp; sourceTree = ""; }; - 3B77BB5BC36ACDA87B6A69FF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/scope/AllTests.swift; sourceTree = ""; }; - 3BDD0F141EA94FBF630E95CA /* InitializationData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InitializationData.swift; path = src/Ice/InitializationData.swift; sourceTree = ""; }; - 3E03FB734840AA5D7A8F37DA /* IceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceUtil.h; path = src/IceImpl/IceUtil.h; sourceTree = ""; }; - 3E8D76449FAFB649E9E74273 /* LoggerF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerF.cpp; path = ../cpp/src/Ice/LoggerF.cpp; sourceTree = ""; }; - 3ECA877329DEF57B54A08C55 /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceSSL/ConnectionInfo.cpp; sourceTree = ""; }; - 3F0C20EFBCAFF52B67C7AD11 /* BatchOnewaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BatchOnewaysAMI.swift; path = test/Ice/operations/BatchOnewaysAMI.swift; sourceTree = ""; }; - 3F23A1CF4CB61B7741942A35 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/ami/AllTests.swift; sourceTree = ""; }; - 4067CCA4E285628C8AF454D9 /* Config.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Config.h; path = src/IceImpl/Config.h; sourceTree = ""; }; - 407EDDBF73A172C9F18D2E55 /* EndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointI.cpp; path = ../cpp/src/Ice/EndpointI.cpp; sourceTree = ""; }; - 40E032E865784822992B0432 /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/slicing/objects/TestAMD.ice; sourceTree = ""; }; - 40EB3E43A832B13BDE8D4720 /* PropertiesAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesAdminI.cpp; path = ../cpp/src/Ice/PropertiesAdminI.cpp; sourceTree = ""; }; - 41551E09D595E50A24EF5892 /* Incoming.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Incoming.cpp; path = ../cpp/src/Ice/Incoming.cpp; sourceTree = ""; }; - 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 419431F09AEC1476FE7B4EFC /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/IceSSL/Instance.cpp; sourceTree = ""; }; - 41ECD3890AF22A95E9667E8F /* ConnectionRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionRequestHandler.cpp; path = ../cpp/src/Ice/ConnectionRequestHandler.cpp; sourceTree = ""; }; - 42391EF6184A353552A00883 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 42A2439DC6CA50093CA51089 /* Admin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Admin.ice; path = ../slice/IceGrid/Admin.ice; sourceTree = ""; }; - 431D8C7B1791F56014305D03 /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4344142A2FC9DF9B5722AFD5 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/servantLocator/TestAMDI.swift; sourceTree = ""; }; - 436D4DDD3929D36CB74E51A9 /* ObjectAdapterI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterI.cpp; path = ../cpp/src/Ice/ObjectAdapterI.cpp; sourceTree = ""; }; - 4419CDC00A0E26DD43BE74BD /* Exception.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.mm; path = src/IceImpl/Exception.mm; sourceTree = ""; }; - 442DF01B56EA1176B35EB3BB /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/info/Test.ice; sourceTree = ""; }; - 44837E3321ED1322DA4D4AE9 /* Current.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Current.cpp; path = ../cpp/src/Ice/Current.cpp; sourceTree = ""; }; - 44BC740D6506C3F1C8458122 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/servantLocator/Client.swift; sourceTree = ""; }; - 44DB441A5970DCEF394351B7 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/binding/Test.ice; sourceTree = ""; }; - 4584337E9DC542C82D3CFB88 /* TestCommon.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestCommon.swift; path = test/TestCommon/TestCommon.swift; sourceTree = ""; }; - 461937D2DA4EABD1399760BD /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 46F06EE2B5CE1BD96013A0E1 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 47085E57F8BA1CB63A56B0BD /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/objects/Test.ice; sourceTree = ""; }; - 47144CDB90451B47BF3BCB58 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/exceptions/Test.ice; sourceTree = ""; }; - 474135D6386C100AE4286B3D /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/info/Server.swift; sourceTree = ""; }; - 474923F0179531C32355FF66 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; - 49F7B52E1EBFD001EE29C9E6 /* Descriptor.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Descriptor.ice; path = ../slice/IceGrid/Descriptor.ice; sourceTree = ""; }; - 4A1629C3A24F66265F742150 /* Instrumentation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Instrumentation.swift; path = src/Ice/Instrumentation.swift; sourceTree = ""; }; - 4A1722EBDE6AC496F748A964 /* ImplicitContextF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextF.cpp; path = ../cpp/src/Ice/ImplicitContextF.cpp; sourceTree = ""; }; - 4AEEFDD3BB442CB6663CD683 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/inheritance/Collocated.swift; sourceTree = ""; }; - 4B584730D968F098A9E3D59A /* ConnectionInfoFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionInfoFactory.swift; path = src/Ice/ConnectionInfoFactory.swift; sourceTree = ""; }; - 4D2DBA835FDF24BF6450F945 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/optional/ServerAMD.swift; sourceTree = ""; }; - 4D3E7C6DAF7A1136E094036E /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 4D590A59E3F6155EADC253B1 /* OutputStream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = OutputStream.h; path = src/IceImpl/OutputStream.h; sourceTree = ""; }; - 4E783E25173DD3CB4652293E /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/interceptor/Client.swift; sourceTree = ""; }; - 4E880F031CD68893D2F69EFB /* IconvStringConverter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IconvStringConverter.cpp; path = ../cpp/src/Ice/IconvStringConverter.cpp; sourceTree = ""; }; - 4EE29237269F09AE7E678DB3 /* Registry.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Registry.ice; path = ../slice/IceGrid/Registry.ice; sourceTree = ""; }; - 4FE15755ADD9B5EE9808D8C1 /* AdminFacetFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AdminFacetFactory.swift; path = src/Ice/AdminFacetFactory.swift; sourceTree = ""; }; - 5085715D52B4CB7BA1DD1F9E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/objects/AllTests.swift; sourceTree = ""; }; - 50D65B51261AD566166DB14B /* CollocatedRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CollocatedRequestHandler.cpp; path = ../cpp/src/Ice/CollocatedRequestHandler.cpp; sourceTree = ""; }; - 51106D60A56141EBC49C9318 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/retry/Server.swift; sourceTree = ""; }; - 52104DAB06FD2367D5F4159A /* TcpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpTransceiver.cpp; path = ../cpp/src/Ice/TcpTransceiver.cpp; sourceTree = ""; }; - 52122170F02276E3275AAE2B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/defaultServant/Client.swift; sourceTree = ""; }; - 525EFBA91C000927B6DE6289 /* IceSSLConfiguration.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSSLConfiguration.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 52675C01C923B38208A8C760 /* SSLInfo.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = SSLInfo.ice; path = ../slice/Glacier2/SSLInfo.ice; sourceTree = ""; }; - 526B263C4E63A5FD88236538 /* UnsupportedAdminFacet.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = UnsupportedAdminFacet.mm; path = src/IceImpl/UnsupportedAdminFacet.mm; sourceTree = ""; }; - 52C032A6AC0462FD61E22750 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/timeout/AllTests.swift; sourceTree = ""; }; - 5300396B18CE9C2FCA0A8E2F /* Transceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Transceiver.cpp; path = ../cpp/src/Ice/Transceiver.cpp; sourceTree = ""; }; - 53016732D7F1EE45D95136EB /* AcceptorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AcceptorI.cpp; path = ../cpp/src/IceSSL/AcceptorI.cpp; sourceTree = ""; }; - 532C14EE7E6458905C05203B /* Connector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Connector.cpp; path = ../cpp/src/Ice/Connector.cpp; sourceTree = ""; }; - 5349B4AD3076D48E54DF2ADC /* IAPConnectionInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = IAPConnectionInfo.swift; path = src/Ice/IAPConnectionInfo.swift; sourceTree = ""; }; - 54B51F429E8B56A715B61412 /* PropertyDict.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertyDict.ice; path = ../slice/Ice/PropertyDict.ice; sourceTree = ""; }; - 54D06539D647623F84D3C475 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/binding/Server.swift; sourceTree = ""; }; - 55A1E522AC3532C58222E061 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/facets/Test.ice; sourceTree = ""; }; - 5621C5105CF819261AA00022 /* UnknownSlicedValue.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UnknownSlicedValue.swift; path = src/Ice/UnknownSlicedValue.swift; sourceTree = ""; }; - 56AD8F95D9A540F5AD97E976 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/invoke/TestI.swift; sourceTree = ""; }; - 5794745FC0FAEAA72EC1AD49 /* PropertiesI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesI.swift; path = src/Ice/PropertiesI.swift; sourceTree = ""; }; - 57B34B2AE4E0AB6BD04A92F0 /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 57EB6F28F663DF2D21006713 /* Value.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Value.cpp; path = ../cpp/src/Ice/Value.cpp; sourceTree = ""; }; - 57EE371E56576A8317C8E490 /* IceLocatorDiscovery.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceLocatorDiscovery.ice; path = ../slice/IceLocatorDiscovery/IceLocatorDiscovery.ice; sourceTree = ""; }; - 5873A42F0D248A8146E98350 /* StringConverterPlugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringConverterPlugin.cpp; path = ../cpp/src/Ice/StringConverterPlugin.cpp; sourceTree = ""; }; - 59519EE11AE42BA7F6AF270A /* RecMutex.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RecMutex.cpp; path = ../cpp/src/IceUtil/RecMutex.cpp; sourceTree = ""; }; - 5A030366430881927186CFFF /* Util.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Util.swift; path = src/Ice/Util.swift; sourceTree = ""; }; - 5A11FDE12E0158896D2902C2 /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5A1210D169DA5033BD26A6D9 /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5A2D266EA2336769024DD2B4 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/objects/TestI.swift; sourceTree = ""; }; - 5A3C4393F89E82FE9B0092C3 /* 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; }; - 5A577A9FBA08AE185D53C990 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/acm/TestI.swift; sourceTree = ""; }; - 5A83C77E4B0D0283CA18020F /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/facets/AllTests.swift; sourceTree = ""; }; - 5B2DF10CBEFF10D1055C9690 /* IceStorm.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = IceStorm.ice; path = ../slice/IceStorm/IceStorm.ice; sourceTree = ""; }; - 5C0743CBF803A996FBBFE2C5 /* Blobject.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Blobject.swift; path = src/Ice/Blobject.swift; sourceTree = ""; }; - 5CB34604AACBE72A2D272966 /* FileParser.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = FileParser.ice; path = ../slice/IceGrid/FileParser.ice; sourceTree = ""; }; - 5CD54C2AA8BE23781C057132 /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/exceptions/ClientPrivate.ice; sourceTree = ""; }; - 5D1D431EC03874A83605E840 /* IceServantLocator.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocator.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.ice; path = ../slice/Ice/PropertiesAdmin.ice; sourceTree = ""; }; - 5DC88A1165E0648123E7B24E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/operations/Server.swift; sourceTree = ""; }; - 5E1178133F12C06313829C9E /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/IceGrid/Session.ice; sourceTree = ""; }; - 5E41A2284123652035B9626D /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 5E45A803280C9975C7D2D5B6 /* PropertiesAdmin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PropertiesAdmin.h; path = src/IceImpl/PropertiesAdmin.h; sourceTree = ""; }; - 5E51180718D104ED58F2E78A /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceGrid/Info.plist; sourceTree = ""; }; - 5EB90003DBB8FFCE6E52AB05 /* TrustManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TrustManager.cpp; path = ../cpp/src/IceSSL/TrustManager.cpp; sourceTree = ""; }; - 5F67CEA524FF25FE6949915A /* Acceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Acceptor.cpp; path = ../cpp/src/Ice/Acceptor.cpp; sourceTree = ""; }; - 5FABA39878E8DF7941FB168E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/slicing/exceptions/Test.ice; sourceTree = ""; }; - 60F7DD828BF511AA7D9F0CFF /* IceExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6229E6CA09F91C68DAB3EBD2 /* InstrumentationF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InstrumentationF.cpp; path = ../cpp/src/Ice/InstrumentationF.cpp; sourceTree = ""; }; - 622CDB9E04A43DA05E046991 /* libIceDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 623BF93B592B69730EBB8EDA /* MetricsAdminI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsAdminI.cpp; path = ../cpp/src/Ice/MetricsAdminI.cpp; sourceTree = ""; }; - 627B9BCC0B4AD0B6A1F666D2 /* Communicator.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Communicator.mm; path = src/IceImpl/Communicator.mm; sourceTree = ""; }; - 628F9CA7D6D383137FC355E3 /* Initialize.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Initialize.swift; path = src/Ice/Initialize.swift; sourceTree = ""; }; - 62FF3521D46F685DF4E667C3 /* Exception.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Exception.cpp; path = ../cpp/src/Ice/Exception.cpp; sourceTree = ""; }; - 6328AE24A94F7B78F7B70026 /* Convert.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Convert.h; path = src/IceImpl/Convert.h; sourceTree = ""; }; - 6331AC6AD612A19D131621A7 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 638F85E5C6C7085DF46F390B /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/exceptions/TestAMDI.swift; sourceTree = ""; }; - 63B3CE5DAEFF4FCC9EC9707D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/properties/Client.swift; sourceTree = ""; }; - 64802AF97D0C116399E87B38 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/optional/TestAMDI.swift; sourceTree = ""; }; - 64B510708D04016FA459B8AA /* Base64.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Base64.cpp; path = ../cpp/src/Ice/Base64.cpp; sourceTree = ""; }; - 64F29DD7C25FD1D8C1FBF3CD /* TcpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpConnector.cpp; path = ../cpp/src/Ice/TcpConnector.cpp; sourceTree = ""; }; - 668C6C0361ED4E7B91231D65 /* ServerPrivateAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivateAMD.ice; path = test/Ice/slicing/exceptions/ServerPrivateAMD.ice; sourceTree = ""; }; - 67DA500D7FCA7E4FCAAEBE8B /* Convert.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Convert.mm; path = src/IceImpl/Convert.mm; sourceTree = ""; }; - 680CE9BA4A204FA3FAC93375 /* ImplicitContext.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ImplicitContext.h; path = src/IceImpl/ImplicitContext.h; sourceTree = ""; }; - 68D9BDAF960BA51A8BF52198 /* ProtocolPluginFacade.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolPluginFacade.cpp; path = ../cpp/src/Ice/ProtocolPluginFacade.cpp; sourceTree = ""; }; - 694A7AEF1BC68DE001EACE83 /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/IceStorm/Metrics.ice; sourceTree = ""; }; - 695139937807444B932DB3F3 /* UdpTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpTransceiver.cpp; path = ../cpp/src/Ice/UdpTransceiver.cpp; sourceTree = ""; }; - 6A3AF2E27A291665E3020008 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/exceptions/ServerAMD.swift; sourceTree = ""; }; - 6AE2E85C3FD16B73660AEE0A /* ConnectorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectorI.cpp; path = ../cpp/src/IceSSL/ConnectorI.cpp; sourceTree = ""; }; - 6B5589624E8C18A764174736 /* IceOptionalAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOptionalAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6B94A0EF9213206745C31CC8 /* ConsoleUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConsoleUtil.cpp; path = ../cpp/src/IceUtil/ConsoleUtil.cpp; sourceTree = ""; }; - 6D4683E4EEA3C7003504AE96 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/ami/Test.ice; sourceTree = ""; }; - 6D8A172CCED325773F9ACA7A /* IceServantLocatorAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServantLocatorAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6DA216EEEB74D482231E9424 /* SecureTransportTransceiverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportTransceiverI.cpp; path = ../cpp/src/IceSSL/SecureTransportTransceiverI.cpp; sourceTree = ""; }; - 6DD1ECACDD717AF71AF60969 /* Properties.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Properties.h; path = src/IceImpl/Properties.h; sourceTree = ""; }; - 6E18609323F580043357FC2C /* Buffer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Buffer.cpp; path = ../cpp/src/Ice/Buffer.cpp; sourceTree = ""; }; - 6E9093C94D6596E3660EDFBB /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/proxy/TestI.swift; sourceTree = ""; }; - 6F7C2EFAAD90AF05C836E8AD /* IceExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */ = {isa = PBXFileReference; includeInIndex = 1; name = PromiseKit.xcframework; path = ../Carthage/Build/PromiseKit.xcframework; sourceTree = ""; }; - 6FB36E85F6FA876D88996239 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/enums/AllTests.swift; sourceTree = ""; }; - 6FCD89BFC87D0D93ADD625C0 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/operations/TestI.swift; sourceTree = ""; }; - 7026D4F8367154C1BE4B7F26 /* ServantLocator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServantLocator.swift; path = src/Ice/ServantLocator.swift; sourceTree = ""; }; - 71DC04F4318C243C54C6708F /* ImplicitContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContext.swift; path = src/Ice/ImplicitContext.swift; sourceTree = ""; }; - 72083FEA504B3EAD2B1B6FE2 /* IceAdmin.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAdmin.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7226B2863E023A530714AEFD /* InputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InputStream.swift; path = src/Ice/InputStream.swift; sourceTree = ""; }; - 724325600514092A8D262EAA /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/udp/Server.swift; sourceTree = ""; }; - 724C0E53DAF83BB50C3912A4 /* Endpoint.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Endpoint.mm; path = src/IceImpl/Endpoint.mm; sourceTree = ""; }; - 72BF04B404B4A6ABFA18A71A /* Connection.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Connection.swift; path = src/Ice/Connection.swift; sourceTree = ""; }; - 738DC08C9436E513AAF5205F /* ConnectionFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionFactory.cpp; path = ../cpp/src/Ice/ConnectionFactory.cpp; sourceTree = ""; }; - 73CDB2D5673ECFD9B238AAB9 /* Time.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Time.cpp; path = ../cpp/src/IceUtil/Time.cpp; sourceTree = ""; }; - 73E18D1ADAE4685486879439 /* OutputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputStream.cpp; path = ../cpp/src/Ice/OutputStream.cpp; sourceTree = ""; }; - 73EC11AA0D472514A88B1245 /* BlobjectAsync.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BlobjectAsync.swift; path = src/Ice/BlobjectAsync.swift; sourceTree = ""; }; - 74C4E15A84E6E19C4F7072FE /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/ami/TestI.swift; sourceTree = ""; }; - 762976DF5DE13C4200542E0F /* 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; }; - 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointTypes.ice; path = ../slice/Ice/EndpointTypes.ice; sourceTree = ""; }; - 773839314982B481FB9A5F0B /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 77E66F7A0331FF21333AE3FB /* BatchRequestQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = BatchRequestQueue.cpp; path = ../cpp/src/Ice/BatchRequestQueue.cpp; sourceTree = ""; }; - 7806EDFB543369686343312B /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/exceptions/ServerAMD.swift; sourceTree = ""; }; - 787DA99C9345BD9AFAFE23BC /* MetricsObserverI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MetricsObserverI.cpp; path = ../cpp/src/Ice/MetricsObserverI.cpp; sourceTree = ""; }; - 78A482E000141177A98F078F /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/proxy/Server.swift; sourceTree = ""; }; - 78E2A2D2066C58262F423252 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/scope/Client.swift; sourceTree = ""; }; - 79108D2FF0232C16468D88DE /* RetryQueue.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RetryQueue.cpp; path = ../cpp/src/Ice/RetryQueue.cpp; sourceTree = ""; }; - 79B81F0D55617DE7F0F891F6 /* Properties.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Properties.swift; path = src/Ice/Properties.swift; sourceTree = ""; }; - 79CF8D4448CD8F1D2AB9367C /* IceServices.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceServices.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7A5C5A1DEA6B7BB5ABC8C7DA /* InputStream.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputStream.cpp; path = ../cpp/src/Ice/InputStream.cpp; sourceTree = ""; }; - 7AA4D36E0018BED4FBB96979 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/invoke/Server.swift; sourceTree = ""; }; - 7AD3A474B7A1D069CCFC0AFF /* RouterInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RouterInfo.cpp; path = ../cpp/src/Ice/RouterInfo.cpp; sourceTree = ""; }; - 7C3C842B0893C4AC6BA6C676 /* IceTimeout.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceTimeout.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7C5527D47B4AA93DCBF5B076 /* Properties.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Properties.mm; path = src/IceImpl/Properties.mm; sourceTree = ""; }; - 7C57A532F569AC857B5BAC2E /* IceStream.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceStream.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = BuiltinSequences.ice; path = ../slice/Ice/BuiltinSequences.ice; sourceTree = ""; }; - 7CC8B0D3189E1EC893F9D4E0 /* Logger.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Logger.mm; path = src/IceImpl/Logger.mm; sourceTree = ""; }; - 7D253A2160FCD5C0E019B003 /* SliceInfo.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceInfo.swift; path = src/Ice/SliceInfo.swift; sourceTree = ""; }; - 7DB4E7AC16E22943F389DA62 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/operations/Test.ice; sourceTree = ""; }; - 7DDD904763300878E12820E2 /* Properties.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Properties.cpp; path = ../cpp/src/Ice/Properties.cpp; sourceTree = ""; }; - 7E05BB1F95B7599533D83026 /* Oneways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Oneways.swift; path = test/Ice/operations/Oneways.swift; sourceTree = ""; }; - 7E2686345DB372E56936CAA9 /* RequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandler.cpp; path = ../cpp/src/Ice/RequestHandler.cpp; sourceTree = ""; }; - 7E5AB0FB42BD3A39396266AC /* SecureTransportPluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportPluginI.cpp; path = ../cpp/src/IceSSL/SecureTransportPluginI.cpp; sourceTree = ""; }; - 7EC92AF3F5FC050268FC433B /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/info/AllTests.swift; sourceTree = ""; }; - 7F87F4E054DCB94D81AF2BE4 /* LocalObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LocalObject.h; path = src/IceImpl/LocalObject.h; sourceTree = ""; }; - 7FEE9254105C73243B44FFE6 /* OutputStream.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OutputStream.swift; path = src/Ice/OutputStream.swift; sourceTree = ""; }; - 7FF54833864397ACE8E797E1 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/retry/Test.ice; sourceTree = ""; }; - 800A52A540F1DA8547B1D22A /* ConnectionF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionF.cpp; path = ../cpp/src/Ice/ConnectionF.cpp; sourceTree = ""; }; - 803EE4274BE0AA9170794297 /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceSSL/PluginI.cpp; sourceTree = ""; }; - 806B7171CB7F0D3E6F836117 /* ObjectPrx.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectPrx.mm; path = src/IceImpl/ObjectPrx.mm; sourceTree = ""; }; - 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Metrics.ice; path = ../slice/Ice/Metrics.ice; sourceTree = ""; }; - 80FAAEBFCC3A3BCA918A1783 /* IceBinding.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceBinding.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 817336550425E7439ECF507B /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8188B41289F2C073375F3D48 /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 829AECC82389A2F5E05C2960 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/retry/Collocated.swift; sourceTree = ""; }; - 849D140524843186122E2B5D /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 84BCFC47EF30B1DDA82EB275 /* ValueFactoryManagerI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactoryManagerI.swift; path = src/Ice/ValueFactoryManagerI.swift; sourceTree = ""; }; - 84E90B07958C12B403F8FF0C /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/ami/Collocated.swift; sourceTree = ""; }; - 850A2787B4B4A3CB3C74175F /* Session.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Session.ice; path = ../slice/Glacier2/Session.ice; sourceTree = ""; }; - 85132CE480BFBD047F6718C3 /* LocalException.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalException.swift; path = src/Ice/LocalException.swift; sourceTree = ""; }; - 863A6469470E9F1912BC6E4F /* Mutex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mutex.swift; path = src/Ice/Mutex.swift; sourceTree = ""; }; - 864A6D958111A066271C2056 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/slicing/objects/TestAMDI.swift; sourceTree = ""; }; - 86A893065E7D543BCF41F626 /* Endpoint.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Endpoint.swift; path = src/Ice/Endpoint.swift; sourceTree = ""; }; - 86B4DBD2E99AD2E1D9D13F26 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Glacier2/Router.ice; sourceTree = ""; }; - 86BEC7DFBDFA7D664AA2948F /* Proxy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Proxy.swift; path = src/Ice/Proxy.swift; sourceTree = ""; }; - 8748EAC5BFE5A97A4085F0DB /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/location/Client.swift; sourceTree = ""; }; - 8750D48101851C84B89B330A /* LoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LoggerI.cpp; path = ../cpp/src/Ice/LoggerI.cpp; sourceTree = ""; }; - 87DF00D7836869F2204A3283 /* IceLocation.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceLocation.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8857A465B5A01F88B674B7C8 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/retry/Client.swift; sourceTree = ""; }; - 88D78672154E80AA54EA998A /* ProxyFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProxyFactory.cpp; path = ../cpp/src/Ice/ProxyFactory.cpp; sourceTree = ""; }; - 89260FC783CBA8E95B993CBB /* Glacier2Swift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Glacier2Swift.h; path = src/Glacier2/Glacier2Swift.h; sourceTree = ""; }; - 89DACACD2C1AD4F3469CA088 /* SSLEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SSLEngine.cpp; path = ../cpp/src/IceSSL/SSLEngine.cpp; sourceTree = ""; }; - 8A635A54F2740AA6A0345900 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/hold/TestI.swift; sourceTree = ""; }; - 8AF093375A28D692055B8973 /* libIce C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8D10DFF57F34E081EBF41AFF /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 8D2B953157D627C928A6037A /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/scope/Server.swift; sourceTree = ""; }; - 8D32C52389F2ECA0048EE141 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/proxy/Test.ice; sourceTree = ""; }; - 8DE17663D635E9A4C17FAF76 /* Notifications.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Notifications.mm; path = ../cpp/src/Ice/ios/Notifications.mm; sourceTree = ""; }; - 8E312FEE4E94C01795C8BBD9 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/adapterDeactivation/Test.ice; sourceTree = ""; }; - 8F6E31AAAA244C75D4675291 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/exceptions/Client.swift; sourceTree = ""; }; - 90D35835E18D79ADAB716A16 /* Options.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Options.cpp; path = ../cpp/src/IceUtil/Options.cpp; sourceTree = ""; }; - 910BCA66868673D701E802CE /* Logger.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Logger.swift; path = src/Ice/Logger.swift; sourceTree = ""; }; - 911DD6C3D079AAD2A68FE941 /* EndpointFactoryManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EndpointFactoryManager.cpp; path = ../cpp/src/Ice/EndpointFactoryManager.cpp; sourceTree = ""; }; - 914E1A04B42CF82EDA413850 /* Object.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Object.swift; path = src/Ice/Object.swift; sourceTree = ""; }; - 9158AF482E818BC8C94168F9 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 91D39023FE37EB3ACD51A678 /* PropertiesAdminI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PropertiesAdminI.swift; path = src/Ice/PropertiesAdminI.swift; sourceTree = ""; }; - 9226ABAA5FAF037A4782672D /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/servantLocator/TestI.swift; sourceTree = ""; }; - 92A86220A97A6EB0CBFC944D /* ArgVector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ArgVector.cpp; path = ../cpp/src/Ice/ArgVector.cpp; sourceTree = ""; }; - 9330809B9C47D804EF5BC5E3 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 933DB0C83248BF059A7F1C20 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/inheritance/Server.swift; sourceTree = ""; }; - 945016AEA0FC7438D19E19B1 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/enums/Client.swift; sourceTree = ""; }; - 9460E602C8D4CFFC14B8BCDD /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/admin/AllTests.swift; sourceTree = ""; }; - 9467375F0E35C0FBB7688528 /* CtrlCHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CtrlCHandler.cpp; path = ../cpp/src/IceUtil/CtrlCHandler.cpp; sourceTree = ""; }; - 94E1968DB24F7AF587425A1C /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/binding/TestI.swift; sourceTree = ""; }; - 9502656F9828A55BF15B904F /* ClientPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ClientPrivate.ice; path = test/Ice/slicing/objects/ClientPrivate.ice; sourceTree = ""; }; - 950579F4E8C4DFF646EF3C51 /* ServantManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantManager.cpp; path = ../cpp/src/Ice/ServantManager.cpp; sourceTree = ""; }; - 950F3E962351FD9CFB2B4F24 /* IceOperations.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperations.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 95F4BB6C69D370E2E329C2E7 /* Object.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Object.cpp; path = ../cpp/src/Ice/Object.cpp; sourceTree = ""; }; - 9600C016070409DE6568A37E /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/interceptor/Test.ice; sourceTree = ""; }; - 96EF425FFAE7ADC67DD3FD81 /* PluginF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginF.cpp; path = ../cpp/src/Ice/PluginF.cpp; sourceTree = ""; }; - 983A2CBA8E5E46F1AEE78B78 /* Util.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Util.cpp; path = ../cpp/src/IceSSL/Util.cpp; sourceTree = ""; }; - 9883142AAE78B0D29D622EEB /* UdpEndpointI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpEndpointI.cpp; path = ../cpp/src/Ice/UdpEndpointI.cpp; sourceTree = ""; }; - 98A6F84D22ACDB0E77E825ED /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/exceptions/ServerPrivate.ice; sourceTree = ""; }; - 9947265006AE43D802120A4E /* LocalExceptionFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionFactory.swift; path = src/Ice/LocalExceptionFactory.swift; sourceTree = ""; }; - 998084A78E611312ABCE0CC7 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 99AF422C184D4E445CBFDCA9 /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = test/TestDriver/iOS/Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; - 9A343A525055E169CE399ADF /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/acm/Client.swift; sourceTree = ""; }; - 9A65923D521C078DCDBABA31 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/enums/Test.ice; sourceTree = ""; }; - 9ABB967DFEE9C5D24F7C42A2 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/proxy/Collocated.swift; sourceTree = ""; }; - 9B07536035C11C1E0934299F /* LocalObject.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = LocalObject.mm; path = src/IceImpl/LocalObject.mm; sourceTree = ""; }; - 9B5064B9C0DABEB987B39730 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/adapterDeactivation/TestI.swift; sourceTree = ""; }; - 9B8BE69409380DAA8F3C39DC /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/servantLocator/ServerAMD.swift; sourceTree = ""; }; - 9BDEAE47C449BAB487924895 /* EndpointSelectionType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointSelectionType.swift; path = src/Ice/EndpointSelectionType.swift; sourceTree = ""; }; - 9C004314E294893A903BC059 /* DynamicLibrary.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DynamicLibrary.cpp; path = ../cpp/src/Ice/DynamicLibrary.cpp; sourceTree = ""; }; - 9C83A2E19EDF012C6703AB53 /* OutputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutputUtil.cpp; path = ../cpp/src/IceUtil/OutputUtil.cpp; sourceTree = ""; }; - 9C991DFF2AAC0B41C6A1F408 /* CommunicatorI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CommunicatorI.swift; path = src/Ice/CommunicatorI.swift; sourceTree = ""; }; - 9CF9391197314E2751FD072B /* FormatType.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FormatType.swift; path = src/Ice/FormatType.swift; sourceTree = ""; }; - 9D8A8D9D48C0A5E19D013CFA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/inheritance/AllTests.swift; sourceTree = ""; }; - 9E386E5939BE4E20022B34C8 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/operations/Client.swift; sourceTree = ""; }; - 9E63A9A57CB0A4F537AA9E84 /* Forward.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Forward.ice; path = test/Ice/objects/Forward.ice; sourceTree = ""; }; - 9EEEF7EF10C88BEAC2595F7E /* IceSlicingExceptions.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptions.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 9EF15FCC42E00687BF6F16DE /* Communicator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Communicator.swift; path = src/Ice/Communicator.swift; sourceTree = ""; }; - 9F972A8E2DD097AC08C4A781 /* Context.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Context.ice; path = ../slice/Ice/Context.ice; sourceTree = ""; }; - 9FADED3C1D00A9AFBE02DACB /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/servantLocator/TestAMD.ice; sourceTree = ""; }; - 9FF873ABC0C688353DDDFBD8 /* libIce C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIce C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - A05F7539468832F6A1D1FE8E /* Twoways.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Twoways.swift; path = test/Ice/operations/Twoways.swift; sourceTree = ""; }; - A076886379887427EF43CAB5 /* TraceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = TraceUtil.mm; path = src/IceImpl/TraceUtil.mm; sourceTree = ""; }; - A0C68422D8FEA96E3FB21520 /* UtilException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UtilException.cpp; path = ../cpp/src/IceUtil/UtilException.cpp; sourceTree = ""; }; - A0D2E40EB5EB722B76219B03 /* Exception.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Exception.ice; path = ../slice/IceGrid/Exception.ice; sourceTree = ""; }; - A18062BD1E33BA800FDE662D /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/proxy/TestAMDI.swift; sourceTree = ""; }; - A1A0F1FD62421D88BD8F6E24 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/objects/Server.swift; sourceTree = ""; }; - A202DC196498CA41452751D4 /* 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; }; - A21AF317B8CCD5205D8A9013 /* ConnectionI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ConnectionI.swift; path = src/Ice/ConnectionI.swift; sourceTree = ""; }; - A2308C88106E21E86B64770B /* LocatorInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorInfo.cpp; path = ../cpp/src/Ice/LocatorInfo.cpp; sourceTree = ""; }; - A26AA7659D06EBA6062EF982 /* UdpConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UdpConnector.cpp; path = ../cpp/src/Ice/UdpConnector.cpp; sourceTree = ""; }; - A345098C97240AE15EE3E355 /* HttpParser.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = HttpParser.cpp; path = ../cpp/src/Ice/HttpParser.cpp; sourceTree = ""; }; - A3B0B441C377169B54CEB0DC /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/exceptions/AllTests.swift; sourceTree = ""; }; - A3BB783984531DDB15DA995D /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A3C699CA6ACD42014E3492D1 /* ObjectAdapter.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = ObjectAdapter.mm; path = src/IceImpl/ObjectAdapter.mm; sourceTree = ""; }; - A46BEB423DACD76BF4A68A19 /* ObserverHelper.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObserverHelper.cpp; path = ../cpp/src/Ice/ObserverHelper.cpp; sourceTree = ""; }; - A4E4652309AE1C7E4EEE2D6D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/optional/AllTests.swift; sourceTree = ""; }; - A594F0C1849CEE5DE3E665BC /* SliceFlags.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SliceFlags.swift; path = src/Ice/SliceFlags.swift; sourceTree = ""; }; - A7091E2B84A51D7D4E990597 /* Controller.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Controller.ice; path = ../scripts/Controller.ice; sourceTree = ""; }; - A70C14B2E0E746A0591AF1D5 /* Service.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Service.cpp; path = ../cpp/src/Ice/Service.cpp; sourceTree = ""; }; - A763F1E9B20B68CAD1D62D3F /* IceFacets.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceFacets.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A7CAB2E9D70B8A29FA66E759 /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - A83AFD09B0973C33E42BBA73 /* Value.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Value.swift; path = src/Ice/Value.swift; sourceTree = ""; }; - A83F9EE39111E400F0CF2C17 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/ami/Client.swift; sourceTree = ""; }; - A90D21866BAE0181F737C83C /* Logger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Logger.h; path = src/IceImpl/Logger.h; sourceTree = ""; }; - A9732906011677017B8FE8A9 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/slicing/objects/ServerAMD.swift; sourceTree = ""; }; - AA4F363A3C06C04C4B7E187E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instance.cpp; path = ../cpp/src/Ice/Instance.cpp; sourceTree = ""; }; - AA5FA8A0E09A3F3BC61D2909 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/inheritance/Client.swift; sourceTree = ""; }; - AB6A7BC8F66C9728566A553B /* ValueFactoryManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ValueFactoryManagerI.cpp; path = ../cpp/src/Ice/ValueFactoryManagerI.cpp; sourceTree = ""; }; - AD5E4ECB4BECCE515728C9F0 /* IceGridSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceGridSwift.h; path = src/IceGrid/IceGridSwift.h; sourceTree = ""; }; - AD73F53FFF7497EA96B009D6 /* libIceDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - AE6FDA00BFC81B40451B476D /* TraceUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TraceUtil.cpp; path = ../cpp/src/Ice/TraceUtil.cpp; sourceTree = ""; }; - AEAEF19C75C1808D288CE761 /* PropertiesI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesI.cpp; path = ../cpp/src/Ice/PropertiesI.cpp; sourceTree = ""; }; - AEE1AA28CFE3208D7116FD69 /* NativePropertiesAdmin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NativePropertiesAdmin.swift; path = src/Ice/NativePropertiesAdmin.swift; sourceTree = ""; }; - AF198F1B7E492421D2764DC7 /* TestDriver.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestDriver.app; sourceTree = BUILT_PRODUCTS_DIR; }; - AFA7ECC88F49663429276843 /* ObjectAdapterF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterF.cpp; path = ../cpp/src/Ice/ObjectAdapterF.cpp; sourceTree = ""; }; - AFCD3E590B98FDDB60A31C5B /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/binding/Client.swift; sourceTree = ""; }; - B08D997BB8E4794D4200FB23 /* PluginManagerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginManagerI.cpp; path = ../cpp/src/Ice/PluginManagerI.cpp; sourceTree = ""; }; - B15F39FC8689FC1FCB89F477 /* LocatorF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = LocatorF.ice; path = ../slice/Ice/LocatorF.ice; sourceTree = ""; }; - B17547CF25F9F6D499E59F4A /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B1834CCC901B15A44359D42A /* TestAMD.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = TestAMD.ice; path = test/Ice/proxy/TestAMD.ice; sourceTree = ""; }; - B19E7F86972D806170B222DD /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/facets/TestI.swift; sourceTree = ""; }; - B1E2C99A6DBB9132B74F4845 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/timeout/Client.swift; sourceTree = ""; }; - B1EAC7DC09EDCDE664A6D412 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/timeout/TestI.swift; sourceTree = ""; }; - B1EB3F3DCA4EBE0AC85EF8E1 /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - B2C7879A807808CED706CF2E /* StreamAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamAcceptor.cpp; path = ../cpp/src/Ice/ios/StreamAcceptor.cpp; sourceTree = ""; }; - B2D7894B631B2D78882A8F57 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/invoke/Test.ice; sourceTree = ""; }; - B33C3DAC38D7CB012602F1D5 /* DefaultsAndOverrides.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DefaultsAndOverrides.cpp; path = ../cpp/src/Ice/DefaultsAndOverrides.cpp; sourceTree = ""; }; - B33CD8E30BD014F5C4CA9222 /* Endpoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Endpoint.h; path = src/IceImpl/Endpoint.h; sourceTree = ""; }; - B354AAD31C61053198AA6359 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/exceptions/Collocated.swift; sourceTree = ""; }; - B3BBBD22CE72373968131654 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/location/AllTests.swift; sourceTree = ""; }; - B47DEFE1E23FC897465087A3 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = test/TestCommon/Info.plist; sourceTree = ""; }; - B4C555F0C2B146AF8D5EC356 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/defaultServant/Test.ice; sourceTree = ""; }; - B51AC77641CEE54D03AFFE1D /* Assets.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = test/TestDriver/iOS/Assets.xcassets; sourceTree = ""; }; - B51E89BDF16FF1D23C5FFD2F /* ConnectRequestHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectRequestHandler.cpp; path = ../cpp/src/Ice/ConnectRequestHandler.cpp; sourceTree = ""; }; - B538A5094459696C1D929F20 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/inheritance/Test.ice; sourceTree = ""; }; - B5F7B7EC6A1313D15C1D5F60 /* Incoming.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Incoming.swift; path = src/Ice/Incoming.swift; sourceTree = ""; }; - B678F2298413760C49C183ED /* ObjectAdapter.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapter.cpp; path = ../cpp/src/Ice/ObjectAdapter.cpp; sourceTree = ""; }; - B67D5EFC0BB322E8EF9ED64C /* NetworkProxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetworkProxy.cpp; path = ../cpp/src/Ice/NetworkProxy.cpp; sourceTree = ""; }; - B6927471763F231278861844 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/ami/Server.swift; sourceTree = ""; }; - B73411F554849A6348D021C0 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/hold/Server.swift; sourceTree = ""; }; - B73CE8E39782ED96D9A0DEE2 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/IceSSL/configuration/AllTests.swift; sourceTree = ""; }; - B7A67EB9002C23EFFD4F4331 /* LocalExceptionDescription.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LocalExceptionDescription.swift; path = src/Ice/LocalExceptionDescription.swift; sourceTree = ""; }; - B7D8895A590B0D9627121789 /* ImplicitContext.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContext.cpp; path = ../cpp/src/Ice/ImplicitContext.cpp; sourceTree = ""; }; - B7D9D973870D744362BE6CD5 /* Version.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Version.ice; path = ../slice/Ice/Version.ice; sourceTree = ""; }; - B89D7DF2F9D676F96CB9635E /* IceUtil.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = IceUtil.mm; path = src/IceImpl/IceUtil.mm; sourceTree = ""; }; - BAA42C2BC75B14E584DC7925 /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AppDelegate.swift; path = test/TestDriver/iOS/AppDelegate.swift; sourceTree = ""; }; - BAEED543910AAE7DB26F2B2E /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/timeout/Server.swift; sourceTree = ""; }; - BB0CC3A93C44880C5C9C63D8 /* InputUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = InputUtil.cpp; path = ../cpp/src/IceUtil/InputUtil.cpp; sourceTree = ""; }; - BB0D9576EB2595A8BB30BC3A /* IceHold.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceHold.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BBBE5C0E398A59FC82DA5B22 /* IceScope.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceScope.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BD2FED021766EC049A1603D9 /* ThreadPool.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadPool.cpp; path = ../cpp/src/Ice/ThreadPool.cpp; sourceTree = ""; }; - BDC9CA0C36333F0F3089E6C1 /* libIceLocatorDiscovery C++11 macOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 macOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BDD807A24DFE6B5DE7A2B384 /* PropertyNames.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertyNames.cpp; path = ../cpp/src/Ice/PropertyNames.cpp; sourceTree = ""; }; - BDFC1CF071BE8BC5D2E9356F /* Instrumentation.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Instrumentation.cpp; path = ../cpp/src/Ice/Instrumentation.cpp; sourceTree = ""; }; - BE0FC793581C11E605079EEC /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/enums/Server.swift; sourceTree = ""; }; - BE65FDBC053C9E1724BD1F80 /* IceDefaultValue.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultValue.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - BF8E0CCA4C7037506934137C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/retry/AllTests.swift; sourceTree = ""; }; - BFC3A3040FFC8B6EAFCA158D /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/acm/Test.ice; sourceTree = ""; }; - BFCBA8D98D4B3EE825A33F52 /* SysLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SysLoggerI.cpp; path = ../cpp/src/Ice/SysLoggerI.cpp; sourceTree = ""; }; - BFD8E68C39A86BCA8855BE97 /* TestAMDI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestAMDI.swift; path = test/Ice/operations/TestAMDI.swift; sourceTree = ""; }; - BFE26B6B169CD5B24ED29BB6 /* Communicator.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Communicator.cpp; path = ../cpp/src/Ice/Communicator.cpp; sourceTree = ""; }; - C012332733DA4296E9354F12 /* Router.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Router.ice; path = ../slice/Ice/Router.ice; sourceTree = ""; }; - C08D8DDDF0EA2D26B0BC84AF /* IceStormSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceStormSwift.h; path = src/IceStorm/IceStormSwift.h; sourceTree = ""; }; - C121A644BFC70CEBB7B25F34 /* AdminFacetFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AdminFacetFactory.h; path = src/IceImpl/AdminFacetFactory.h; sourceTree = ""; }; - C1389F21CDF06949902AA2EA /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/defaultValue/AllTests.swift; sourceTree = ""; }; - C171909B3BA6EDB94DFE7617 /* CommunicatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorF.cpp; path = ../cpp/src/Ice/CommunicatorF.cpp; sourceTree = ""; }; - C18CB03DD5155C1C2B2E8A8D /* Proxy.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Proxy.cpp; path = ../cpp/src/Ice/Proxy.cpp; sourceTree = ""; }; - C1AF990F79450A9C081DB784 /* libIceLocatorDiscovery C++11 iOS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libIceLocatorDiscovery C++11 iOS.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - C2F6024DEF147BA264B75062 /* Timer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Timer.cpp; path = ../cpp/src/Ice/Timer.cpp; sourceTree = ""; }; - C30C6AF5ACDFF5254E06CAC6 /* EventHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventHandler.cpp; path = ../cpp/src/Ice/EventHandler.cpp; sourceTree = ""; }; - C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Glacier2.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - C41EA629E4C3C316AA9FF1EC /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/IceSSL/configuration/TestI.swift; sourceTree = ""; }; - C4D165404C1661A879CC7DD9 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/udp/TestI.swift; sourceTree = ""; }; - C56F9DD18C4DA39D6933343C /* Reference.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Reference.cpp; path = ../cpp/src/Ice/Reference.cpp; sourceTree = ""; }; - C57D6F7125325B748CB60975 /* Process.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Process.ice; path = ../slice/Ice/Process.ice; sourceTree = ""; }; - C61C5DA6F7F7080FC83FE964 /* Exception.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Exception.swift; path = src/Ice/Exception.swift; sourceTree = ""; }; - C630DCAC52483EE71792F541 /* OutgoingAsync.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OutgoingAsync.cpp; path = ../cpp/src/Ice/OutgoingAsync.cpp; sourceTree = ""; }; - C6BBD6CC1E3C2A7CCF12C722 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/facets/Collocated.swift; sourceTree = ""; }; - C7716384B8702730F154043B /* Protocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Protocol.cpp; path = ../cpp/src/Ice/Protocol.cpp; sourceTree = ""; }; - C7DAB3F7C68697A828A55533 /* IceInheritance.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInheritance.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C7F2189733BCF9C8B454DB75 /* LocalObject.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocalObject.cpp; path = ../cpp/src/Ice/LocalObject.cpp; sourceTree = ""; }; - C86CB8DA4BE954C9B5E50C78 /* IceAmi.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAmi.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - C990D1538CF08ABB45003017 /* StringUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StringUtil.cpp; path = ../cpp/src/IceUtil/StringUtil.cpp; sourceTree = ""; }; - C99CAAF3E88E8B7B746C43A4 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/adapterDeactivation/Server.swift; sourceTree = ""; }; - C9A9B49B4C419054A03A217A /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/adapterDeactivation/Collocated.swift; sourceTree = ""; }; - CA7BA874372EE36F4313939C /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/udp/Client.swift; sourceTree = ""; }; - CAACEF4FECAF35BE85C20620 /* CommunicatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CommunicatorI.cpp; path = ../cpp/src/Ice/CommunicatorI.cpp; sourceTree = ""; }; - CABC46485C8349B0AD18EB39 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/proxy/Client.swift; sourceTree = ""; }; - CAD340E5FDD75011A7A85118 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/objects/Collocated.swift; sourceTree = ""; }; - CAE482789CF229EB04641D21 /* ConnectionInfo.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionInfo.cpp; path = ../cpp/src/IceIAP/ConnectionInfo.cpp; sourceTree = ""; }; - CB750BB47FEA9559FDA7DBDF /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/servantLocator/AllTests.swift; sourceTree = ""; }; - CCE36EC139B06D18C0C74BA7 /* EndpointI.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = EndpointI.mm; path = ../cpp/src/IceIAP/EndpointI.mm; sourceTree = ""; }; - CD61825057BFBFBB41D39597 /* ServantLocatorF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ServantLocatorF.cpp; path = ../cpp/src/Ice/ServantLocatorF.cpp; sourceTree = ""; }; - CDAA337977433E1B2F9235CA /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/facets/Client.swift; sourceTree = ""; }; - CE088400874CD0479C5DBEB2 /* SlicedData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SlicedData.swift; path = src/Ice/SlicedData.swift; sourceTree = ""; }; - CE428CC2328F83A0C7CF327B /* IceDefaultServant.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceDefaultServant.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CEF23AEA09540063DC96EA21 /* Collocated.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Collocated.swift; path = test/Ice/servantLocator/Collocated.swift; sourceTree = ""; }; - CF1DF22CB01FFA62872EB861 /* EndpointI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EndpointI.swift; path = src/Ice/EndpointI.swift; sourceTree = ""; }; - CF258BC66CA2B0FD8CAE93F4 /* Process.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Process.h; path = src/IceImpl/Process.h; sourceTree = ""; }; - CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RemoteLogger.ice; path = ../slice/Ice/RemoteLogger.ice; sourceTree = ""; }; - CF74B405592DF882FC711C4F /* Plugin.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Plugin.cpp; path = ../cpp/src/Ice/Plugin.cpp; sourceTree = ""; }; - D091865931D88D93A031BF38 /* PermissionsVerifier.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = PermissionsVerifier.ice; path = ../slice/Glacier2/PermissionsVerifier.ice; sourceTree = ""; }; - D0D533DA9ED4A5E4635718FB /* RequestHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RequestHandlerFactory.cpp; path = ../cpp/src/Ice/RequestHandlerFactory.cpp; sourceTree = ""; }; - D2744013C529D8F086422990 /* Locator.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Locator.ice; path = ../slice/Ice/Locator.ice; sourceTree = ""; }; - D2951989E4ED79DB5A5BD840 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/invoke/Client.swift; sourceTree = ""; }; - D3D29F00E18E96EA4BA99C36 /* LookupI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LookupI.cpp; path = ../cpp/src/IceDiscovery/LookupI.cpp; sourceTree = ""; }; - D566AB986C3B8546B20A2AE0 /* IceUdp.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceUdp.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - D59C9EF4D725171D05DFB4A4 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/admin/Client.swift; sourceTree = ""; }; - D678FFB619CCB86A3BC95515 /* RegisterPluginsInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RegisterPluginsInit.cpp; path = ../cpp/src/Ice/RegisterPluginsInit.cpp; sourceTree = ""; }; - D67D8A64DA92416D5A34F56F /* LoggerWrapperI.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LoggerWrapperI.h; path = src/IceImpl/LoggerWrapperI.h; sourceTree = ""; }; - D6C1FECEA4BD0E885787FD4F /* OSLogLoggerI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = OSLogLoggerI.cpp; path = ../cpp/src/Ice/OSLogLoggerI.cpp; sourceTree = ""; }; - D78BFDA010F774B68B1D0943 /* IceSlicingObjectsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjectsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - D7B75346EB6CBAA407B78C44 /* IceSlicingObjects.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingObjects.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - D93BB1CEE95D6DBD647C1F66 /* ProtocolInstance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ProtocolInstance.cpp; path = ../cpp/src/Ice/ProtocolInstance.cpp; sourceTree = ""; }; - D9AB56DEA09A30139787C127 /* ImplicitContextI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ImplicitContextI.cpp; path = ../cpp/src/Ice/ImplicitContextI.cpp; sourceTree = ""; }; - D9B018EB339EB9B238FEA4EC /* IceOperationsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceOperationsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - D9C8139F340DD5FDBEB54718 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; name = Info.plist; path = src/IceStorm/Info.plist; sourceTree = ""; }; - D9CB8DB9B6B0E2D1D5F87503 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/optional/Client.swift; sourceTree = ""; }; - DA48BF39278DC0F70FC216F1 /* IceImpl.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceImpl.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DAE2612261AFAD9F126ABB05 /* PropertiesF.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PropertiesF.cpp; path = ../cpp/src/Ice/PropertiesF.cpp; sourceTree = ""; }; - DAF9FCD3ACA9EEA864C2B86E /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/hold/AllTests.swift; sourceTree = ""; }; - DB8F279A2779E598731A5601 /* DispatchInterceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = DispatchInterceptor.cpp; path = ../cpp/src/Ice/DispatchInterceptor.cpp; sourceTree = ""; }; - DB925F57794F16F2734D08B4 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/invoke/AllTests.swift; sourceTree = ""; }; - DBCA8B1BC5811A9ADA86ED97 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/inheritance/TestI.swift; sourceTree = ""; }; - DC4BB865E8CEF17247111E25 /* UUID.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = UUID.cpp; path = ../cpp/src/IceUtil/UUID.cpp; sourceTree = ""; }; - DC6A10305F53DC63F7512C53 /* IceStorm.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceStorm.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - DC845309A10111AC9F465C23 /* Test.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Test.ice; path = test/Ice/timeout/Test.ice; sourceTree = ""; }; - DC8A0F90321653214F836FE0 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/slicing/exceptions/TestI.swift; sourceTree = ""; }; - DCD020CA509B152C8FCE8798 /* SHA1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SHA1.cpp; path = ../cpp/src/Ice/SHA1.cpp; sourceTree = ""; }; - DCD2DF2F490C333AFC34E403 /* Clash.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Clash.ice; path = test/Slice/escape/Clash.ice; sourceTree = ""; }; - DD36CD2D320F5953C219BB79 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/slicing/objects/Client.swift; sourceTree = ""; }; - DD94218AB8FC82917266BC56 /* PropertiesAdmin.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = PropertiesAdmin.mm; path = src/IceImpl/PropertiesAdmin.mm; sourceTree = ""; }; - DDA135F8EED8A314941972ED /* Connector.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connector.mm; path = ../cpp/src/IceIAP/Connector.mm; sourceTree = ""; }; - DDC1C3A7852A6CED90889B91 /* ImplicitContextI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImplicitContextI.swift; path = src/Ice/ImplicitContextI.swift; sourceTree = ""; }; - DDC7FB9EE1A071911E227CCB /* IceSwift.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IceSwift.h; path = src/Ice/IceSwift.h; sourceTree = ""; }; - DED512BF02792FFCA52AE9E7 /* Initialize.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Initialize.cpp; path = ../cpp/src/Ice/Initialize.cpp; sourceTree = ""; }; - DF136F6E80A01F3C0C176C6D /* ReferenceFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ReferenceFactory.cpp; path = ../cpp/src/Ice/ReferenceFactory.cpp; sourceTree = ""; }; - DF62AE44540279291FBE8D46 /* WSConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSConnector.cpp; path = ../cpp/src/Ice/WSConnector.cpp; sourceTree = ""; }; - DFC73C8E6BFAEC766CD5D25C /* ObjectAdapterFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ObjectAdapterFactory.cpp; path = ../cpp/src/Ice/ObjectAdapterFactory.cpp; sourceTree = ""; }; - E14A708807768953B2379FD5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/optional/Server.swift; sourceTree = ""; }; - E1EFF9091F708E5F6F0704B3 /* CountDownLatch.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CountDownLatch.cpp; path = ../cpp/src/Ice/CountDownLatch.cpp; sourceTree = ""; }; - E2F8371C545BE433208E8DD7 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/adapterDeactivation/Client.swift; sourceTree = ""; }; - E2FA87620B046FCEDC51EC6F /* SliceEscape.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = SliceEscape.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E301CB7A257886B9F8760B6A /* TraceUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TraceUtil.h; path = src/IceImpl/TraceUtil.h; sourceTree = ""; }; - E3CCDC8C722C7D08EBC696FC /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/optional/TestI.swift; sourceTree = ""; }; - E3EA671155BA0EAA870D5F9A /* ValueFactory.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueFactory.swift; path = src/Ice/ValueFactory.swift; sourceTree = ""; }; - E4538B61358B8FF03922527F /* Transceiver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Transceiver.mm; path = ../cpp/src/IceIAP/Transceiver.mm; sourceTree = ""; }; - E47484D1D3DDA643748FDA4D /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Slice/escape/Client.swift; sourceTree = ""; }; - E4CF2077C814A7377DDEE06A /* ClassResolver.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ClassResolver.swift; path = src/Ice/ClassResolver.swift; sourceTree = ""; }; - E59CE567CD0339935ECE174A /* StreamSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamSocket.cpp; path = ../cpp/src/Ice/StreamSocket.cpp; sourceTree = ""; }; - E69319811BB2583A562A6C15 /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ViewController.swift; path = test/TestDriver/iOS/ViewController.swift; sourceTree = ""; }; - E6DE756B8F16EAC3E04B2798 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/admin/TestI.swift; sourceTree = ""; }; - E73B68A6243CD1C6AED87DFC /* SecureTransportEngine.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportEngine.cpp; path = ../cpp/src/IceSSL/SecureTransportEngine.cpp; sourceTree = ""; }; - E8132A588131377350457A8A /* Logger.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Logger.cpp; path = ../cpp/src/Ice/Logger.cpp; sourceTree = ""; }; - E826DFF464DFB4529E54EDC3 /* IceSlicingExceptionsAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceSlicingExceptionsAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - E83D440DF808EEF167018B4F /* Cond.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Cond.cpp; path = ../cpp/src/Ice/Cond.cpp; sourceTree = ""; }; - EAD58C233C507C35334F1CC6 /* ThreadException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ThreadException.cpp; path = ../cpp/src/IceUtil/ThreadException.cpp; sourceTree = ""; }; - EB3E29E74373ED5837D69F8F /* Shared.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Shared.cpp; path = ../cpp/src/IceUtil/Shared.cpp; sourceTree = ""; }; - EBFF2AF509B1E71159DAECB0 /* Client.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Client.swift; path = test/Ice/services/Client.swift; sourceTree = ""; }; - EC5127D1D96F5CE76CAD417D /* Random.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Random.cpp; path = ../cpp/src/IceUtil/Random.cpp; sourceTree = ""; }; - EC5A98A70A93BDFDEE865FFA /* main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = main.swift; path = test/TestDriver/macOS/main.swift; sourceTree = ""; }; - ECBCA68A7DF08B26236F860F /* Connection.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = Connection.mm; path = src/IceImpl/Connection.mm; sourceTree = ""; }; - ECDDA9E457926810C0ACEE3D /* IceAcm.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceAcm.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - ED06DCDDD71F35AD778BBAFD /* Ice.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Ice.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - ED3424BFB9925A53577998FB /* IceProperties.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProperties.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - EDBFE1FE5EDAEEC44CD547C8 /* SlicedData.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SlicedData.cpp; path = ../cpp/src/Ice/SlicedData.cpp; sourceTree = ""; }; - EDC1F699D0173A3262ED8783 /* IceInterceptor.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInterceptor.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - EE247C4C7515E78416734AE3 /* TwowaysAMI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TwowaysAMI.swift; path = test/Ice/operations/TwowaysAMI.swift; sourceTree = ""; }; - EE7ED7DB9B386CE9925025BF /* FactoryTable.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTable.cpp; path = ../cpp/src/Ice/FactoryTable.cpp; sourceTree = ""; }; - EEAE2A3EA52301D744C2238C /* ServerPrivate.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = ServerPrivate.ice; path = test/Ice/slicing/objects/ServerPrivate.ice; sourceTree = ""; }; - EEBC1443F0873050E5877725 /* TcpAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = TcpAcceptor.cpp; path = ../cpp/src/Ice/TcpAcceptor.cpp; sourceTree = ""; }; - EEF3B6F7FB1EF2FF9ED73F1C /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = ../certs; sourceTree = ""; }; - F0972B81E52AE5219A0359F6 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/servantLocator/Server.swift; sourceTree = ""; }; - F0C7FC0099BBEEB7A76312E5 /* Server.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Server.swift; path = test/Ice/location/Server.swift; sourceTree = ""; }; - F189089F52472441A777F912 /* 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; }; - F1C224C87B599183A478B5D2 /* IceProxy.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F214226923D4CB01CC6D14A1 /* FileUtil.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileUtil.cpp; path = ../cpp/src/IceUtil/FileUtil.cpp; sourceTree = ""; }; - F28FEA3804836A76EBCC3C60 /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/operations/AllTests.swift; sourceTree = ""; }; - F2A40A64B4DEF4BDCD6C4742 /* TestI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TestI.swift; path = test/Ice/retry/TestI.swift; sourceTree = ""; }; - F33540D27F8ABA588FF9CFCF /* Communicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Communicator.h; path = src/IceImpl/Communicator.h; sourceTree = ""; }; - F345F9DBACA2072E0A394485 /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = test/TestDriver/iOS/Base.lproj/Main.storyboard; sourceTree = ""; }; - F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = OperationMode.ice; path = ../slice/Ice/OperationMode.ice; sourceTree = ""; }; - F48616BFFA819BAF3F8B2FB8 /* Key.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = Key.ice; path = test/Slice/escape/Key.ice; sourceTree = ""; }; - F4BB047ECA2C8C6E40017B49 /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F4F40F40EF79D1EFF0672F1C /* PluginI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = PluginI.cpp; path = ../cpp/src/IceLocatorDiscovery/PluginI.cpp; sourceTree = ""; }; - F52E3E551A8F8B3901BECC9B /* certs */ = {isa = PBXFileReference; includeInIndex = 1; name = certs; path = test/IceSSL/configuration/../../../../cpp/test/IceSSL/certs; sourceTree = ""; }; - F5453037F24499786E84EA5C /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/binding/AllTests.swift; sourceTree = ""; }; - F5C15610EC1017BFB49E9711 /* IceEnums.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceEnums.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F5FA2C9600E75B1FCD46907F /* UserAccountMapper.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = UserAccountMapper.ice; path = ../slice/IceGrid/UserAccountMapper.ice; sourceTree = ""; }; - F674217427A6BB4384E16370 /* Plugin.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Plugin.swift; path = src/Ice/Plugin.swift; sourceTree = ""; }; - F71C3042386918BE757DF8CE /* Connection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Connection.h; path = src/IceImpl/Connection.h; sourceTree = ""; }; - F71CAE50CD7CB4E7134D9FF3 /* FactoryTableInit.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FactoryTableInit.cpp; path = ../cpp/src/Ice/FactoryTableInit.cpp; sourceTree = ""; }; - F7449FB4230AD540975DB4BA /* SecureTransportCertificateI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SecureTransportCertificateI.cpp; path = ../cpp/src/IceSSL/SecureTransportCertificateI.cpp; sourceTree = ""; }; - F790BD181E9C75D456202B50 /* RouterF.ice */ = {isa = PBXFileReference; includeInIndex = 1; name = RouterF.ice; path = ../slice/Ice/RouterF.ice; sourceTree = ""; }; - F7D45D866B9B71FB7B57D0E6 /* WSTransceiver.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = WSTransceiver.cpp; path = ../cpp/src/Ice/WSTransceiver.cpp; sourceTree = ""; }; - F81F55C1F60FE16B0090352D /* IceProxyAMD.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceProxyAMD.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F8335B51360FAD4A3774DBDC /* IceGrid.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = IceGrid.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - F9015DB7A4BC8F5780598C5B /* IceRetry.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceRetry.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - F904E8A5B6258EDDEAF27A63 /* Network.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Network.cpp; path = ../cpp/src/Ice/Network.cpp; sourceTree = ""; }; - F90B2EAB5D9DCC4178F8B5B4 /* ObjectAdapter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAdapter.swift; path = src/Ice/ObjectAdapter.swift; sourceTree = ""; }; - FA5C303C571C95B5220FFF77 /* ServerAMD.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerAMD.swift; path = test/Ice/operations/ServerAMD.swift; sourceTree = ""; }; - FC642EC1944D582B3C794113 /* ConnectionI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ConnectionI.cpp; path = ../cpp/src/Ice/ConnectionI.cpp; sourceTree = ""; }; - FCAD591DFA056E0732E8B3CD /* StreamConnector.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StreamConnector.cpp; path = ../cpp/src/Ice/ios/StreamConnector.cpp; sourceTree = ""; }; - FCB4094FE32B8606EBB93BFB /* OptionalFormat.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = OptionalFormat.swift; path = src/Ice/OptionalFormat.swift; sourceTree = ""; }; - FCD16A3852D0DAB23E0EE5DB /* IceInvoke.bundle */ = {isa = PBXFileReference; explicitFileType = "wrapper.plug-in"; includeInIndex = 0; path = IceInvoke.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - FE6326CC8423A7AB2E011674 /* LocatorI.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LocatorI.cpp; path = ../cpp/src/IceDiscovery/LocatorI.cpp; sourceTree = ""; }; - FEF066D96D048F2BABE04F9D /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/slicing/exceptions/AllTests.swift; sourceTree = ""; }; - FF2962E761A9438BFEC2D88A /* AllTests.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AllTests.swift; path = test/Ice/udp/AllTests.swift; sourceTree = ""; }; - FFC516B10AAE738541716320 /* MutexProtocol.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MutexProtocol.cpp; path = ../cpp/src/IceUtil/MutexProtocol.cpp; 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 */ - 005B437BB6B9EA9D3B1560FC /* Frameworks */ = { + 04BAD54A6C582D75141D296D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4C24A8CD9D0C8D7685AD6971 /* Foundation.framework in Frameworks */, - E9D4065FB98B8BA5D1CF4CF2 /* Ice.framework in Frameworks */, - 2DCC8625E26DFEBB97885357 /* PromiseKit.xcframework in Frameworks */, - 876383C8BA8FB8C7D16C9EC7 /* 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; }; - 025B6189E378EB18C2A71A5A /* Frameworks */ = { + 050FCA0466F0A2C79D1D677A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 261B9A566F38A036CDB8DE0E /* Foundation.framework in Frameworks */, - 884F27683269E2801ACE7C0A /* Ice.framework in Frameworks */, - C70348CFD282CD7E9956F6B2 /* PromiseKit.xcframework in Frameworks */, - 86C17A041AA408728024B6FC /* 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; }; - 037E516FE64DE570D02254C1 /* Frameworks */ = { + 081D5E6091599199E20BCD0C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AF8FE0C50A15AC26FA776A54 /* Foundation.framework in Frameworks */, - C56FDA0CA4EF0501C54973D7 /* Ice.framework in Frameworks */, - BA21EFBD517019D1C6150A7E /* PromiseKit.xcframework in Frameworks */, - F2CC30135189BB8CCEFAE021 /* 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; }; - 069414FE53A2F019B35C8575 /* Frameworks */ = { + 0C1567231CCF603369BE0A1A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 56AD68617C9B97CE16FE249C /* Foundation.framework in Frameworks */, - 1128B88B961ACEA596CB93AD /* Glacier2.framework in Frameworks */, - 349E070F6B2DE7E59497C907 /* Ice.framework in Frameworks */, - CF6AB1F9705D6C8677FF89CE /* IceGrid.framework in Frameworks */, - 8C2809F5A2251554B81E0B1E /* IceImpl.framework in Frameworks */, - 2EDD058114B565BAEDC043DA /* IceStorm.framework in Frameworks */, - B22FBD4C587015173AD9D77D /* PromiseKit.xcframework in Frameworks */, + 787FA1F8D035BE7F702CEFF9 /* Foundation.framework in Frameworks */, + 0862D895FC7F30B13C2FE695 /* Ice.framework in Frameworks */, + 2995EB2F2B5ADF44E37B5F22 /* PromiseKit.xcframework in Frameworks */, + 4A56A0CED3F67194A4F51956 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 081497A296EC3CCA4C40B339 /* Frameworks */ = { + 0F7A2524B0DFD0F27C624F7D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 032977B58E34C07E224720B1 /* Foundation.framework in Frameworks */, - 5431C4CE5BB733E53F0F9203 /* Ice.framework in Frameworks */, - 8FD90978C32771C60C66A1B3 /* PromiseKit.xcframework in Frameworks */, - 6D763E251CF4A3EDA13C0878 /* TestCommon.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; }; - 0A5A6F26717A3996E52368C1 /* Frameworks */ = { + 10A9E6818829CF9EAFF1F3CD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 31F9687277498B7F842EB5FD /* Cocoa.framework in Frameworks */, - 3325ADD3479FEC8BA570AF2F /* Ice.framework in Frameworks */, - 58081577C9F8D17931A251CC /* PromiseKit.xcframework in Frameworks */, - BA286EB1F512C5B543AF5AC4 /* 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; }; - 0C3751B66DB52BE417ACB866 /* Frameworks */ = { + 117D55DE7670DA2B05A6D64D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0E9CAFCAAF91B99E5E3B78AA /* Cocoa.framework in Frameworks */, - 102C37E47846D0EF9C75646F /* Ice.framework in Frameworks */, - 8C96F0589C61C0B6A80E2344 /* PromiseKit.xcframework in Frameworks */, - C010724525B52C5A463A8FDB /* 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; }; - 19E0136E5E3D6011F179469E /* Frameworks */ = { + 15F0EFA54A71375556FA69E5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AAD2FE4692EF082485AF00E2 /* Foundation.framework in Frameworks */, - 7DE141A9B23DA02F0F055EDD /* Ice.framework in Frameworks */, - D278E7D277416C7F214529E1 /* PromiseKit.xcframework in Frameworks */, - CD0DB9D40B994E3361586193 /* TestCommon.framework in Frameworks */, + 80A12B2043A9A99F8B48E108 /* Foundation.framework in Frameworks */, + BF6B21A85068A6A6CC69B6F4 /* Ice.framework in Frameworks */, + 338650FF2D4A1BB972846AC8 /* PromiseKit.xcframework in Frameworks */, + AA91EE92EDBDF9C3B9BA2A60 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1B6AD232686499FD379C8D3A /* Frameworks */ = { + 170FE239220FCD1C495B6CAF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 34B480D08F5C42E959C213B6 /* Cocoa.framework in Frameworks */, - BDD293FFBBCAF18CE46EAACC /* Ice.framework in Frameworks */, - D47DEAD489D43174DEC9EAA7 /* PromiseKit.xcframework in Frameworks */, - 091491A97A97617EBEAD6299 /* 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; }; - 1C2F5D9DD80E131EDDDFDE86 /* Frameworks */ = { + 17C34293249186306E0389C9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - FA136CDF6745B64905666CB8 /* Ice.framework in Frameworks */, - E3FAC91AC3A221C72A12F062 /* PromiseKit.xcframework in Frameworks */, + CC42C6CB3220213E9E19480B /* Cocoa.framework in Frameworks */, + DBD9C22B3087AE2BE513DAB7 /* Ice.framework in Frameworks */, + E89BA43278472B643EAAB3B6 /* PromiseKit.xcframework in Frameworks */, + DBCA5CCA1700E23B869F20D0 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1D5ADA908DE06BC749FE9250 /* Frameworks */ = { + 1B9E81991548528CE7E8BFBB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 71D95D2B091D6FBAFDF2CEA2 /* Cocoa.framework in Frameworks */, - B9F9B086A2833382BF004F04 /* Ice.framework in Frameworks */, - 588EA7C63CAEBB5D835D832E /* PromiseKit.xcframework in Frameworks */, - D788154F37EAF6DC77E8A713 /* TestCommon.framework in Frameworks */, + 9E8E5B398CE5DC0CFCF02101 /* Glacier2.framework in Frameworks */, + 4024701E9F4ACCF8AB23ABC7 /* Ice.framework in Frameworks */, + F982DDE3FB82C7D1898A75EA /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 263422E847C3519A29D2E784 /* Frameworks */ = { + 1FB77E020C94D6255CBA55FA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4D93CBB4538E3DA31B4D9509 /* Cocoa.framework in Frameworks */, - 3522FABD1EAB55A5FCD80BAD /* Ice.framework in Frameworks */, - B483ED17520E297AC2B9B39D /* PromiseKit.xcframework in Frameworks */, - CD75B00F0A0905F76163A248 /* 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; }; - 26527728902FD83C9C57750B /* Frameworks */ = { + 204A198613FC71122473A254 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A584340DA436567581A583C4 /* Cocoa.framework in Frameworks */, - DF5AF2DB0CD91E715F08042F /* Ice.framework in Frameworks */, - 3995F0DB81BD82BF3885934B /* PromiseKit.xcframework in Frameworks */, - 22F2D81B8BC499073EEA3139 /* 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; }; - 272C3895D070D354391C8BA6 /* Frameworks */ = { + 20BFB48425DC59B7EB1CF535 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C133EBD074843BFA71B97D18 /* Cocoa.framework in Frameworks */, - AFFF5BDE06F6577570923410 /* Ice.framework in Frameworks */, - 7FF35CA4033D4C38B644418F /* PromiseKit.xcframework in Frameworks */, - 37770D76CEE3C0C488D51DB9 /* 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; }; - 2A98404D5208BD65E3DB6CFE /* Frameworks */ = { + 283FB009630341DAD17469AC /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 597EA71AA303CB1111E243AC /* CFNetwork.framework in Frameworks */, - 803E001EC76589670027F378 /* ExternalAccessory.framework in Frameworks */, - F1719AF12FB78B7049AA9FD0 /* Foundation.framework in Frameworks */, - A937746D7A9A826BCE10211D /* libIce C++11 iOS.a in Frameworks */, - 06B2695071931FFA1A1464F1 /* libIceDiscovery C++11 iOS.a in Frameworks */, - DB3C3EE5FE1AAA6E08A2EFF7 /* libIceLocatorDiscovery C++11 iOS.a in Frameworks */, - 1810E68E33A0ACFD934AFB00 /* Security.framework in Frameworks */, - 9840A8A84FFBAAB19CAD7ED2 /* UIKit.framework in Frameworks */, + 63B7797EF929CDA27B444C39 /* Foundation.framework in Frameworks */, + 3DB726F734862E4EEF4130F7 /* Ice.framework in Frameworks */, + 6398C43CC7E21C1827260529 /* PromiseKit.xcframework in Frameworks */, + D2EC16CDEC89CB28A7ECC4B8 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2B9175E1C1EA89B3C928F148 /* Frameworks */ = { + 2923CF8B8E12477B3B3F0865 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A662F061162797200A98E0EC /* Foundation.framework in Frameworks */, - 5AAA4A39F5881DFE802FFC5A /* Ice.framework in Frameworks */, - 5B740A799439BF031F3F8F4C /* PromiseKit.xcframework in Frameworks */, - 078873E8343ED44589D57347 /* TestCommon.framework in Frameworks */, + 28DAD5B7044F8811A0E05B0E /* Foundation.framework in Frameworks */, + E4AE87EB9BC7E71107135D00 /* Ice.framework in Frameworks */, + 1B80D7C545F9A73A92A3B923 /* PromiseKit.xcframework in Frameworks */, + 9625F96F5B2DA2128F38A766 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2BDFA0906C8CC084EDE73074 /* Frameworks */ = { + 2CED16271A7251484C385690 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D3B3D1B2437C0DD09B6CEE9A /* Cocoa.framework in Frameworks */, - 33AFEF0D5E65901C071C1C94 /* Ice.framework in Frameworks */, - 45DFE7C0805EDAD8916ACA5D /* PromiseKit.xcframework in Frameworks */, - 17F49F00DA7907DF1A4E0251 /* 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; }; - 31CB0600F2CAEE6EA284EA25 /* Frameworks */ = { + 2D4B8047B44D76BD331EB826 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 82B32CCF10B1F159B23F414C /* Foundation.framework in Frameworks */, - C229FBDBE235645EB6EFCFB1 /* Ice.framework in Frameworks */, - 9204AB6155317BC251CAD0A0 /* PromiseKit.xcframework in Frameworks */, - 2690FE6928C7301F1171F909 /* 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; }; - 3325493FAA42575AE19695CA /* Frameworks */ = { + 2DD679EBE33EA28973E97CE2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - CEC11090BE9E6A05461EA506 /* Foundation.framework in Frameworks */, - DA8014084036AD0878EFE6B4 /* Ice.framework in Frameworks */, - 152A2F71AF65CC663076A8DF /* PromiseKit.xcframework in Frameworks */, - 146EBA16C94B5008FDE7403F /* 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; }; - 3550CE4A87D9A268B0F8D568 /* Frameworks */ = { + 2EE446DDB7698D9EFD7BD4D7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 42623FB3A22D5A9F538E4DC8 /* Foundation.framework in Frameworks */, - 11A48FF3B68288AB5E816FF6 /* Ice.framework in Frameworks */, - 7B0C4BBE8B0F40F09EF7E559 /* PromiseKit.xcframework in Frameworks */, - C9CBD4B8E1EDB9F225E35A75 /* TestCommon.framework in Frameworks */, + BCACC500C9573DB69AF80F00 /* Foundation.framework in Frameworks */, + 28CF14C38303CA25BE961124 /* Ice.framework in Frameworks */, + 82BEA96ABDBD8803939F7F24 /* PromiseKit.xcframework in Frameworks */, + 22E551533CEADB6D0DCE21F9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 36AE2A39F37E56B4843D2E8E /* Frameworks */ = { + 31FB515E0D1B88401DF0F91E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - BD58792E9664068AC18DB148 /* Cocoa.framework in Frameworks */, - D5FD92490339073AB667D41E /* Ice.framework in Frameworks */, - D14A961DE90957A1DE3ECFB3 /* PromiseKit.xcframework in Frameworks */, - 0645496C3D42A3DC78DD91A3 /* 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; }; - 3790CD79595DF06C45CEE0FF /* Frameworks */ = { + 3B3BC4302997971676561F02 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 2C72E73DC2B678BCFCB5E569 /* Cocoa.framework in Frameworks */, + 5C1B98574EA118AFBB73E88A /* Ice.framework in Frameworks */, + 4F394A8821C1A621A16CA9B5 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 39742AA4710C285CB1EFE2D3 /* Frameworks */ = { + 3B55A16059E0DFBD64EAF00E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - CCC5479C72B8428C472A3F11 /* Glacier2.framework in Frameworks */, - E6034BDF230D6B0B34DABAEA /* Ice.framework in Frameworks */, - EB41A9285C877C256F1A70B3 /* PromiseKit.xcframework in Frameworks */, + C791A58653F684CACAC0C044 /* Cocoa.framework in Frameworks */, + 151DDAFA47B8ADD3D4B86F76 /* Ice.framework in Frameworks */, + 8B0482C7FCF2A1BA5293851C /* PromiseKit.xcframework in Frameworks */, + 4C343EA6D74F70FB09E1A7FD /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3BF962457683C43CAE343F04 /* Frameworks */ = { + 3CB9F8DEC2F44EF89307391D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 448B14F91C6D399FDA3014C9 /* Cocoa.framework in Frameworks */, - A32E44E679E01526BD2A5F58 /* Ice.framework in Frameworks */, - F4620828FEF5F90B32A5800F /* PromiseKit.xcframework in Frameworks */, - 82C6992869FA3F7AEEFB8028 /* TestCommon.framework in Frameworks */, + 67E1A5DCEDFEE9B30AF6DBF4 /* Foundation.framework in Frameworks */, + F5BEA2EED4C65B3DAE24BD89 /* Ice.framework in Frameworks */, + 12100F39595AFD02BC5F7624 /* PromiseKit.xcframework in Frameworks */, + 24BA557DC339872F595A77BA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3C210FAAB58E0C567CD28F01 /* Frameworks */ = { + 3E0103E2585D26982A6D31E7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1521C12DDE5DAE9FE9AB3F30 /* Cocoa.framework in Frameworks */, - 8E49509F5EDD277F127B6B68 /* Ice.framework in Frameworks */, - 1FEE55628BA976D57C338860 /* PromiseKit.xcframework in Frameworks */, - 222664EF561E9C7447CD18FA /* TestCommon.framework in Frameworks */, + FF94B860B7BEA9E1457D83AD /* Foundation.framework in Frameworks */, + D85502B5DD415C191999FC52 /* Ice.framework in Frameworks */, + 91F37D276B3C3CBD684876B4 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 40A269BD9826552BC032BC09 /* Frameworks */ = { + 4392D0D4C892065A256DF985 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 00C09BF817F1FC244083540A /* Foundation.framework in Frameworks */, - 1C94225DAECAEB72F170D53E /* Ice.framework in Frameworks */, - AE02E09E476B221CF30F36F9 /* PromiseKit.xcframework in Frameworks */, - 5E8AA985162D4E0887DEEC48 /* 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; }; - 41FA3FD769D91A0E8AE7454A /* Frameworks */ = { + 4457BF715A1812CE4382BDB6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 01901D0CA9AB329495A1E95C /* Foundation.framework in Frameworks */, - 9C8E0442382FED4435A53AD0 /* Ice.framework in Frameworks */, - CD710D8A5348968E403F003D /* PromiseKit.xcframework in Frameworks */, - C2B40613244370A8EDB5DCDA /* 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; }; - 4684350444729A6A319E1284 /* Frameworks */ = { + 480014FEF9CE3E5FA6D7F184 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9272CDC35077990FA0FC3DCE /* Foundation.framework in Frameworks */, - 81BE959AA332DC19671071D5 /* Ice.framework in Frameworks */, - 5918480D42F258D0ACB415D9 /* PromiseKit.xcframework in Frameworks */, - 85D9C620E963F263940E25BA /* 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; }; - 49FD36C12156CBE1BCDA70BA /* Frameworks */ = { + 49EB2686A47CA3035B5D5931 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 003712874379D9EE3808F9E4 /* Cocoa.framework in Frameworks */, - 8A6F23CC7C2EA4096E2BD01A /* Ice.framework in Frameworks */, - 04ECAF5D65B993AA6FEC994B /* PromiseKit.xcframework in Frameworks */, - 051D59C471FDC1528AE471E0 /* 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; }; - 508B96393867923BC906A09E /* Frameworks */ = { + 4A2CB4D8C78C4B319C72D082 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A360FF1048E84450C8886EE0 /* Cocoa.framework in Frameworks */, - 2D142331D29BB284AC8162D4 /* Glacier2.framework in Frameworks */, - BF11A2E22C96DF6D2F20C2E8 /* Ice.framework in Frameworks */, - 4BB6AD5396EB3BFB1C7CFEE2 /* IceGrid.framework in Frameworks */, - 28B350177A5BD9DD6EF6B94B /* IceImpl.framework in Frameworks */, - 1D986F77322F7C729F6DA3CB /* IceStorm.framework in Frameworks */, - A24BCC7D7FAF0CCB238BA4CF /* PromiseKit.xcframework in Frameworks */, + B21EC75B9C09FC3EBF1905BC /* Foundation.framework in Frameworks */, + 7AEED7CC582485369211CBC6 /* Ice.framework in Frameworks */, + 43C51957B5E17FDD6C8D16FE /* PromiseKit.xcframework in Frameworks */, + 0CCA4D2914190B3E279D8B90 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 50B0F1CB22D8E290284E2335 /* Frameworks */ = { + 4A59713A78007D44BF693678 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 662B2AD968F77F28EA555291 /* Foundation.framework in Frameworks */, - 52DABF5017CEBE347B8FF3DF /* Ice.framework in Frameworks */, - 20AF9AF75EC41050513EC67E /* PromiseKit.xcframework in Frameworks */, - 3930F2425131AD14D8FF8A43 /* 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; }; - 5269BCF68D782B17111EB24C /* Frameworks */ = { + 4D469B9E372D64EF06F90C6F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2D8A2B0415C308C0966E225C /* Foundation.framework in Frameworks */, - 349CE6230F2A35214A748F97 /* Ice.framework in Frameworks */, - 61418C2C561D98E1C1F6B9B8 /* PromiseKit.xcframework in Frameworks */, - 4B50AADFE0DFF81D7EC0883E /* TestCommon.framework in Frameworks */, + CDE84069274E7AA63091B286 /* Cocoa.framework in Frameworks */, + 9F92C5F149B853CC995E232A /* Ice.framework in Frameworks */, + 3CA6C0464036C0B817007A46 /* PromiseKit.xcframework in Frameworks */, + 3A59718C7DF060E457DD3DA6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5E97C010CB866337653CFB8F /* Frameworks */ = { + 4D5DE839DBEF6FE4290079E4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AA86ECCB42291589A2FA8685 /* Cocoa.framework in Frameworks */, - 2471D7580A492BA30C327A3B /* Ice.framework in Frameworks */, - 7035E7C74D577600296FC4EC /* PromiseKit.xcframework in Frameworks */, - E16774B99E16AD2190AB35F9 /* 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; }; - 60ABDADDDC38AA635910F2CA /* Frameworks */ = { + 526A78150CEC0DC513C23FA9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E2713AC292F225DC79A9B3E2 /* Cocoa.framework in Frameworks */, - 2A37350E682D5A065F5B6DDB /* Ice.framework in Frameworks */, - 1AD6E3BB5F9392CE05DEBC03 /* PromiseKit.xcframework in Frameworks */, - 9DEDEAC427E2D4CC5FA01358 /* 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; }; - 62133C0C24515EE7545AB9AE /* Frameworks */ = { + 52A82FE47013310F296127FD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0D88CA2C06D1F4F887B5AD7C /* Cocoa.framework in Frameworks */, - C14C7601DEFF28252384A909 /* Ice.framework in Frameworks */, - 062DBE92B3468C7729A921A8 /* PromiseKit.xcframework in Frameworks */, - 58C9E17F05FC8E47E55F4734 /* 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; }; - 6382299CF1FDF5AD99DD38D2 /* Frameworks */ = { + 5377C93A323471D70E6CD0CB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A00DBD175CCF5E771E9AB871 /* Cocoa.framework in Frameworks */, - 8747793A01A5290FCF7E9443 /* Ice.framework in Frameworks */, - 8CD5F889DC3FF2A42135DB08 /* PromiseKit.xcframework in Frameworks */, - 4EF1CFD1E2EE8924554E5C30 /* 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; }; - 68F4EF15A024D9AC4E1FC830 /* Frameworks */ = { + 551A33C4769D54FE2E0B181D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0963E3DCFF980E77CD4D47CD /* Cocoa.framework in Frameworks */, - 811836C9C6097B09684DFADF /* Ice.framework in Frameworks */, - AD33B193FA912407F5246BC2 /* PromiseKit.xcframework in Frameworks */, - 0CE0F813D4862C914D0C9E72 /* 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; }; - 695749BABD39ACED89E9C8D9 /* Frameworks */ = { + 55224A4B1A2B2FF203837392 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 820B6CBB783F9CEFD62E1D50 /* Foundation.framework in Frameworks */, - 837206647A5313B84B7F7F8E /* Ice.framework in Frameworks */, - 0FB5C078A576612E4E33EB1C /* PromiseKit.xcframework in Frameworks */, - 48DE4F93CF3D8599F8ED2897 /* TestCommon.framework in Frameworks */, + F008FF5C531FCFA968DB43FC /* Cocoa.framework in Frameworks */, + 75D4023894060253FF73C1B4 /* Ice.framework in Frameworks */, + 2CFACED03E2DD9B7C026EE0E /* PromiseKit.xcframework in Frameworks */, + 505713015BF559EAB37FDE0E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6F0DD81F4EBEBA7C063C23F2 /* Frameworks */ = { + 62093BE74F53D2410F354FB3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6730EEF5F5B89AE65927B627 /* Cocoa.framework in Frameworks */, - 21F58D3D37C9BD39EF88E7F0 /* Ice.framework in Frameworks */, - 8907AF3381428A2BD48E84F6 /* PromiseKit.xcframework in Frameworks */, - A6CE25350F236044EE002834 /* TestCommon.framework in Frameworks */, + 0E2B363E690A224CF1BE537E /* Cocoa.framework in Frameworks */, + 52AC421DE2E727BBC7BBFE5C /* Ice.framework in Frameworks */, + 32C555D12D60C06AD0D87EBC /* PromiseKit.xcframework in Frameworks */, + 14003DF2C2853A4E8EB766EB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6F8A42B394C3B6FE549EAB36 /* Frameworks */ = { + 62FA6B43A012A2B27F747639 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D18E260F1A9A7066AE2CC205 /* Foundation.framework in Frameworks */, - 1D0BDB269D00BAFC70F46DD0 /* Ice.framework in Frameworks */, - 1C47E77C80C89D12679DF230 /* PromiseKit.xcframework in Frameworks */, - 1BD2E3999984D85A4EF3D0C4 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 701D5A05AC73B5E99EDDB98D /* Frameworks */ = { + 652F989614A0CD7EA9C93857 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 63AB354CFAB355710CBFC26E /* Cocoa.framework in Frameworks */, - 773F119B5F739641ED07115E /* Ice.framework in Frameworks */, - 791772C90FDE29215C4F2171 /* PromiseKit.xcframework in Frameworks */, - 59BC1051CB1DA24224ED354E /* 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; }; - 728C617FAC0D36682AF6F66B /* Frameworks */ = { + 65807EFDB81EB26FA0B0CEFF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D09BD849E9D7E5ED34430C35 /* IceImpl.framework in Frameworks */, - BEBC27F6443E69C633906888 /* PromiseKit.xcframework in Frameworks */, + 978105E1EE75A7FE3F79078B /* Cocoa.framework in Frameworks */, + C53F42963A4AFD4544698CC7 /* Ice.framework in Frameworks */, + AD131E0147C3854B0C729B0A /* PromiseKit.xcframework in Frameworks */, + 9B37D544BD6B420966C6F71A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 76A4F6532798D1C82908625F /* Frameworks */ = { + 6756B0801AFD5646083EA47D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E7AE9FD4848A0DEA84955812 /* Cocoa.framework in Frameworks */, - 16B2DAB7DE56037E06A5CBB0 /* Ice.framework in Frameworks */, - 6B998AE3EED188FC283FAD7D /* PromiseKit.xcframework in Frameworks */, - 74E30723342E074FA9B5FC62 /* 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; }; - 797DA8AF647A2A9F25C35A1D /* Frameworks */ = { + 70B54BD6C23881584479D162 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3C7DBC6F0CD83B98E01D4CD7 /* libIce C++11 macOS.a in Frameworks */, - 2944A746A0AD5BCC69AB906E /* libIceDiscovery C++11 macOS.a in Frameworks */, - DDBC1A2ECE67BCE6A3AB284C /* libIceLocatorDiscovery C++11 macOS.a in Frameworks */, - BF82F5A44B264BBAF92AB412 /* Security.framework in Frameworks */, + 15EEF88440CCC3D00B34CEC3 /* IceImpl.framework in Frameworks */, + FDFEF92494E9C48648F75CE8 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7AC019BA153CC3CDA1B7BEA1 /* Frameworks */ = { + 770D467AAF89E88EF37AD409 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0E000047E932B1183B39C94E /* Foundation.framework in Frameworks */, - F8B4CFF46EC035E9DC16D409 /* Ice.framework in Frameworks */, - 97686E8519D1BA7C21C8B3FF /* PromiseKit.xcframework in Frameworks */, - 3DB2DC5A60D2FEF8C7AEBF0B /* 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; }; - 7DD5C3E0177ECE6F29D32A29 /* Frameworks */ = { + 7C6CDCE57D922E0B787A535D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A02F2F29E635A0818DAF6DF6 /* Foundation.framework in Frameworks */, - BF4C3C6393D615E64998F9C5 /* Ice.framework in Frameworks */, - 40A42C5D3C188B503233C8B7 /* PromiseKit.xcframework in Frameworks */, - 573E061CC78DFC9E0D5B62B6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7EDB7FDCBBAED3744E467F30 /* Frameworks */ = { + 7E2EB1E4DC8F28640470290A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4C316D1D7AC7677AEF8E39CA /* IceImpl.framework in Frameworks */, - AA679D0494B1BE11F9957A54 /* PromiseKit.xcframework in Frameworks */, + 0D6CBA4FB26518C981C3AF34 /* Cocoa.framework in Frameworks */, + 8E050B46CDE17D7B5B9F7A10 /* Ice.framework in Frameworks */, + B1E529E427369E6AF8DE3496 /* PromiseKit.xcframework in Frameworks */, + 79A86C9B8A76ED5F724223AA /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 83BD0D83E2FC3631EC13D1C0 /* Frameworks */ = { + 7E89AA06F95141112E2308DF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 076BC5E8463ED699DC235A28 /* Glacier2.framework in Frameworks */, - CEB0D53A4A329405D2FF00FC /* Ice.framework in Frameworks */, - B35831336B9C8525C5766A9C /* PromiseKit.xcframework in Frameworks */, + 769880B85C8F3EBE542ED952 /* Foundation.framework in Frameworks */, + 7698603D5D4483688C1E06C2 /* Ice.framework in Frameworks */, + 17846C75A0ADCBE674506CD0 /* PromiseKit.xcframework in Frameworks */, + 301F50C233B74FA25BE32961 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 846C353E64D36876248ED510 /* Frameworks */ = { + 7F9E1AD9DD8D88862F46796A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8B54F2D56D337B2A5F4BF378 /* Cocoa.framework in Frameworks */, - BEA7F85366FA14A434C73117 /* Ice.framework in Frameworks */, - C584B5702105825549FB4F80 /* PromiseKit.xcframework in Frameworks */, - 34D0F93C003DC567F3914394 /* 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; }; - 8483359526C8FBDD033C8253 /* Frameworks */ = { + 806EB0C01E531EFDADC577DA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 097470873DDB97B92F0BA0AE /* Foundation.framework in Frameworks */, - 26D98B6E9BC254A41188AF39 /* Ice.framework in Frameworks */, - 5711DF87DE433AC4C316D958 /* PromiseKit.xcframework in Frameworks */, - 522382E5C10D04C87636A854 /* TestCommon.framework in Frameworks */, + D927230E991DEA814CAEB807 /* Ice.framework in Frameworks */, + 99B61F6318EA66063E904A49 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 88958F34BE3FFCC4CEAE3537 /* Frameworks */ = { + 85CF7E25AB6EC680828A8D52 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F879712854758F853F1BCA29 /* Cocoa.framework in Frameworks */, - 8C050D5071D18D46B1CA3401 /* Ice.framework in Frameworks */, - 43F10B231BDC3A276EDC475F /* PromiseKit.xcframework in Frameworks */, - 0437614A624B265C6C91294E /* 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; }; - 8C0497F3F6397B74F75333FB /* Frameworks */ = { + 85D54E0F6421C5110E7CF3B7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 62DC095A2754C6118B0166E4 /* Cocoa.framework in Frameworks */, - B493ACC09E287003922989ED /* Ice.framework in Frameworks */, - BD8DDC19C1647AE129C36A07 /* PromiseKit.xcframework in Frameworks */, - 287A26E9212E1D0E2A5C8FD9 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8EE96C8FC60FF9E8EAF0ADF2 /* Frameworks */ = { + 8BA7996027CFD288252705D0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - CBB08BCE424AA196283AE1BB /* Cocoa.framework in Frameworks */, - 1522E7E67E7F5EA1FEB64AD7 /* Ice.framework in Frameworks */, - 137C1A5092681CB3AFD8A25D /* PromiseKit.xcframework in Frameworks */, - 83993416308A2A5AD3C61067 /* 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; }; - 8FD85DAC494692521FE3D118 /* Frameworks */ = { + 8CA367470D856CD12514BED1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4E494762C46A37CDE3C4DFDB /* Cocoa.framework in Frameworks */, - E19DFBCAD181CF1C79CF3383 /* Ice.framework in Frameworks */, - 5AFCF7ACD7E7F9BC3668F91E /* PromiseKit.xcframework in Frameworks */, - 9AC815A0E12A1B2FF66100B0 /* 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; }; - 935E6B5A7462CBBADD77F680 /* Frameworks */ = { + 8E8F345C6D0DCBC478E23DA6 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D6B688373BBC43036B7FE9AF /* Foundation.framework in Frameworks */, - FDA9DE94F10FC4107F22FAB9 /* Ice.framework in Frameworks */, - 77A3E9F059780D8DFBAA3DC4 /* PromiseKit.xcframework in Frameworks */, - F953B719B8FD5471D8BE983A /* 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; }; - 96F5B639D380BFAE10B20DEF /* Frameworks */ = { + 929112A7DA19D98ED0DA1FA1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 13696A5AAC9DA9EFEDBC76C1 /* Foundation.framework in Frameworks */, - 7C5213F0AB4E84CD18A07676 /* Ice.framework in Frameworks */, - 2F8AE514AB33E0B549023000 /* PromiseKit.xcframework in Frameworks */, + 156744825C7A2C11539D4C53 /* Foundation.framework in Frameworks */, + CB99DA49E34E24584CAD6913 /* Ice.framework in Frameworks */, + E918EEBC3D0F1CE51176DCEE /* PromiseKit.xcframework in Frameworks */, + D7A30EE1AC30494211B6235B /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9909050AA6F90417BBEA7F28 /* Frameworks */ = { + 92A7548ABB7FCBD369C28797 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 040A2963B9F96DED942BF394 /* Foundation.framework in Frameworks */, - CFFC7B30EF171CFF9B6DCC09 /* Ice.framework in Frameworks */, - D17F5D68F23CF1FA942D82A4 /* PromiseKit.xcframework in Frameworks */, - 5437389FCE14EF4107E150A2 /* TestCommon.framework in Frameworks */, + A2BCAFFF02E5784D7E4C907F /* IceImpl.framework in Frameworks */, + D50693D75429F2F8FDE1D556 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A0899A079D953C8B3733ECE6 /* Frameworks */ = { + 97EED2E3C98D3F5AF3A1552A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1EC42A7BFF0FE4B4F2F355D9 /* Cocoa.framework in Frameworks */, - 7F091880CC2BE16653F5C59B /* Ice.framework in Frameworks */, - 926C330CAA2AF8AA9434FBD1 /* PromiseKit.xcframework in Frameworks */, - DC65D9C12980318991DC0B67 /* 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; }; - A0E77756D74837A7B15AD0E4 /* Frameworks */ = { + 97F410FDB59D1A621BEC3DF3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 88F0C8A134460E85871730DA /* Cocoa.framework in Frameworks */, - D5765BB9B0FB122402F10B7C /* Ice.framework in Frameworks */, - 9D51E686F366773ACCC7178F /* PromiseKit.xcframework in Frameworks */, - 67EAAF7D96E5E6C24CEFF97F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A503E9F74ED2137A844CBCA9 /* Frameworks */ = { + 9844B33CD363109631307713 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2D8F31685029DE1A3E5BE883 /* Cocoa.framework in Frameworks */, - 242B6F8412F43F68427F852B /* Ice.framework in Frameworks */, - B39C9E6A53FAFD8517C24023 /* PromiseKit.xcframework in Frameworks */, - 2A1DB428E8E4B213D629E6C4 /* 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; }; - A698BD56302069302025FC88 /* Frameworks */ = { + 985F505F3ED81C0489D5822C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 223690B9C2ED48C823677945 /* Foundation.framework in Frameworks */, + CA06CB0C5AB2857659D30283 /* Ice.framework in Frameworks */, + E308EC7E46EE3A0299C0B22B /* PromiseKit.xcframework in Frameworks */, + 3A98BFB96F4C1E36DDC7EEDD /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - AC4437CFD49892537E7B3177 /* Frameworks */ = { + 9D141EDE4C7711B1D7969C8E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4FDF4241D3A950D22006028D /* Cocoa.framework in Frameworks */, - A0E0182092093DD6E61C134F /* Ice.framework in Frameworks */, - 67413B15492AF4E88F2C127D /* PromiseKit.xcframework in Frameworks */, - 7F840956F13F990D305C24D7 /* 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; }; - ADFECDD3C5009F1D174CC517 /* Frameworks */ = { + 9F5EBBFEADA209B38F96E7DF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 56D20B23AD1EA8D353A9CFAC /* Glacier2.framework in Frameworks */, + 9898C48A4731EFE8210D6AB4 /* Ice.framework in Frameworks */, + 5B093A17DEF1D680BB4A9CE0 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - AEA7A4801ECB475EFAE6A085 /* Frameworks */ = { + A2C34056BCFA8E0038DD79A4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2998ECF0FFAD5226217BB355 /* Ice.framework in Frameworks */, - 958F12473CEF81A81BBA41D4 /* PromiseKit.xcframework 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; }; - B086170187254B6C38BD9BBE /* Frameworks */ = { + A590247DC8420FF253C22E0B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 9201C71F9C04EB74313690A2 /* Foundation.framework in Frameworks */, - A0D16DF3351D17928E3FC8EC /* Ice.framework in Frameworks */, - 78C42332584409B255BCB2DD /* PromiseKit.xcframework in Frameworks */, - FAE6CDC113ECDCB7CA9E1377 /* TestCommon.framework in Frameworks */, + 0CCD6A235A86107E6E7CEB44 /* Ice.framework in Frameworks */, + B70E3D3C1C12B5939CC0AEE5 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B23C11469E61ABD0EDC6FC34 /* Frameworks */ = { + ABCA9F03D86E6110D1859173 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B72C238DEEB8B6E1BAECA9E0 /* Foundation.framework in Frameworks */, - 8D7025DD6B71DCCFCD9D8C22 /* Ice.framework in Frameworks */, - 95A408FCF21100A8326796CF /* PromiseKit.xcframework in Frameworks */, - 4ECFCAD561920DC45A770E30 /* 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; }; - B4544514F441BC1AFD28374F /* Frameworks */ = { + B3650CA7FFEC001254FF4F90 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F38E57C85B29C7AD0CA293E5 /* Cocoa.framework in Frameworks */, - 48B12429F98610666A92254E /* Ice.framework in Frameworks */, - 4A16A9260EB179A795E4A1B3 /* PromiseKit.xcframework in Frameworks */, - C3B4C1E3513CDFE981269530 /* 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; }; - B54B106594DCA06CB094EFC7 /* Frameworks */ = { + B367B8328583C66CB3B65E11 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 65A4E903594F5CA87CA1B6DE /* Foundation.framework in Frameworks */, - CF98398C8D9504749631ADBE /* Ice.framework in Frameworks */, - 47676F6C4415D7C2396021E0 /* PromiseKit.xcframework in Frameworks */, - F0676320A167101DC1E431E9 /* TestCommon.framework 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; }; - B862D6E5F716780AED3C2D8C /* Frameworks */ = { + B3A87C11E0F7FE17A76F4C35 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5D0E6032C6B38E1265DDFE2E /* Cocoa.framework in Frameworks */, - A8C766B134EA6FBA6AD2FB4D /* Ice.framework in Frameworks */, - 7D5B78742101708CFAA63B90 /* PromiseKit.xcframework in Frameworks */, - 3449B9201FDBCB134E91E359 /* TestCommon.framework in Frameworks */, + E3DEACACB95B8C3102DDB545 /* Foundation.framework in Frameworks */, + 85AD81EFF581BFF94527C071 /* Ice.framework in Frameworks */, + 1B7DCFEC630B333062000E92 /* PromiseKit.xcframework in Frameworks */, + DCF75D9CA0611B6B1B4956E3 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - B92875871868C537E6638BF6 /* Frameworks */ = { + B55FDCB5E4F9CA0785C2645B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - FBD93475BF07B36B2DB91701 /* Foundation.framework in Frameworks */, - 68DC867AF4A533D05F1F47F9 /* Ice.framework in Frameworks */, - FBF6416D19F7C22FC7C11A7A /* PromiseKit.xcframework in Frameworks */, - 4AD70268730EF7733C819FD0 /* 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; }; - BD978DCE67C32A8CBB5F07BC /* Frameworks */ = { + B885FB6DA86044C3C3BD4492 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 188D33D572864891FB2C6AD3 /* Cocoa.framework in Frameworks */, - 8C92FDD3BB0828C5B8823621 /* Ice.framework in Frameworks */, - DF658B608E89DC95748E9022 /* PromiseKit.xcframework in Frameworks */, - 67430986416ABE999B11F823 /* 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; }; - BE11D834A9A91386E9184019 /* Frameworks */ = { + BBEEFF0A68121EE4209D00C8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 3CB5C6939CE6B301FD9E1657 /* Foundation.framework in Frameworks */, - 08EAF643A2653FD89ABB7D42 /* Glacier2.framework in Frameworks */, - 52078C9A5B75240335B04E85 /* Ice.framework in Frameworks */, - BF86CC5BB50C374E2DD482E3 /* IceGrid.framework in Frameworks */, - D379195C8850680F7F9B72CE /* IceStorm.framework in Frameworks */, - 13281101D2A03AF0E39CEB91 /* PromiseKit.xcframework in Frameworks */, - FC7AF2821E75D1B3C11E0EA9 /* TestCommon.framework in Frameworks */, + 29633158A02ED93E6CB64E03 /* Cocoa.framework in Frameworks */, + E05843FBC3FB2C0977CFC6B5 /* Ice.framework in Frameworks */, + F54E29A83133FED14C4AA068 /* PromiseKit.xcframework in Frameworks */, + 744E26419A08CF0CD57C48CB /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C09156DD1A85FA6AF9DCF9B5 /* Frameworks */ = { + BF7FE0D35C2CFFCA8AE47C9F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 812EBC02D2A477A03EC2DDA3 /* Foundation.framework in Frameworks */, - 319400CD6F1733AC4A5C67A5 /* Ice.framework in Frameworks */, - 815C651DE541122FE74E3CE5 /* PromiseKit.xcframework in Frameworks */, - F05CAE7A600D66FEFEB492FF /* 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; }; - C1543030B9BF65F895BC9163 /* Frameworks */ = { + C18F8BCB0605A7BBC62E6F05 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0A4EA454CDC37B237D4D0068 /* Ice.framework in Frameworks */, - B309C311C3D80AB65DF93231 /* PromiseKit.xcframework in Frameworks */, + 708372DEE0A39A86DAA7EB59 /* Foundation.framework in Frameworks */, + 7F297CE3301586D2DE283BB0 /* Ice.framework in Frameworks */, + 0064FB5868041AA654A52DD5 /* PromiseKit.xcframework in Frameworks */, + C700D8EA841D2A3DA0DB25E6 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C218E742F5D307158924EA76 /* Frameworks */ = { + C34E0052B14CF37479E06DB4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4AD38C3F3E071A3224EEB4A0 /* Foundation.framework in Frameworks */, - 1C2566EF8DCE13602549EC96 /* Ice.framework in Frameworks */, - 1B5FE007B263C0C5CE21B0EC /* PromiseKit.xcframework in Frameworks */, - CF8B43B1EB3FF02ADD78BA43 /* TestCommon.framework in Frameworks */, + 01033CC145D7EEF0A900EAE5 /* Cocoa.framework in Frameworks */, + 3C3D961062FE6BBC0159C88B /* Ice.framework in Frameworks */, + 454EA9653401A2346AE4CBE1 /* PromiseKit.xcframework in Frameworks */, + 6002F3A63234126AAC8E048E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C558CF5EF4E33983782AC27A /* Frameworks */ = { + C3D709A49D80D17285D3FDD8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 35AEC3F894DDA7F8F781BCE5 /* Foundation.framework in Frameworks */, - 78D18BEA8C1E658FCED01C2C /* Ice.framework in Frameworks */, - FD25A7D0C72352EA667FFC58 /* PromiseKit.xcframework in Frameworks */, - F38172BEB03F49344B3FA4B7 /* 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; }; - C81DC1A228E7251EE49CD9A0 /* Frameworks */ = { + C3E1F38BA06E190B7CC98682 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0525B9C6B3463614F468B342 /* Cocoa.framework in Frameworks */, - C76FDB1D1DA0DA1D7C15C8B9 /* Ice.framework in Frameworks */, - BAC78B4F595BD0F319B02618 /* PromiseKit.xcframework in Frameworks */, - E1F5AF99B627FEC2E8714A88 /* TestCommon.framework in Frameworks */, + 7AB696B1B1B7409BF7D07D5D /* Cocoa.framework in Frameworks */, + 175491539AF5B8E3A29FE9EE /* Ice.framework in Frameworks */, + 39E78190DC29186945EC4D48 /* PromiseKit.xcframework in Frameworks */, + DF26340484CF5EA4B18F615D /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - C87B421850A37441282C7EFF /* Frameworks */ = { + C446E0776A800C79B6069B3A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 168BBC0D92DF7FCD60D03C5B /* Foundation.framework in Frameworks */, - F8576A7571826929C57CC91E /* Ice.framework in Frameworks */, - 4417A48F1C9C2AF14B7EA611 /* PromiseKit.xcframework in Frameworks */, - 3E36C9FA26A5630D5673273F /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CEAC8C07ABFA3535880712A2 /* Frameworks */ = { + C834C22CAF0520D2749F4FD8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 2C832AC371BCFF33D4BC6346 /* Cocoa.framework in Frameworks */, - A0D01250B56FF47A79DEED94 /* Ice.framework in Frameworks */, - B9C2DD2D5613D775575C333B /* PromiseKit.xcframework in Frameworks */, - 535AA68DEA4DE9AA044CF914 /* 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; }; - CFFD04D7334DE7F83630BCFE /* Frameworks */ = { + CD976712DDCAA3224E58C775 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 446C2528778DF27ACAD2F032 /* Cocoa.framework in Frameworks */, - 02189358E3DEAA3352126308 /* Ice.framework in Frameworks */, - 2B58D579C89BC7384E631448 /* PromiseKit.xcframework in Frameworks */, - 34A8AE509874E979426723FC /* 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; }; - D145478BF7DA75E8E2B48784 /* Frameworks */ = { + CDDC0380D0A062DCEB6F87F7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 787292652516D87D14D2A3F5 /* Foundation.framework in Frameworks */, + D79D5036D144871CAA38E8DD /* Ice.framework in Frameworks */, + B75DD1605DEF5643E944BCB1 /* PromiseKit.xcframework in Frameworks */, + 7881A10B3D81DEF82EC2DEC0 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D2F76D4ED0D3915212A80E04 /* Frameworks */ = { + D10C1C4751624F6A08A7F209 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5E83FB3F97A360E252C55FBD /* Foundation.framework in Frameworks */, - FDDC5812A0681FC18860451D /* Ice.framework in Frameworks */, - F90D8D9879F4143CF8A98257 /* PromiseKit.xcframework in Frameworks */, - F60805692BF75F063F8788CA /* TestCommon.framework in Frameworks */, + 602CAAEF12802DD779A041DE /* Ice.framework in Frameworks */, + 7520F3D097B0AE4BC26D6DB8 /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D50E77E4CE80C269BD9776D0 /* Frameworks */ = { + D40ED5C22867DF7D772839B8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DFE644290C720C34A146AAEC /* Cocoa.framework in Frameworks */, - 06D6D868235FD52567DE309B /* Glacier2.framework in Frameworks */, - 43B04F48C318CB003D00F36C /* Ice.framework in Frameworks */, - 342D8CF48C45CE057CE74D6D /* IceGrid.framework in Frameworks */, - 91DD1B6F9C757E9D1932DF5B /* IceStorm.framework in Frameworks */, - AFF652ACDFD4F86D15C78356 /* PromiseKit.xcframework in Frameworks */, - EEEE55D167009E5B52017EB7 /* TestCommon.framework in Frameworks */, + 71DDACB50B367962DC6FF2F9 /* Foundation.framework in Frameworks */, + BF15744731598046FEFAC839 /* Ice.framework in Frameworks */, + 96E121D5F989C98A2229047A /* PromiseKit.xcframework in Frameworks */, + 3ED586FFA65D9A2ACDCF8F61 /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - D792278D9EE599FE0B8B825F /* Frameworks */ = { + D92113C9FF7B0AEB581F1C83 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8081F030A606ECD461F96BF4 /* Foundation.framework in Frameworks */, - 8E2A2651032B58C66F114454 /* Ice.framework in Frameworks */, - 056A13A487D0269009F489FB /* PromiseKit.xcframework in Frameworks */, - BBA7C9CA4A8AD0F8AE0C7C6B /* 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; }; - D8F2D365A25E223F62CAD35C /* Frameworks */ = { + DB78C24C92B766330E59B250 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 6958A19EC00CB8C4F59FEC37 /* Cocoa.framework in Frameworks */, - E684A9254F746D25D8F52B8A /* Ice.framework in Frameworks */, - 59CE05A8316A450D8348A5F6 /* PromiseKit.xcframework in Frameworks */, - BE17229417D9AA1D213B521D /* 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; }; - D9A3F7D9D92764B98B3123A8 /* Frameworks */ = { + DCCA52359AA036281A864758 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - AA3009A96E6750777D48DBB1 /* Foundation.framework in Frameworks */, - DE11B8B721005376E35AEB71 /* Ice.framework in Frameworks */, - 1CD1D38A42A59FA95C281B9A /* PromiseKit.xcframework in Frameworks */, - AFCB7A1C5AC5640DC7AD8058 /* 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; }; - DC327B0FA8203F2D96C5CA8B /* Frameworks */ = { + DD1561F5393DB7AF211BE308 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - DC030D1A25ADC2A17F7AC392 /* Foundation.framework in Frameworks */, - 648B5E9CE7EF05D4186DB43E /* Ice.framework in Frameworks */, - 121807157EC413FB87069F3F /* PromiseKit.xcframework in Frameworks */, - 5C868AEA4D30A635B6550F25 /* 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; }; - E30612C910C44AD368450089 /* Frameworks */ = { + DDF270C3F565AB7125102577 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0BF9304D519575F887C0D95B /* Foundation.framework in Frameworks */, - 9D4B7F981422D4405C24BE23 /* Ice.framework in Frameworks */, - A073B6BB6331F5F166A7C157 /* PromiseKit.xcframework in Frameworks */, - B0E914E71BCCE5ACDEF86913 /* 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; }; - E3C3083DE135A1C425F49493 /* Frameworks */ = { + DFDF87A72488FB1BE6891D48 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C1343CBE720B2DC256CD1478 /* Cocoa.framework in Frameworks */, - B721015E7D1AAB5D755A8808 /* Ice.framework in Frameworks */, - E51AA40B2A63B7E6D2EB463C /* PromiseKit.xcframework in Frameworks */, + 7B6A1EC67FD0F82E50AE84B1 /* Cocoa.framework in Frameworks */, + 60309A689F48B5F17ED0AC5F /* Ice.framework in Frameworks */, + 7E18BB634EEF0315FF704C7E /* PromiseKit.xcframework in Frameworks */, + 51FB508FA4FCD7002382865E /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E43D3258D7895A717CE8EBA2 /* Frameworks */ = { + E1FCCD7331B1B2DE7B2A2C81 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7D83FB69615A158017998208 /* Foundation.framework in Frameworks */, - DBD1FF2867013D1CF374444E /* Ice.framework in Frameworks */, - DB91D7BC5E5818F7E8F40859 /* PromiseKit.xcframework in Frameworks */, - 0AD7E8F712B6552BBAE3E0EC /* 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; }; - E64738021C8CBF0389A3135D /* Frameworks */ = { + E407893EB03864C359677FAF /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 406926F796CB77DBF6FA3561 /* Cocoa.framework in Frameworks */, - 6530FF9E0CD891FD42A2E037 /* Ice.framework in Frameworks */, - F9A678E0D8142B0EAAF58818 /* PromiseKit.xcframework in Frameworks */, - 234E7A5FBA79D5798940A9C9 /* 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; }; - E7946541CD8706DFA4CC9055 /* Frameworks */ = { + E572B71F7B0310B0FBB5FA3F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 0FC5F1E1412F26368F6A9F7A /* Cocoa.framework in Frameworks */, + 6ACD683ABFC9D02D45B3A65D /* Ice.framework in Frameworks */, + BD8D7C3F1DA36FA0A413D715 /* PromiseKit.xcframework in Frameworks */, + 207B48D545B1526630D2833A /* TestCommon.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - E968A28CD4DAF0118A700EB5 /* Frameworks */ = { + E6039FA4196A2B58B28A49CE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EE92D40F019F418F57F47E97 /* Foundation.framework in Frameworks */, - 8993C3461E4B72B1B4B9469B /* Ice.framework in Frameworks */, - 5B67AE7059D8DB516B629E14 /* PromiseKit.xcframework in Frameworks */, - E046306C3015C877A3BE9084 /* 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; }; - E9E5406CDF46D57109C05BCB /* Frameworks */ = { + E7CE9EAD6B41D15F33A3BC5F /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F081689B32024C4405BF64ED /* Frameworks */ = { + EB9BC4C9F2A7DE2A7357AC51 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B8454674D8DEC49DD27A5CAB /* Cocoa.framework in Frameworks */, - F39E0F5A881ED716D5FFA86A /* Ice.framework in Frameworks */, - CCF0474FF11F73D43AD97785 /* PromiseKit.xcframework in Frameworks */, - 706D46FADF7E67C19DD42C35 /* TestCommon.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; }; - F686E94DE59E1050B4F45B23 /* Frameworks */ = { + F1E137735CAC0DC93E63C75D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 76D98EEF70E83DFAF18537D3 /* Foundation.framework in Frameworks */, - E1AB202BFCF1D5BB293C3560 /* Ice.framework in Frameworks */, - D107F7D49FBB8D2A50E1CC8A /* PromiseKit.xcframework in Frameworks */, - 876094B239F28C2B4D5E461A /* TestCommon.framework in Frameworks */, + 4960A857834E2440A0AA8CDB /* Ice.framework in Frameworks */, + F42733420894D924995579FA /* PromiseKit.xcframework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - F9B9CA343281FDF313A50EC2 /* Frameworks */ = { + F8E7C240ABCB208AF20991BA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - FB763296FEBB3F746AEF08A0 /* Foundation.framework in Frameworks */, - E80F03AADD7FDE54CBD7DCC2 /* Ice.framework in Frameworks */, - 0EA185C86B7350E72419B0AC /* PromiseKit.xcframework in Frameworks */, - 3A1DB79600F0C7ADE8B85F30 /* 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; }; - FCBEA5B3F2725D44C6BCEAE1 /* Frameworks */ = { + FC33E14EC639571B6432A1DE /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 4EC5E9F6697A9843D9714C53 /* Ice.framework in Frameworks */, - DE94840EAE0950C8BA79F949 /* PromiseKit.xcframework 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 */ - 01DCB11F0A6CCBED66E8AEEE /* admin */ = { + 01DC9BABF5CB1E0340D41BB6 /* OS X */ = { isa = PBXGroup; children = ( - 9460E602C8D4CFFC14B8BCDD /* AllTests.swift */, - D59C9EF4D725171D05DFB4A4 /* Client.swift */, - 1BB1E5488617EE9721803F5E /* Server.swift */, - 28DF745A2D928C90F9F4419D /* Test.ice */, - E6DE756B8F16EAC3E04B2798 /* TestI.swift */, + 05CB53AEA500E0FCF5D7C4B3 /* Cocoa.framework */, + 97BF29003FA543A0E5A1502C /* PromiseKit.xcframework */, + A76BBEE914CB874C8B739408 /* Security.framework */, ); - name = admin; + name = "OS X"; sourceTree = ""; }; - 0203486A671386BC5E6CC041 /* Ice */ = { + 0263165D25E2764D1515EDD0 /* retry */ = { isa = PBXGroup; children = ( - 4FE15755ADD9B5EE9808D8C1 /* AdminFacetFactory.swift */, - 5C0743CBF803A996FBBFE2C5 /* Blobject.swift */, - 73EC11AA0D472514A88B1245 /* BlobjectAsync.swift */, - E4CF2077C814A7377DDEE06A /* ClassResolver.swift */, - 9EF15FCC42E00687BF6F16DE /* Communicator.swift */, - 9C991DFF2AAC0B41C6A1F408 /* CommunicatorI.swift */, - 72BF04B404B4A6ABFA18A71A /* Connection.swift */, - A21AF317B8CCD5205D8A9013 /* ConnectionI.swift */, - 4B584730D968F098A9E3D59A /* ConnectionInfoFactory.swift */, - 0E218220353976A1D5C07CF1 /* Current.swift */, - 86A893065E7D543BCF41F626 /* Endpoint.swift */, - CF1DF22CB01FFA62872EB861 /* EndpointI.swift */, - 0D168BB468F0B9234386530C /* EndpointInfoFactory.swift */, - 9BDEAE47C449BAB487924895 /* EndpointSelectionType.swift */, - C61C5DA6F7F7080FC83FE964 /* Exception.swift */, - 15530AE76DACDC2FD0C54C11 /* FacetMap.swift */, - 9CF9391197314E2751FD072B /* FormatType.swift */, - 5349B4AD3076D48E54DF2ADC /* IAPConnectionInfo.swift */, - 36A67621EF8B41A02D1A5852 /* IAPEndpointInfo.swift */, - DDC7FB9EE1A071911E227CCB /* IceSwift.h */, - 71DC04F4318C243C54C6708F /* ImplicitContext.swift */, - DDC1C3A7852A6CED90889B91 /* ImplicitContextI.swift */, - B5F7B7EC6A1313D15C1D5F60 /* Incoming.swift */, - 0A20490EA6CDB84BD5F7B138 /* Info.plist */, - 3BDD0F141EA94FBF630E95CA /* InitializationData.swift */, - 628F9CA7D6D383137FC355E3 /* Initialize.swift */, - 7226B2863E023A530714AEFD /* InputStream.swift */, - 4A1629C3A24F66265F742150 /* Instrumentation.swift */, - 85132CE480BFBD047F6718C3 /* LocalException.swift */, - B7A67EB9002C23EFFD4F4331 /* LocalExceptionDescription.swift */, - 9947265006AE43D802120A4E /* LocalExceptionFactory.swift */, - 28BB763CB891D9E198CB4E13 /* LocalObject.swift */, - 910BCA66868673D701E802CE /* Logger.swift */, - 2A5CBC38E08DDBAA7ABAEF6E /* LoggerWrapper.swift */, - 863A6469470E9F1912BC6E4F /* Mutex.swift */, - AEE1AA28CFE3208D7116FD69 /* NativePropertiesAdmin.swift */, - 914E1A04B42CF82EDA413850 /* Object.swift */, - F90B2EAB5D9DCC4178F8B5B4 /* ObjectAdapter.swift */, - 336BA488F873C8ED6AC70009 /* ObjectAdapterI.swift */, - FCB4094FE32B8606EBB93BFB /* OptionalFormat.swift */, - 7FEE9254105C73243B44FFE6 /* OutputStream.swift */, - F674217427A6BB4384E16370 /* Plugin.swift */, - 0AE9DC976389286FF16B21B0 /* ProcessI.swift */, - 79B81F0D55617DE7F0F891F6 /* Properties.swift */, - 91D39023FE37EB3ACD51A678 /* PropertiesAdminI.swift */, - 5794745FC0FAEAA72EC1AD49 /* PropertiesI.swift */, - 86BEC7DFBDFA7D664AA2948F /* Proxy.swift */, - 7026D4F8367154C1BE4B7F26 /* ServantLocator.swift */, - 307A532F3C4EB11FF4260F44 /* ServantManager.swift */, - CE088400874CD0479C5DBEB2 /* SlicedData.swift */, - A594F0C1849CEE5DE3E665BC /* SliceFlags.swift */, - 7D253A2160FCD5C0E019B003 /* SliceInfo.swift */, - 223354CEBDD25407EF26C216 /* SSLConnectionInfo.swift */, - 2A2C21B3DB0E4BE665D1475F /* SSLEndpointInfo.swift */, - 5621C5105CF819261AA00022 /* UnknownSlicedValue.swift */, - 5A030366430881927186CFFF /* Util.swift */, - A83AFD09B0973C33E42BBA73 /* Value.swift */, - E3EA671155BA0EAA870D5F9A /* ValueFactory.swift */, - 84BCFC47EF30B1DDA82EB275 /* ValueFactoryManagerI.swift */, + 4066C2CF37F090029B871117 /* AllTests.swift */, + B286694690297FFF7DF31EA9 /* Client.swift */, + 8009BD807CE901360AA23914 /* Collocated.swift */, + E512A7FBE87BE4C3D0241122 /* Server.swift */, + E00EC3B82938848CFB40EC31 /* Test.ice */, + 29F96EFF6178BC3FE5DB0F00 /* TestI.swift */, ); - name = Ice; + name = retry; sourceTree = ""; }; - 02FFB213B211BB6EA4736DF5 /* slicing */ = { + 02DA2E65A276493B65A20414 /* stream */ = { isa = PBXGroup; children = ( - FF39250451D3480417DFABB5 /* exceptions */, - DECEDE24FCBA50A18958C76E /* objects */, + BD5215EC1E4F66AFE89CA625 /* Client.swift */, + 30EF7A48D5F3B8AF61ACE1F2 /* Test.ice */, ); - name = slicing; + name = stream; sourceTree = ""; }; - 0704DE1A9EDDAC204C1C734A /* cpp */ = { + 055434BF6DE84E9628D6C120 /* Frameworks */ = { isa = PBXGroup; children = ( - 0762ADFFC06F47A3F209BE44 /* src */, + FD01717E3C1F108D0BF0CAC5 /* iOS */, + 01DC9BABF5CB1E0340D41BB6 /* OS X */, ); - name = cpp; + name = Frameworks; sourceTree = ""; }; - 0762ADFFC06F47A3F209BE44 /* src */ = { + 09F3FD3EB504797666466B34 /* IceDiscovery */ = { isa = PBXGroup; children = ( - 25A34B94DD5F0D4551ABB813 /* Ice */, - B23138DE599D6190D025EC35 /* IceDiscovery */, - 845C009AD243984328F62EF8 /* IceIAP */, - 192A9052BCD54F6B70A9DD0B /* IceLocatorDiscovery */, - B94FA1A21E64157AA91D7058 /* IceSSL */, - 1467A57CBC477C4E7A502F3A /* IceUtil */, + 0B858D15CFF07BA0E6A6FBA3 /* LocatorI.cpp */, + 91DC2A0D34F096C05AFFAFE6 /* LookupI.cpp */, + 9A5B352FEADCB1E176B01CED /* PluginI.cpp */, ); - name = src; + name = IceDiscovery; sourceTree = ""; }; - 09AC1CD0EC466EF62E033116 /* iOS */ = { + 0B7370BA2BB47E98429992B1 /* ios */ = { isa = PBXGroup; children = ( - BAA42C2BC75B14E584DC7925 /* AppDelegate.swift */, - B51AC77641CEE54D03AFFE1D /* Assets.xcassets */, - EEF3B6F7FB1EF2FF9ED73F1C /* certs */, - A7091E2B84A51D7D4E990597 /* Controller.ice */, - 216CADE6B58D39565FA60EB2 /* ControllerI.swift */, - 99AF422C184D4E445CBFDCA9 /* LaunchScreen.storyboard */, - F345F9DBACA2072E0A394485 /* Main.storyboard */, - E69319811BB2583A562A6C15 /* ViewController.swift */, + B8CC643DD42F1A5B6B27A542 /* Notifications.mm */, + 82876D1602C1CC12EE6FAB84 /* StreamAcceptor.cpp */, + 8D3D49BC0C29B23231C962C1 /* StreamConnector.cpp */, + A97E29B6434137D42CB3F467 /* StreamEndpointI.cpp */, + 885AE89496BA237CFD217347 /* StreamTransceiver.cpp */, ); - name = iOS; + name = ios; sourceTree = ""; }; - 0E98370670AB8B497FDF99B4 /* Ice */ = { + 11D4943EFA68EF5327C530AF /* Ice */ = { isa = PBXGroup; children = ( - A8110928E44217AE00E68044 /* acm */, - 22A9ECDF963BEB065CFE78DF /* adapterDeactivation */, - 01DCB11F0A6CCBED66E8AEEE /* admin */, - 50EA37E38F94F5346E6B6FB0 /* ami */, - C4813196EAAB00571C0DCF08 /* binding */, - 8FE3E5E86A0748D16F720372 /* defaultServant */, - A28AF875F8270C3AD46343B1 /* defaultValue */, - 8F4CD1B3451289BB614F387A /* enums */, - 64A45E066F4EA91902861CC3 /* exceptions */, - 0F046EC52BBF8CB629F9CED9 /* facets */, - D391EEC690DFAB6B56B19F2D /* hold */, - F128824761873631208E9FF6 /* info */, - 84BB5F9EA28D03EEADC31E5F /* inheritance */, - 5033CCAC73DD5283B0954217 /* interceptor */, - 292D50159F6223AC6F01218E /* invoke */, - 9F2CB7D5DCA937E4F4C5FAEA /* location */, - 75203057D98D54301A096BA0 /* objects */, - A070E7E11E371C095EE8C5DB /* operations */, - 3E19054B11B30C0A59682595 /* optional */, - 7638AAF2E2565BB74666D44F /* properties */, - 699675A45FD3238C3D134DC1 /* proxy */, - 1CFEEF262DADBDB12080F56A /* retry */, - 1D05F8633D855064A5689E6B /* scope */, - 528BC0704E58BF67B14EE862 /* servantLocator */, - 87F98F788906BAA62315FE3F /* services */, - 02FFB213B211BB6EA4736DF5 /* slicing */, - AAFFDFE26DCFE929B2FFE70B /* stream */, - 7F251C26A977F6D66DD7DB5E /* timeout */, - 71C3633FA3B78DEF019A98A7 /* udp */, + 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 = Ice; sourceTree = ""; }; - 0F046EC52BBF8CB629F9CED9 /* facets */ = { + 1B3896B776E58AB128FDF316 /* facets */ = { isa = PBXGroup; children = ( - 5A83C77E4B0D0283CA18020F /* AllTests.swift */, - CDAA337977433E1B2F9235CA /* Client.swift */, - C6BBD6CC1E3C2A7CCF12C722 /* Collocated.swift */, - 37F4F28FF6999FB92889AECC /* Server.swift */, - 55A1E522AC3532C58222E061 /* Test.ice */, - B19E7F86972D806170B222DD /* TestI.swift */, + 5208C1A489762B290922821B /* AllTests.swift */, + 8BE034D58C57F544FFE3F539 /* Client.swift */, + F943822FF946957243189A7E /* Collocated.swift */, + 6B98B9DFC1163605AFE57B8F /* Server.swift */, + EBEAB016AE060E51B33C88C5 /* Test.ice */, + B29BEC4319D17CB3605C32E1 /* TestI.swift */, ); name = facets; sourceTree = ""; }; - 0F4CD8CE9931A0ED5AF7DC3A /* OS X */ = { + 268D111CA956A6D51FF1B161 /* cpp */ = { isa = PBXGroup; children = ( - 5A3C4393F89E82FE9B0092C3 /* Cocoa.framework */, - 6FA0D40F8DAE2A3B0CCC11DF /* PromiseKit.xcframework */, - A202DC196498CA41452751D4 /* Security.framework */, + 2AAB54C9B624C56DF9532637 /* src */, ); - name = "OS X"; + name = cpp; sourceTree = ""; }; - 103FDA3C298F28EEBB273247 /* escape */ = { + 28A84410D5EC3F2ECCFBA7FB /* adapterDeactivation */ = { isa = PBXGroup; children = ( - DCD2DF2F490C333AFC34E403 /* Clash.ice */, - E47484D1D3DDA643748FDA4D /* Client.swift */, - F48616BFFA819BAF3F8B2FB8 /* Key.ice */, + 072DFE1DF91B22D0966DB8E8 /* AllTests.swift */, + C2C6131D4A6ED131271C07ED /* Client.swift */, + D78CE34686A4B4BFD16057B6 /* Collocated.swift */, + 5DAAC857DBB56205C7CCD7F7 /* Server.swift */, + 851EBE7BCB0ABDCADDDBE688 /* Test.ice */, + 563E87FE0656F0B5B4ECBC45 /* TestI.swift */, ); - name = escape; + name = adapterDeactivation; sourceTree = ""; }; - 111FA65BCD5EF270EE40E0A1 /* ios */ = { + 292E27D69151D8775F086BCC /* interceptor */ = { isa = PBXGroup; children = ( - 8DE17663D635E9A4C17FAF76 /* Notifications.mm */, - B2C7879A807808CED706CF2E /* StreamAcceptor.cpp */, - FCAD591DFA056E0732E8B3CD /* StreamConnector.cpp */, - 368C3BEB6491D68E441DBB33 /* StreamEndpointI.cpp */, - 230B98F91F974374C839BF91 /* StreamTransceiver.cpp */, + B88F26BEC7B480A327AB48B0 /* Client.swift */, + DDF2419DBADC2D1CB04E0823 /* Test.ice */, ); - name = ios; + name = interceptor; sourceTree = ""; }; - 129D1EA97125CF934132FA9C /* IceStorm */ = { + 294D1C9DB3A42F07506BBBA6 /* info */ = { isa = PBXGroup; children = ( - C08D8DDDF0EA2D26B0BC84AF /* IceStormSwift.h */, - D9C8139F340DD5FDBEB54718 /* Info.plist */, + 2F988BC0E5C27AAC15798F7E /* AllTests.swift */, + 646675FFD1880B556F62E835 /* Client.swift */, + DBBA56D618556333971F2555 /* Server.swift */, + F92FE3784F36CF61C114C8A7 /* Test.ice */, + C307ECD76BE33A0CF42D8C5E /* TestI.swift */, ); - name = IceStorm; + name = info; sourceTree = ""; }; - 12F1C32F4732D8A53F774458 /* IceGrid */ = { + 2954FE0766C617A0A50AB153 /* Glacier2 */ = { isa = PBXGroup; children = ( - AD5E4ECB4BECCE515728C9F0 /* IceGridSwift.h */, - 5E51180718D104ED58F2E78A /* Info.plist */, + CB5AF66AE62474538F3B4C8A /* Metrics.ice */, + 9B9DC4A0F25EC95FDA68E396 /* PermissionsVerifier.ice */, + A1C88ECE6870F60549A0EE24 /* Router.ice */, + 1FB327988DA6B56153EC048A /* Session.ice */, + B43B0FAA9A029A4458C3590F /* SSLInfo.ice */, ); - name = IceGrid; + name = Glacier2; sourceTree = ""; }; - 1467A57CBC477C4E7A502F3A /* IceUtil */ = { + 2AAB54C9B624C56DF9532637 /* src */ = { isa = PBXGroup; children = ( - 6B94A0EF9213206745C31CC8 /* ConsoleUtil.cpp */, - 9467375F0E35C0FBB7688528 /* CtrlCHandler.cpp */, - F214226923D4CB01CC6D14A1 /* FileUtil.cpp */, - BB0CC3A93C44880C5C9C63D8 /* InputUtil.cpp */, - FFC516B10AAE738541716320 /* MutexProtocol.cpp */, - 90D35835E18D79ADAB716A16 /* Options.cpp */, - 9C83A2E19EDF012C6703AB53 /* OutputUtil.cpp */, - EC5127D1D96F5CE76CAD417D /* Random.cpp */, - 59519EE11AE42BA7F6AF270A /* RecMutex.cpp */, - EB3E29E74373ED5837D69F8F /* Shared.cpp */, - 0832C0FE4DD00F57DBF41A23 /* StringConverter.cpp */, - C990D1538CF08ABB45003017 /* StringUtil.cpp */, - EAD58C233C507C35334F1CC6 /* ThreadException.cpp */, - 73CDB2D5673ECFD9B238AAB9 /* Time.cpp */, - A0C68422D8FEA96E3FB21520 /* UtilException.cpp */, - DC4BB865E8CEF17247111E25 /* UUID.cpp */, + 95DBB600FA77D84EA35A8CDB /* Ice */, + 09F3FD3EB504797666466B34 /* IceDiscovery */, + 92F57F8532BC14A57F09091E /* IceIAP */, + F2540931AE3E6DE5D924B3A2 /* IceLocatorDiscovery */, + 79661E8792BFD29B3A8ABF76 /* IceSSL */, + 58C32C33667E0F81295A9978 /* IceUtil */, ); - name = IceUtil; + name = src; sourceTree = ""; }; - 159B1E6FD88EB8053C6B85E4 /* Glacier2 */ = { + 2B5D6307AAB378C03A1BA330 /* objects */ = { isa = PBXGroup; children = ( - 07A58E70155739B4065E5FFC /* Metrics.ice */, - D091865931D88D93A031BF38 /* PermissionsVerifier.ice */, - 86B4DBD2E99AD2E1D9D13F26 /* Router.ice */, - 850A2787B4B4A3CB3C74175F /* Session.ice */, - 52675C01C923B38208A8C760 /* SSLInfo.ice */, + 98AB2A03D7BA843F9831286D /* AllTests.swift */, + E560304D19C84FD096965E6C /* Client.swift */, + EC428F92C038CB75D721C046 /* Collocated.swift */, + 0F906003B06BE6FF5CC28C49 /* Forward.ice */, + CF5998B9EC791F4A15E4E0AF /* Server.swift */, + F4B6E42CEF5AD0D3B22131A5 /* Test.ice */, + 67AF0C2725586B3CF91B8D5B /* TestI.swift */, ); - name = Glacier2; + name = objects; sourceTree = ""; }; - 192A9052BCD54F6B70A9DD0B /* IceLocatorDiscovery */ = { + 2E501B6FC9C84500B946FA98 /* IceDiscovery */ = { isa = PBXGroup; children = ( - F4F40F40EF79D1EFF0672F1C /* PluginI.cpp */, + 943F62DEE4D6B5F3DE6B0D22 /* IceDiscovery.ice */, ); - name = IceLocatorDiscovery; + name = IceDiscovery; sourceTree = ""; }; - 1A29BB8AD325B8F12D32FF03 /* Products */ = { + 2F9B997C1535E319875ABC0B /* invoke */ = { isa = PBXGroup; children = ( - 5E41A2284123652035B9626D /* Glacier2.framework */, - C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */, - 148E0EF0FB954A41B9CB2C83 /* Ice.framework */, - ED06DCDDD71F35AD778BBAFD /* Ice.framework */, - 773839314982B481FB9A5F0B /* IceAcm.bundle */, - ECDDA9E457926810C0ACEE3D /* IceAcm.bundle */, - 0F1198C1D619743981CCBB42 /* IceAdapterDeactivation.bundle */, - 0C651862FD101870CF346580 /* IceAdapterDeactivation.bundle */, - 72083FEA504B3EAD2B1B6FE2 /* IceAdmin.bundle */, - 3207B48B98719A7CBFD2337B /* IceAdmin.bundle */, - C86CB8DA4BE954C9B5E50C78 /* IceAmi.bundle */, - 9158AF482E818BC8C94168F9 /* IceAmi.bundle */, - 80FAAEBFCC3A3BCA918A1783 /* IceBinding.bundle */, - 021E511AD9C9C3E31BB6E815 /* IceBinding.bundle */, - CE428CC2328F83A0C7CF327B /* IceDefaultServant.bundle */, - 5A11FDE12E0158896D2902C2 /* IceDefaultServant.bundle */, - BE65FDBC053C9E1724BD1F80 /* IceDefaultValue.bundle */, - 817336550425E7439ECF507B /* IceDefaultValue.bundle */, - F5C15610EC1017BFB49E9711 /* IceEnums.bundle */, - 998084A78E611312ABCE0CC7 /* IceEnums.bundle */, - 6F7C2EFAAD90AF05C836E8AD /* IceExceptions.bundle */, - 461937D2DA4EABD1399760BD /* IceExceptions.bundle */, - 60F7DD828BF511AA7D9F0CFF /* IceExceptionsAMD.bundle */, - 2FF3B3842F37F3295343B6C4 /* IceExceptionsAMD.bundle */, - 8188B41289F2C073375F3D48 /* IceFacets.bundle */, - A763F1E9B20B68CAD1D62D3F /* IceFacets.bundle */, - B17547CF25F9F6D499E59F4A /* IceGrid.framework */, - F8335B51360FAD4A3774DBDC /* IceGrid.framework */, - BB0D9576EB2595A8BB30BC3A /* IceHold.bundle */, - 4D3E7C6DAF7A1136E094036E /* IceHold.bundle */, - DA48BF39278DC0F70FC216F1 /* IceImpl.framework */, - 42391EF6184A353552A00883 /* IceImpl.framework */, - 2B615C29B6876A457E770F75 /* IceInfo.bundle */, - 0A0A432A404B1F07E7108C66 /* IceInfo.bundle */, - C7DAB3F7C68697A828A55533 /* IceInheritance.bundle */, - 01FA7B3F816F4E1BBAC6D837 /* IceInheritance.bundle */, - EDC1F699D0173A3262ED8783 /* IceInterceptor.bundle */, - 030DE03918D9D61428E52F76 /* IceInterceptor.bundle */, - B1EB3F3DCA4EBE0AC85EF8E1 /* IceInvoke.bundle */, - FCD16A3852D0DAB23E0EE5DB /* IceInvoke.bundle */, - 0351F96883BE42489669584D /* IceLocation.bundle */, - 87DF00D7836869F2204A3283 /* IceLocation.bundle */, - 116A9F625EC4AC51F7044FFA /* IceObjects.bundle */, - 0D0C50C25B4B163B7098033F /* IceObjects.bundle */, - 849D140524843186122E2B5D /* IceOperations.bundle */, - 950F3E962351FD9CFB2B4F24 /* IceOperations.bundle */, - 5A1210D169DA5033BD26A6D9 /* IceOperationsAMD.bundle */, - D9B018EB339EB9B238FEA4EC /* IceOperationsAMD.bundle */, - 07E2F60461505D97899C6536 /* IceOptional.bundle */, - 30561094206DE7E5EB3B1E5B /* IceOptional.bundle */, - 6B5589624E8C18A764174736 /* IceOptionalAMD.bundle */, - 6331AC6AD612A19D131621A7 /* IceOptionalAMD.bundle */, - ED3424BFB9925A53577998FB /* IceProperties.bundle */, - 301D621EB654AC9C3E4E4E28 /* IceProperties.bundle */, - F1C224C87B599183A478B5D2 /* IceProxy.bundle */, - 9330809B9C47D804EF5BC5E3 /* IceProxy.bundle */, - F4BB047ECA2C8C6E40017B49 /* IceProxyAMD.bundle */, - F81F55C1F60FE16B0090352D /* IceProxyAMD.bundle */, - 1B7B8369877501337E9D5211 /* IceRetry.bundle */, - F9015DB7A4BC8F5780598C5B /* IceRetry.bundle */, - 8D10DFF57F34E081EBF41AFF /* IceScope.bundle */, - BBBE5C0E398A59FC82DA5B22 /* IceScope.bundle */, - 5D1D431EC03874A83605E840 /* IceServantLocator.bundle */, - 055E1371140F03C46BE4933C /* IceServantLocator.bundle */, - 1CA0FCE8D4431A2B65028231 /* IceServantLocatorAMD.bundle */, - 6D8A172CCED325773F9ACA7A /* IceServantLocatorAMD.bundle */, - 1FF3BD3182DC2FD23143C3E5 /* IceServices.bundle */, - 79CF8D4448CD8F1D2AB9367C /* IceServices.bundle */, - 9EEEF7EF10C88BEAC2595F7E /* IceSlicingExceptions.bundle */, - 431D8C7B1791F56014305D03 /* IceSlicingExceptions.bundle */, - E826DFF464DFB4529E54EDC3 /* IceSlicingExceptionsAMD.bundle */, - 46F06EE2B5CE1BD96013A0E1 /* IceSlicingExceptionsAMD.bundle */, - 474923F0179531C32355FF66 /* IceSlicingObjects.bundle */, - D7B75346EB6CBAA407B78C44 /* IceSlicingObjects.bundle */, - D78BFDA010F774B68B1D0943 /* IceSlicingObjectsAMD.bundle */, - A3BB783984531DDB15DA995D /* IceSlicingObjectsAMD.bundle */, - 1CCF2A334B2BAF9588A6DB42 /* IceSSLConfiguration.bundle */, - 525EFBA91C000927B6DE6289 /* IceSSLConfiguration.bundle */, - 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */, - DC6A10305F53DC63F7512C53 /* IceStorm.framework */, - 57B34B2AE4E0AB6BD04A92F0 /* IceStream.bundle */, - 7C57A532F569AC857B5BAC2E /* IceStream.bundle */, - 7C3C842B0893C4AC6BA6C676 /* IceTimeout.bundle */, - 23F70E58CAF1EDFC2272E758 /* IceTimeout.bundle */, - 03DCA74ACCAE41A0ADDF52A1 /* IceUdp.bundle */, - D566AB986C3B8546B20A2AE0 /* IceUdp.bundle */, - 8AF093375A28D692055B8973 /* libIce C++11 iOS.a */, - 9FF873ABC0C688353DDDFBD8 /* libIce C++11 macOS.a */, - AD73F53FFF7497EA96B009D6 /* libIceDiscovery C++11 iOS.a */, - 622CDB9E04A43DA05E046991 /* libIceDiscovery C++11 macOS.a */, - C1AF990F79450A9C081DB784 /* libIceLocatorDiscovery C++11 iOS.a */, - BDC9CA0C36333F0F3089E6C1 /* libIceLocatorDiscovery C++11 macOS.a */, - E2FA87620B046FCEDC51EC6F /* SliceEscape.bundle */, - A7CAB2E9D70B8A29FA66E759 /* SliceEscape.bundle */, - 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */, - 0FE38FC76D319902C8A9D90F /* TestCommon.framework */, - AF198F1B7E492421D2764DC7 /* TestDriver.app */, - 1C3992E2FB7D669B8812B76F /* TestDriver.app */, + 54F210B44A3817B414C37EF0 /* AllTests.swift */, + B4BEBA247618BA49B306637B /* Client.swift */, + 32F86D845456A70BA71A7775 /* Server.swift */, + D02E0C0E582227D272D99C1A /* Test.ice */, + 20939A1E0430B68C7B8CBFDC /* TestI.swift */, ); - name = Products; + name = invoke; sourceTree = ""; }; - 1A534B7D482B3A831A6E40F7 = { + 4400A32CCB5E5E6DA5F6E8E5 /* scope */ = { isa = PBXGroup; children = ( - 0704DE1A9EDDAC204C1C734A /* cpp */, - 84AD8BB3144E78CF053E9070 /* Frameworks */, - 1A29BB8AD325B8F12D32FF03 /* Products */, - ED4EF05B26F2BD8E7CE727A2 /* slice */, - E2CEB916183D82E69C80961C /* src */, - 1B19FE8698F14FE7A63E21B4 /* test */, + 37F917AF2529230B31D362F2 /* AllTests.swift */, + 5F9F46F2B6EF9528E9EEA0A0 /* Client.swift */, + 20917172F64B1F0658E4FD1D /* Server.swift */, + A60DFD912C3076C2441A6EEB /* Test.ice */, + B30555E6708ECEFAA4EDD334 /* TestI.swift */, ); + name = scope; sourceTree = ""; }; - 1B19FE8698F14FE7A63E21B4 /* test */ = { + 4713C738241F632037645D12 /* ami */ = { isa = PBXGroup; children = ( - 0E98370670AB8B497FDF99B4 /* Ice */, - 73A6DF23A193BC451A2836D2 /* IceSSL */, - F74302DC201C6A5AD396D58D /* Slice */, - CEB08CCA9C6FEB6098096851 /* TestCommon */, - 776721D71145A90B37FCAB9E /* TestDriver */, + FB93EDD11FFD843B54F08CD6 /* AllTests.swift */, + 1083A38AC12CA9C0F45A1422 /* Client.swift */, + D789BAF0BE9CC7DA9EAB63A2 /* Collocated.swift */, + AEF69473A2BBE7E2944931A1 /* Server.swift */, + C95A65FBDD4DD8B4198F49DF /* Test.ice */, + 259ABFD3A22C573FDAE353BA /* TestI.swift */, ); - name = test; + name = ami; sourceTree = ""; }; - 1CFEEF262DADBDB12080F56A /* retry */ = { + 4A05594C686A4BD390151A9B /* defaultValue */ = { isa = PBXGroup; children = ( - BF8E0CCA4C7037506934137C /* AllTests.swift */, - 8857A465B5A01F88B674B7C8 /* Client.swift */, - 829AECC82389A2F5E05C2960 /* Collocated.swift */, - 51106D60A56141EBC49C9318 /* Server.swift */, - 7FF54833864397ACE8E797E1 /* Test.ice */, - F2A40A64B4DEF4BDCD6C4742 /* TestI.swift */, + 46411EDDE8E438FD8EAE98E5 /* AllTests.swift */, + C6AA934BC1D34654E098F584 /* Client.swift */, + D255BAB7E5E515B654EDAD67 /* Test.ice */, ); - name = retry; + name = defaultValue; sourceTree = ""; }; - 1D05F8633D855064A5689E6B /* scope */ = { + 520B1B1329BCC645395C88F6 /* optional */ = { isa = PBXGroup; children = ( - 3B77BB5BC36ACDA87B6A69FF /* AllTests.swift */, - 78E2A2D2066C58262F423252 /* Client.swift */, - 8D2B953157D627C928A6037A /* Server.swift */, - 1ED43BAF74AEE3D118146F5D /* Test.ice */, - 15D305717C35A677E3D0BF24 /* TestI.swift */, + 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 = scope; + name = optional; sourceTree = ""; }; - 22A9ECDF963BEB065CFE78DF /* adapterDeactivation */ = { + 58C32C33667E0F81295A9978 /* IceUtil */ = { isa = PBXGroup; children = ( - 20B1410DBC821FBE25FF0338 /* AllTests.swift */, - E2F8371C545BE433208E8DD7 /* Client.swift */, - C9A9B49B4C419054A03A217A /* Collocated.swift */, - C99CAAF3E88E8B7B746C43A4 /* Server.swift */, - 8E312FEE4E94C01795C8BBD9 /* Test.ice */, - 9B5064B9C0DABEB987B39730 /* TestI.swift */, + 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 = adapterDeactivation; + name = IceUtil; sourceTree = ""; }; - 25A34B94DD5F0D4551ABB813 /* Ice */ = { + 604A9AF6E2246ADA42502415 /* objects */ = { isa = PBXGroup; children = ( - 111FA65BCD5EF270EE40E0A1 /* ios */, - 5F67CEA524FF25FE6949915A /* Acceptor.cpp */, - 2F59158F7D5C392A0D1D7CE8 /* ACM.cpp */, - 92A86220A97A6EB0CBFC944D /* ArgVector.cpp */, - 64B510708D04016FA459B8AA /* Base64.cpp */, - 77E66F7A0331FF21333AE3FB /* BatchRequestQueue.cpp */, - 6E18609323F580043357FC2C /* Buffer.cpp */, - 50D65B51261AD566166DB14B /* CollocatedRequestHandler.cpp */, - BFE26B6B169CD5B24ED29BB6 /* Communicator.cpp */, - C171909B3BA6EDB94DFE7617 /* CommunicatorF.cpp */, - CAACEF4FECAF35BE85C20620 /* CommunicatorI.cpp */, - E83D440DF808EEF167018B4F /* Cond.cpp */, - 1B68A5626BF6AEC2DC151AA9 /* Connection.cpp */, - 800A52A540F1DA8547B1D22A /* ConnectionF.cpp */, - 738DC08C9436E513AAF5205F /* ConnectionFactory.cpp */, - FC642EC1944D582B3C794113 /* ConnectionI.cpp */, - 41ECD3890AF22A95E9667E8F /* ConnectionRequestHandler.cpp */, - 532C14EE7E6458905C05203B /* Connector.cpp */, - B51E89BDF16FF1D23C5FFD2F /* ConnectRequestHandler.cpp */, - E1EFF9091F708E5F6F0704B3 /* CountDownLatch.cpp */, - 44837E3321ED1322DA4D4AE9 /* Current.cpp */, - B33C3DAC38D7CB012602F1D5 /* DefaultsAndOverrides.cpp */, - DB8F279A2779E598731A5601 /* DispatchInterceptor.cpp */, - 9C004314E294893A903BC059 /* DynamicLibrary.cpp */, - 01EC749BC2A7D4FCA7490B47 /* Endpoint.cpp */, - 01024283C896A201E69A8C38 /* EndpointF.cpp */, - 14C3C55AD97EAC4C2C236144 /* EndpointFactory.cpp */, - 911DD6C3D079AAD2A68FE941 /* EndpointFactoryManager.cpp */, - 407EDDBF73A172C9F18D2E55 /* EndpointI.cpp */, - C30C6AF5ACDFF5254E06CAC6 /* EventHandler.cpp */, - 62FF3521D46F685DF4E667C3 /* Exception.cpp */, - EE7ED7DB9B386CE9925025BF /* FactoryTable.cpp */, - F71CAE50CD7CB4E7134D9FF3 /* FactoryTableInit.cpp */, - A345098C97240AE15EE3E355 /* HttpParser.cpp */, - 4E880F031CD68893D2F69EFB /* IconvStringConverter.cpp */, - B7D8895A590B0D9627121789 /* ImplicitContext.cpp */, - 4A1722EBDE6AC496F748A964 /* ImplicitContextF.cpp */, - D9AB56DEA09A30139787C127 /* ImplicitContextI.cpp */, - 41551E09D595E50A24EF5892 /* Incoming.cpp */, - 3637F3FA49D41442776DFDA3 /* IncomingAsync.cpp */, - DED512BF02792FFCA52AE9E7 /* Initialize.cpp */, - 7A5C5A1DEA6B7BB5ABC8C7DA /* InputStream.cpp */, - AA4F363A3C06C04C4B7E187E /* Instance.cpp */, - BDFC1CF071BE8BC5D2E9356F /* Instrumentation.cpp */, - 6229E6CA09F91C68DAB3EBD2 /* InstrumentationF.cpp */, - 03BAC263458A1F99AADFE0B5 /* InstrumentationI.cpp */, - 059F06CFD18E4BA02BA0E025 /* IPEndpointI.cpp */, - 37ABE7A8D0AB189693887A28 /* LocalException.cpp */, - C7F2189733BCF9C8B454DB75 /* LocalObject.cpp */, - A2308C88106E21E86B64770B /* LocatorInfo.cpp */, - E8132A588131377350457A8A /* Logger.cpp */, - 37F1FC9323F6C45B1AC35F58 /* LoggerAdminI.cpp */, - 3E8D76449FAFB649E9E74273 /* LoggerF.cpp */, - 8750D48101851C84B89B330A /* LoggerI.cpp */, - 145ACBB9D8EC5ABDF5109CD9 /* LoggerUtil.cpp */, - 623BF93B592B69730EBB8EDA /* MetricsAdminI.cpp */, - 787DA99C9345BD9AFAFE23BC /* MetricsObserverI.cpp */, - F904E8A5B6258EDDEAF27A63 /* Network.cpp */, - B67D5EFC0BB322E8EF9ED64C /* NetworkProxy.cpp */, - 95F4BB6C69D370E2E329C2E7 /* Object.cpp */, - B678F2298413760C49C183ED /* ObjectAdapter.cpp */, - AFA7ECC88F49663429276843 /* ObjectAdapterF.cpp */, - DFC73C8E6BFAEC766CD5D25C /* ObjectAdapterFactory.cpp */, - 436D4DDD3929D36CB74E51A9 /* ObjectAdapterI.cpp */, - A46BEB423DACD76BF4A68A19 /* ObserverHelper.cpp */, - 02BEC5D52B98E16486723B15 /* OpaqueEndpointI.cpp */, - D6C1FECEA4BD0E885787FD4F /* OSLogLoggerI.cpp */, - C630DCAC52483EE71792F541 /* OutgoingAsync.cpp */, - 73E18D1ADAE4685486879439 /* OutputStream.cpp */, - CF74B405592DF882FC711C4F /* Plugin.cpp */, - 96EF425FFAE7ADC67DD3FD81 /* PluginF.cpp */, - B08D997BB8E4794D4200FB23 /* PluginManagerI.cpp */, - 7DDD904763300878E12820E2 /* Properties.cpp */, - 40EB3E43A832B13BDE8D4720 /* PropertiesAdminI.cpp */, - DAE2612261AFAD9F126ABB05 /* PropertiesF.cpp */, - AEAEF19C75C1808D288CE761 /* PropertiesI.cpp */, - BDD807A24DFE6B5DE7A2B384 /* PropertyNames.cpp */, - C7716384B8702730F154043B /* Protocol.cpp */, - D93BB1CEE95D6DBD647C1F66 /* ProtocolInstance.cpp */, - 68D9BDAF960BA51A8BF52198 /* ProtocolPluginFacade.cpp */, - C18CB03DD5155C1C2B2E8A8D /* Proxy.cpp */, - 88D78672154E80AA54EA998A /* ProxyFactory.cpp */, - C56F9DD18C4DA39D6933343C /* Reference.cpp */, - DF136F6E80A01F3C0C176C6D /* ReferenceFactory.cpp */, - D678FFB619CCB86A3BC95515 /* RegisterPluginsInit.cpp */, - 7E2686345DB372E56936CAA9 /* RequestHandler.cpp */, - D0D533DA9ED4A5E4635718FB /* RequestHandlerFactory.cpp */, - 79108D2FF0232C16468D88DE /* RetryQueue.cpp */, - 7AD3A474B7A1D069CCFC0AFF /* RouterInfo.cpp */, - 2D3CBEB67344D577D334AFA7 /* Selector.cpp */, - 1C216F290E9890052BC928A0 /* ServantLocator.cpp */, - CD61825057BFBFBB41D39597 /* ServantLocatorF.cpp */, - 950579F4E8C4DFF646EF3C51 /* ServantManager.cpp */, - A70C14B2E0E746A0591AF1D5 /* Service.cpp */, - DCD020CA509B152C8FCE8798 /* SHA1.cpp */, - EDBFE1FE5EDAEEC44CD547C8 /* SlicedData.cpp */, - E59CE567CD0339935ECE174A /* StreamSocket.cpp */, - 5873A42F0D248A8146E98350 /* StringConverterPlugin.cpp */, - BFCBA8D98D4B3EE825A33F52 /* SysLoggerI.cpp */, - 344C21FB7DF7176184125859 /* SystemdJournalI.cpp */, - EEBC1443F0873050E5877725 /* TcpAcceptor.cpp */, - 64F29DD7C25FD1D8C1FBF3CD /* TcpConnector.cpp */, - 34811EA9E8187AFA7F8C8D41 /* TcpEndpointI.cpp */, - 52104DAB06FD2367D5F4159A /* TcpTransceiver.cpp */, - 36463ABF4A88FE5854D32E77 /* Thread.cpp */, - BD2FED021766EC049A1603D9 /* ThreadPool.cpp */, - C2F6024DEF147BA264B75062 /* Timer.cpp */, - 0FEAB4A7EE835A05B2C8DBB4 /* TraceLevels.cpp */, - AE6FDA00BFC81B40451B476D /* TraceUtil.cpp */, - 5300396B18CE9C2FCA0A8E2F /* Transceiver.cpp */, - A26AA7659D06EBA6062EF982 /* UdpConnector.cpp */, - 9883142AAE78B0D29D622EEB /* UdpEndpointI.cpp */, - 695139937807444B932DB3F3 /* UdpTransceiver.cpp */, - 57EB6F28F663DF2D21006713 /* Value.cpp */, - 2D5A45BA52FE831A3ADA94B1 /* ValueFactory.cpp */, - AB6A7BC8F66C9728566A553B /* ValueFactoryManagerI.cpp */, - 03031EB4AE5379FF32A3AE17 /* WSAcceptor.cpp */, - DF62AE44540279291FBE8D46 /* WSConnector.cpp */, - 136C9F1CB0181AA674220B28 /* WSEndpoint.cpp */, - F7D45D866B9B71FB7B57D0E6 /* WSTransceiver.cpp */, + 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 = Ice; + name = objects; sourceTree = ""; }; - 292D50159F6223AC6F01218E /* invoke */ = { + 63F4BFE04237875C764B4579 /* macOS */ = { isa = PBXGroup; children = ( - DB925F57794F16F2734D08B4 /* AllTests.swift */, - D2951989E4ED79DB5A5BD840 /* Client.swift */, - 7AA4D36E0018BED4FBB96979 /* Server.swift */, - B2D7894B631B2D78882A8F57 /* Test.ice */, - 56AD8F95D9A540F5AD97E976 /* TestI.swift */, + 75A01B0041D27E76F5889DE4 /* main.swift */, ); - name = invoke; + name = macOS; sourceTree = ""; }; - 3E19054B11B30C0A59682595 /* optional */ = { + 674B84CFD4634D4C60853BE4 /* TestCommon */ = { isa = PBXGroup; children = ( - A4E4652309AE1C7E4EEE2D6D /* AllTests.swift */, - D9CB8DB9B6B0E2D1D5F87503 /* Client.swift */, - E14A708807768953B2379FD5 /* Server.swift */, - 4D2DBA835FDF24BF6450F945 /* ServerAMD.swift */, - 1B6EF30F36318A639D638152 /* Test.ice */, - 2F6CB1CBABB18103F23A7D3B /* TestAMD.ice */, - 64802AF97D0C116399E87B38 /* TestAMDI.swift */, - E3CCDC8C722C7D08EBC696FC /* TestI.swift */, + 8604FDEB96C920773DEF9A73 /* Info.plist */, + 31C4F4C9865AF32911F1A508 /* TestCommon.swift */, ); - name = optional; + name = TestCommon; sourceTree = ""; }; - 439B5C9437DD8E56A1E4DC35 /* macOS */ = { + 6BF0497DFD56C5EE3DB71DB4 /* operations */ = { isa = PBXGroup; children = ( - EC5A98A70A93BDFDEE865FFA /* main.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 = macOS; + name = operations; sourceTree = ""; }; - 5033CCAC73DD5283B0954217 /* interceptor */ = { + 6CDEFD8A9FC747F214A76CEF /* timeout */ = { isa = PBXGroup; children = ( - 4E783E25173DD3CB4652293E /* Client.swift */, - 9600C016070409DE6568A37E /* Test.ice */, + 17A4E70233C2149ACD8FE4F9 /* AllTests.swift */, + 6237E0C8AD8FD3CE4B7CFAA4 /* Client.swift */, + E3C9AD082A4CE3A5F5435669 /* Server.swift */, + F79211AF57FD9BFFC2CA5E3F /* Test.ice */, + 35B05AF2B43317CD297363CA /* TestI.swift */, ); - name = interceptor; + name = timeout; sourceTree = ""; }; - 50EA37E38F94F5346E6B6FB0 /* ami */ = { + 6E35F9F76FAC3ECAC357F56A /* servantLocator */ = { isa = PBXGroup; children = ( - 3F23A1CF4CB61B7741942A35 /* AllTests.swift */, - A83F9EE39111E400F0CF2C17 /* Client.swift */, - 84E90B07958C12B403F8FF0C /* Collocated.swift */, - B6927471763F231278861844 /* Server.swift */, - 6D4683E4EEA3C7003504AE96 /* Test.ice */, - 74C4E15A84E6E19C4F7072FE /* TestI.swift */, + 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 = ami; + name = servantLocator; sourceTree = ""; }; - 528BC0704E58BF67B14EE862 /* servantLocator */ = { + 6EFD967A66790788845F5915 /* location */ = { isa = PBXGroup; children = ( - CB750BB47FEA9559FDA7DBDF /* AllTests.swift */, - 44BC740D6506C3F1C8458122 /* Client.swift */, - CEF23AEA09540063DC96EA21 /* Collocated.swift */, - 1E772969C60CF6EEC9B352EC /* ServantLocatorI.swift */, - F0972B81E52AE5219A0359F6 /* Server.swift */, - 9B8BE69409380DAA8F3C39DC /* ServerAMD.swift */, - 137ED7A94BB9E11CC053CEEF /* Test.ice */, - 9FADED3C1D00A9AFBE02DACB /* TestAMD.ice */, - 4344142A2FC9DF9B5722AFD5 /* TestAMDI.swift */, - 9226ABAA5FAF037A4782672D /* TestI.swift */, + 18BC8EBDD63E0C2D34096A45 /* AllTests.swift */, + 1034928BF4CC47FCD19BE01C /* Client.swift */, + 73A88EA74CCC4616D710AFB6 /* Server.swift */, + E2876A8434BDA95E5E67FA4D /* Test.ice */, + 99528469CD587F598337AACA /* TestI.swift */, ); - name = servantLocator; + name = location; sourceTree = ""; }; - 64A45E066F4EA91902861CC3 /* exceptions */ = { + 71E4275A150472ED26C3FD80 /* services */ = { isa = PBXGroup; children = ( - A3B0B441C377169B54CEB0DC /* AllTests.swift */, - 0C14F40BEFB46405B9613959 /* Client.swift */, - B354AAD31C61053198AA6359 /* Collocated.swift */, - 32C784477F9A73A13FD21C65 /* Server.swift */, - 7806EDFB543369686343312B /* ServerAMD.swift */, - 47144CDB90451B47BF3BCB58 /* Test.ice */, - 3547A6F171E6B76B9FC63BAE /* TestAMD.ice */, - 0B930854633BDF8CF5FFE22C /* TestAMDI.swift */, - 390FE2A8AA85FA1F066DB95F /* TestI.swift */, + B0A16E1F318A236067C0E62C /* Client.swift */, ); - name = exceptions; + name = services; sourceTree = ""; }; - 699675A45FD3238C3D134DC1 /* proxy */ = { + 7543BE265BB5DB13ADA5B2BC /* IceStorm */ = { isa = PBXGroup; children = ( - 227169D88E42D03490D191BE /* AllTests.swift */, - CABC46485C8349B0AD18EB39 /* Client.swift */, - 9ABB967DFEE9C5D24F7C42A2 /* Collocated.swift */, - 78A482E000141177A98F078F /* Server.swift */, - 39513FAD1AB0E49430E2633E /* ServerAMD.swift */, - 8D32C52389F2ECA0048EE141 /* Test.ice */, - B1834CCC901B15A44359D42A /* TestAMD.ice */, - A18062BD1E33BA800FDE662D /* TestAMDI.swift */, - 6E9093C94D6596E3660EDFBB /* TestI.swift */, + 097B3A1E14CCFB09E7E4CF92 /* IceStorm.ice */, + 0AEBA30C56A413C37FEDC134 /* Metrics.ice */, ); - name = proxy; + name = IceStorm; sourceTree = ""; }; - 6E32583167B21A36761F281A /* configuration */ = { + 760772C12F4740EB4CB773F3 /* Products */ = { isa = PBXGroup; children = ( - B73CE8E39782ED96D9A0DEE2 /* AllTests.swift */, - F52E3E551A8F8B3901BECC9B /* certs */, - 22EB15880754E559CBAD530E /* Client.swift */, - 250055BA1C62F324250B2548 /* Server.swift */, - 2527DF77271CA0B2E6A8E151 /* Test.ice */, - C41EA629E4C3C316AA9FF1EC /* 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 = configuration; + name = Products; sourceTree = ""; }; - 71C3633FA3B78DEF019A98A7 /* udp */ = { + 79661E8792BFD29B3A8ABF76 /* IceSSL */ = { isa = PBXGroup; children = ( - FF2962E761A9438BFEC2D88A /* AllTests.swift */, - CA7BA874372EE36F4313939C /* Client.swift */, - 724325600514092A8D262EAA /* Server.swift */, - 2E5EBCC2B8851DB99485BB9D /* Test.ice */, - C4D165404C1661A879CC7DD9 /* 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 = udp; + name = IceSSL; sourceTree = ""; }; - 73A6DF23A193BC451A2836D2 /* IceSSL */ = { + 7C3B7866DDCD4DAA2388B0AD /* defaultServant */ = { isa = PBXGroup; children = ( - 6E32583167B21A36761F281A /* configuration */, + E2543300D55BB8126BF01178 /* AllTests.swift */, + 64A4D123257EF075A8AA0433 /* Client.swift */, + 4D35CFAF36E324DC12502013 /* Test.ice */, ); - name = IceSSL; + name = defaultServant; sourceTree = ""; }; - 75203057D98D54301A096BA0 /* objects */ = { + 7D1405F9F477AA2EEA7EB164 /* IceSSL */ = { isa = PBXGroup; children = ( - 5085715D52B4CB7BA1DD1F9E /* AllTests.swift */, - 22BA0A2A8A538610278E1A67 /* Client.swift */, - CAD340E5FDD75011A7A85118 /* Collocated.swift */, - 9E63A9A57CB0A4F537AA9E84 /* Forward.ice */, - A1A0F1FD62421D88BD8F6E24 /* Server.swift */, - 47085E57F8BA1CB63A56B0BD /* Test.ice */, - 16484C090CFD38F73675B0C6 /* TestI.swift */, + CA3C5BCF6960FD1380CD864E /* configuration */, ); - name = objects; + name = IceSSL; sourceTree = ""; }; - 7638AAF2E2565BB74666D44F /* properties */ = { + 7F869F89402E785E27FE1228 /* exceptions */ = { isa = PBXGroup; children = ( - 63B3CE5DAEFF4FCC9EC9707D /* Client.swift */, + 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 = properties; + name = exceptions; sourceTree = ""; }; - 776721D71145A90B37FCAB9E /* TestDriver */ = { + 8513436CDC02E4DEC403F6F1 /* udp */ = { isa = PBXGroup; children = ( - 09AC1CD0EC466EF62E033116 /* iOS */, - 439B5C9437DD8E56A1E4DC35 /* macOS */, + 0A4046F75C70A64F2CF9A29E /* AllTests.swift */, + 5FD566BEBA418C9151C0CC95 /* Client.swift */, + 0F4E52F6B53EC59E12989136 /* Server.swift */, + 7DCC9D507EDF3CD2A1A3150F /* Test.ice */, + 6C6C2523849920E54B5C3674 /* TestI.swift */, ); - name = TestDriver; + name = udp; sourceTree = ""; }; - 7F251C26A977F6D66DD7DB5E /* timeout */ = { + 85CE760D134EBA779C2606EB /* Slice */ = { isa = PBXGroup; children = ( - 52C032A6AC0462FD61E22750 /* AllTests.swift */, - B1E2C99A6DBB9132B74F4845 /* Client.swift */, - BAEED543910AAE7DB26F2B2E /* Server.swift */, - DC845309A10111AC9F465C23 /* Test.ice */, - B1EAC7DC09EDCDE664A6D412 /* TestI.swift */, + C77E0B705D52E399E5609326 /* escape */, ); - name = timeout; + name = Slice; sourceTree = ""; }; - 81639BA77E73D5AEE676B18C /* Glacier2 */ = { + 881E71B53AA71733450D62A8 /* test */ = { isa = PBXGroup; children = ( - 89260FC783CBA8E95B993CBB /* Glacier2Swift.h */, - 107BEF97F3E06320E00B46A6 /* Info.plist */, + 11D4943EFA68EF5327C530AF /* Ice */, + 7D1405F9F477AA2EEA7EB164 /* IceSSL */, + 85CE760D134EBA779C2606EB /* Slice */, + 674B84CFD4634D4C60853BE4 /* TestCommon */, + B82B3738410A4815146AB77F /* TestDriver */, ); - name = Glacier2; + name = test; sourceTree = ""; }; - 845C009AD243984328F62EF8 /* IceIAP */ = { + 92F57F8532BC14A57F09091E /* IceIAP */ = { isa = PBXGroup; children = ( - CAE482789CF229EB04641D21 /* ConnectionInfo.cpp */, - DDA135F8EED8A314941972ED /* Connector.mm */, - CCE36EC139B06D18C0C74BA7 /* EndpointI.mm */, - 284CD0E7A9CF17BA732ECF6B /* EndpointInfo.cpp */, - E4538B61358B8FF03922527F /* Transceiver.mm */, + 860EEE47FA5F73DF18371EB0 /* ConnectionInfo.cpp */, + 069A48B23F945A72742CD39C /* Connector.mm */, + D7348ED97038DE804E76B4F3 /* EndpointI.mm */, + 4A1720B2080C837E243F2B03 /* EndpointInfo.cpp */, + 94E64A8A4468924DD9A7C2D2 /* Transceiver.mm */, ); name = IceIAP; sourceTree = ""; }; - 84AD8BB3144E78CF053E9070 /* Frameworks */ = { + 93F8BD5B95CB7AA1FD5A9D25 /* iOS */ = { isa = PBXGroup; children = ( - E8DF91CBBDA93D1971E79B76 /* iOS */, - 0F4CD8CE9931A0ED5AF7DC3A /* OS X */, + B80D1F29C6A35D955A94B1AE /* AppDelegate.swift */, + 1C15A5FB6FD609998456F346 /* Assets.xcassets */, + 5A4F6ED397F0755CDCDD8ACA /* certs */, + 9B32AF013885664AA93CDF20 /* Controller.ice */, + FDB2B8CC413A604BFE6E9BEB /* ControllerI.swift */, + AA144D7BB355829B28020F78 /* LaunchScreen.storyboard */, + BB2FDEF71FCA90CDBDB32AAB /* Main.storyboard */, + F8C2266EFA8E48B90FC6D26F /* ViewController.swift */, ); - name = Frameworks; + name = iOS; sourceTree = ""; }; - 84BB5F9EA28D03EEADC31E5F /* inheritance */ = { + 95DBB600FA77D84EA35A8CDB /* Ice */ = { isa = PBXGroup; children = ( - 9D8A8D9D48C0A5E19D013CFA /* AllTests.swift */, - AA5FA8A0E09A3F3BC61D2909 /* Client.swift */, - 4AEEFDD3BB442CB6663CD683 /* Collocated.swift */, - 933DB0C83248BF059A7F1C20 /* Server.swift */, - B538A5094459696C1D929F20 /* Test.ice */, - DBCA8B1BC5811A9ADA86ED97 /* 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 = inheritance; + name = Ice; sourceTree = ""; }; - 87F98F788906BAA62315FE3F /* services */ = { + 9C1A17CD0E8467D306B6927B /* Ice */ = { isa = PBXGroup; children = ( - EBFF2AF509B1E71159DAECB0 /* Client.swift */, + 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 = services; + name = Ice; sourceTree = ""; }; - 8F4CD1B3451289BB614F387A /* enums */ = { + A8ABC11E97AE6B281D7D88D8 /* proxy */ = { isa = PBXGroup; children = ( - 6FB36E85F6FA876D88996239 /* AllTests.swift */, - 945016AEA0FC7438D19E19B1 /* Client.swift */, - BE0FC793581C11E605079EEC /* Server.swift */, - 9A65923D521C078DCDBABA31 /* Test.ice */, - 0CD6F8266C083D7C5841D1E9 /* TestI.swift */, + 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 = enums; + name = proxy; sourceTree = ""; }; - 8FE3E5E86A0748D16F720372 /* defaultServant */ = { + B049F4E434D8EE83BE042906 /* src */ = { isa = PBXGroup; children = ( - 265E767F5805E36FCC9CB2A0 /* AllTests.swift */, - 52122170F02276E3275AAE2B /* Client.swift */, - B4C555F0C2B146AF8D5EC356 /* Test.ice */, + C47D21C7C0BF4FFF86CE899B /* Glacier2 */, + C6C0F9269324698F9CF16115 /* Ice */, + C5484D2A3AB3A955FDDEE694 /* IceGrid */, + B1ED1A50FDE6061434467CC1 /* IceImpl */, + FD8286BE0A069336112BA7F8 /* IceStorm */, ); - name = defaultServant; + name = src; sourceTree = ""; }; - 948F499BFCE00B6A1782C2EC /* IceGrid */ = { + B0C3452D122A26EAB9C7E207 = { isa = PBXGroup; children = ( - 42A2439DC6CA50093CA51089 /* Admin.ice */, - 49F7B52E1EBFD001EE29C9E6 /* Descriptor.ice */, - A0D2E40EB5EB722B76219B03 /* Exception.ice */, - 5CB34604AACBE72A2D272966 /* FileParser.ice */, - 4EE29237269F09AE7E678DB3 /* Registry.ice */, - 5E1178133F12C06313829C9E /* Session.ice */, - F5FA2C9600E75B1FCD46907F /* UserAccountMapper.ice */, + 268D111CA956A6D51FF1B161 /* cpp */, + 055434BF6DE84E9628D6C120 /* Frameworks */, + 760772C12F4740EB4CB773F3 /* Products */, + F15C905CB42BC3261A5947C5 /* slice */, + B049F4E434D8EE83BE042906 /* src */, + 881E71B53AA71733450D62A8 /* test */, ); - name = IceGrid; sourceTree = ""; }; - 9F2CB7D5DCA937E4F4C5FAEA /* location */ = { + B1ED1A50FDE6061434467CC1 /* IceImpl */ = { isa = PBXGroup; children = ( - B3BBBD22CE72373968131654 /* AllTests.swift */, - 8748EAC5BFE5A97A4085F0DB /* Client.swift */, - F0C7FC0099BBEEB7A76312E5 /* Server.swift */, - 1239FA44EA72DF60C02E90F3 /* Test.ice */, - 38D440D5894319742F272192 /* TestI.swift */, + 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 = location; + name = IceImpl; sourceTree = ""; }; - A070E7E11E371C095EE8C5DB /* operations */ = { + B57AAB92F70293A574524A4F /* admin */ = { isa = PBXGroup; children = ( - F28FEA3804836A76EBCC3C60 /* AllTests.swift */, - 0FEE34A113E3DC71D9DB8450 /* BatchOneways.swift */, - 3F0C20EFBCAFF52B67C7AD11 /* BatchOnewaysAMI.swift */, - 9E386E5939BE4E20022B34C8 /* Client.swift */, - 318B426F0ED72A433F61DD1B /* Collocated.swift */, - 7E05BB1F95B7599533D83026 /* Oneways.swift */, - 0367CC264BC70C8FAE95481D /* OnewaysAMI.swift */, - 5DC88A1165E0648123E7B24E /* Server.swift */, - FA5C303C571C95B5220FFF77 /* ServerAMD.swift */, - 7DB4E7AC16E22943F389DA62 /* Test.ice */, - 272A8F85D1DA874AFB64025B /* TestAMD.ice */, - BFD8E68C39A86BCA8855BE97 /* TestAMDI.swift */, - 6FCD89BFC87D0D93ADD625C0 /* TestI.swift */, - A05F7539468832F6A1D1FE8E /* Twoways.swift */, - EE247C4C7515E78416734AE3 /* TwowaysAMI.swift */, + DE3D88FE76A1440B3A0C4DF5 /* AllTests.swift */, + 1CFF70BA10C4D6AE188D017E /* Client.swift */, + DAFBF6BFF7EDE9F0FB64766F /* Server.swift */, + 78C5BD54F95050856DFE68B6 /* Test.ice */, + 344ED5C42593ED171BE68E29 /* TestI.swift */, ); - name = operations; + name = admin; sourceTree = ""; }; - A28AF875F8270C3AD46343B1 /* defaultValue */ = { + B82B3738410A4815146AB77F /* TestDriver */ = { isa = PBXGroup; children = ( - C1389F21CDF06949902AA2EA /* AllTests.swift */, - 0D1A1C798CA5E03EACE7C337 /* Client.swift */, - 1B91C23CCEBC74093AC64126 /* Test.ice */, + 93F8BD5B95CB7AA1FD5A9D25 /* iOS */, + 63F4BFE04237875C764B4579 /* macOS */, ); - name = defaultValue; + name = TestDriver; sourceTree = ""; }; - A8110928E44217AE00E68044 /* acm */ = { + BC9489EF19D4542F39A6A72D /* exceptions */ = { isa = PBXGroup; children = ( - 1A8FB36F298F50F55357C8BA /* AllTests.swift */, - 9A343A525055E169CE399ADF /* Client.swift */, - 1A6263E6EB0712A439E75D09 /* Server.swift */, - BFC3A3040FFC8B6EAFCA158D /* Test.ice */, - 5A577A9FBA08AE185D53C990 /* TestI.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 = acm; + name = exceptions; sourceTree = ""; }; - AAFFDFE26DCFE929B2FFE70B /* stream */ = { + C0AC7A1C666A2430B3A709D8 /* slicing */ = { isa = PBXGroup; children = ( - 25F81F514862521A7077DBE1 /* Client.swift */, - 1D406B3CFFDCECBDD678B23A /* Test.ice */, + 7F869F89402E785E27FE1228 /* exceptions */, + 604A9AF6E2246ADA42502415 /* objects */, ); - name = stream; + name = slicing; sourceTree = ""; }; - B23138DE599D6190D025EC35 /* IceDiscovery */ = { + C47D21C7C0BF4FFF86CE899B /* Glacier2 */ = { isa = PBXGroup; children = ( - FE6326CC8423A7AB2E011674 /* LocatorI.cpp */, - D3D29F00E18E96EA4BA99C36 /* LookupI.cpp */, - 322A1089B56E24F412CCAD3A /* PluginI.cpp */, + 84CFA96B1376810A278A1749 /* Glacier2Swift.h */, + EDDF24D23BCAEE53F2E5E335 /* Info.plist */, ); - name = IceDiscovery; + name = Glacier2; sourceTree = ""; }; - B2F883909B5641C5A3D6B16E /* IceImpl */ = { + C5484D2A3AB3A955FDDEE694 /* IceGrid */ = { isa = PBXGroup; children = ( - C121A644BFC70CEBB7B25F34 /* AdminFacetFactory.h */, - 2C0D102CF3F4701F3AE046D7 /* BlobjectFacade.h */, - 1CACDF62E69944DB57D56E47 /* BlobjectFacade.mm */, - F33540D27F8ABA588FF9CFCF /* Communicator.h */, - 627B9BCC0B4AD0B6A1F666D2 /* Communicator.mm */, - 4067CCA4E285628C8AF454D9 /* Config.h */, - F71C3042386918BE757DF8CE /* Connection.h */, - ECBCA68A7DF08B26236F860F /* Connection.mm */, - 6328AE24A94F7B78F7B70026 /* Convert.h */, - 67DA500D7FCA7E4FCAAEBE8B /* Convert.mm */, - B33CD8E30BD014F5C4CA9222 /* Endpoint.h */, - 724C0E53DAF83BB50C3912A4 /* Endpoint.mm */, - 14422400D546329D7D9926DF /* Exception.h */, - 4419CDC00A0E26DD43BE74BD /* Exception.mm */, - 25FB164477089E05881BEDAF /* IceImpl.h */, - 3E03FB734840AA5D7A8F37DA /* IceUtil.h */, - B89D7DF2F9D676F96CB9635E /* IceUtil.mm */, - 680CE9BA4A204FA3FAC93375 /* ImplicitContext.h */, - 2FB7753A8D2686CAE06B2CE4 /* ImplicitContext.mm */, - 7F87F4E054DCB94D81AF2BE4 /* LocalObject.h */, - 9B07536035C11C1E0934299F /* LocalObject.mm */, - A90D21866BAE0181F737C83C /* Logger.h */, - 7CC8B0D3189E1EC893F9D4E0 /* Logger.mm */, - D67D8A64DA92416D5A34F56F /* LoggerWrapperI.h */, - 242E9F50378F7C12B118349B /* ObjectAdapter.h */, - A3C699CA6ACD42014E3492D1 /* ObjectAdapter.mm */, - 17A01CF5F8BB77C282B69730 /* ObjectPrx.h */, - 806B7171CB7F0D3E6F836117 /* ObjectPrx.mm */, - 4D590A59E3F6155EADC253B1 /* OutputStream.h */, - CF258BC66CA2B0FD8CAE93F4 /* Process.h */, - 2A65FC585E09C2A76B625463 /* Process.mm */, - 6DD1ECACDD717AF71AF60969 /* Properties.h */, - 7C5527D47B4AA93DCBF5B076 /* Properties.mm */, - 5E45A803280C9975C7D2D5B6 /* PropertiesAdmin.h */, - DD94218AB8FC82917266BC56 /* PropertiesAdmin.mm */, - E301CB7A257886B9F8760B6A /* TraceUtil.h */, - A076886379887427EF43CAB5 /* TraceUtil.mm */, - 261E69F6A52C94909DF014AC /* UnsupportedAdminFacet.h */, - 526B263C4E63A5FD88236538 /* UnsupportedAdminFacet.mm */, + D2A78D4720673DAF9D7E7F17 /* IceGridSwift.h */, + 935EA09433CAE9AE4444BFCC /* Info.plist */, ); - name = IceImpl; + name = IceGrid; sourceTree = ""; }; - B8E63899AB1500891E65A136 /* IceDiscovery */ = { + C6C0F9269324698F9CF16115 /* Ice */ = { isa = PBXGroup; children = ( - 1683ABE87E8B25BC9C881B82 /* IceDiscovery.ice */, + 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 = IceDiscovery; + name = Ice; sourceTree = ""; }; - B94FA1A21E64157AA91D7058 /* IceSSL */ = { + C77E0B705D52E399E5609326 /* escape */ = { isa = PBXGroup; children = ( - 53016732D7F1EE45D95136EB /* AcceptorI.cpp */, - 1AC4B3614730C36B93E6CE83 /* CertificateI.cpp */, - 3ECA877329DEF57B54A08C55 /* ConnectionInfo.cpp */, - 18123528674C5DBEFE8DC183 /* ConnectionInfoF.cpp */, - 6AE2E85C3FD16B73660AEE0A /* ConnectorI.cpp */, - 34E8CB61ABA1F28BB7E698FA /* EndpointI.cpp */, - 398A19BC7513CD91E69E4025 /* EndpointInfo.cpp */, - 419431F09AEC1476FE7B4EFC /* Instance.cpp */, - 803EE4274BE0AA9170794297 /* PluginI.cpp */, - 27DB5A110EBA9310691BDEFB /* RFC2253.cpp */, - F7449FB4230AD540975DB4BA /* SecureTransportCertificateI.cpp */, - E73B68A6243CD1C6AED87DFC /* SecureTransportEngine.cpp */, - 7E5AB0FB42BD3A39396266AC /* SecureTransportPluginI.cpp */, - 6DA216EEEB74D482231E9424 /* SecureTransportTransceiverI.cpp */, - 04ACFF850FB52C42D1D0256D /* SecureTransportUtil.cpp */, - 89DACACD2C1AD4F3469CA088 /* SSLEngine.cpp */, - 5EB90003DBB8FFCE6E52AB05 /* TrustManager.cpp */, - 983A2CBA8E5E46F1AEE78B78 /* Util.cpp */, + 4AB5AD4F60E4B47BF3908206 /* Clash.ice */, + 9F1F158B962A78341F9EF225 /* Client.swift */, + 57B4FD55C85D50B346DAC00F /* Key.ice */, ); - name = IceSSL; + name = escape; sourceTree = ""; }; - C4813196EAAB00571C0DCF08 /* binding */ = { + C92FDEA681B2B886B584D14B /* hold */ = { isa = PBXGroup; children = ( - F5453037F24499786E84EA5C /* AllTests.swift */, - AFCD3E590B98FDDB60A31C5B /* Client.swift */, - 54D06539D647623F84D3C475 /* Server.swift */, - 44DB441A5970DCEF394351B7 /* Test.ice */, - 94E1968DB24F7AF587425A1C /* TestI.swift */, + 3D04234BB20E2E7E05183D0D /* AllTests.swift */, + 4D0FE56C219D015301CB1369 /* Client.swift */, + F507DE59727141A808786F2E /* Server.swift */, + C6C97867F488137BCC0EB004 /* Test.ice */, + E263606DB96A9375B3DB0862 /* TestI.swift */, ); - name = binding; + name = hold; sourceTree = ""; }; - CB99507053F483610D1B5387 /* IceLocatorDiscovery */ = { + CA3C5BCF6960FD1380CD864E /* configuration */ = { isa = PBXGroup; children = ( - 57EE371E56576A8317C8E490 /* IceLocatorDiscovery.ice */, + F52CDE27C04211B51976AF73 /* AllTests.swift */, + F48A4C9DD1628D724648AA45 /* certs */, + 22437CADE6D8C1F4B4F6E399 /* Client.swift */, + 91702C97E64FB532023CE75D /* Server.swift */, + 33F4442B1E4EB5B04F907471 /* Test.ice */, + 551620868D0184DF2FBB2F56 /* TestI.swift */, ); - name = IceLocatorDiscovery; + name = configuration; sourceTree = ""; }; - CEB08CCA9C6FEB6098096851 /* TestCommon */ = { + D0BB45136F4A0AEE7CEE5896 /* properties */ = { isa = PBXGroup; children = ( - B47DEFE1E23FC897465087A3 /* Info.plist */, - 4584337E9DC542C82D3CFB88 /* TestCommon.swift */, + ECAF5F62EDCF29B918CCA154 /* Client.swift */, ); - name = TestCommon; + name = properties; sourceTree = ""; }; - D391EEC690DFAB6B56B19F2D /* hold */ = { + E1E4F7CE0405F5134961ACAB /* acm */ = { isa = PBXGroup; children = ( - DAF9FCD3ACA9EEA864C2B86E /* AllTests.swift */, - 33E7FA0C07F541066A9CE1C7 /* Client.swift */, - B73411F554849A6348D021C0 /* Server.swift */, - 03A03F30C5444AE9322EB66F /* Test.ice */, - 8A635A54F2740AA6A0345900 /* TestI.swift */, + 39C32C927265416D3C9E0334 /* AllTests.swift */, + EEB12A56E8C359F1729F44DD /* Client.swift */, + F7AF984294EC849DC6C9C7C4 /* Server.swift */, + 62A61E872435F58924471D31 /* Test.ice */, + 55085F9A97549394CFD026B6 /* TestI.swift */, ); - name = hold; + name = acm; sourceTree = ""; }; - D4ABCFD3BF375A90AA592480 /* Ice */ = { + E2C75096D03A467FF2DB68B7 /* enums */ = { isa = PBXGroup; children = ( - 7C7D3AC4E48FB5D3CFE630B5 /* BuiltinSequences.ice */, - 9F972A8E2DD097AC08C4A781 /* Context.ice */, - 76F9E67F92EA5B82E620E7EF /* EndpointTypes.ice */, - 1E052D5C173FB6BC71D76D94 /* Identity.ice */, - D2744013C529D8F086422990 /* Locator.ice */, - B15F39FC8689FC1FCB89F477 /* LocatorF.ice */, - 80D8B58EBF8D95B3ABD15C9E /* Metrics.ice */, - F38B1397CDEB1EFAE0D375E1 /* OperationMode.ice */, - C57D6F7125325B748CB60975 /* Process.ice */, - 5D8B856D6A1AE25197F178FF /* PropertiesAdmin.ice */, - 54B51F429E8B56A715B61412 /* PropertyDict.ice */, - CF70A1E49C28F5BDB97297AF /* RemoteLogger.ice */, - C012332733DA4296E9354F12 /* Router.ice */, - F790BD181E9C75D456202B50 /* RouterF.ice */, - B7D9D973870D744362BE6CD5 /* Version.ice */, + BC3DC35F22EE9E9C9B4BB176 /* AllTests.swift */, + 1C76C28FCC88C6C84EFCCBD0 /* Client.swift */, + DD1F0A3B85E7C703B656F50B /* Server.swift */, + 716DB7C607CA120F7407022D /* Test.ice */, + BBB75B8D55DDA16960177189 /* TestI.swift */, ); - name = Ice; + name = enums; sourceTree = ""; }; - DECEDE24FCBA50A18958C76E /* objects */ = { + E4B7F599D449A5F6A3224A2F /* IceLocatorDiscovery */ = { isa = PBXGroup; children = ( - 104B3F85E85A1F464938A580 /* AllTests.swift */, - DD36CD2D320F5953C219BB79 /* Client.swift */, - 9502656F9828A55BF15B904F /* ClientPrivate.ice */, - 1B507EB7D03295B2920C11D7 /* Server.swift */, - A9732906011677017B8FE8A9 /* ServerAMD.swift */, - EEAE2A3EA52301D744C2238C /* ServerPrivate.ice */, - 212F6BD6C0162AF0C8440224 /* ServerPrivateAMD.ice */, - 039C029EE5082592E88E387D /* Test.ice */, - 40E032E865784822992B0432 /* TestAMD.ice */, - 864A6D958111A066271C2056 /* TestAMDI.swift */, - 5A2D266EA2336769024DD2B4 /* TestI.swift */, + 47C76C71FAF5177CE46CD3A6 /* IceLocatorDiscovery.ice */, ); - name = objects; + name = IceLocatorDiscovery; sourceTree = ""; }; - E2CEB916183D82E69C80961C /* src */ = { + F15C905CB42BC3261A5947C5 /* slice */ = { isa = PBXGroup; children = ( - 81639BA77E73D5AEE676B18C /* Glacier2 */, - 0203486A671386BC5E6CC041 /* Ice */, - 12F1C32F4732D8A53F774458 /* IceGrid */, - B2F883909B5641C5A3D6B16E /* IceImpl */, - 129D1EA97125CF934132FA9C /* IceStorm */, + 2954FE0766C617A0A50AB153 /* Glacier2 */, + 9C1A17CD0E8467D306B6927B /* Ice */, + 2E501B6FC9C84500B946FA98 /* IceDiscovery */, + FD840516866220AEA21DA14C /* IceGrid */, + E4B7F599D449A5F6A3224A2F /* IceLocatorDiscovery */, + 7543BE265BB5DB13ADA5B2BC /* IceStorm */, ); - name = src; + name = slice; sourceTree = ""; }; - E8DF91CBBDA93D1971E79B76 /* iOS */ = { + F1D895EADEA8B7AEEFE4ADBE /* binding */ = { isa = PBXGroup; children = ( - 07F1F50A48CFD4DA0680F11B /* CFNetwork.framework */, - 24630F961292732B29C6782C /* ExternalAccessory.framework */, - 24DEF718003A036A8518D89B /* Foundation.framework */, - 4987FB0189910E7E27124D2B /* PromiseKit.xcframework */, - F189089F52472441A777F912 /* Security.framework */, - 762976DF5DE13C4200542E0F /* UIKit.framework */, + 7B839F8BB619665F6310934B /* AllTests.swift */, + 5A864DCFB7D453663CD16FD7 /* Client.swift */, + 99578A940F2AE450A4088200 /* Server.swift */, + 31A7531BFE63552977BE1908 /* Test.ice */, + 92923B4684A1BF23B89BA01C /* TestI.swift */, ); - name = iOS; + name = binding; sourceTree = ""; }; - ED4EF05B26F2BD8E7CE727A2 /* slice */ = { + F2540931AE3E6DE5D924B3A2 /* IceLocatorDiscovery */ = { isa = PBXGroup; children = ( - 159B1E6FD88EB8053C6B85E4 /* Glacier2 */, - D4ABCFD3BF375A90AA592480 /* Ice */, - B8E63899AB1500891E65A136 /* IceDiscovery */, - 948F499BFCE00B6A1782C2EC /* IceGrid */, - CB99507053F483610D1B5387 /* IceLocatorDiscovery */, - F4CBEE8A8E7A8C6A7BF8E7D1 /* IceStorm */, + 6B3240DA41D618B1A973AB23 /* PluginI.cpp */, ); - name = slice; + name = IceLocatorDiscovery; sourceTree = ""; }; - F128824761873631208E9FF6 /* info */ = { + FA93554C364A3D8246EC4A47 /* inheritance */ = { isa = PBXGroup; children = ( - 7EC92AF3F5FC050268FC433B /* AllTests.swift */, - 1504B193CDECAF18F430FF2B /* Client.swift */, - 474135D6386C100AE4286B3D /* Server.swift */, - 442DF01B56EA1176B35EB3BB /* Test.ice */, - 0875A1294F5D23AA2CB7EB75 /* TestI.swift */, + CC034BBCB34C7182E33E5260 /* AllTests.swift */, + 264D776F123D481FEAD06C14 /* Client.swift */, + 91079E777372B4F182F41A0A /* Collocated.swift */, + F48CF258CC15C9D7DB246467 /* Server.swift */, + 62FEBA73AE042571D01D4F88 /* Test.ice */, + 19266A1DAEA30EF728B73CC3 /* TestI.swift */, ); - name = info; + name = inheritance; sourceTree = ""; }; - F4CBEE8A8E7A8C6A7BF8E7D1 /* IceStorm */ = { + FD01717E3C1F108D0BF0CAC5 /* iOS */ = { isa = PBXGroup; children = ( - 5B2DF10CBEFF10D1055C9690 /* IceStorm.ice */, - 694A7AEF1BC68DE001EACE83 /* Metrics.ice */, + BE7456538444EC0F07561F0C /* CFNetwork.framework */, + EA63D38F273987B6208237F7 /* ExternalAccessory.framework */, + 8459D7ADBFDA497ADE1E6E69 /* Foundation.framework */, + EA0C9E634315389E93760409 /* PromiseKit.xcframework */, + F32ED048C90725C7C38CC684 /* Security.framework */, + 53899169BFAB829939A10CB9 /* UIKit.framework */, ); - name = IceStorm; + name = iOS; sourceTree = ""; }; - F74302DC201C6A5AD396D58D /* Slice */ = { + FD8286BE0A069336112BA7F8 /* IceStorm */ = { isa = PBXGroup; children = ( - 103FDA3C298F28EEBB273247 /* escape */, + 0B8D9DC9A4A10105943CA252 /* IceStormSwift.h */, + C8EEEFFBAEF23056FD049102 /* Info.plist */, ); - name = Slice; + name = IceStorm; sourceTree = ""; }; - FF39250451D3480417DFABB5 /* exceptions */ = { + FD840516866220AEA21DA14C /* IceGrid */ = { isa = PBXGroup; children = ( - FEF066D96D048F2BABE04F9D /* AllTests.swift */, - 8F6E31AAAA244C75D4675291 /* Client.swift */, - 5CD54C2AA8BE23781C057132 /* ClientPrivate.ice */, - 0AFA47DD3A3466A544964C35 /* Server.swift */, - 6A3AF2E27A291665E3020008 /* ServerAMD.swift */, - 98A6F84D22ACDB0E77E825ED /* ServerPrivate.ice */, - 668C6C0361ED4E7B91231D65 /* ServerPrivateAMD.ice */, - 5FABA39878E8DF7941FB168E /* Test.ice */, - 00EA1D526F07AB7E2403ACDE /* TestAMD.ice */, - 638F85E5C6C7085DF46F390B /* TestAMDI.swift */, - DC8A0F90321653214F836FE0 /* TestI.swift */, + 3A3A0B6FB6D6326BBB4971C4 /* Admin.ice */, + 182EAED50584404F22460330 /* Descriptor.ice */, + A8FBA68CBD78E9ADC871C4C5 /* Exception.ice */, + A3D1AE0406A87BA43230C922 /* FileParser.ice */, + 7644F0F2714625FA88C9AD42 /* Registry.ice */, + 8C6C2E58CEE36AE17B95BBDF /* Session.ice */, + 57E9BE44DC6129D6174B2306 /* UserAccountMapper.ice */, ); - name = exceptions; + name = IceGrid; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 1DDB901128479520BB9AD0EE /* Headers */ = { + 0634D9BC86B197EFCC8CDB0E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - B18D0F17814EC2E9593CCBAD /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 27456717292406E63116AD53 /* Headers */ = { + 10C89778826B0C0BB91E9BC6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - EA2E235B053E55B0E4177494 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4FB3EA589B147838542CDE09 /* Headers */ = { + 1B2D7D0CD597712FF7B67871 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A63BB6DB081C31917F83692C /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 64A87DA1EA9BD3C6ADAFF02E /* Headers */ = { + 2719167A458B015D49557716 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 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 = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8112B61D6F5DD5F0C9A572AE /* Headers */ = { + 3940C02D995F91447AEF86D6 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 3BAC27CEC5453D4304B6F587 /* IceStormSwift.h in Headers */, + ECE0414F228AF7BD0A6CD5BE /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 862473C968F0D73C3C7F9E37 /* Headers */ = { + 4276B381C3BD8D8C5F41828A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2491EC7A2D74733C470C6A68 /* Glacier2Swift.h in Headers */, + 0B21DE753DFDE6AAAFD1C0D3 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 93E7BB61B44B0AFE4EFBB63A /* Headers */ = { + 43F59ECC32ECCFE75BE7A2A5 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 93FACC3DABC45ED5846FDE83 /* Headers */ = { + 470C12FF538C8ED135C4B638 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + FA555EB54DACFD9D761D6FC4 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9A8A94E05D6A1E0A2426EC03 /* Headers */ = { + 55DD80E69F422DD4C622B77B /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 648FDBD2BA6F923EEC0E66D4 /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A4A82603F3B768F28D42E20B /* Headers */ = { + 720A96257940D9A201712617 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + 3BE4D5BF24575AAEBE3DF8E2 /* IceStormSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - AEDBAA7430AF34324F0C413A /* Headers */ = { + 7F2B895A025ACE2CC4F5E2AF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + D57842885C9223C95EEA23FB /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - AFC6E97F41C4740B499DFBCD /* Headers */ = { + A9E1D1783813AA8D71AD2477 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 0B28D21E15B45D1ED33F3FFB /* AdminFacetFactory.h in Headers */, - B97DA3D60EE182D1AB51D9EA /* BlobjectFacade.h in Headers */, - 95295F91978AE312AE371B47 /* Communicator.h in Headers */, - AA189CC4BFC36298AC8BE63E /* Config.h in Headers */, - 2A93CE8856B63795C5EE6ADE /* Connection.h in Headers */, - E20F5B09EF5C04746A4E87C0 /* Convert.h in Headers */, - D34E460845F60D96B659E1E9 /* Endpoint.h in Headers */, - 27F90A37B3E7904B31A85347 /* Exception.h in Headers */, - 5BAE4094CCE5A0B4AC95DEBA /* IceImpl.h in Headers */, - 672ABFC7A04DBF3DFB694921 /* IceUtil.h in Headers */, - 919FCBDA71FAA6B336A35F7A /* ImplicitContext.h in Headers */, - 1A5AD7AF937810A8F33FA8E9 /* LocalObject.h in Headers */, - E2A512A72F8C1F3A55044BD3 /* Logger.h in Headers */, - E49A789A85D80DC904BE4D72 /* LoggerWrapperI.h in Headers */, - 207CEA59B4F540620C5A9902 /* ObjectAdapter.h in Headers */, - BB6256A532AFE0F50633935A /* ObjectPrx.h in Headers */, - A628D09090DA1A976D4E7395 /* OutputStream.h in Headers */, - 0566211B24AFD8F6FC201F0D /* Process.h in Headers */, - 3CF091986D8294BDD0805398 /* Properties.h in Headers */, - D69426083BBC072A41B12214 /* PropertiesAdmin.h in Headers */, - E5370113AA58E064333184A2 /* TraceUtil.h in Headers */, - 7672767DFDB5782E780428B5 /* UnsupportedAdminFacet.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B7B7E0BA3DB171A1A71274E2 /* 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 = ( + 6AA2BC3BBF3D7623E1C0EC49 /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C54A82F5226EAE308AF83FE2 /* Headers */ = { + DE199AD12D7B419440880D24 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 5EB89B704EA537152536E101 /* Glacier2Swift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C7EF7F01A53C07C81C0B8A0B /* Headers */ = { + E0F69D5BB8272A88BCAA8B51 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2462C4CBDA2826A41BE4E987 /* IceGridSwift.h in Headers */, + 2FB9DBDA7BF6CCBC947CBE28 /* IceGridSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - CF9EE45AEAD159608001824B /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - 15FD74806A0E0036DC93EFD2 /* AdminFacetFactory.h in Headers */, - 9BE9DBFF8F23C2B39DFA252A /* BlobjectFacade.h in Headers */, - C069E915226406AB4FC91B6B /* Communicator.h in Headers */, - 7C47A846F07E602B46BC1ED0 /* Config.h in Headers */, - 830EF50D85A696229F7C3FB6 /* Connection.h in Headers */, - EBDA6DF9FFD8DA98E922E042 /* Convert.h in Headers */, - C91DA74ACBFCAA2DB28D97D2 /* Endpoint.h in Headers */, - 66F36E022D500E9B5D5D6673 /* Exception.h in Headers */, - 5739F0353ED109F18A7AC24A /* IceImpl.h in Headers */, - 1ACBBDA263DC52EFE9B40BCE /* IceUtil.h in Headers */, - E56A2B5D84CF0D1438D587E6 /* ImplicitContext.h in Headers */, - 4904EB407049E8EA654B7169 /* LocalObject.h in Headers */, - 0821890B3D246581E1D1B1B1 /* Logger.h in Headers */, - F11C89DE74F84A7D67BBEE11 /* LoggerWrapperI.h in Headers */, - A0A0F385D08C94CE9C7BA323 /* ObjectAdapter.h in Headers */, - 76E62DE475D6AFA64D784C9A /* ObjectPrx.h in Headers */, - 9A8700B1C2D39ACB29F88CBB /* OutputStream.h in Headers */, - D88E1EF1901912C9F5A60E3C /* Process.h in Headers */, - 96B271D784D9299289F70657 /* Properties.h in Headers */, - 7BAC320CC9549BE3F30C380C /* PropertiesAdmin.h in Headers */, - C16730199AED9F96DA90412D /* TraceUtil.h in Headers */, - 092780B0FE2232D1CD619000 /* UnsupportedAdminFacet.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - E397D6F5D93A8E803E68ABD0 /* Headers */ = { + E31CDE4D2F98BABCFCBB0E54 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( + D725BFF39A8A7D7D356BFB68 /* IceSwift.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - EC097AD6335E22BBE91CB010 /* Headers */ = { + F66974C1B19D538A8347A324 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( @@ -8070,2332 +8070,2332 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 00F4F87A480D875F2C651B81 /* IceSlicingObjectsAMD macOS */ = { + 02BA85F98EB32966A7AA3C21 /* IceRetry iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AE759CF313ADE80AD78FF935 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */; + buildConfigurationList = DAC003A18A73B54FD01E21B7 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */; buildPhases = ( - 02EDF6CA2C4F558C22BB1EE9 /* Sources */, - BD978DCE67C32A8CBB5F07BC /* Frameworks */, - 9A6FB97FD62ADA170CBB7639 /* Resources */, + 1A4ACB27A85EFF473C257854 /* Sources */, + 2CED16271A7251484C385690 /* Frameworks */, + A27900851590FFDE252185AB /* Resources */, ); buildRules = ( - F72C9C41A743047D73876627 /* PBXBuildRule */, + A2C96297FD91C3D6AF4C2FBC /* PBXBuildRule */, ); dependencies = ( + DFCC719F50E4B316FF9F2F55 /* PBXTargetDependency */, + 9C3512FCC97B40E3D8F88C03 /* PBXTargetDependency */, ); - name = "IceSlicingObjectsAMD macOS"; - productName = IceSlicingObjectsAMD; - productReference = D78BFDA010F774B68B1D0943 /* IceSlicingObjectsAMD.bundle */; + name = "IceRetry iOS"; + productName = IceRetry; + productReference = 111E017C3F3407C4582DC59A /* IceRetry.bundle */; productType = "com.apple.product-type.bundle"; }; - 01B75CEA3EB80A6E664242B0 /* IceTimeout macOS */ = { + 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C75CE301532817FB9F18CF2D /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */; + buildConfigurationList = 9CBEAA1D89D83E1B7344586B /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */; buildPhases = ( - 78763EFE4244AF2640CEF60D /* Sources */, - 0A5A6F26717A3996E52368C1 /* Frameworks */, - 2A1FD57D952DFFC16A6455EB /* Resources */, + 1B2D7D0CD597712FF7B67871 /* Headers */, + CCD5534F46DBEDD9928F2800 /* Sources */, + 97F410FDB59D1A621BEC3DF3 /* Frameworks */, ); buildRules = ( - C22ED9CC12162007C4BA9774 /* PBXBuildRule */, + BFC94219BCB3D687503034E4 /* PBXBuildRule */, ); dependencies = ( - AED09B4E4172B4B44AA7DCA8 /* PBXTargetDependency */, - 42C8E46CBBDE065DD4F3AE64 /* PBXTargetDependency */, ); - name = "IceTimeout macOS"; - productName = IceTimeout; - productReference = 7C3C842B0893C4AC6BA6C676 /* IceTimeout.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"; }; - 055B3C0D85846EE14E87127C /* IceInterceptor macOS */ = { + 08C942FD89E4D9E7FA113627 /* IceServantLocator iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EDDCB3D00193C75D1E33B973 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */; + buildConfigurationList = 6E9AE200122845A170FA96E8 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */; buildPhases = ( - 6ABBD8B70A885D37B8A5E341 /* Sources */, - 1D5ADA908DE06BC749FE9250 /* Frameworks */, - 836B5D5EACD7F6885E026237 /* Resources */, + C9BC85A39F6E524BDBD6DBE5 /* Sources */, + 117D55DE7670DA2B05A6D64D /* Frameworks */, + 2536391E9CEBD069A43C9DCB /* Resources */, ); buildRules = ( - 1FE230AEDB37ADA5C1A5F0B2 /* PBXBuildRule */, + E8B58B8D847476D4C18DA988 /* PBXBuildRule */, ); dependencies = ( - E6B46F39DA1C4362ABCC5A4F /* PBXTargetDependency */, - DECBA1CB2D07F2D341550502 /* PBXTargetDependency */, + 9B7DC02499B2C036C616A166 /* PBXTargetDependency */, + C66718354985552446A566E6 /* PBXTargetDependency */, ); - name = "IceInterceptor macOS"; - productName = IceInterceptor; - productReference = EDC1F699D0173A3262ED8783 /* IceInterceptor.bundle */; + name = "IceServantLocator iOS"; + productName = IceServantLocator; + productReference = 1E6FDC3649CBA1598EAEBEA0 /* IceServantLocator.bundle */; productType = "com.apple.product-type.bundle"; }; - 096C6B1CDEA03B0A33EF7AB7 /* SliceEscape macOS */ = { + 0A757D8B307D80F7BD3C5017 /* IceAmi macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1884127EAB4501CE6C47D3E9 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */; + buildConfigurationList = AA28C8DA746390B23C998CD3 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */; buildPhases = ( - 794CC756BC61DA86436DF30D /* Sources */, - 3BF962457683C43CAE343F04 /* Frameworks */, - 454CD0CE4DDB15AE6636A5C4 /* Resources */, + 995AC1FE963E60344D4CC2E8 /* Sources */, + B55FDCB5E4F9CA0785C2645B /* Frameworks */, + 00249416E2CBA5788010C2D1 /* Resources */, ); buildRules = ( - 4CEF5C0E326A4206091A6352 /* PBXBuildRule */, + 0551E50A64EA50DF215E7B90 /* PBXBuildRule */, ); dependencies = ( - 6488CCA4C33A18941B6512B3 /* PBXTargetDependency */, - 2B93FFC81500D248421591C7 /* PBXTargetDependency */, + 27AA1C0790CF7A8B2557983B /* PBXTargetDependency */, + B04DB607E476251755885F9E /* PBXTargetDependency */, ); - name = "SliceEscape macOS"; - productName = SliceEscape; - productReference = E2FA87620B046FCEDC51EC6F /* SliceEscape.bundle */; + name = "IceAmi macOS"; + productName = IceAmi; + productReference = 2EB8E16DCE315D105EBA63E6 /* IceAmi.bundle */; productType = "com.apple.product-type.bundle"; }; - 0BE885FE5E5BBE860323877D /* IceUdp iOS */ = { + 0EDA203583B355501DD47E73 /* IceSSLConfiguration iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9DE455849AC8D536550B2EEC /* Build configuration list for PBXNativeTarget "IceUdp iOS" */; + buildConfigurationList = FC10685FF608E313BEC22C18 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */; buildPhases = ( - 32BEA01ACBF119855F9EDAAF /* Sources */, - 50B0F1CB22D8E290284E2335 /* Frameworks */, - 844D9BF33068806C77C78861 /* Resources */, + 6EF6C9E40D191F808F0F1E64 /* Sources */, + 7F9E1AD9DD8D88862F46796A /* Frameworks */, + 14A18AC2A5DAEEEB9691D1E2 /* Resources */, ); buildRules = ( - BF3B2FC5B3FFADD3BE32B708 /* PBXBuildRule */, + 3DBFD7E2771A196AFF654CED /* PBXBuildRule */, ); dependencies = ( - 9BD771586727B4841BFDEFC4 /* PBXTargetDependency */, - C952D4C257062F34819F1D02 /* PBXTargetDependency */, + 4D3889E084E8D41CA4DEDB01 /* PBXTargetDependency */, + 384F9D5525DDD9DA5F2BDCB1 /* PBXTargetDependency */, ); - name = "IceUdp iOS"; - productName = IceUdp; - productReference = D566AB986C3B8546B20A2AE0 /* IceUdp.bundle */; + name = "IceSSLConfiguration iOS"; + productName = IceSSLConfiguration; + productReference = 8425D2B0B3D5867C0C9F3351 /* IceSSLConfiguration.bundle */; productType = "com.apple.product-type.bundle"; }; - 0CC992ABE92F26754D8B7AC6 /* IceSlicingObjects iOS */ = { + 10E56726E39C8E4E56D51BC4 /* IceInfo macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D0CCC607E5806E77831B1416 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */; + buildConfigurationList = 7171AF48EFEC75029772E593 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */; buildPhases = ( - 9DD73DF35AB14838BEFD510B /* Sources */, - 3550CE4A87D9A268B0F8D568 /* Frameworks */, - CA1C99B3F8D4D7D793ECAB4A /* Resources */, + 582FCE8AE556DA8DA5C41C72 /* Sources */, + 8CA367470D856CD12514BED1 /* Frameworks */, + 645817E1D539571875E0D08C /* Resources */, ); buildRules = ( - 89683846F0C742C47E988B73 /* PBXBuildRule */, + 077C827730D516B87FCE7C69 /* PBXBuildRule */, ); dependencies = ( - 17EC27CE297AA6E9065BB02A /* PBXTargetDependency */, - FDDC6921F7FA776C8D389BC0 /* PBXTargetDependency */, + 0F10BA3B5220F9FB61BF7D16 /* PBXTargetDependency */, + 67789B7982F0B48D06EC11B0 /* PBXTargetDependency */, ); - name = "IceSlicingObjects iOS"; - productName = IceSlicingObjects; - productReference = 474923F0179531C32355FF66 /* IceSlicingObjects.bundle */; + name = "IceInfo macOS"; + productName = IceInfo; + productReference = FF5926EFAECD9C0572AFEE64 /* IceInfo.bundle */; productType = "com.apple.product-type.bundle"; }; - 0CCC3C20156C399AF82BA12D /* IceInterceptor iOS */ = { + 140CB18515FA53ECB140F7CC /* IceServices macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D78ED8ECC0AE408DA83908A4 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */; + buildConfigurationList = 1D4D43FA26654DDFBB6F5AEA /* Build configuration list for PBXNativeTarget "IceServices macOS" */; buildPhases = ( - A51674944759CDA437CD977D /* Sources */, - 31CB0600F2CAEE6EA284EA25 /* Frameworks */, - 24EFBFE3ADA2749FF488D044 /* Resources */, + 3E9760E37E9F23B4490D30C8 /* Sources */, + 85CF7E25AB6EC680828A8D52 /* Frameworks */, + D4360D6AABCA3914BB60B25E /* Resources */, ); buildRules = ( - 8535D8C5726F499728E8C0DD /* PBXBuildRule */, + D520D9B6825B931429E444E7 /* PBXBuildRule */, ); dependencies = ( - 120EC5E39F021DB7DC78826D /* PBXTargetDependency */, - F792378C33010C66EEB34D7B /* PBXTargetDependency */, + D3F80F9B28BE6A19F1ACEEA7 /* PBXTargetDependency */, + 542D43169C87228020236E49 /* PBXTargetDependency */, + 0CE7B06C949606A74D76872C /* PBXTargetDependency */, + 1697C65C44B82CBEB265245E /* PBXTargetDependency */, + 6B800448C27AC9995729A2E3 /* PBXTargetDependency */, ); - name = "IceInterceptor iOS"; - productName = IceInterceptor; - productReference = 030DE03918D9D61428E52F76 /* IceInterceptor.bundle */; + name = "IceServices macOS"; + productName = IceServices; + productReference = 76660D1C75C5895B539F597E /* IceServices.bundle */; productType = "com.apple.product-type.bundle"; }; - 0D82476565F3AEA63555293E /* IceAmi macOS */ = { + 14535688C6E2E4A839C04451 /* IceLocatorDiscovery C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CB1B55F276722B4DC699283F /* Build configuration list for PBXNativeTarget "IceAmi macOS" */; + buildConfigurationList = FDD08CA1D9C4CEE1314AB011 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */; buildPhases = ( - 053867D376E8154EDC7988A4 /* Sources */, - B4544514F441BC1AFD28374F /* Frameworks */, - C50094EE4DBBAC8B73D539E6 /* Resources */, + 2B90F8B4C459B49C79A80DB3 /* Headers */, + 19E8C12591841D5245D5DC13 /* Sources */, + 85D54E0F6421C5110E7CF3B7 /* Frameworks */, ); buildRules = ( - 1D1CE901804E6FEB2E40314F /* PBXBuildRule */, + B6041BC1A89CDEE8A98E68ED /* PBXBuildRule */, ); dependencies = ( - 4DD30FA8F8C40E68D1B364F6 /* PBXTargetDependency */, - FB94CB2385382EAB605FFA78 /* PBXTargetDependency */, + D4B36895492985F143ADF9A5 /* PBXTargetDependency */, ); - name = "IceAmi macOS"; - productName = IceAmi; - productReference = C86CB8DA4BE954C9B5E50C78 /* IceAmi.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceLocatorDiscovery C++11 macOS"; + productName = "IceLocatorDiscovery C++11 macOS"; + productReference = 6A510B59CE2B6AA8EFA619EC /* libIceLocatorDiscovery C++11 macOS.a */; + productType = "com.apple.product-type.library.static"; }; - 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */ = { + 16C02D2C934DC57FE079663F /* IceStorm iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D19A58BF707835F960F106B8 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */; + buildConfigurationList = 8B6BCE61CD3D67F3E3BD8082 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */; buildPhases = ( - AEDBAA7430AF34324F0C413A /* Headers */, - C9862A8B24C5CD002B5B285E /* Sources */, - A698BD56302069302025FC88 /* Frameworks */, + 470C12FF538C8ED135C4B638 /* Headers */, + DCBD1C7C048C69D71EEC4948 /* Sources */, + 806EB0C01E531EFDADC577DA /* Frameworks */, + 9805238AC059C1F2FF2B8E40 /* Resources */, ); buildRules = ( - BC55EE4522A96DAF80A52E30 /* PBXBuildRule */, + E280EEDFCE813E0957872778 /* PBXBuildRule */, ); dependencies = ( + 4AA57B4CCAFD40B94EB5703C /* PBXTargetDependency */, ); - name = "Ice C++11 macOS"; - productName = "Ice C++11 macOS"; - productReference = 9FF873ABC0C688353DDDFBD8 /* libIce C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceStorm iOS"; + productName = IceStorm; + productReference = 1124897FAD46E0C20C2CD5AF /* IceStorm.framework */; + productType = "com.apple.product-type.framework"; }; - 124476FE277A9E3ABE9F4A34 /* IceObjects iOS */ = { + 1767B82F1961C76D47FF467B /* IceStream iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5FFFF89B11EECD1E5C41B703 /* Build configuration list for PBXNativeTarget "IceObjects iOS" */; + buildConfigurationList = 030B0C213166A908514BBEE3 /* Build configuration list for PBXNativeTarget "IceStream iOS" */; buildPhases = ( - 7EDB299C07B10EFAD2A9D9EE /* Sources */, - D2F76D4ED0D3915212A80E04 /* Frameworks */, - 0020C26533E1133E77AD8D39 /* Resources */, + 31CAA11822A27837A20198DD /* Sources */, + 10A9E6818829CF9EAFF1F3CD /* Frameworks */, + 9A06AC974913591F40021183 /* Resources */, ); buildRules = ( - 880A1FF72D078D481E1F6266 /* PBXBuildRule */, + 30B5A14F5CA24A6F0DF27B48 /* PBXBuildRule */, ); dependencies = ( - BA76E7009C807481CDE371D6 /* PBXTargetDependency */, - 21326B009F7622080ED1C8ED /* PBXTargetDependency */, + 47FE95D45ABA35FC405F49A5 /* PBXTargetDependency */, + 3549A8EFC012523759D7C1B9 /* PBXTargetDependency */, ); - name = "IceObjects iOS"; - productName = IceObjects; - productReference = 0D0C50C25B4B163B7098033F /* IceObjects.bundle */; + name = "IceStream iOS"; + productName = IceStream; + productReference = CE7D6C632EB030AE96F5F06C /* IceStream.bundle */; productType = "com.apple.product-type.bundle"; }; - 14E9DB904AE22B49F37C4175 /* IceEnums macOS */ = { + 199245355B4B5CD9FF6A6386 /* IceLocation iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 79C62B5F4AC3F786B504F1F0 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */; + buildConfigurationList = 7FE01F67067D7142B0CD4F65 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */; buildPhases = ( - 88FBE0C1A68DEEAB8105F856 /* Sources */, - 8C0497F3F6397B74F75333FB /* Frameworks */, - B28CF688D5975D799535462C /* Resources */, + A0A95DA7DA0837299DE560B5 /* Sources */, + 2923CF8B8E12477B3B3F0865 /* Frameworks */, + 44FAD6E0EDAB8E4A1AEE1BF4 /* Resources */, ); buildRules = ( - B656093C42BDE2CB471C3E0F /* PBXBuildRule */, + 39E18D979D630330D623018C /* PBXBuildRule */, ); dependencies = ( - 06AD476773998DB766063AA0 /* PBXTargetDependency */, - F10735D401705032A9100A7F /* PBXTargetDependency */, + 4BAC91CC5FEA7F7B16E72836 /* PBXTargetDependency */, + 210D93C5CE1B6BAF8583E68D /* PBXTargetDependency */, ); - name = "IceEnums macOS"; - productName = IceEnums; - productReference = 998084A78E611312ABCE0CC7 /* IceEnums.bundle */; + name = "IceLocation iOS"; + productName = IceLocation; + productReference = B7CC3EAFDBBAED579CB65E02 /* IceLocation.bundle */; productType = "com.apple.product-type.bundle"; }; - 15259193E3C55F25AB0F68C2 /* IceImpl iOS */ = { + 1F284CA948D007302C982357 /* IceUdp macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0B05EAB79BFAA962F80CF8AC /* Build configuration list for PBXNativeTarget "IceImpl iOS" */; + buildConfigurationList = 3A17E7095AB1ECA3CBAC256C /* Build configuration list for PBXNativeTarget "IceUdp macOS" */; buildPhases = ( - AFC6E97F41C4740B499DFBCD /* Headers */, - 98DA39F4403BBC2A614A5643 /* Sources */, - 2A98404D5208BD65E3DB6CFE /* Frameworks */, - 99703AE171232EE3316B7FC0 /* Resources */, + 0FD557A1D14D0A865ED5A5FD /* Sources */, + F8E7C240ABCB208AF20991BA /* Frameworks */, + 8A0DF499987AFF2D115AEDB4 /* Resources */, ); buildRules = ( + D0653608084D464F8B138E2E /* PBXBuildRule */, ); dependencies = ( - C111472E48165E881EFF337E /* PBXTargetDependency */, - A4A639EE912CDFA594409636 /* PBXTargetDependency */, - 4B73F09BAD7093CC023E236A /* PBXTargetDependency */, + 78CEFB1A72110EE60FDB3F21 /* PBXTargetDependency */, + 79907CBDE1D21DF4674DCEBB /* PBXTargetDependency */, ); - name = "IceImpl iOS"; - productName = IceImpl; - productReference = 42391EF6184A353552A00883 /* IceImpl.framework */; - productType = "com.apple.product-type.framework"; + name = "IceUdp macOS"; + productName = IceUdp; + productReference = 039BF5E6C32CFEAC7B738A87 /* IceUdp.bundle */; + productType = "com.apple.product-type.bundle"; }; - 1564B348BA2786B8C14E7ADE /* IceLocatorDiscovery C++11 macOS */ = { + 1F99406342A96A78168E74BB /* IceServantLocator macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 469CC415C2CD4E23C9440A03 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */; + buildConfigurationList = 0252968214EFD83026C28885 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */; buildPhases = ( - 93E7BB61B44B0AFE4EFBB63A /* Headers */, - 017A05C9E5492039D3D8D7A3 /* Sources */, - E7946541CD8706DFA4CC9055 /* Frameworks */, + 55EA03F9FF5B5258E2D95203 /* Sources */, + 31FB515E0D1B88401DF0F91E /* Frameworks */, + C20BB80DF8D3029A668ABDCD /* Resources */, ); buildRules = ( - EE5C55B0C4EE5B272194CA83 /* PBXBuildRule */, + C3DBAF4F863DD4BB1DA91BEE /* PBXBuildRule */, ); dependencies = ( - E4187628621AC05D211283D5 /* PBXTargetDependency */, + 47FB782459BC2150AD05A8C0 /* PBXTargetDependency */, + F63875B0AFF87808BB1D2D7C /* PBXTargetDependency */, ); - name = "IceLocatorDiscovery C++11 macOS"; - productName = "IceLocatorDiscovery C++11 macOS"; - productReference = BDC9CA0C36333F0F3089E6C1 /* libIceLocatorDiscovery C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceServantLocator macOS"; + productName = IceServantLocator; + productReference = 1290DF39C865119AAFCA300B /* IceServantLocator.bundle */; + productType = "com.apple.product-type.bundle"; }; - 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */ = { + 24A0E61D1931744BC729034A /* IceAdmin iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B89F4C4E44F64BDD966EE1B5 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */; + buildConfigurationList = 964D3AF528C6D718B99C4B07 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */; buildPhases = ( - A4A82603F3B768F28D42E20B /* Headers */, - 1C729607C00CB2E52881670C /* Sources */, - E9E5406CDF46D57109C05BCB /* Frameworks */, + 94BA113A33B1F7D930559978 /* Sources */, + E6039FA4196A2B58B28A49CE /* Frameworks */, + 99D63790BA8EFD5298169ADE /* Resources */, ); buildRules = ( - B23A71024FB1EC235C7BA17C /* PBXBuildRule */, + F0E6D62A03E1FC5ED137EA52 /* PBXBuildRule */, ); dependencies = ( + C2D552543A04BCB1C90C0836 /* PBXTargetDependency */, + F80D78B26EFAE8B8DE4CF68A /* PBXTargetDependency */, ); - name = "Ice C++11 iOS"; - productName = "Ice C++11 iOS"; - productReference = 8AF093375A28D692055B8973 /* libIce C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceAdmin iOS"; + productName = IceAdmin; + productReference = FA6925D0243F823802CF0D97 /* IceAdmin.bundle */; + productType = "com.apple.product-type.bundle"; }; - 21CBD45E7CE90BF8C75C80EB /* IceFacets iOS */ = { + 2646D8A7E773E3BDE5BE8E29 /* IceGrid iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D7544F8A922AE8F2EDB41A02 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */; + buildConfigurationList = ACACE4173894FFF52EE39DA7 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */; buildPhases = ( - 1B03E3F3801D77DFC550183E /* Sources */, - B54B106594DCA06CB094EFC7 /* Frameworks */, - A0B128E85A3D225FE746C5E3 /* Resources */, + 4276B381C3BD8D8C5F41828A /* Headers */, + 5ABDC168A46FFCC4BC5DBE83 /* Sources */, + 9F5EBBFEADA209B38F96E7DF /* Frameworks */, + A0BE3341720002992247AA22 /* Resources */, ); buildRules = ( - 9DCADAFEFDB3EBDE12774132 /* PBXBuildRule */, + F08D29DD1F607F3A2A0811E1 /* PBXBuildRule */, ); dependencies = ( - FC9B91912DEDE6206860CBB8 /* PBXTargetDependency */, - 13564D9121B17F14DA89ECD9 /* PBXTargetDependency */, + 3244052F17A2A6DDF30979C1 /* PBXTargetDependency */, + 7C19001548D502798662B0D1 /* PBXTargetDependency */, ); - name = "IceFacets iOS"; - productName = IceFacets; - productReference = A763F1E9B20B68CAD1D62D3F /* IceFacets.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceGrid iOS"; + productName = IceGrid; + productReference = 38BF5DB9B9490714A81542C1 /* IceGrid.framework */; + productType = "com.apple.product-type.framework"; }; - 24DFB14E537F560FB7A2C4BB /* IceLocation macOS */ = { + 26D8717EB0F318653FB9C763 /* SliceEscape iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C774EC4F7B80A9DC640C4A98 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */; + buildConfigurationList = E4537A8468EF1FEEE8F8F311 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */; buildPhases = ( - 69DDECD27807D9D00780E084 /* Sources */, - 49FD36C12156CBE1BCDA70BA /* Frameworks */, - FF3A8C84C00FA22BAF711434 /* Resources */, + 173FACE699124A87E04C914B /* Sources */, + 526A78150CEC0DC513C23FA9 /* Frameworks */, + F159F9E36E629E9BDB80C93E /* Resources */, ); buildRules = ( - 37CA4220287721CCCA94A7B6 /* PBXBuildRule */, + 6DAC5C185EDE20E713CBDF37 /* PBXBuildRule */, ); dependencies = ( - 5A5F490E3C9235C51179AAE6 /* PBXTargetDependency */, - 9AF017062C8BBE42CF67CBB0 /* PBXTargetDependency */, + 9E47C0D59B7542553E30A851 /* PBXTargetDependency */, + BAC027B9F32EA0F4AFC54489 /* PBXTargetDependency */, ); - name = "IceLocation macOS"; - productName = IceLocation; - productReference = 0351F96883BE42489669584D /* IceLocation.bundle */; + name = "SliceEscape iOS"; + productName = SliceEscape; + productReference = 0753F097A120485770B9AAA7 /* SliceEscape.bundle */; productType = "com.apple.product-type.bundle"; }; - 263F8736790034DA7D5B83D1 /* IceDiscovery C++11 iOS */ = { + 29279E4ADC71CC6522E7C012 /* IceTimeout iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = CAA6AB848FDFE69287273CB7 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */; + buildConfigurationList = F2077D8AD4DFC86DB8B0364B /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */; buildPhases = ( - E397D6F5D93A8E803E68ABD0 /* Headers */, - 9956BCFAA677883DD752707A /* Sources */, - 3790CD79595DF06C45CEE0FF /* Frameworks */, + 248CDA2D74739565F3521E8E /* Sources */, + 652F989614A0CD7EA9C93857 /* Frameworks */, + 8FCBA1D78694AF810B4FB355 /* Resources */, ); buildRules = ( - 8302F207827ECD75369F66EB /* PBXBuildRule */, + 1AACFC0222397DAB936D6C48 /* PBXBuildRule */, ); dependencies = ( - 0B04243124955F9134481732 /* PBXTargetDependency */, + A82EA4403CC23337135C80BF /* PBXTargetDependency */, + D2E7DBF27809B6A06601A7F6 /* PBXTargetDependency */, ); - name = "IceDiscovery C++11 iOS"; - productName = "IceDiscovery C++11 iOS"; - productReference = AD73F53FFF7497EA96B009D6 /* libIceDiscovery C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceTimeout iOS"; + productName = IceTimeout; + productReference = B2C05AE8C73A007F79D23190 /* IceTimeout.bundle */; + productType = "com.apple.product-type.bundle"; }; - 27BA347B00896E18F811823C /* Glacier2 macOS */ = { + 2997C7A465709CD09CD4C4BB /* IceDefaultServant macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E4220777441E5EF3ECA5F089 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */; + buildConfigurationList = CB0394D655BA7D9B8142D057 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */; buildPhases = ( - 862473C968F0D73C3C7F9E37 /* Headers */, - 9FEC8E70B5CF85980CBBC182 /* Sources */, - FCBEA5B3F2725D44C6BCEAE1 /* Frameworks */, - 5C9093264E356EF7506B0894 /* Resources */, + 37E4B6226FAA627420AD950B /* Sources */, + 9844B33CD363109631307713 /* Frameworks */, + 31C2FA05CB826509E9A74215 /* Resources */, ); buildRules = ( - AF546237D726CD2250E4A251 /* PBXBuildRule */, + A15C5680CB5FEA04C8581ED9 /* PBXBuildRule */, ); dependencies = ( - 9882DAC1C90963F118992497 /* PBXTargetDependency */, + 949E14996BB86EA14239E327 /* PBXTargetDependency */, + B49EAB63D6E9C34958A5D033 /* PBXTargetDependency */, ); - name = "Glacier2 macOS"; - productName = Glacier2; - productReference = C34EB9EDE231EE45AAACDED2 /* Glacier2.framework */; - productType = "com.apple.product-type.framework"; + name = "IceDefaultServant macOS"; + productName = IceDefaultServant; + productReference = 6773D68D1A68AE755B5B28D3 /* IceDefaultServant.bundle */; + productType = "com.apple.product-type.bundle"; }; - 27F3896A1D44D94EF855517D /* IceOperations iOS */ = { + 2A0224A2EFBB3E87655C351C /* IceInfo iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 4D82084280C676C2093AF62F /* Build configuration list for PBXNativeTarget "IceOperations iOS" */; + buildConfigurationList = 6B982611FF349CB1EE5F5CDD /* Build configuration list for PBXNativeTarget "IceInfo iOS" */; buildPhases = ( - B71341B8DCD3386E969D021F /* Sources */, - E30612C910C44AD368450089 /* Frameworks */, - 17ACD2A45F6EE83A3AC34886 /* Resources */, + 46E22643788ED3AEF53E2D71 /* Sources */, + 49EB2686A47CA3035B5D5931 /* Frameworks */, + 82ACCDBDF2E388C1E5BB417F /* Resources */, ); buildRules = ( - 906E6E95E73C78CDFE13B1B3 /* PBXBuildRule */, + A83197122320D98FEB65A31E /* PBXBuildRule */, ); dependencies = ( - CB3B7B0043F55BF6802CD033 /* PBXTargetDependency */, - 8D591E47149945369DF1771F /* PBXTargetDependency */, + 52B1E6A9E6405D07BA0F27F4 /* PBXTargetDependency */, + 2B1B355F21DDF3BE4F41B18B /* PBXTargetDependency */, ); - name = "IceOperations iOS"; - productName = IceOperations; - productReference = 849D140524843186122E2B5D /* IceOperations.bundle */; + name = "IceInfo iOS"; + productName = IceInfo; + productReference = 31CED9038EC89062E2687C72 /* IceInfo.bundle */; productType = "com.apple.product-type.bundle"; }; - 283F1EEEFDF95C8EA1294341 /* IceHold iOS */ = { + 2AA26A44152A667D249E2998 /* IceSlicingObjectsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 39202D7414A70877BE45837D /* Build configuration list for PBXNativeTarget "IceHold iOS" */; + buildConfigurationList = 6FE087B24FDE257DD79D7A6A /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */; buildPhases = ( - 0B146F32DDB488FA7CDA54CC /* Sources */, - D792278D9EE599FE0B8B825F /* Frameworks */, - B253E03A991CCAF40EFAD3A7 /* Resources */, + 218707E1D04EA9FE5757B1BB /* Sources */, + BF7FE0D35C2CFFCA8AE47C9F /* Frameworks */, + CAF6D72C893C7F92B6DAAA18 /* Resources */, ); buildRules = ( - A6BD0CCEAD9F8A1D852393B8 /* PBXBuildRule */, + 2CFED10F8D5236F9A148CD79 /* PBXBuildRule */, ); dependencies = ( - F03EA759905DEDFC7B18290C /* PBXTargetDependency */, - C48DC5160B65EC80A35EED6B /* PBXTargetDependency */, ); - name = "IceHold iOS"; - productName = IceHold; - productReference = BB0D9576EB2595A8BB30BC3A /* IceHold.bundle */; + name = "IceSlicingObjectsAMD macOS"; + productName = IceSlicingObjectsAMD; + productReference = 37BCBC566A446A9FB1903373 /* IceSlicingObjectsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 28A1C2F2EB8DCCF1AFE83661 /* IceAdapterDeactivation iOS */ = { + 2B82F333BA11DB5D8BECDBF6 /* IceInterceptor iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 8D6981486561EBD3BEBBE95C /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */; + buildConfigurationList = 495A226D42894D7C7C4FB3B2 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */; buildPhases = ( - 189D6C47B729B0D4667B0D84 /* Sources */, - 3325493FAA42575AE19695CA /* Frameworks */, - 7FDADC7E2F4C408B7A8E7527 /* Resources */, + 13973FD1142BC0EEA74F5791 /* Sources */, + 1FB77E020C94D6255CBA55FA /* Frameworks */, + B6E4731B1043F209970479EE /* Resources */, ); buildRules = ( - 026B9995488EA94AC1BEB784 /* PBXBuildRule */, + 55FEE57C03D6A35EA220FDDD /* PBXBuildRule */, ); dependencies = ( - 9B992E1F5F07104C27BCC46B /* PBXTargetDependency */, - 1CBF579EC013B2E376910769 /* PBXTargetDependency */, + D142A33923862678D6C26242 /* PBXTargetDependency */, + 8F7B5636B28615FCF1F89DAB /* PBXTargetDependency */, ); - name = "IceAdapterDeactivation iOS"; - productName = IceAdapterDeactivation; - productReference = 0F1198C1D619743981CCBB42 /* IceAdapterDeactivation.bundle */; + name = "IceInterceptor iOS"; + productName = IceInterceptor; + productReference = 417ECCEE604C6E3005DA5A9A /* IceInterceptor.bundle */; productType = "com.apple.product-type.bundle"; }; - 2B6CEDAE0FF7E5682835597A /* IceSlicingExceptions macOS */ = { + 31D342F49CC37B0DFA959D8A /* IceInvoke iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 70304980DAC6B5CAC7E8F6DE /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */; + buildConfigurationList = EDCBAD1868C21D4D52A43EC8 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */; buildPhases = ( - ACC172DFEF365F0F73B16F5D /* Sources */, - 3C210FAAB58E0C567CD28F01 /* Frameworks */, - 6D8FCFF2028B41E88732E523 /* Resources */, + 3DA0EEE1FC1B570F1658980C /* Sources */, + 283FB009630341DAD17469AC /* Frameworks */, + 2ACCCA73A818191FE00F24F0 /* Resources */, ); buildRules = ( - D0F6BEA25FBBFCCA4FF875E8 /* PBXBuildRule */, + 0B74A63CFEF7DC7B73AFDB43 /* PBXBuildRule */, ); dependencies = ( - 38E9400954C5518735939765 /* PBXTargetDependency */, - CE5DAAAB7F64DF3F8A27B067 /* PBXTargetDependency */, + 33CC3B2171296B8FEE8D9CB0 /* PBXTargetDependency */, + D233CF0851E7A6B017FFAE3C /* PBXTargetDependency */, ); - name = "IceSlicingExceptions macOS"; - productName = IceSlicingExceptions; - productReference = 9EEEF7EF10C88BEAC2595F7E /* IceSlicingExceptions.bundle */; + name = "IceInvoke iOS"; + productName = IceInvoke; + productReference = AE24775D969D93908EB8704B /* IceInvoke.bundle */; productType = "com.apple.product-type.bundle"; }; - 3639C4450BB9A2FD62EC83B1 /* IceAdapterDeactivation macOS */ = { + 34AC5913121CF6E0F793DEDD /* IceOptional iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 10E1403F759E228BC195828D /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */; + buildConfigurationList = 3BBD0784B868C9DF93BA087B /* Build configuration list for PBXNativeTarget "IceOptional iOS" */; buildPhases = ( - 225AF2F874C2476133C2F0B1 /* Sources */, - 60ABDADDDC38AA635910F2CA /* Frameworks */, - B88F882DB9BDF3B49E110495 /* Resources */, + 265C5F11C4DF1AC9FCBCABF9 /* Sources */, + B3A87C11E0F7FE17A76F4C35 /* Frameworks */, + A8D0D05355E911E75BA0CA65 /* Resources */, ); buildRules = ( - 63596B300BE41853DB663025 /* PBXBuildRule */, + 1FFB7E77246CEEA7A9792AA1 /* PBXBuildRule */, ); dependencies = ( - A57627368CC0EE1A16DCB109 /* PBXTargetDependency */, - DDF36C186BCD8C7411F54C61 /* PBXTargetDependency */, + DF3CFD08EEAE5D55AD373E77 /* PBXTargetDependency */, + 5357751A9DD5D2904A7730A7 /* PBXTargetDependency */, ); - name = "IceAdapterDeactivation macOS"; - productName = IceAdapterDeactivation; - productReference = 0C651862FD101870CF346580 /* IceAdapterDeactivation.bundle */; + name = "IceOptional iOS"; + productName = IceOptional; + productReference = 60CB9F01352AB79EE50AD568 /* IceOptional.bundle */; productType = "com.apple.product-type.bundle"; }; - 3682D0A08A431497D8699B03 /* IceSlicingExceptionsAMD macOS */ = { + 3889B46D2FBF6B61B7DA5A5A /* IceDefaultServant iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = DA5782EA7C56F1C9C9EE074A /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */; + buildConfigurationList = 349E46BBAA5C23BC49FDDCA7 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */; buildPhases = ( - E0FA8EE687F03346A9E3EA5D /* Sources */, - CEAC8C07ABFA3535880712A2 /* Frameworks */, - E9F5F0922E44A83E54A7CE7E /* Resources */, + 2892793081A78839DF6EC65E /* Sources */, + FC33E14EC639571B6432A1DE /* Frameworks */, + E1C49984FA480B9BCF65FA6B /* Resources */, ); buildRules = ( - D5DB8A3A0A5B9B8BBEB91C59 /* PBXBuildRule */, + 5F25180EEEA0D443EA83236C /* PBXBuildRule */, ); dependencies = ( + 26273A8A01152B7B735D8E52 /* PBXTargetDependency */, + 09CB6BF22B26F03069623513 /* PBXTargetDependency */, ); - name = "IceSlicingExceptionsAMD macOS"; - productName = IceSlicingExceptionsAMD; - productReference = E826DFF464DFB4529E54EDC3 /* IceSlicingExceptionsAMD.bundle */; + name = "IceDefaultServant iOS"; + productName = IceDefaultServant; + productReference = F1BA415B45FE40D1AF4C892C /* IceDefaultServant.bundle */; productType = "com.apple.product-type.bundle"; }; - 37631E1832EC47AB18B6F9F8 /* IceOptionalAMD iOS */ = { + 3892B1FD3640020576B40CDA /* TestDriver macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5D6E3AC8616035B5AECEBBAC /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */; + buildConfigurationList = C22E9D48367DAB854CD8AB46 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */; buildPhases = ( - E2F1BEE041F303D35091A880 /* Sources */, - E968A28CD4DAF0118A700EB5 /* Frameworks */, - 7119E28106D2A577A8A3F0AC /* Resources */, + D49EE87B9CACBEF092809F3E /* Sources */, + B367B8328583C66CB3B65E11 /* Frameworks */, + 04386FC27D0D00B9F679688A /* Resources */, + E5942E58C8A34C1C4ED4BD5C /* Copy Frameworks */, + 7340F995D6B9555E6836DD71 /* Copy Symbols */, ); buildRules = ( - 9AF559A596B7B8DD3EEF1CA4 /* PBXBuildRule */, + F733CA456DE86E601559E187 /* PBXBuildRule */, ); dependencies = ( + 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 = "IceOptionalAMD iOS"; - productName = IceOptionalAMD; - productReference = 6331AC6AD612A19D131621A7 /* IceOptionalAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestDriver macOS"; + productName = TestDriver; + productReference = B407E5A8D5B156671264DFC5 /* TestDriver.app */; + productType = "com.apple.product-type.application"; }; - 39438194D11EA03199C6686E /* IceUdp macOS */ = { + 38C1EA904D5C3BCB045C88A2 /* IceProxyAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 674190F44ED8DD47BBD3457E /* Build configuration list for PBXNativeTarget "IceUdp macOS" */; + buildConfigurationList = C987906A8741F66B405FD072 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */; buildPhases = ( - 7CA59DD48A5F2DD2F1203DA0 /* Sources */, - CFFD04D7334DE7F83630BCFE /* Frameworks */, - CEDC6C4F7DFD4D758CF665C1 /* Resources */, + A3058C0E432687C445899555 /* Sources */, + BBEEFF0A68121EE4209D00C8 /* Frameworks */, + 8A838501F68B8A18D5BAAD6F /* Resources */, ); buildRules = ( - 406E2DEE7A5B133E3F08662B /* PBXBuildRule */, + D29588E5F45CCE70DBFAC56B /* PBXBuildRule */, ); dependencies = ( - 8EA188D77F70D24C2796F1F2 /* PBXTargetDependency */, - 1A07374B3416C0DC9EDFA40C /* PBXTargetDependency */, ); - name = "IceUdp macOS"; - productName = IceUdp; - productReference = 03DCA74ACCAE41A0ADDF52A1 /* IceUdp.bundle */; + name = "IceProxyAMD macOS"; + productName = IceProxyAMD; + productReference = 521B530EB810B4F3FDF103AE /* IceProxyAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 3E00BC6A9646D9FED455066C /* IceAdmin macOS */ = { + 3AA88FF2CD4BC207F3E38A68 /* IceDiscovery C++11 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 092F36D88613D1A5972D047F /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */; + buildConfigurationList = 3A6B018810B2355184BFADD6 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */; buildPhases = ( - A07809F6BA4FB2EBCDA57A0E /* Sources */, - B862D6E5F716780AED3C2D8C /* Frameworks */, - C9DAB62BBE190CFBF7170A49 /* Resources */, + 10C89778826B0C0BB91E9BC6 /* Headers */, + 845DA976F8C240ED749F0993 /* Sources */, + E7CE9EAD6B41D15F33A3BC5F /* Frameworks */, ); buildRules = ( - 7C3C53A9A4E138E38DA558E2 /* PBXBuildRule */, + E05FAD6A4F0429D09796CA8D /* PBXBuildRule */, ); dependencies = ( - CADAFB3437C135AD3AC5469E /* PBXTargetDependency */, - AC4CC6B8A2031AD2045B501A /* PBXTargetDependency */, + 2C35865548487819E61CD5C5 /* PBXTargetDependency */, ); - name = "IceAdmin macOS"; - productName = IceAdmin; - productReference = 72083FEA504B3EAD2B1B6FE2 /* 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"; }; - 3E1C18FAE5F2A3A2849292E9 /* IceGrid iOS */ = { + 3CB27B168E65D6B824278AE1 /* IceSlicingExceptionsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B177DF1D1629B1AE10FE43D1 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */; + buildConfigurationList = 8604BB88AF7054188522024C /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */; buildPhases = ( - 1DDB901128479520BB9AD0EE /* Headers */, - 4EDE5F9D421F14059D4E8F33 /* Sources */, - 39742AA4710C285CB1EFE2D3 /* Frameworks */, - AA4E9C8790445E9D35057FCB /* Resources */, + 3584EB0EDCF9EF8FBFAECDD6 /* Sources */, + 97EED2E3C98D3F5AF3A1552A /* Frameworks */, + 69FCFDD29309F0532D39A5B8 /* Resources */, ); buildRules = ( - A0D3544A6366CDEBB70F5523 /* PBXBuildRule */, + 8C41009A1CF692F8BB063584 /* PBXBuildRule */, ); dependencies = ( - 374811107DE398E12960D278 /* PBXTargetDependency */, - 55EB74D578CA62B140CDDE41 /* PBXTargetDependency */, ); - name = "IceGrid iOS"; - productName = IceGrid; - productReference = F8335B51360FAD4A3774DBDC /* IceGrid.framework */; - productType = "com.apple.product-type.framework"; + name = "IceSlicingExceptionsAMD iOS"; + productName = IceSlicingExceptionsAMD; + productReference = 6407F8C33CF3719F6547CE3E /* IceSlicingExceptionsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - 3EA20E16FBEAA1C5B0DA52BA /* IceProxyAMD macOS */ = { + 3E69BE60A2C26A59EEE938DC /* IceScope iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = FBAF081DB3D9A6FADF284C05 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */; + buildConfigurationList = 1436FED26E53A492AD49A198 /* Build configuration list for PBXNativeTarget "IceScope iOS" */; buildPhases = ( - FA4743AAA8336CD1C662C664 /* Sources */, - A0899A079D953C8B3733ECE6 /* Frameworks */, - 1820192F3579B5E37FCA2BF2 /* Resources */, + 7DB0956D51347FF877757F6F /* Sources */, + 081D5E6091599199E20BCD0C /* Frameworks */, + 33770904A4C0961541E60453 /* Resources */, ); buildRules = ( - 8A9AD969E4AC48B3137708A7 /* PBXBuildRule */, + 0DD9AD4A7BD828C8FD11AB79 /* PBXBuildRule */, ); dependencies = ( + 5268EA67DC169DE818CC8F75 /* PBXTargetDependency */, + 932568BF537D0E9CF04A3F73 /* PBXTargetDependency */, ); - name = "IceProxyAMD macOS"; - productName = IceProxyAMD; - productReference = F81F55C1F60FE16B0090352D /* IceProxyAMD.bundle */; + name = "IceScope iOS"; + productName = IceScope; + productReference = E4E970020786C4F7F72C5207 /* IceScope.bundle */; productType = "com.apple.product-type.bundle"; }; - 429CEDF95141D2685FE9AB01 /* IceEnums iOS */ = { + 41AF2CA6936313B5E6F391BD /* IceHold macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 4DB434BEC4D47FE241686799 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */; + buildConfigurationList = 7132AA38811E7617A47E8634 /* Build configuration list for PBXNativeTarget "IceHold macOS" */; buildPhases = ( - 9BC3F6F228B2B8CC44C9A008 /* Sources */, - 081497A296EC3CCA4C40B339 /* Frameworks */, - 1AB95AEDF5AD059291ED92D9 /* Resources */, + 18C14F16D15E4A694293DE19 /* Sources */, + E407893EB03864C359677FAF /* Frameworks */, + 176FF9306341735D2EE9CC58 /* Resources */, ); buildRules = ( - B65DF0E5CC3617FCD6495418 /* PBXBuildRule */, + 24F2F01F8EEF2C4CB373FCC8 /* PBXBuildRule */, ); dependencies = ( - 27BCE5C17E0BC2EFE96D9805 /* PBXTargetDependency */, - 27FA504BD00219560AF87677 /* PBXTargetDependency */, + 43B165872B3B751A3C828633 /* PBXTargetDependency */, + 4A6A04D7D9C890A5021B5F52 /* PBXTargetDependency */, ); - name = "IceEnums iOS"; - productName = IceEnums; - productReference = F5C15610EC1017BFB49E9711 /* IceEnums.bundle */; + name = "IceHold macOS"; + productName = IceHold; + productReference = 9F9C864BECBB215D589B5735 /* IceHold.bundle */; productType = "com.apple.product-type.bundle"; }; - 4685FAE2AEBE43E1EEA7F814 /* IceDefaultServant iOS */ = { + 4434399DDA0D789BDAB8EDCF /* IceLocation macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 270B29BCEE9A0485CBB85E84 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */; + buildConfigurationList = 99C7AB75CFB58B2BC9CB54D3 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */; buildPhases = ( - 8EE6710B66BF776E86C6ABE5 /* Sources */, - F686E94DE59E1050B4F45B23 /* Frameworks */, - 631021495D98633A80ADA247 /* Resources */, + 546286E57A4EAA9483C1EB73 /* Sources */, + 4D5DE839DBEF6FE4290079E4 /* Frameworks */, + F976B27FF94759CC796E9973 /* Resources */, ); buildRules = ( - D75DF2378F1BE3AA82BEFA71 /* PBXBuildRule */, + 810C7830E1344D941EEAB39F /* PBXBuildRule */, ); dependencies = ( - 16814372AF840708839F0163 /* PBXTargetDependency */, - 60C26C61835A0ED1FE59D87C /* PBXTargetDependency */, + 8DE1D2AFA66323BE0D6830F2 /* PBXTargetDependency */, + DFEB9FEAE6481E1DA65CE2CA /* PBXTargetDependency */, ); - name = "IceDefaultServant iOS"; - productName = IceDefaultServant; - productReference = 5A11FDE12E0158896D2902C2 /* IceDefaultServant.bundle */; + name = "IceLocation macOS"; + productName = IceLocation; + productReference = 7C3AA0639A1EDE5ADB774E21 /* IceLocation.bundle */; productType = "com.apple.product-type.bundle"; }; - 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */ = { + 45549440E1718C4D35E63237 /* IceAcm macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 03C104B96C3644524557A697 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */; + buildConfigurationList = CA5A320E5664C9BFB05772CE /* Build configuration list for PBXNativeTarget "IceAcm macOS" */; buildPhases = ( - 93FACC3DABC45ED5846FDE83 /* Headers */, - 405CD52C99BA714EBBF20283 /* Sources */, - E3C3083DE135A1C425F49493 /* Frameworks */, - F23D88C9D1CF00A3A504428F /* Resources */, + 33B1F7E1237A46BE66481B63 /* Sources */, + B3650CA7FFEC001254FF4F90 /* Frameworks */, + 9949AEEBED679581FE7A8844 /* Resources */, ); buildRules = ( - 2F333406D1D89EE25A9F5B70 /* PBXBuildRule */, + E47B28EC2F168D6E639FF7A1 /* PBXBuildRule */, ); dependencies = ( + DE3CF6E0EBAC74076AF0320E /* PBXTargetDependency */, + D8350F0624357AEB979D0135 /* PBXTargetDependency */, ); - name = "TestCommon macOS"; - productName = TestCommon; - productReference = 318CA4ABDF4D4FCA60592E0C /* TestCommon.framework */; - productType = "com.apple.product-type.framework"; + name = "IceAcm macOS"; + productName = IceAcm; + productReference = EF8280C5D17209751E14553C /* IceAcm.bundle */; + productType = "com.apple.product-type.bundle"; }; - 473D6356B099988C3C7E81A3 /* TestDriver macOS */ = { + 46452DCDFFD6A246079637CB /* IceAcm iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1AF909433E628EC26457205C /* Build configuration list for PBXNativeTarget "TestDriver macOS" */; + buildConfigurationList = 2E5E382C433373FE08562DEC /* Build configuration list for PBXNativeTarget "IceAcm iOS" */; buildPhases = ( - 1A6CF57760DFFFD82003731D /* Sources */, - 508B96393867923BC906A09E /* Frameworks */, - D6B18307D907DD86202D5525 /* Resources */, - 2E68AF26B73DB2B867826B67 /* Copy Frameworks */, - 1A7952D3F70EC49CDEE66AD5 /* Copy Symbols */, + AD531935AFAD1531570A2E88 /* Sources */, + 204A198613FC71122473A254 /* Frameworks */, + 15D54B7AE2BF490CE5C78C8D /* Resources */, ); buildRules = ( - C3260C78D6DFC54BF7C5943F /* PBXBuildRule */, + AB287FBAF4C96D37FAD92AA5 /* PBXBuildRule */, ); dependencies = ( - 53A98460378A24B6F10DAAFF /* PBXTargetDependency */, - 800E83C2B330AFEAD399DD60 /* PBXTargetDependency */, - A5A0858FF649EA88502C6129 /* PBXTargetDependency */, - 03134A7173C5F92037D8BC35 /* PBXTargetDependency */, - B72170EFD46C6CC04FAD3073 /* PBXTargetDependency */, - 93D9D3EDF78007C8C23E1A41 /* PBXTargetDependency */, - 42FE01A7DDE457D508342618 /* PBXTargetDependency */, - 2956B7B75F4D412AF02EFF31 /* PBXTargetDependency */, - 47708FB0075A1C13990F2FD3 /* PBXTargetDependency */, - BAC4BB0CCC6787349A6306AC /* PBXTargetDependency */, - C6423C92B65868913DA5D155 /* PBXTargetDependency */, - 2FE04E929B05A627C1689DEA /* PBXTargetDependency */, - 2716428E9B531A65D3377B42 /* PBXTargetDependency */, - F66CBACFBF5ACE1C684F0F2B /* PBXTargetDependency */, - 6C84C09A147E85B35E086BF1 /* PBXTargetDependency */, - 26ED27E144843A00C086BEA1 /* PBXTargetDependency */, - 657B7F580C2C29007B695ADC /* PBXTargetDependency */, - ADB6979E4FEC016457718AE0 /* PBXTargetDependency */, - 365A22EBF5A4FDADF221E23F /* PBXTargetDependency */, - E928D870FD0AA9E48537C782 /* PBXTargetDependency */, - 84D63EA5B75EFD1433CE435A /* PBXTargetDependency */, - C25E171182CE76078011C5AD /* PBXTargetDependency */, - 31A66F09B3162862E4B3954A /* PBXTargetDependency */, - B2979DB87EC9525F4FC07F61 /* PBXTargetDependency */, - 51172D8ABCC4360E0461FCEC /* PBXTargetDependency */, - 421BF68BAE989652701BB2EE /* PBXTargetDependency */, - 54EC40BBC1C029B6732B2879 /* PBXTargetDependency */, - 7FDDCCA36B06D44409F6806F /* PBXTargetDependency */, - 1D34CC2EBD4CECFDDCDFB1BC /* PBXTargetDependency */, - E9DABD37E785A712124E697A /* PBXTargetDependency */, - 542C81497575401A8F247803 /* PBXTargetDependency */, - A7A853B5689F1F86A54D9059 /* PBXTargetDependency */, - 33C9B29A2C6F71E8AC4A5273 /* PBXTargetDependency */, - 201B5C1C0AEC5EE1E56D1AF5 /* PBXTargetDependency */, - 1668D9984B544411EF6127A9 /* PBXTargetDependency */, - BFE70C8A03062A01DB129678 /* PBXTargetDependency */, - FBC8B2CA9E0EC001FFDBCC4A /* PBXTargetDependency */, - 505CBB999F89EAF643CAB88D /* PBXTargetDependency */, - A5FF4459AFF629E41C5AD166 /* PBXTargetDependency */, - 3CC75AD56303036F1EBB8998 /* PBXTargetDependency */, - 5D5F29E46A8930E120396A7D /* PBXTargetDependency */, - 004E3BD554C37FB3CBC4E2F1 /* PBXTargetDependency */, - BCE12792758EF8EA92B0B17E /* PBXTargetDependency */, - B588339708F34300FC993054 /* PBXTargetDependency */, + 5FF97F04EC1FEDE3204B0343 /* PBXTargetDependency */, + A3FCCE06FBBB03C015426F21 /* PBXTargetDependency */, ); - name = "TestDriver macOS"; - productName = TestDriver; - productReference = AF198F1B7E492421D2764DC7 /* TestDriver.app */; - productType = "com.apple.product-type.application"; + name = "IceAcm iOS"; + productName = IceAcm; + productReference = 8629DC53723BDBF2B619738A /* IceAcm.bundle */; + productType = "com.apple.product-type.bundle"; }; - 478A8F3068E5FF5F72F783EC /* IceSSLConfiguration macOS */ = { + 49D15054211B9CC6B08CB18E /* IceDiscovery C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = DBB2EA67BA6CDCB7FCB3DE91 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */; + buildConfigurationList = 0157127A05BBD04C218262B0 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */; buildPhases = ( - A660EB5F9FF6AEDB20390263 /* Sources */, - 8FD85DAC494692521FE3D118 /* Frameworks */, - ABF8DE0E10BDE6A847E963E0 /* Resources */, + 43F59ECC32ECCFE75BE7A2A5 /* Headers */, + EDA094C1C4131E1A673E1E38 /* Sources */, + 7C6CDCE57D922E0B787A535D /* Frameworks */, ); buildRules = ( - A23254B04EF0DFC199809C6E /* PBXBuildRule */, + 7307596D8EA316DB28CCD79D /* PBXBuildRule */, ); dependencies = ( - 934DA8231C701557DF9C79CE /* PBXTargetDependency */, - 3F1CB2E5551EEDC59E1E432F /* PBXTargetDependency */, + CC6BBD2AB5F9CC06D02D249D /* PBXTargetDependency */, ); - name = "IceSSLConfiguration macOS"; - productName = IceSSLConfiguration; - productReference = 525EFBA91C000927B6DE6289 /* IceSSLConfiguration.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"; }; - 47EF87D7ED829723C501BBBC /* Ice iOS */ = { + 4CDAAF1A166952EC0C4E0BF1 /* IceImpl iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B3EB63E7E80278C3A46AB5D0 /* Build configuration list for PBXNativeTarget "Ice iOS" */; + buildConfigurationList = 0EFEF1D7EBC06BC77FD52F2A /* Build configuration list for PBXNativeTarget "IceImpl iOS" */; buildPhases = ( - 4FB3EA589B147838542CDE09 /* Headers */, - F397727F47CFBB558C1BA0B0 /* Sources */, - 728C617FAC0D36682AF6F66B /* Frameworks */, - 9C8F862DFA162032660D5E3E /* Resources */, + 2719167A458B015D49557716 /* Headers */, + B07361FD04E0EB287FC02C73 /* Sources */, + 2DD679EBE33EA28973E97CE2 /* Frameworks */, + B9EEF1A7005854C201330A1B /* Resources */, ); buildRules = ( - 1EFAC4D5CFA3C5E69B7EBAE1 /* PBXBuildRule */, ); dependencies = ( - 3DBE51302F6C198FD8C49ECF /* PBXTargetDependency */, + 7051368F9D3D1E5E3808805C /* PBXTargetDependency */, + 4B02A11F530EE883CB2578B8 /* PBXTargetDependency */, + 526B313AFAD59FA551C9CD53 /* PBXTargetDependency */, ); - name = "Ice iOS"; - productName = Ice; - productReference = ED06DCDDD71F35AD778BBAFD /* Ice.framework */; + name = "IceImpl iOS"; + productName = IceImpl; + productReference = 550E7CC0FD0E1918D7A9AB38 /* IceImpl.framework */; productType = "com.apple.product-type.framework"; }; - 4BB02C0AE52711EB3F20C5D7 /* IceAmi iOS */ = { + 529314BF4173169E9CB2F36B /* IceProperties macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1FBF92B4CD04CC8C9EFB5E86 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */; + buildConfigurationList = 71D9586CD06D3A7AA552F80B /* Build configuration list for PBXNativeTarget "IceProperties macOS" */; buildPhases = ( - 3E1F45930E5FE2EDA87D5CD2 /* Sources */, - 6F8A42B394C3B6FE549EAB36 /* Frameworks */, - 2C3F7BF7A7697FF44A039618 /* Resources */, + E078DD2EC4116147822ECE01 /* Sources */, + E572B71F7B0310B0FBB5FA3F /* Frameworks */, + 46F2D21F2C7973E5E24B0A4F /* Resources */, ); buildRules = ( - 01108756FB1E50B366DCC087 /* PBXBuildRule */, + 5D73B5413A7BCE0557AE9728 /* PBXBuildRule */, ); dependencies = ( - BFCE5FB9230491517B1F422D /* PBXTargetDependency */, - 8BDB8A98B09045E5AB11B27F /* PBXTargetDependency */, + 6C3562F7E1400576B368712F /* PBXTargetDependency */, + B8F1E89B87825266C11A5519 /* PBXTargetDependency */, ); - name = "IceAmi iOS"; - productName = IceAmi; - productReference = 9158AF482E818BC8C94168F9 /* IceAmi.bundle */; + name = "IceProperties macOS"; + productName = IceProperties; + productReference = B678281893C42981DD91CE27 /* IceProperties.bundle */; productType = "com.apple.product-type.bundle"; }; - 4D5800AC0A437A45FB0049AB /* SliceEscape iOS */ = { + 57285D8128490A28FD5E1EA9 /* IceSlicingExceptions macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 555A63D73D762337A889ABFE /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */; + buildConfigurationList = F0F1827DA5AFDAEAA66F8225 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */; buildPhases = ( - 908875F30A31F98DBEEC6853 /* Sources */, - 2B9175E1C1EA89B3C928F148 /* Frameworks */, - 4B9C6AC1E445FE40B49C9B4E /* Resources */, + DD87BBC707D274A0611EB50F /* Sources */, + 62093BE74F53D2410F354FB3 /* Frameworks */, + 89EF7AC17461C4496796E470 /* Resources */, ); buildRules = ( - FB4C0218FC99C654D5B6CAA4 /* PBXBuildRule */, + B5C29E2549BA405D43648364 /* PBXBuildRule */, ); dependencies = ( - 09D3052B0E301E57DB00C947 /* PBXTargetDependency */, - 608F0166FCDB893FC4748FEB /* PBXTargetDependency */, + B7F7351D814B5FBA1FFC8E3D /* PBXTargetDependency */, + 416FAFE324EDB70B39EEAAC5 /* PBXTargetDependency */, ); - name = "SliceEscape iOS"; - productName = SliceEscape; - productReference = A7CAB2E9D70B8A29FA66E759 /* SliceEscape.bundle */; + name = "IceSlicingExceptions macOS"; + productName = IceSlicingExceptions; + productReference = 52D616F0A4C2D7002EE8EE6C /* IceSlicingExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 4E2639095BC1D8AB5CABDD8E /* IceBinding iOS */ = { + 57D39C477D54466601C5A786 /* IceExceptionsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2C6B159FF806CA13EF38DE93 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */; + buildConfigurationList = 77CF292B6405CD9DC50E55F1 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */; buildPhases = ( - CCE2454EF62FDB1BEF8150C9 /* Sources */, - 9909050AA6F90417BBEA7F28 /* Frameworks */, - 8E5B7E695002A042F1EB7A38 /* Resources */, + 6881CCF877304AB0D49EFF21 /* Sources */, + 770D467AAF89E88EF37AD409 /* Frameworks */, + E8EDBAF10EC32B268285C51B /* Resources */, ); buildRules = ( - D7844059119B1D96117377BA /* PBXBuildRule */, + 789DE5283B32D8F2E82D7F99 /* PBXBuildRule */, ); dependencies = ( - 5A3127CFCA184D1967C19B95 /* PBXTargetDependency */, - 2515347844C24DEB2A01ECAE /* PBXTargetDependency */, ); - name = "IceBinding iOS"; - productName = IceBinding; - productReference = 80FAAEBFCC3A3BCA918A1783 /* IceBinding.bundle */; + name = "IceExceptionsAMD iOS"; + productName = IceExceptionsAMD; + productReference = 0443C0420CF9B9FDB9AE0E48 /* IceExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 5658AB3FB70284E862079845 /* IceExceptionsAMD iOS */ = { + 5A26265E443FF04358AE528C /* IceExceptions macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 62CB538FB022CED190E6659E /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */; + buildConfigurationList = 949317B550B1B1AFD92D0533 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */; buildPhases = ( - 655F49FCF65BE7CBE57565B2 /* Sources */, - 695749BABD39ACED89E9C8D9 /* Frameworks */, - BD8BF327C847FC440776338D /* Resources */, + 830352D57BA099B4E44F02B4 /* Sources */, + 17C34293249186306E0389C9 /* Frameworks */, + CFB4DD62C76CB41C892AE89E /* Resources */, ); buildRules = ( - 72D07EB438872CE2049E98D0 /* PBXBuildRule */, + E793AF98611243937E18BDDA /* PBXBuildRule */, ); dependencies = ( + 65F8D90FAF604B13E5D29075 /* PBXTargetDependency */, + 26E5DD3BEB852EE4C8DB3FF6 /* PBXTargetDependency */, ); - name = "IceExceptionsAMD iOS"; - productName = IceExceptionsAMD; - productReference = 2FF3B3842F37F3295343B6C4 /* IceExceptionsAMD.bundle */; + name = "IceExceptions macOS"; + productName = IceExceptions; + productReference = ED0D8471106CE1DAD728538A /* IceExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 5722522ABF0B09D7099DBA1F /* IceStorm iOS */ = { + 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0A75FB26B366B04407C83993 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */; + buildConfigurationList = 163A2F3CF4F68749AD6BE907 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */; buildPhases = ( - 27456717292406E63116AD53 /* Headers */, - 579324ED4945E63A904D0606 /* Sources */, - 1C2F5D9DD80E131EDDDFDE86 /* Frameworks */, - 74BA519151EBEAFDEDFF973D /* Resources */, + F66974C1B19D538A8347A324 /* Headers */, + A2CDC7AD3288B99AD16BB1FF /* Sources */, + 62FA6B43A012A2B27F747639 /* Frameworks */, ); buildRules = ( - E03D72C8E9FF07D01FC7BFB2 /* PBXBuildRule */, + 1B80CF27C9EDFA2D30FC4E48 /* PBXBuildRule */, ); dependencies = ( - 213019ABFBDB96BD8C65B7B3 /* PBXTargetDependency */, ); - name = "IceStorm iOS"; - productName = IceStorm; - productReference = 416D3EF324C1B3FE38CADAC9 /* IceStorm.framework */; - productType = "com.apple.product-type.framework"; + name = "Ice C++11 iOS"; + productName = "Ice C++11 iOS"; + productReference = E47A14897F2C93447F45EFCA /* libIce C++11 iOS.a */; + productType = "com.apple.product-type.library.static"; }; - 5E8A324AC0641CA083A50D0F /* IceDefaultValue macOS */ = { + 60F33D27C2F25EAA1C58217D /* IceInterceptor macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E9FFA63035886ECE1E9ECE85 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */; + buildConfigurationList = FB60A0B415E9E347AA1E331F /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */; buildPhases = ( - 8F2AC178E7873170615856A8 /* Sources */, - 26527728902FD83C9C57750B /* Frameworks */, - 9C0FEF68AF1EAB85246ADEB9 /* Resources */, + 52C2BC3F393D4B071AB4DA50 /* Sources */, + CD976712DDCAA3224E58C775 /* Frameworks */, + 5DF156CE3B2ABCC95441BD48 /* Resources */, ); buildRules = ( - 2C47615478A63B89451FB3F0 /* PBXBuildRule */, + 5783A48558F7B1883496DAAB /* PBXBuildRule */, ); dependencies = ( - 172590E345988F2A73800535 /* PBXTargetDependency */, - A94CA64CC5DF9174C6BFB90D /* PBXTargetDependency */, + 6C22381685946362D296DF7C /* PBXTargetDependency */, + 4433B6BB516D59984B87129C /* PBXTargetDependency */, ); - name = "IceDefaultValue macOS"; - productName = IceDefaultValue; - productReference = BE65FDBC053C9E1724BD1F80 /* IceDefaultValue.bundle */; + name = "IceInterceptor macOS"; + productName = IceInterceptor; + productReference = AE9FF7D3CCA47C89D218FFEE /* IceInterceptor.bundle */; productType = "com.apple.product-type.bundle"; }; - 6272130C7E84066D9A3C1C41 /* IceInvoke iOS */ = { + 615480D42FAF508D7F8AA5BC /* IceOperations macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E15FE701211C54FAB6478CA8 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */; + buildConfigurationList = 0DB26316D880D79A043C8220 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */; buildPhases = ( - 928DFF172E1FC782D4A3C492 /* Sources */, - 8483359526C8FBDD033C8253 /* Frameworks */, - E3A6C2D8C30337B97B11938F /* Resources */, + CEB3403D6F5A44E1997D8B37 /* Sources */, + 170FE239220FCD1C495B6CAF /* Frameworks */, + 29CA8F0C27AFBB27B927F33D /* Resources */, ); buildRules = ( - C5CE763A15C1297A21395D8A /* PBXBuildRule */, + 04DD2A095C30642B8CC50942 /* PBXBuildRule */, ); dependencies = ( - 31F711D9B60355CC16FE3A48 /* PBXTargetDependency */, - A9CA7AFB4C01AA70E2A69E0E /* PBXTargetDependency */, + A7B3E8467799D00673BAB97C /* PBXTargetDependency */, + 2C75679E47BB1A606F96DE00 /* PBXTargetDependency */, ); - name = "IceInvoke iOS"; - productName = IceInvoke; - productReference = FCD16A3852D0DAB23E0EE5DB /* IceInvoke.bundle */; + name = "IceOperations macOS"; + productName = IceOperations; + productReference = 6629A6F5DD07DBEF2C036E46 /* IceOperations.bundle */; productType = "com.apple.product-type.bundle"; }; - 665EE5441D076F90F4516A23 /* IceDiscovery C++11 macOS */ = { + 627EF9C25191013A38BA3C83 /* IceDefaultValue macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A9DB78C0FD4634D297D9ACE3 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */; + buildConfigurationList = E9A35DA707780FA15F886576 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */; buildPhases = ( - EC097AD6335E22BBE91CB010 /* Headers */, - 82D6113098F570AFCEDF2A16 /* Sources */, - ADFECDD3C5009F1D174CC517 /* Frameworks */, + 22D72A154B099999DA6C2B6B /* Sources */, + DCCA52359AA036281A864758 /* Frameworks */, + 0CCFF48ADFA73FF91C03C2AE /* Resources */, ); buildRules = ( - 628D091CE6EF08872EB297E0 /* PBXBuildRule */, + 095881B07F194A8C319DABAE /* PBXBuildRule */, ); dependencies = ( - BFF201D84DE85053F0DDB77C /* PBXTargetDependency */, + 6FC6EC1890665DCEAC5A5727 /* PBXTargetDependency */, + 054A49A3CE39EC48F11E8672 /* PBXTargetDependency */, ); - name = "IceDiscovery C++11 macOS"; - productName = "IceDiscovery C++11 macOS"; - productReference = 622CDB9E04A43DA05E046991 /* libIceDiscovery C++11 macOS.a */; - productType = "com.apple.product-type.library.static"; + name = "IceDefaultValue macOS"; + productName = IceDefaultValue; + productReference = 3D9AB0F6AC4AB0F35FE74791 /* IceDefaultValue.bundle */; + productType = "com.apple.product-type.bundle"; }; - 68BE8ACEDDD7433FDD2E5099 /* IceScope macOS */ = { + 696D6136245EB191F3A59E1A /* IceLocatorDiscovery C++11 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 08B22C9A9A85F18B106D85BA /* Build configuration list for PBXNativeTarget "IceScope macOS" */; + buildConfigurationList = 4C8BEDE4F71178624F9BDD5D /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */; buildPhases = ( - ACF2443A3629DCACA621F6AC /* Sources */, - F081689B32024C4405BF64ED /* Frameworks */, - B813104FB39355654AEE5E1E /* Resources */, + 55DD80E69F422DD4C622B77B /* Headers */, + 96349055B134C09EFCC26C32 /* Sources */, + C446E0776A800C79B6069B3A /* Frameworks */, ); buildRules = ( - 19CAC30D305C213455F0B913 /* PBXBuildRule */, + 0D054AEC1F4A7E0B48A26195 /* PBXBuildRule */, ); dependencies = ( - 30C046AADB977BE9C4A79B12 /* PBXTargetDependency */, - EBF87720282F082544399E99 /* PBXTargetDependency */, + E570FFFC1A885690A46C20BF /* PBXTargetDependency */, ); - name = "IceScope macOS"; - productName = IceScope; - productReference = BBBE5C0E398A59FC82DA5B22 /* IceScope.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"; }; - 6ABC458490AA5F904B381F7D /* IceScope iOS */ = { + 737F194EFAAE24FEE20C5FF6 /* IceSlicingExceptions iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = C55E74E3597122A4D2934E60 /* Build configuration list for PBXNativeTarget "IceScope iOS" */; + buildConfigurationList = E9970C605E8859BAAB002530 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */; buildPhases = ( - E3A8DEA90BC4DD24203B4A0D /* Sources */, - 19E0136E5E3D6011F179469E /* Frameworks */, - 5E434881B989C85F981DB80B /* Resources */, + BAED5288881D9007CA76557B /* Sources */, + CDDC0380D0A062DCEB6F87F7 /* Frameworks */, + 7CE86B1B003D237CB5820E37 /* Resources */, ); buildRules = ( - F826B3B3C2A53DB7BFB07EDD /* PBXBuildRule */, + 4482E372EED1C565C507D1FC /* PBXBuildRule */, ); dependencies = ( - 4A3ED2B405EC21507ADAF8AE /* PBXTargetDependency */, - 74564A42D52BBFA9E9715A73 /* PBXTargetDependency */, + 07C6F7B220C492E23B1C0018 /* PBXTargetDependency */, + 1E5528ACD23F1444C341E3B9 /* PBXTargetDependency */, ); - name = "IceScope iOS"; - productName = IceScope; - productReference = 8D10DFF57F34E081EBF41AFF /* IceScope.bundle */; + name = "IceSlicingExceptions iOS"; + productName = IceSlicingExceptions; + productReference = 6E87C9E4A4FD2945C3A68008 /* IceSlicingExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 6BA09F6BC0797F624A68E17E /* IceOperationsAMD macOS */ = { + 7C5D25F9DE7921A57B72E85F /* IceOptionalAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 25EC7192854BA2624581D9F0 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */; + buildConfigurationList = 9D893DF6CA15F319D4C37CFE /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */; buildPhases = ( - EBFA09B91AB7A2B6617AAF3E /* Sources */, - 68F4EF15A024D9AC4E1FC830 /* Frameworks */, - 6B0EE5F780354E816FF9CA31 /* Resources */, + DD7D82133E5ABDF91FA82F91 /* Sources */, + 7E2EB1E4DC8F28640470290A /* Frameworks */, + 25B07D3C764D35EFC9ED3D9C /* Resources */, ); buildRules = ( - 3C763D5640D0A71C8F9B65E4 /* PBXBuildRule */, + CF57F7A5BBC6CA2B030C30FE /* PBXBuildRule */, ); dependencies = ( ); - name = "IceOperationsAMD macOS"; - productName = IceOperationsAMD; - productReference = 5A1210D169DA5033BD26A6D9 /* IceOperationsAMD.bundle */; + name = "IceOptionalAMD macOS"; + productName = IceOptionalAMD; + productReference = 4E225F52C80B142297214C92 /* IceOptionalAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 713B71D014689185E9E05395 /* IceInvoke macOS */ = { + 7EB54A3072775CD2177DC7A7 /* IceExceptions iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = EE4E19AF95E379FC43413ABA /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */; + buildConfigurationList = FC9F6692633CE8F5DEDAF0AB /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */; buildPhases = ( - 67155914C03ABD8C613F680E /* Sources */, - 0C3751B66DB52BE417ACB866 /* Frameworks */, - 3433D0B696CC0B2E8895F651 /* Resources */, + 69743D90DF5C84F3D4D5CC5C /* Sources */, + 0C1567231CCF603369BE0A1A /* Frameworks */, + 2FDF2B1CF306F17449F96305 /* Resources */, ); buildRules = ( - 44DA8E8D55F55A34DC55CB39 /* PBXBuildRule */, + F3441C411E476AFB3E7F2708 /* PBXBuildRule */, ); dependencies = ( - 6951A5349AAC4517CC9BC0F1 /* PBXTargetDependency */, - 3DC15ECB7A44F56792CB7070 /* PBXTargetDependency */, + 69964E7848A218E1DEDFC2E0 /* PBXTargetDependency */, + 80415BFA23B5F71708C31594 /* PBXTargetDependency */, ); - name = "IceInvoke macOS"; - productName = IceInvoke; - productReference = B1EB3F3DCA4EBE0AC85EF8E1 /* IceInvoke.bundle */; + name = "IceExceptions iOS"; + productName = IceExceptions; + productReference = D30F73A7A6497E2340EAC041 /* IceExceptions.bundle */; productType = "com.apple.product-type.bundle"; }; - 770013F768356B5BE1BB460C /* IceGrid macOS */ = { + 7F56B76EDE89B9AC6AF088FF /* TestDriver iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 1C904D2FB673DBE16373FA83 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */; + buildConfigurationList = 69B629EDFCB8FBDE7E173C34 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */; buildPhases = ( - C7EF7F01A53C07C81C0B8A0B /* Headers */, - 97D68F07E18DC5E0A9FE3EDA /* Sources */, - 83BD0D83E2FC3631EC13D1C0 /* Frameworks */, - F8270687196C373CCB5EB10B /* Resources */, + A567673057B52D283B55DAEB /* Sources */, + A2C34056BCFA8E0038DD79A4 /* Frameworks */, + 0705EAB86A24010E8A8BB2E0 /* Resources */, + A1C4BAC4C5B1AD05F298379D /* Copy Frameworks */, + 78E695ABEF856CFDE7F09489 /* Copy Symbols */, ); buildRules = ( - AD50CCBC517A0207432FE63B /* PBXBuildRule */, + AA0194279C077D1EEAC56FDD /* PBXBuildRule */, ); dependencies = ( - 5E904894107853C99797608D /* PBXTargetDependency */, - E0BF637470C41B5A1EDD5D66 /* 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 = "IceGrid macOS"; - productName = IceGrid; - productReference = B17547CF25F9F6D499E59F4A /* IceGrid.framework */; - productType = "com.apple.product-type.framework"; + name = "TestDriver iOS"; + productName = TestDriver; + productReference = 84A4B98757E5D39A8CF508CD /* TestDriver.app */; + productType = "com.apple.product-type.application"; }; - 77D3FCCE81BDE4D86C21D2FC /* IceServantLocatorAMD iOS */ = { + 84AAA301C5D3AF97E6828B9A /* IceBinding macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B6686F53B6B2DB01F7D2D51E /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */; + buildConfigurationList = 7D856E3928914BABAE964FDB /* Build configuration list for PBXNativeTarget "IceBinding macOS" */; buildPhases = ( - 43E30871AEAE37E37C0FDC5B /* Sources */, - 41FA3FD769D91A0E8AE7454A /* Frameworks */, - 9CFFB6BBA7E1ACA6E6102CD1 /* Resources */, + 0507ED7DC9A273C797301292 /* Sources */, + 6756B0801AFD5646083EA47D /* Frameworks */, + DFC737F81493E7E2EC57A008 /* Resources */, ); buildRules = ( - EDB2A44EA2D0787FC0C7DA8D /* PBXBuildRule */, + 6133AC6D17A3CADA95DE2E9E /* PBXBuildRule */, ); dependencies = ( + 17D6FC07049104A3479EE431 /* PBXTargetDependency */, + 8E5E9DF78C4648D714DEA913 /* PBXTargetDependency */, ); - name = "IceServantLocatorAMD iOS"; - productName = IceServantLocatorAMD; - productReference = 1CA0FCE8D4431A2B65028231 /* IceServantLocatorAMD.bundle */; + name = "IceBinding macOS"; + productName = IceBinding; + productReference = ACB54D91532B125D146C8F52 /* IceBinding.bundle */; productType = "com.apple.product-type.bundle"; }; - 78DF05AE60584A8F9A7E374B /* IceInheritance iOS */ = { + 8C1035C93AB58A55E8EB9B9D /* IceFacets iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = FA1EA884977C3652AEBA8EBC /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */; + buildConfigurationList = A49FFB8AF3A3C860FD54F46E /* Build configuration list for PBXNativeTarget "IceFacets iOS" */; buildPhases = ( - 2FA2A3D57A394EFFD7D51C4E /* Sources */, - 40A269BD9826552BC032BC09 /* Frameworks */, - CE22FEB033CF164099C40427 /* Resources */, + 8BFD07AA3DE581D8525A1964 /* Sources */, + DDF270C3F565AB7125102577 /* Frameworks */, + 3E9E75D6C36A2F07BC6E7AE7 /* Resources */, ); buildRules = ( - 4F03E75BE283ADAFDDBB4294 /* PBXBuildRule */, + 9F18FE1BE5E937D9A29A0AFC /* PBXBuildRule */, ); dependencies = ( - 57FBAB8574FD4EF3C78F098A /* PBXTargetDependency */, - 340386BFD6092E294F96DDB2 /* PBXTargetDependency */, + 33A8D8114126AA8536176F9A /* PBXTargetDependency */, + 7F1CBFCEDFF7592299B8E767 /* PBXTargetDependency */, ); - name = "IceInheritance iOS"; - productName = IceInheritance; - productReference = 01FA7B3F816F4E1BBAC6D837 /* IceInheritance.bundle */; + name = "IceFacets iOS"; + productName = IceFacets; + productReference = 40A8549E2D87C0E0C7322954 /* IceFacets.bundle */; productType = "com.apple.product-type.bundle"; }; - 8919247F07DEFFC41FDA9486 /* IceServices iOS */ = { + 8D4D7F1ABB790FA722EC7917 /* IceOperationsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E670FBC18F8DB839607BC8E3 /* Build configuration list for PBXNativeTarget "IceServices iOS" */; + buildConfigurationList = A058B15145DAA4177378CA84 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */; buildPhases = ( - 43DEE7804C5BF7F6DEB80507 /* Sources */, - BE11D834A9A91386E9184019 /* Frameworks */, - B55BC10DC5342FDB5EE4E146 /* Resources */, + 1B076AF33AFF242A2B16A9C1 /* Sources */, + 8BA7996027CFD288252705D0 /* Frameworks */, + CDE3F0985B68C0FC552B3BC2 /* Resources */, ); buildRules = ( - 802C39AE39FD920A6263970C /* PBXBuildRule */, + CAB49F048B30B609375CB071 /* PBXBuildRule */, ); dependencies = ( - AECF227D9832582C2723CB16 /* PBXTargetDependency */, - BDDD5B9DCDD4094791EEB3BA /* PBXTargetDependency */, - A6B47FEC89AB78ED55334147 /* PBXTargetDependency */, - C81BC52B6E5E1B55AA526DCA /* PBXTargetDependency */, - 897EC357311088A4F5AA4A4A /* PBXTargetDependency */, ); - name = "IceServices iOS"; - productName = IceServices; - productReference = 1FF3BD3182DC2FD23143C3E5 /* IceServices.bundle */; + name = "IceOperationsAMD macOS"; + productName = IceOperationsAMD; + productReference = 3660CBA3E7714EF6A750EB80 /* IceOperationsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 8BCEB954ACECD9E143B3DD52 /* IceObjects macOS */ = { + 8E4EE2567B3C187D2F9C1173 /* IceDefaultValue iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A587A06D5F6E132F5A3B9C1F /* Build configuration list for PBXNativeTarget "IceObjects macOS" */; + buildConfigurationList = 2D0CF23009F00A73CEFE08EE /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */; buildPhases = ( - FDC9787080C924D81B9C2280 /* Sources */, - 701D5A05AC73B5E99EDDB98D /* Frameworks */, - 3986A30D8D7CFBCC0267135F /* Resources */, + 543F29EC36AD500F2D82AE88 /* Sources */, + 15F0EFA54A71375556FA69E5 /* Frameworks */, + 9A31D72BCAFB8223D5072024 /* Resources */, ); buildRules = ( - 10ED1FBB2458AE18FF84A3CF /* PBXBuildRule */, + 3BD71B5D8FE7BB861E7735DA /* PBXBuildRule */, ); dependencies = ( - 990292A15E55958A41738506 /* PBXTargetDependency */, - F33665458C5E4F7379E8A069 /* PBXTargetDependency */, + 28FCEC4C8FBAE8C9D638AE3A /* PBXTargetDependency */, + 5DAF9558BD888A9BA538C325 /* PBXTargetDependency */, ); - name = "IceObjects macOS"; - productName = IceObjects; - productReference = 116A9F625EC4AC51F7044FFA /* IceObjects.bundle */; + name = "IceDefaultValue iOS"; + productName = IceDefaultValue; + productReference = 8A39FB52971B8BCC7CD607F3 /* IceDefaultValue.bundle */; productType = "com.apple.product-type.bundle"; }; - 8F022C46667133AF20CDD4CC /* Ice macOS */ = { + 8F11329102906B0FE306EF9C /* IceFacets macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 3335761187FD8F6B86CBDFBE /* Build configuration list for PBXNativeTarget "Ice macOS" */; + buildConfigurationList = D0AA8018E3D1C21DC2A00EBC /* Build configuration list for PBXNativeTarget "IceFacets macOS" */; buildPhases = ( - 9A8A94E05D6A1E0A2426EC03 /* Headers */, - 099F0FBAAE02CE133E9AE1EE /* Sources */, - 7EDB7FDCBBAED3744E467F30 /* Frameworks */, - F74711427277109AE1B9ABA9 /* Resources */, + C69B92D8253CAABE1A233CD6 /* Sources */, + ABCA9F03D86E6110D1859173 /* Frameworks */, + EDFF44A5412FA135B91D14CA /* Resources */, ); buildRules = ( - 9272B0A660B5DE99729A198A /* PBXBuildRule */, + EA835B94D979E1CCBE4F9FE8 /* PBXBuildRule */, ); dependencies = ( - E158DEA7863B9E28F883AEC0 /* PBXTargetDependency */, + 67AC6E75E00A1CF41A8FACF7 /* PBXTargetDependency */, + D10918C649245B16EDE14174 /* PBXTargetDependency */, ); - name = "Ice macOS"; - productName = Ice; - productReference = 148E0EF0FB954A41B9CB2C83 /* Ice.framework */; - productType = "com.apple.product-type.framework"; + name = "IceFacets macOS"; + productName = IceFacets; + productReference = 75539742281DFE7E4DC5F602 /* IceFacets.bundle */; + productType = "com.apple.product-type.bundle"; }; - 92A668B7841CFDC57756D6E7 /* IceProxy macOS */ = { + 915EFEBB1B2962C505C96286 /* IceProxy macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D8007E39E45FCA7368E53B31 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */; + buildConfigurationList = 24D42F76DBAE051B1B76F4CE /* Build configuration list for PBXNativeTarget "IceProxy macOS" */; buildPhases = ( - C3172FA1F30C4892944AB13B /* Sources */, - 263422E847C3519A29D2E784 /* Frameworks */, - 49A066802994D933E5DCAE56 /* Resources */, + 99FEE7D269C10FAC6C445165 /* Sources */, + C34E0052B14CF37479E06DB4 /* Frameworks */, + 90133F3A21FECA0B03CCFEEB /* Resources */, ); buildRules = ( - AC509A4977B6A68B18398393 /* PBXBuildRule */, + A2A2429F3D4DAF10B23E4547 /* PBXBuildRule */, ); dependencies = ( - E7AE64DDACDAA212A2356ADA /* PBXTargetDependency */, - A7E74AE38024FCF81760BB7C /* PBXTargetDependency */, + 563C4F9E29E7516CE8B3250D /* PBXTargetDependency */, + 58136F1BADC3144165D815F6 /* PBXTargetDependency */, ); name = "IceProxy macOS"; productName = IceProxy; - productReference = F1C224C87B599183A478B5D2 /* IceProxy.bundle */; + productReference = 0E8CA41CAED77683EB6C5E74 /* IceProxy.bundle */; productType = "com.apple.product-type.bundle"; }; - 944D56850B5551840FD0118C /* TestDriver iOS */ = { + 983596DE8C0BFB636571955C /* IceSlicingObjectsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = B6AFDDBBEE1B3573134850DE /* Build configuration list for PBXNativeTarget "TestDriver iOS" */; + buildConfigurationList = 2D0A6566A0B9851960104854 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */; buildPhases = ( - 95A3D802A190A788C095FA55 /* Sources */, - 069414FE53A2F019B35C8575 /* Frameworks */, - BA52A0BA2C462A1C48C39FCE /* Resources */, - 7265DF301F6A8C870B07C87B /* Copy Frameworks */, - 7C24181BC1E542A189342A05 /* Copy Symbols */, + E5D35452D06C65272699DA6D /* Sources */, + 0F7A2524B0DFD0F27C624F7D /* Frameworks */, + B816B0D1F00E0B08AA31D24F /* Resources */, ); buildRules = ( - 834441FFE4C2351D450E1626 /* PBXBuildRule */, + 4C438A06989C337A19D68472 /* PBXBuildRule */, ); dependencies = ( - F338CFC8737E1990D95E88D7 /* PBXTargetDependency */, - 37013EDE8DFC3E9D2FD76CE4 /* PBXTargetDependency */, - E16FB8DFB5947B0E90BD3B28 /* PBXTargetDependency */, - E94DDB62ECF9533EA3F2112D /* PBXTargetDependency */, - 547F233ED8B9A05358310B09 /* PBXTargetDependency */, - 4F59EB9BA4DDB8492E6B49FA /* PBXTargetDependency */, - 295438B5CAFE9CE6A2060CE5 /* PBXTargetDependency */, - FF15AD1FAD609A46D7E75A0B /* PBXTargetDependency */, - 0FFDAC4A08652765099EA6F1 /* PBXTargetDependency */, - 720BF5D1D44C8F77A5585337 /* PBXTargetDependency */, - AB3E1EEE0E8905A364D54485 /* PBXTargetDependency */, - 65EC0246623D2174EBB69059 /* PBXTargetDependency */, - 1D9E349307B8AC6A78B16C9C /* PBXTargetDependency */, - 7C9E2B828CEC22051C74CEFD /* PBXTargetDependency */, - 503E702ADDC8FD6011CAD63D /* PBXTargetDependency */, - 7F5BC227C2BDD56F0A6C7308 /* PBXTargetDependency */, - 74A503EEED98844A79AB1833 /* PBXTargetDependency */, - B3507191F0D173F77DCDC320 /* PBXTargetDependency */, - 6EAF8977CBD757836D3C473C /* PBXTargetDependency */, - BA5E9FBA424E548C1DFFCFB3 /* PBXTargetDependency */, - 2768FAC75611D30E3DC16C0B /* PBXTargetDependency */, - 66BB78C5509FDEF0963665E6 /* PBXTargetDependency */, - E5CC56D0327A0347CD9AB753 /* PBXTargetDependency */, - D416128806C19231D0758179 /* PBXTargetDependency */, - 99328E43F83EDAA0A512AF99 /* PBXTargetDependency */, - 7E97DDF1A5A8DECE5F1A021B /* PBXTargetDependency */, - 8AAB5B505E0774A3ACC488F1 /* PBXTargetDependency */, - 5A27B9C89C9598CFB6BB153B /* PBXTargetDependency */, - 50B9C0D91F208AF8AD49BB9D /* PBXTargetDependency */, - CE5A7F4270E7F56C10EC6FCC /* PBXTargetDependency */, - 470B6D2077BC29AB1E28CEFA /* PBXTargetDependency */, - F8B2F444158A861CFEFE71FF /* PBXTargetDependency */, - 70CD224FB8E80C601FC7F1DB /* PBXTargetDependency */, - D035A62BF44ACC71CA42FCCA /* PBXTargetDependency */, - 6A7B12069DE9EF5071D8D206 /* PBXTargetDependency */, - DFAE8AAB920636E63569BEB4 /* PBXTargetDependency */, - 3B6087890EFE699EE58EBC82 /* PBXTargetDependency */, - 462EF77A0D83099CC171DD6B /* PBXTargetDependency */, - E9AC98A3B2B578F64DA7E752 /* PBXTargetDependency */, - FABB5A728EB763E133148B73 /* PBXTargetDependency */, - 5948E0E3CBA886404C166D46 /* PBXTargetDependency */, - 1B368E8F1EE4A7512FD3973F /* PBXTargetDependency */, - 1C9F3CFD7598AFBA884A0ABC /* PBXTargetDependency */, - 98FC60EF164A665E63B13F20 /* PBXTargetDependency */, ); - name = "TestDriver iOS"; - productName = TestDriver; - productReference = 1C3992E2FB7D669B8812B76F /* TestDriver.app */; - productType = "com.apple.product-type.application"; + name = "IceSlicingObjectsAMD iOS"; + productName = IceSlicingObjectsAMD; + productReference = 20323F0CD7B9AE4569FF4757 /* IceSlicingObjectsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - 969752F2E953B2ED36823477 /* IceExceptions macOS */ = { + 993C3F64323081AD7846C3D1 /* IceScope macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 80944B96D7BD14FEB4A109E5 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */; + buildConfigurationList = EDC6890C79963D7F1EC96376 /* Build configuration list for PBXNativeTarget "IceScope macOS" */; buildPhases = ( - 2B77FA804C9FC98848A3BF41 /* Sources */, - D8F2D365A25E223F62CAD35C /* Frameworks */, - 8E12D75F2033D7406140D0A9 /* Resources */, + D47795DE45B565BDB964B23A /* Sources */, + EB9BC4C9F2A7DE2A7357AC51 /* Frameworks */, + 79CC6A7CE74376C9DA437F49 /* Resources */, ); buildRules = ( - 6A03A3B0C7B45FD91C4332FB /* PBXBuildRule */, + 76F11CBA37048B7246B4A60D /* PBXBuildRule */, ); dependencies = ( - 43CE86862EBAEC29625C6B12 /* PBXTargetDependency */, - 8A9FD47E8658EE7705211187 /* PBXTargetDependency */, + 6869B13D9CCD41CC7B01357D /* PBXTargetDependency */, + 50A1A7D5CE091CCF362A1E0C /* PBXTargetDependency */, ); - name = "IceExceptions macOS"; - productName = IceExceptions; - productReference = 6F7C2EFAAD90AF05C836E8AD /* IceExceptions.bundle */; + name = "IceScope macOS"; + productName = IceScope; + productReference = 888B3167CD8A4968215F0A38 /* IceScope.bundle */; productType = "com.apple.product-type.bundle"; }; - 98CD3D7B6AB129005DDDED37 /* IceOptional macOS */ = { + 99D043CF9A0E172FCFC4C4B0 /* IceSlicingObjects iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2B547B22617DE6EA322A9DE6 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */; + buildConfigurationList = 1B21314EACDD9B26090F7A0D /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */; buildPhases = ( - CF1B1444062FE5D9E38586D4 /* Sources */, - 62133C0C24515EE7545AB9AE /* Frameworks */, - D8F05ECC12EFBE9DA321C8F1 /* Resources */, + A4DF6A87BDB936461A8E9EE1 /* Sources */, + DD1561F5393DB7AF211BE308 /* Frameworks */, + 601E2EE29059F2F14E59D49F /* Resources */, ); buildRules = ( - 1F899B47510EE1AF93E55F0B /* PBXBuildRule */, + ACD51CF6CDF44362F6898310 /* PBXBuildRule */, ); dependencies = ( - 9A48EDEDE82E2138C7527754 /* PBXTargetDependency */, - CAC9A3B84C1B39ABEFF74F88 /* PBXTargetDependency */, + 04205069B5145186C7C5AA9A /* PBXTargetDependency */, + 6914D31020D1CBDDF97969C7 /* PBXTargetDependency */, ); - name = "IceOptional macOS"; - productName = IceOptional; - productReference = 07E2F60461505D97899C6536 /* IceOptional.bundle */; + name = "IceSlicingObjects iOS"; + productName = IceSlicingObjects; + productReference = 86525836B17F14E966E687FC /* IceSlicingObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - 995512D73E07EFE9CD097A94 /* IceFacets macOS */ = { + 9A9DEB6418C9257648D6A235 /* IceAmi iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D85F93533003653E8BEEEDCF /* Build configuration list for PBXNativeTarget "IceFacets macOS" */; + buildConfigurationList = 0D38EB796BDA440B8E66B871 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */; buildPhases = ( - 5787B438D0CCA709CCE50737 /* Sources */, - 6F0DD81F4EBEBA7C063C23F2 /* Frameworks */, - DA28C813D4FEE16A3341D1D5 /* Resources */, + 467A92002F81EECEA33D76E6 /* Sources */, + 04BAD54A6C582D75141D296D /* Frameworks */, + A5050AFBE120514A0ADC9678 /* Resources */, ); buildRules = ( - 052542FF38B26A85BA0EA4CC /* PBXBuildRule */, + EAFC23B13D59F9E878453C48 /* PBXBuildRule */, ); dependencies = ( - 1064301F302334151EA6390F /* PBXTargetDependency */, - 832C8EF29E8BF213A71811E0 /* PBXTargetDependency */, + 416D7FD01A7671C500F22B8D /* PBXTargetDependency */, + 1807BFE7D066FFE825A19EBC /* PBXTargetDependency */, ); - name = "IceFacets macOS"; - productName = IceFacets; - productReference = 8188B41289F2C073375F3D48 /* IceFacets.bundle */; + name = "IceAmi iOS"; + productName = IceAmi; + productReference = 71C738B29B990967A0EC29C9 /* IceAmi.bundle */; productType = "com.apple.product-type.bundle"; }; - 9A5B406340D1F54AA6A93582 /* IceLocation iOS */ = { + 9B13B57D40995B5A58986BCF /* IceServantLocatorAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 381EE69BF39E2A31A9574035 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */; + buildConfigurationList = 71C26DB9FF59095377426D7F /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */; buildPhases = ( - 4234B37CA2D6F002BAB743DC /* Sources */, - 7DD5C3E0177ECE6F29D32A29 /* Frameworks */, - 8C2B8E281D3F8E435B69AA78 /* Resources */, + C289295116515405522CC64B /* Sources */, + B885FB6DA86044C3C3BD4492 /* Frameworks */, + 1F4534D9B186D114D80E1A4D /* Resources */, ); buildRules = ( - 33B7EDB3C15FBDFF0E972DB9 /* PBXBuildRule */, + 4AC3702FD99D567A5A0C68EE /* PBXBuildRule */, ); dependencies = ( - 2E7CD23A36D6ECD9DDB009F5 /* PBXTargetDependency */, - 17E9A9CB0540B86A5D180043 /* PBXTargetDependency */, ); - name = "IceLocation iOS"; - productName = IceLocation; - productReference = 87DF00D7836869F2204A3283 /* IceLocation.bundle */; + name = "IceServantLocatorAMD macOS"; + productName = IceServantLocatorAMD; + productReference = C1EB023D3B85638F4414F46A /* IceServantLocatorAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 9B91000B96831D134868EF00 /* IceInfo macOS */ = { + 9F3B1821E0C570BF87946D26 /* IceOperationsAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 544FCAA3BF572ECC5525C591 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */; + buildConfigurationList = 31B85D81BB3BFAAF230662F4 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */; buildPhases = ( - 726C32E70C36A5B300698C1D /* Sources */, - 1B6AD232686499FD379C8D3A /* Frameworks */, - 8E600080603AAAF1F0AFC3AB /* Resources */, + 2727D9A1FC12DB83161640C9 /* Sources */, + 985F505F3ED81C0489D5822C /* Frameworks */, + 738EE344E32D27DDD8864DCD /* Resources */, ); buildRules = ( - 3FF30051062A719E638A7675 /* PBXBuildRule */, + 8BE4F5636197AF4825C2478E /* PBXBuildRule */, ); dependencies = ( - 9534CD955FA043C654E89173 /* PBXTargetDependency */, - 2B173C14DE63B3886B29223D /* PBXTargetDependency */, ); - name = "IceInfo macOS"; - productName = IceInfo; - productReference = 0A0A432A404B1F07E7108C66 /* IceInfo.bundle */; + name = "IceOperationsAMD iOS"; + productName = IceOperationsAMD; + productReference = A98619140D09F4A271DA212C /* IceOperationsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - 9F8CD7854A90F92273855E8E /* IceExceptionsAMD macOS */ = { + 9F95E6A433F94E974D32566F /* IceTimeout macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 20FB15239DAE99F4DCE2B62A /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */; + buildConfigurationList = C2937583439E12DEE92C51F2 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */; buildPhases = ( - F883BDAC576982772FA180AA /* Sources */, - 8EE96C8FC60FF9E8EAF0ADF2 /* Frameworks */, - A2A0ED32DFDE174544AE0F08 /* Resources */, + 7374F772E8AC58CBC834E62C /* Sources */, + 3B55A16059E0DFBD64EAF00E /* Frameworks */, + CCF692C86BEC1C923DE75E53 /* Resources */, ); buildRules = ( - 0224EEAD62D710B0CCFD076E /* PBXBuildRule */, + 3582947254C6A89F45090F31 /* PBXBuildRule */, ); dependencies = ( + DFD93F8D96E58582C0022010 /* PBXTargetDependency */, + C1F394080804B49038462DC5 /* PBXTargetDependency */, ); - name = "IceExceptionsAMD macOS"; - productName = IceExceptionsAMD; - productReference = 60F7DD828BF511AA7D9F0CFF /* IceExceptionsAMD.bundle */; + name = "IceTimeout macOS"; + productName = IceTimeout; + productReference = 1362916B0814388BFB67F664 /* IceTimeout.bundle */; productType = "com.apple.product-type.bundle"; }; - A58A9C1B02FC1B2964645F6D /* IceAdmin iOS */ = { + A02AEC1FCAEDD308F0CBDCC6 /* IceStream macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5C6A38D5A003D8C2B10EB588 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */; + buildConfigurationList = AD6CB133F0EFD74046390926 /* Build configuration list for PBXNativeTarget "IceStream macOS" */; buildPhases = ( - F10295EA2BA3F6C2C198BBC5 /* Sources */, - E43D3258D7895A717CE8EBA2 /* Frameworks */, - EAC748CE3EAAEC301CA5CC8D /* Resources */, + DCB1F6BD4F9A4018C16A552A /* Sources */, + DFDF87A72488FB1BE6891D48 /* Frameworks */, + 5021DFECF7C5DA399355C0B8 /* Resources */, ); buildRules = ( - 9808011BF716973E5127722C /* PBXBuildRule */, + CB2D08021681EEEBFDD35666 /* PBXBuildRule */, ); dependencies = ( - 17352DE6341BC3926B870B09 /* PBXTargetDependency */, - C711DAE3B9BDBD24024146A2 /* PBXTargetDependency */, + 17E4AA84E0081A0160F7A22F /* PBXTargetDependency */, + 6904747B72BC3EF7E92C60A6 /* PBXTargetDependency */, ); - name = "IceAdmin iOS"; - productName = IceAdmin; - productReference = 3207B48B98719A7CBFD2337B /* IceAdmin.bundle */; + name = "IceStream macOS"; + productName = IceStream; + productReference = 3C8BAD4C851DA28C1DF9F17D /* IceStream.bundle */; productType = "com.apple.product-type.bundle"; }; - A69CCF574C4233A49E864528 /* IceDefaultValue iOS */ = { + A1FCF6486037B74ACCD22503 /* IceSlicingObjects macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = BF4C2C5F37875869E7BF37E8 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */; + buildConfigurationList = D33AE6C245142D0675324FCF /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */; buildPhases = ( - DF8A023C84839E51364A1063 /* Sources */, - 005B437BB6B9EA9D3B1560FC /* Frameworks */, - 6DFB1DD2E2E75F48323AECB3 /* Resources */, + A302466F7767DAB72EF81826 /* Sources */, + E1FCCD7331B1B2DE7B2A2C81 /* Frameworks */, + 1273645862F6D09B04F6218B /* Resources */, ); buildRules = ( - D6B5E483B79BB55615965858 /* PBXBuildRule */, + E57C7F4A3075D292175D22FD /* PBXBuildRule */, ); dependencies = ( - 3936611C36535AD3F4155E07 /* PBXTargetDependency */, - D7D4C3899E06FA984CF0ABA4 /* PBXTargetDependency */, + 1C8C8242D9958C85A81FB707 /* PBXTargetDependency */, + 561BA1C3CB952DA14DB79002 /* PBXTargetDependency */, ); - name = "IceDefaultValue iOS"; - productName = IceDefaultValue; - productReference = 817336550425E7439ECF507B /* IceDefaultValue.bundle */; + name = "IceSlicingObjects macOS"; + productName = IceSlicingObjects; + productReference = FA5ED0AF00325B25AA3D49E3 /* IceSlicingObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - A7EE978EE70DDA201B41538D /* IceServantLocator macOS */ = { + A250D484C77105742100E390 /* IceGrid macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 2D22126AE89A3BAA829CC1AC /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */; + buildConfigurationList = 4B428E0CA2D95FAE74B01562 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */; buildPhases = ( - 9A8DF622A084ABC6AD5CEB09 /* Sources */, - E64738021C8CBF0389A3135D /* Frameworks */, - 0BBDB32FE3327497A21BEFCB /* Resources */, + E0F69D5BB8272A88BCAA8B51 /* Headers */, + EEDCDE710185F3317D468277 /* Sources */, + 1B9E81991548528CE7E8BFBB /* Frameworks */, + 766457EA5472CC3DF57CBF9A /* Resources */, ); buildRules = ( - 7181270112EF55C7A473FB8F /* PBXBuildRule */, + 3AE97D276ED0B4BFE3E8DBCC /* PBXBuildRule */, ); dependencies = ( - BD6A42DE2ED05DF514BF4656 /* PBXTargetDependency */, - 0711AC59187DD9DC662E4FFD /* PBXTargetDependency */, + 16E0DC56003F27C197DA65D1 /* PBXTargetDependency */, + 86F52CD5342C5A5094EBBF81 /* PBXTargetDependency */, ); - name = "IceServantLocator macOS"; - productName = IceServantLocator; - productReference = 5D1D431EC03874A83605E840 /* IceServantLocator.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceGrid macOS"; + productName = IceGrid; + productReference = 4B4F81CBE09B9EC7215B359B /* IceGrid.framework */; + productType = "com.apple.product-type.framework"; }; - B015EA95DFADDD31E102004C /* Glacier2 iOS */ = { + A3B6CDB0CD7C0059D4D3CBF9 /* IceProperties iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 83AB53993A049DAAD70B1062 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */; + buildConfigurationList = 26A74315ED193312D199F3B9 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */; buildPhases = ( - C54A82F5226EAE308AF83FE2 /* Headers */, - 410CEAD6B34978C77E76A465 /* Sources */, - AEA7A4801ECB475EFAE6A085 /* Frameworks */, - EB2AC86FE9C03693BCBB0A77 /* Resources */, + 2B694C6F4219A83F6C856555 /* Sources */, + C18F8BCB0605A7BBC62E6F05 /* Frameworks */, + 3DBF72A660011E72DE28D7A2 /* Resources */, ); buildRules = ( - 554DC98EDF23F1B66C7CFB63 /* PBXBuildRule */, + A1844692DB4E384D1B0AA644 /* PBXBuildRule */, ); dependencies = ( - CC7AFDDAAB23EC8E363F1BE9 /* PBXTargetDependency */, + 1164E4382B9F2C4C300A9DAE /* PBXTargetDependency */, + 0356D9257481D2DAC1477D98 /* PBXTargetDependency */, ); - name = "Glacier2 iOS"; - productName = Glacier2; - productReference = 5E41A2284123652035B9626D /* Glacier2.framework */; - productType = "com.apple.product-type.framework"; + name = "IceProperties iOS"; + productName = IceProperties; + productReference = 6B7F99C1A7C43654FACDAA54 /* IceProperties.bundle */; + productType = "com.apple.product-type.bundle"; }; - B0416354B0422CE06305497C /* IceSlicingExceptions iOS */ = { + A4F94E6B42A58EEF0623EC8F /* IceInvoke macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0BFC94187CF7D53768ABBC15 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */; + buildConfigurationList = E038B4B9CC945838CD3D9B02 /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */; buildPhases = ( - 4F8EC0615E2ED8BE7DAB2324 /* Sources */, - B92875871868C537E6638BF6 /* Frameworks */, - 1276515E4788053FB3CB4AA9 /* Resources */, + 8B95A794840586734615E96F /* Sources */, + 65807EFDB81EB26FA0B0CEFF /* Frameworks */, + C5D9C8B89F7739DCB786002A /* Resources */, ); buildRules = ( - AD806B330650D3A3CF7F454F /* PBXBuildRule */, + 19382B6CA1842F4A00577156 /* PBXBuildRule */, ); dependencies = ( - B2588F8928BC033C40F3E59B /* PBXTargetDependency */, - F7A765493A04F5E1A473ED60 /* PBXTargetDependency */, + F328C6236A09249A8325AB66 /* PBXTargetDependency */, + EE4B4058636058A3B8BD22F7 /* PBXTargetDependency */, ); - name = "IceSlicingExceptions iOS"; - productName = IceSlicingExceptions; - productReference = 431D8C7B1791F56014305D03 /* IceSlicingExceptions.bundle */; + name = "IceInvoke macOS"; + productName = IceInvoke; + productReference = 87A3043D1B1B7D7DE0B165C3 /* IceInvoke.bundle */; productType = "com.apple.product-type.bundle"; }; - B0567014FA30FBBFC0E31969 /* IceAcm macOS */ = { + A83EF428E73401A533092DB4 /* TestCommon macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0EFAE24B5CC863CCCA4508F9 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */; + buildConfigurationList = 9199459F36DFC89B49984138 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */; buildPhases = ( - 78C53CA1FF99A4EBF97916C9 /* Sources */, - A503E9F74ED2137A844CBCA9 /* Frameworks */, - 7560289BE6D17B87AD0E0D64 /* Resources */, + 0634D9BC86B197EFCC8CDB0E /* Headers */, + 1BC366E59F8EFBEF11B33FD3 /* Sources */, + 3B3BC4302997971676561F02 /* Frameworks */, + 1A7AA67BDDBF17637BB03F25 /* Resources */, ); buildRules = ( - 935EACD88254C732BB9E9A95 /* PBXBuildRule */, + E116B57C40984DBBDF7AFE58 /* PBXBuildRule */, ); dependencies = ( - 8C15E82AC048B7F75BF62545 /* PBXTargetDependency */, - 0EF9EF4783171AF2103CFD5F /* PBXTargetDependency */, ); - name = "IceAcm macOS"; - productName = IceAcm; - productReference = 773839314982B481FB9A5F0B /* IceAcm.bundle */; - productType = "com.apple.product-type.bundle"; + name = "TestCommon macOS"; + productName = TestCommon; + productReference = 55A05D09BF5BBFB373F1E16A /* TestCommon.framework */; + productType = "com.apple.product-type.framework"; }; - B3DD3174FEA726C76B98C914 /* IceInheritance macOS */ = { + AA856D3D0EBE73A655B10DCE /* Ice iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D12D148799602A4AC7FF510F /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */; + buildConfigurationList = B3FA3031CFC7509713D02FB1 /* Build configuration list for PBXNativeTarget "Ice iOS" */; buildPhases = ( - CF7B1CD3457464E44032ADFC /* Sources */, - 5E97C010CB866337653CFB8F /* Frameworks */, - 42D72A9E34CF08D69581B63E /* Resources */, + C93A6BB4FCF0490E84147E61 /* Headers */, + 5E5AA18560C5DB3446283A99 /* Sources */, + 92A7548ABB7FCBD369C28797 /* Frameworks */, + CA40D90191CACFAE032E2F17 /* Resources */, ); buildRules = ( - 301928FC4CFCE81BF608587F /* PBXBuildRule */, + BA9BC30B41821E0E528C2119 /* PBXBuildRule */, ); dependencies = ( - 0298BDC1A4881843FD6359B6 /* PBXTargetDependency */, - D275F1DAA709D3AEF814C624 /* PBXTargetDependency */, + D421E76E09FD1F357EDF2FE8 /* PBXTargetDependency */, ); - name = "IceInheritance macOS"; - productName = IceInheritance; - productReference = C7DAB3F7C68697A828A55533 /* IceInheritance.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice iOS"; + productName = Ice; + productReference = 623E717A20F91E615D53E150 /* Ice.framework */; + productType = "com.apple.product-type.framework"; }; - B4169718E508CA7736735EF9 /* IceSSLConfiguration iOS */ = { + AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 141A424AF6A38313304014AE /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */; + buildConfigurationList = FFF95930E70A3FD5E4AA31B1 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */; buildPhases = ( - 147D6E84BB301C5013BD54DB /* Sources */, - C218E742F5D307158924EA76 /* Frameworks */, - AE94A17BBEFD40CDE875A414 /* Resources */, + 7F2B895A025ACE2CC4F5E2AF /* Headers */, + 134BF1E77CFC07C466D60C07 /* Sources */, + A590247DC8420FF253C22E0B /* Frameworks */, + D0DD61441324D88766B58467 /* Resources */, ); buildRules = ( - 7CD3E60D98B7646CE30C2CCC /* PBXBuildRule */, + 5A9F1424ADE0E67F377B0CE5 /* PBXBuildRule */, ); dependencies = ( - CF36AA42B1C161B8DBB5B733 /* PBXTargetDependency */, - F93AB82337F7ABBBCCB73CAC /* PBXTargetDependency */, + 49CBBCF4F2BE23E6AC12D730 /* PBXTargetDependency */, ); - name = "IceSSLConfiguration iOS"; - productName = IceSSLConfiguration; - productReference = 1CCF2A334B2BAF9588A6DB42 /* IceSSLConfiguration.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Glacier2 iOS"; + productName = Glacier2; + productReference = CC9E31096285763A44ED387C /* Glacier2.framework */; + productType = "com.apple.product-type.framework"; }; - B6B9D5B730E90977303A8BE3 /* IceAcm iOS */ = { + AEE1F674AD81A9327E42EDDB /* IceAdapterDeactivation iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 6CFA15E18CBCD5A1B9C078C2 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */; + buildConfigurationList = 1EAF04FCF683069900CD2CB5 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */; buildPhases = ( - 12F991893D8095920A799B31 /* Sources */, - 5269BCF68D782B17111EB24C /* Frameworks */, - 114B1963139920BD4C148D8B /* Resources */, + E39E496686784AA05C22CC97 /* Sources */, + 3CB9F8DEC2F44EF89307391D /* Frameworks */, + F387CA7EDE8E22EACC68078B /* Resources */, ); buildRules = ( - 5320F784202E4F95402C9409 /* PBXBuildRule */, + EC1280117082EEA012A8AAE1 /* PBXBuildRule */, ); dependencies = ( - 0BAF063A3E73FE1E9F85BBFF /* PBXTargetDependency */, - 3801411212C153DF30A2252F /* PBXTargetDependency */, + 862E19C471E8DE68F15CBF4F /* PBXTargetDependency */, + D5550FAD971FCDE391AA7C98 /* PBXTargetDependency */, ); - name = "IceAcm iOS"; - productName = IceAcm; - productReference = ECDDA9E457926810C0ACEE3D /* IceAcm.bundle */; + name = "IceAdapterDeactivation iOS"; + productName = IceAdapterDeactivation; + productReference = 947C60AB5690BEF1175C6AE8 /* IceAdapterDeactivation.bundle */; productType = "com.apple.product-type.bundle"; }; - B8B31D762B3677F746970AF6 /* IceProperties iOS */ = { + B564F6A99559D774EF563A3F /* IceObjects macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A73372CD2DFDD509AAC6B941 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */; + buildConfigurationList = 977E8284CE65D07066ADD555 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */; buildPhases = ( - A987F7B6BD8618AE688E4ADD /* Sources */, - 025B6189E378EB18C2A71A5A /* Frameworks */, - 590B5426E457DB2BF1D82A2B /* Resources */, + 62B729DBE9565951E835E6E9 /* Sources */, + C3E1F38BA06E190B7CC98682 /* Frameworks */, + 36BDF807C86FE8D1CACF20C3 /* Resources */, ); buildRules = ( - DC7FB0E409E0F373AA2DF410 /* PBXBuildRule */, + EEDEE9791746B5ED29E9944B /* PBXBuildRule */, ); dependencies = ( - 61444C015F295C95E1D0DC4E /* PBXTargetDependency */, - 4D9C9F1E7021B8459797BE64 /* PBXTargetDependency */, + 0596616D6761FCE4D0555E45 /* PBXTargetDependency */, + B13CE3F8761F18087CE22379 /* PBXTargetDependency */, ); - name = "IceProperties iOS"; - productName = IceProperties; - productReference = 301D621EB654AC9C3E4E4E28 /* IceProperties.bundle */; + name = "IceObjects macOS"; + productName = IceObjects; + productReference = 7E752D08EB62E167C213E390 /* IceObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - BCECD790F76F93F791126123 /* IceStream macOS */ = { + B7EFE020C9D77334FB6C5B4B /* IceOperations iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 225D7B3D02FECE8F0BFF6D90 /* Build configuration list for PBXNativeTarget "IceStream macOS" */; + buildConfigurationList = 3128757B52EE1F33A8DBE372 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */; buildPhases = ( - B2E76AB5325FD0B44497BBAA /* Sources */, - AC4437CFD49892537E7B3177 /* Frameworks */, - 45B349161EC08F674DA202F4 /* Resources */, + 5C4B39A79197C7F484055077 /* Sources */, + 4A2CB4D8C78C4B319C72D082 /* Frameworks */, + 9EAB34FC0DC358B87C0550B7 /* Resources */, ); buildRules = ( - 21640CB1591AF046394D5538 /* PBXBuildRule */, + 91C79FB678F9C90F6D94E28B /* PBXBuildRule */, ); dependencies = ( - BEF15874D70EED59180D035F /* PBXTargetDependency */, - 6377997689E7691F99CEDD82 /* PBXTargetDependency */, + DB3C03ACEE31AEC337853CCE /* PBXTargetDependency */, + C5DB2260BB147B158EB4CCFF /* PBXTargetDependency */, ); - name = "IceStream macOS"; - productName = IceStream; - productReference = 7C57A532F569AC857B5BAC2E /* IceStream.bundle */; + name = "IceOperations iOS"; + productName = IceOperations; + productReference = 07B98AB5E4D60D7A85886DB5 /* IceOperations.bundle */; productType = "com.apple.product-type.bundle"; }; - C01CDDFC69A3BAEE2DBC5560 /* IceProperties macOS */ = { + B8D5C1F592E31ABE249CC078 /* IceStorm macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 8FEE51B6A3BE6A237451E98D /* Build configuration list for PBXNativeTarget "IceProperties macOS" */; + buildConfigurationList = E44C1CBBD0B26C3481F76879 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */; buildPhases = ( - 6620174E22DD4D6CCD3282CB /* Sources */, - 2BDFA0906C8CC084EDE73074 /* Frameworks */, - 5BEE65549F36448CADA571FC /* Resources */, + 720A96257940D9A201712617 /* Headers */, + 8F27F193739466C647769865 /* Sources */, + D10C1C4751624F6A08A7F209 /* Frameworks */, + B43309445EDD3C07B4C72D41 /* Resources */, ); buildRules = ( - 83299791E357A7E4FD16A79F /* PBXBuildRule */, + D8E4DB9096E618C06F9C6623 /* PBXBuildRule */, ); dependencies = ( - AE85E35BBB4EE9007FC59B34 /* PBXTargetDependency */, - 58DA9CF4530A5339A0E89DBF /* PBXTargetDependency */, + 4F1EA7D3FA5C865629A2BBCE /* PBXTargetDependency */, ); - name = "IceProperties macOS"; - productName = IceProperties; - productReference = ED3424BFB9925A53577998FB /* IceProperties.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceStorm macOS"; + productName = IceStorm; + productReference = BBB10CD52BD86395BC343A0B /* IceStorm.framework */; + productType = "com.apple.product-type.framework"; }; - C4C1475F0319943EE6BF6CAB /* IceOptional iOS */ = { + BBA5FF013C8B19537743DE0C /* IceHold iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = D94673340A9825A2C0D0FF4A /* Build configuration list for PBXNativeTarget "IceOptional iOS" */; + buildConfigurationList = 577ED2287A5F0BBFA0232583 /* Build configuration list for PBXNativeTarget "IceHold iOS" */; buildPhases = ( - 403C5012F40381B9C8149B5E /* Sources */, - 037E516FE64DE570D02254C1 /* Frameworks */, - D629A98CFA4F05182534E1DC /* Resources */, + A50761946EE7786E8FF77E3E /* Sources */, + 551A33C4769D54FE2E0B181D /* Frameworks */, + 8ADDBAF102282F7A12388221 /* Resources */, ); buildRules = ( - DB182916D2274E5F2C244539 /* PBXBuildRule */, + 372D520C7C298EADCE492969 /* PBXBuildRule */, ); dependencies = ( - EE82C6ED95BC44037DA4412B /* PBXTargetDependency */, - 6081B6A17344A1480287164E /* PBXTargetDependency */, + 03E984B972C8157DA2D93308 /* PBXTargetDependency */, + B4D560EC692795C1AB1CEE1A /* PBXTargetDependency */, ); - name = "IceOptional iOS"; - productName = IceOptional; - productReference = 30561094206DE7E5EB3B1E5B /* IceOptional.bundle */; + name = "IceHold iOS"; + productName = IceHold; + productReference = F17CE2C8EAC28CBD9A0667B3 /* IceHold.bundle */; productType = "com.apple.product-type.bundle"; }; - C6AFD5D37CF11FE461D86DD8 /* IceStream iOS */ = { + BCD219D62CE917ADBC7AFD22 /* IceProxyAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = FAB7791B2C8C1018698D7909 /* Build configuration list for PBXNativeTarget "IceStream iOS" */; + buildConfigurationList = FBC432173B82346F63A1CD28 /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */; buildPhases = ( - FDA13795394CA6C06A6E63B4 /* Sources */, - 4684350444729A6A319E1284 /* Frameworks */, - 2DA56DF6BDC99A4A58F8730B /* Resources */, + A105E9C54B8CE1280D18B996 /* Sources */, + 2EE446DDB7698D9EFD7BD4D7 /* Frameworks */, + 32D1CA616E3B20B222CE7C95 /* Resources */, ); buildRules = ( - 4FC7968C899EC22E4BBC47F3 /* PBXBuildRule */, + 156C7100B7FBB44163EE0002 /* PBXBuildRule */, ); dependencies = ( - B9BB69BAC71C0FAA58686230 /* PBXTargetDependency */, - C7CAB4442CBF9EBCD7CDEEF0 /* PBXTargetDependency */, ); - name = "IceStream iOS"; - productName = IceStream; - productReference = 57B34B2AE4E0AB6BD04A92F0 /* IceStream.bundle */; + name = "IceProxyAMD iOS"; + productName = IceProxyAMD; + productReference = E64154AC1BD079614CFE6D0B /* IceProxyAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - C7C6F15DD53FB4E2316C8AA3 /* IceStorm macOS */ = { + BEBD5165FA221E0C61A12DD9 /* IceProxy iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5D60C6D4805FE0840A563B9A /* Build configuration list for PBXNativeTarget "IceStorm macOS" */; + buildConfigurationList = 32C4A6C4DF4E4784C694E4CA /* Build configuration list for PBXNativeTarget "IceProxy iOS" */; buildPhases = ( - 8112B61D6F5DD5F0C9A572AE /* Headers */, - 9ECC6D430B808A89B3854A6B /* Sources */, - C1543030B9BF65F895BC9163 /* Frameworks */, - 706B3E6E4672C762D99C7E93 /* Resources */, + 93EDD1C49BFCD3186F93E06C /* Sources */, + 9D141EDE4C7711B1D7969C8E /* Frameworks */, + DC95C2971E32D430B52E2A55 /* Resources */, ); buildRules = ( - 21338767AF02AA9557A7E132 /* PBXBuildRule */, + 14B388FC673F3EA219B586B4 /* PBXBuildRule */, ); dependencies = ( - 43FD2DE664E32B8F89030A19 /* PBXTargetDependency */, + 7C45704DFE9C89DE81C18E81 /* PBXTargetDependency */, + 04D3A8A4D370449E0F2961F4 /* PBXTargetDependency */, ); - name = "IceStorm macOS"; - productName = IceStorm; - productReference = DC6A10305F53DC63F7512C53 /* IceStorm.framework */; - productType = "com.apple.product-type.framework"; + name = "IceProxy iOS"; + productName = IceProxy; + productReference = 2D1DA1259D07ADB52B759AD3 /* IceProxy.bundle */; + productType = "com.apple.product-type.bundle"; }; - C80A8E405B320E680839566D /* IceSlicingObjects macOS */ = { + BFD01B6CA65F9516862D1FA1 /* IceEnums macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 73F016E3CC9A4846DC92237F /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */; + buildConfigurationList = F0D8FCBCA123963F12AA14B8 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */; buildPhases = ( - 716E3F78488DF0AFCCE91031 /* Sources */, - 76A4F6532798D1C82908625F /* Frameworks */, - 2C973EE85DC5B092A8B1DD27 /* Resources */, + 307985BBA47C398695E2B1F3 /* Sources */, + 8E8F345C6D0DCBC478E23DA6 /* Frameworks */, + 0B707B677822B7E66B2CE8F1 /* Resources */, ); buildRules = ( - 92AE0C908A6F43BE269DFAE5 /* PBXBuildRule */, + 28D5EA1A1AA306E86C6AD163 /* PBXBuildRule */, ); dependencies = ( - 4F2C2FCF937DF0F70D8A6B90 /* PBXTargetDependency */, - 176CDC7FE90E8C736046CF72 /* PBXTargetDependency */, + 11D741130322376C7172CC42 /* PBXTargetDependency */, + 8F43B4ABBB390EA0AA2806B1 /* PBXTargetDependency */, ); - name = "IceSlicingObjects macOS"; - productName = IceSlicingObjects; - productReference = D7B75346EB6CBAA407B78C44 /* IceSlicingObjects.bundle */; + name = "IceEnums macOS"; + productName = IceEnums; + productReference = EEAC0D6D20FA5E489B7D4EAB /* IceEnums.bundle */; productType = "com.apple.product-type.bundle"; }; - CA2ED7A56EF4FAC83454B118 /* IceOptionalAMD macOS */ = { + C07B8E267CA90FCDBE4E7E7D /* IceImpl macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A9F09C08CD7BD7CA33AF995F /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */; + buildConfigurationList = 0E2D5CC6DCF10732C7895AEA /* Build configuration list for PBXNativeTarget "IceImpl macOS" */; buildPhases = ( - 9BAD66AD0EC25C8BDC52C970 /* Sources */, - 846C353E64D36876248ED510 /* Frameworks */, - 7A3A489AA063910EAE6274B9 /* Resources */, + A9E1D1783813AA8D71AD2477 /* Headers */, + 226D9040A51EC7958E04A69B /* Sources */, + 4457BF715A1812CE4382BDB6 /* Frameworks */, + 964448A460E03F71B1466A29 /* Resources */, ); buildRules = ( - 75059FD2BD70071EDBB2FBC2 /* PBXBuildRule */, ); dependencies = ( + 5BFDD882BC29CD6E31A0A5E6 /* PBXTargetDependency */, + 2B778FCC7C694EED66868D10 /* PBXTargetDependency */, + E63570D6A030D4724784A119 /* PBXTargetDependency */, ); - name = "IceOptionalAMD macOS"; - productName = IceOptionalAMD; - productReference = 6B5589624E8C18A764174736 /* IceOptionalAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "IceImpl macOS"; + productName = IceImpl; + productReference = 75F40F1911A6EA4452908C71 /* IceImpl.framework */; + productType = "com.apple.product-type.framework"; }; - CA4363C4B69F792FD44B1A13 /* IceRetry macOS */ = { + C2F3B80C3A24BFA9444F31E1 /* IceInheritance iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0D88577E87719A0CF76623A9 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */; + buildConfigurationList = 6D13163FD66559C4FBD1F390 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */; buildPhases = ( - C5D06F06BDD0203C2A0D7EB4 /* Sources */, - C81DC1A228E7251EE49CD9A0 /* Frameworks */, - 27365D5810F8DDE13D530B59 /* Resources */, + 0125219F8494BC7CEBCBEAE8 /* Sources */, + 4392D0D4C892065A256DF985 /* Frameworks */, + D4671023F96ACB467D0F62CC /* Resources */, ); buildRules = ( - 4F3B138BAE515ABBE84D61DD /* PBXBuildRule */, + 67FE13D3766F926A7579EC1E /* PBXBuildRule */, ); dependencies = ( - B8C1043C2FCAE46F711B6D95 /* PBXTargetDependency */, - 1B4708EFE676B0617E942186 /* PBXTargetDependency */, + CF10BC561FC771931781C170 /* PBXTargetDependency */, + 26587AD449CCB3B5D3DD2D6E /* PBXTargetDependency */, ); - name = "IceRetry macOS"; - productName = IceRetry; - productReference = 1B7B8369877501337E9D5211 /* IceRetry.bundle */; + name = "IceInheritance iOS"; + productName = IceInheritance; + productReference = EBD23A978B397DAF53B55273 /* IceInheritance.bundle */; productType = "com.apple.product-type.bundle"; }; - CBED3CEC107C5D8FD12D1423 /* IceLocatorDiscovery C++11 iOS */ = { + C428EA0E3133ABA37187BE30 /* TestCommon iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0C54B13449B12B4038C3F423 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */; + buildConfigurationList = B8AEBDC5CCFFA9D36FF72CD0 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */; buildPhases = ( - B7B7E0BA3DB171A1A71274E2 /* Headers */, - 458D27F6B882241EBEF446F2 /* Sources */, - D145478BF7DA75E8E2B48784 /* Frameworks */, + DE199AD12D7B419440880D24 /* Headers */, + 426EF7186FC39709CF36993D /* Sources */, + 3E0103E2585D26982A6D31E7 /* Frameworks */, + 58103CB80C8A5C1A82DB6B60 /* Resources */, ); buildRules = ( - 724A1BB4823A83846068F51A /* PBXBuildRule */, + 8AC12DE0F5F2B1A24028F569 /* PBXBuildRule */, ); dependencies = ( - 8AC903386D3D6116DFDACF3F /* PBXTargetDependency */, ); - name = "IceLocatorDiscovery C++11 iOS"; - productName = "IceLocatorDiscovery C++11 iOS"; - productReference = C1AF990F79450A9C081DB784 /* libIceLocatorDiscovery C++11 iOS.a */; - productType = "com.apple.product-type.library.static"; + name = "TestCommon iOS"; + productName = TestCommon; + productReference = 0F2B0C61F19BF428E1751327 /* TestCommon.framework */; + productType = "com.apple.product-type.framework"; }; - D09FEEF78E85A083AFB9AA4D /* IceSlicingExceptionsAMD iOS */ = { + C4633684AA9C8E2D8E2A3BF1 /* IceSSLConfiguration macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 96C433DB6D4ADD824EF8C135 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */; + buildConfigurationList = D4827EC355C3F9035B72BF00 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */; buildPhases = ( - 48D6393E8A3A2A9A167F7EC8 /* Sources */, - C558CF5EF4E33983782AC27A /* Frameworks */, - 36F519EA97FFA50120B018AF /* Resources */, + F84517A4D3BABA53BB2AA94C /* Sources */, + 050FCA0466F0A2C79D1D677A /* Frameworks */, + 1C6E9B0B4E17D018705B9C25 /* Resources */, ); buildRules = ( - A94AAB48237DF0C9ACB91F58 /* PBXBuildRule */, + AA0A2796D4961F69F90B1644 /* PBXBuildRule */, ); dependencies = ( + 896C3ABA52835962B333F257 /* PBXTargetDependency */, + EEF2761A50D84951B3FC3D7D /* PBXTargetDependency */, ); - name = "IceSlicingExceptionsAMD iOS"; - productName = IceSlicingExceptionsAMD; - productReference = 46F06EE2B5CE1BD96013A0E1 /* IceSlicingExceptionsAMD.bundle */; + name = "IceSSLConfiguration macOS"; + productName = IceSSLConfiguration; + productReference = DDBB3E496664C584AD5364E5 /* IceSSLConfiguration.bundle */; productType = "com.apple.product-type.bundle"; }; - D2C1A9BA75231D8469946A3C /* IceHold macOS */ = { + C5982316F62D05CD651717E7 /* IceAdapterDeactivation macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 33815915876E472B4F87E193 /* Build configuration list for PBXNativeTarget "IceHold macOS" */; + buildConfigurationList = C3B296EDB3547BDC8388C399 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */; buildPhases = ( - D293DEB055122373A6D625CF /* Sources */, - 6382299CF1FDF5AD99DD38D2 /* Frameworks */, - 02D7F5FE1FFD036C78530447 /* Resources */, + 881EE104DE2C4C5FB6BA5122 /* Sources */, + 4D469B9E372D64EF06F90C6F /* Frameworks */, + AF6BB1F4B05AD6FF6C33B5C5 /* Resources */, ); buildRules = ( - CF919C583BCCE4B98D927A64 /* PBXBuildRule */, + 72F3BFD2399D7F2FB703D929 /* PBXBuildRule */, ); dependencies = ( - CA1C927F4E7E3DBC98AEB662 /* PBXTargetDependency */, - 2A12B9C7041B620AF29C39EC /* PBXTargetDependency */, + 445588A8E4930A760FD185E7 /* PBXTargetDependency */, + D5B23B291835F00B4DB24A36 /* PBXTargetDependency */, ); - name = "IceHold macOS"; - productName = IceHold; - productReference = 4D3E7C6DAF7A1136E094036E /* IceHold.bundle */; + name = "IceAdapterDeactivation macOS"; + productName = IceAdapterDeactivation; + productReference = C4D40FD4D514C6255DCF1E88 /* IceAdapterDeactivation.bundle */; productType = "com.apple.product-type.bundle"; }; - D3BDE8AC40C1810EB2A14067 /* IceOperations macOS */ = { + CC929AD29689B47CA62D417E /* IceUdp iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 5B649B5CD051BB6398F0AB73 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */; + buildConfigurationList = D87BFF32BBF64821815CA977 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */; buildPhases = ( - F55A84E3271B987BEDCD3FB2 /* Sources */, - 36AE2A39F37E56B4843D2E8E /* Frameworks */, - 75FEC1F90A035D213EF10F8B /* Resources */, + A4CF7E95480B760598F95AB6 /* Sources */, + 929112A7DA19D98ED0DA1FA1 /* Frameworks */, + 21037D8232C39B7652991EDF /* Resources */, ); buildRules = ( - 76CBBEA49BAC56302A0429EA /* PBXBuildRule */, + 206099BF9F8FCBCA2E0A413E /* PBXBuildRule */, ); dependencies = ( - 94E4BC494FADAB44F0A4A05E /* PBXTargetDependency */, - 5FEC7F91F2FB629D2923CCDD /* PBXTargetDependency */, + E213F74F6508F05644EA6583 /* PBXTargetDependency */, + 0356A3A245B9D197AE470682 /* PBXTargetDependency */, ); - name = "IceOperations macOS"; - productName = IceOperations; - productReference = 950F3E962351FD9CFB2B4F24 /* IceOperations.bundle */; + name = "IceUdp iOS"; + productName = IceUdp; + productReference = E2C01CEC70FAB4F5A70D2671 /* IceUdp.bundle */; productType = "com.apple.product-type.bundle"; }; - DEABBE98FF536A890AE33865 /* IceDefaultServant macOS */ = { + D07E492BEFB243158D25D09C /* IceSlicingExceptionsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 08C75263908EA0F1DB23F0E4 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */; + buildConfigurationList = F4A79ED2732065B4851C86EB /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */; buildPhases = ( - F9440AFC2469DF50591441D3 /* Sources */, - A0E77756D74837A7B15AD0E4 /* Frameworks */, - D95664360051FBC8166B9A35 /* Resources */, + 99D80B4C985E5A51ACEC861C /* Sources */, + 5377C93A323471D70E6CD0CB /* Frameworks */, + 379BC47417A4E9AF9CC58A67 /* Resources */, ); buildRules = ( - A078EA5628FFB84DF0B0746C /* PBXBuildRule */, + 86C0367EB7AE7C4848EE6207 /* PBXBuildRule */, ); dependencies = ( - 3A944994753FF0CAFC681A28 /* PBXTargetDependency */, - 04E4526F7B2AA2655197C56F /* PBXTargetDependency */, ); - name = "IceDefaultServant macOS"; - productName = IceDefaultServant; - productReference = CE428CC2328F83A0C7CF327B /* IceDefaultServant.bundle */; + name = "IceSlicingExceptionsAMD macOS"; + productName = IceSlicingExceptionsAMD; + productReference = D18F07031EC4C85F5159AFE9 /* IceSlicingExceptionsAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - E08F994D81F1404BD2BF4D5A /* IceRetry iOS */ = { + D2A90EB733FA2B780783AADF /* IceOptional macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 8438D59C3B885588B64C9832 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */; + buildConfigurationList = A0C903109661754A7310890E /* Build configuration list for PBXNativeTarget "IceOptional macOS" */; buildPhases = ( - 4E879BA1D09CBAB3A63157A7 /* Sources */, - C09156DD1A85FA6AF9DCF9B5 /* Frameworks */, - E43A6D66D5CCEEDB8B3B9D61 /* Resources */, + 71E06AEBA4B516B8D2B1F91E /* Sources */, + 2D4B8047B44D76BD331EB826 /* Frameworks */, + 1B7B83ADFA6C6D32F3080F6C /* Resources */, ); buildRules = ( - 7E2BBC5737A234E8D8303FA0 /* PBXBuildRule */, + 231EAF2E19204F70B23BF53F /* PBXBuildRule */, ); dependencies = ( - 356D04B529083865813959EB /* PBXTargetDependency */, - E86A2C6BD0F6E31B15F04CC2 /* PBXTargetDependency */, + 22954B34E0A47983E6B3DE9D /* PBXTargetDependency */, + 335A5AB7C7B7A487BA41F78C /* PBXTargetDependency */, ); - name = "IceRetry iOS"; - productName = IceRetry; - productReference = F9015DB7A4BC8F5780598C5B /* IceRetry.bundle */; + name = "IceOptional macOS"; + productName = IceOptional; + productReference = 69986A0036CFB94E71AFAEB2 /* IceOptional.bundle */; productType = "com.apple.product-type.bundle"; }; - E4350886F7ECE83389DE7799 /* IceServices macOS */ = { + D2E3C388100CC50AD3052CDB /* IceServantLocatorAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 85C13ACAB3711BD642FCE4C4 /* Build configuration list for PBXNativeTarget "IceServices macOS" */; + buildConfigurationList = 94387391F728B13F25DE50C7 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */; buildPhases = ( - 56957981C03B9A3FA02A091C /* Sources */, - D50E77E4CE80C269BD9776D0 /* Frameworks */, - 86504AE9DAB1FC3E293D8DC9 /* Resources */, + 25C3206F9603FF6938CF9B10 /* Sources */, + C834C22CAF0520D2749F4FD8 /* Frameworks */, + AAB490B131E294BD5A649C94 /* Resources */, ); buildRules = ( - 0427B4908F72AEECF55F409E /* PBXBuildRule */, + 1A67DD863C56824D6E2006C6 /* PBXBuildRule */, ); dependencies = ( - E404EE64F84E3BBD294238F5 /* PBXTargetDependency */, - DBC12F078658209CBDE27327 /* PBXTargetDependency */, - D0BB0CEAEC672F130A0776D1 /* PBXTargetDependency */, - FA56A7280BEC89FE70519B68 /* PBXTargetDependency */, - 97896DDCDED7480374941F2C /* PBXTargetDependency */, ); - name = "IceServices macOS"; - productName = IceServices; - productReference = 79CF8D4448CD8F1D2AB9367C /* IceServices.bundle */; + name = "IceServantLocatorAMD iOS"; + productName = IceServantLocatorAMD; + productReference = E65F59B3B48188E5E72C27D6 /* IceServantLocatorAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - E47E556F6FF734E970050937 /* IceImpl macOS */ = { + D6B732964F3D00D84F9428AC /* IceExceptionsAMD macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 602FD78BB42EED22AE69E70E /* Build configuration list for PBXNativeTarget "IceImpl macOS" */; + buildConfigurationList = F999CB9EA63099F760D8B7CC /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */; buildPhases = ( - CF9EE45AEAD159608001824B /* Headers */, - FBAB2BF624487B3AD91E9DD2 /* Sources */, - 797DA8AF647A2A9F25C35A1D /* Frameworks */, - E506EADD812DFFA8DB192F5A /* Resources */, + 7562FB5F2D5496507FB656CB /* Sources */, + 4A59713A78007D44BF693678 /* Frameworks */, + 999DDBCF1BA818840457744A /* Resources */, ); buildRules = ( + 9D78220D8786EA4469EE3E86 /* PBXBuildRule */, ); dependencies = ( - CDDBC496BCFD2351CD8295A9 /* PBXTargetDependency */, - 48F7FFB5A72CDB6B20901312 /* PBXTargetDependency */, - E4EEDB6E0DB6CE2C862838D3 /* PBXTargetDependency */, ); - name = "IceImpl macOS"; - productName = IceImpl; - productReference = DA48BF39278DC0F70FC216F1 /* IceImpl.framework */; - productType = "com.apple.product-type.framework"; + name = "IceExceptionsAMD macOS"; + productName = IceExceptionsAMD; + productReference = F0FBBD74A0A5794E1AF7F7CA /* IceExceptionsAMD.bundle */; + productType = "com.apple.product-type.bundle"; }; - E564301A82DF55065D5215D1 /* IceExceptions iOS */ = { + D9AE09FB3585B148EE15E9D9 /* IceEnums iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 40F601399935EA83044348DE /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */; + buildConfigurationList = AD814D241780CB1F06437AF5 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */; buildPhases = ( - 69FA2E241CE59E9C3369F708 /* Sources */, - DC327B0FA8203F2D96C5CA8B /* Frameworks */, - 359190C1A44CEEB07092971A /* Resources */, + 293303B279AB89FF6AF2D9CF /* Sources */, + 480014FEF9CE3E5FA6D7F184 /* Frameworks */, + BFA33ED339F68ED63E1D77F6 /* Resources */, ); buildRules = ( - 4358EAC2A49AE9F92DC76B93 /* PBXBuildRule */, + 463E0A8328D24FF7AB6A70CA /* PBXBuildRule */, ); dependencies = ( - 6A5F97B6B824293DA375BCCB /* PBXTargetDependency */, - 2EF0FF8E8B9198F8D0752DF2 /* PBXTargetDependency */, + 62E1383BBC82CAA4600921BB /* PBXTargetDependency */, + 223FA5C36D5387D3A92718C3 /* PBXTargetDependency */, ); - name = "IceExceptions iOS"; - productName = IceExceptions; - productReference = 461937D2DA4EABD1399760BD /* IceExceptions.bundle */; + name = "IceEnums iOS"; + productName = IceEnums; + productReference = 527D2F42A3A39B2F888A301D /* IceEnums.bundle */; productType = "com.apple.product-type.bundle"; }; - E73C245D51F93B4E9024CF4C /* IceProxyAMD iOS */ = { + DF67C7AEC35876C0CCF4A96A /* IceServices iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 72FFED9A8E87191EE3B81797 /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */; + buildConfigurationList = BD31B570526360322E7F63BA /* Build configuration list for PBXNativeTarget "IceServices iOS" */; buildPhases = ( - DAE89EA2584CA56DA4BF1DEB /* Sources */, - F9B9CA343281FDF313A50EC2 /* Frameworks */, - 2AD8A388D3FF423A744DB1C5 /* Resources */, + 8BC7C7488C636DAFE42DF7E3 /* Sources */, + 20BFB48425DC59B7EB1CF535 /* Frameworks */, + D279A9FD358C10D9C65B255D /* Resources */, ); buildRules = ( - CE6FEFB122A2A0EB2661FDC7 /* PBXBuildRule */, + 3E20CDB335D45B24AAB78033 /* PBXBuildRule */, ); dependencies = ( + E9417BFC8C112DCAB09A5D68 /* PBXTargetDependency */, + C1956C8C1A66B382C06C35BC /* PBXTargetDependency */, + D24A0353C199C7B7AF4BA774 /* PBXTargetDependency */, + B9D7BB9E7B4B9D112E9DF8EF /* PBXTargetDependency */, + 88CE47F5A6556E984A0C3314 /* PBXTargetDependency */, ); - name = "IceProxyAMD iOS"; - productName = IceProxyAMD; - productReference = F4BB047ECA2C8C6E40017B49 /* IceProxyAMD.bundle */; + name = "IceServices iOS"; + productName = IceServices; + productReference = 1D90F14637894A37678FC3C4 /* IceServices.bundle */; productType = "com.apple.product-type.bundle"; }; - E9620956250DB1FF4F31CD7B /* TestCommon iOS */ = { + E13AF536398A890833FFC655 /* IceRetry macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = E84BF87A0A0D54A334C069D6 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */; + buildConfigurationList = B8A4900C8A10B4D3B524509C /* Build configuration list for PBXNativeTarget "IceRetry macOS" */; buildPhases = ( - 64A87DA1EA9BD3C6ADAFF02E /* Headers */, - 08A61FD3D335E356FA2AA2B0 /* Sources */, - 96F5B639D380BFAE10B20DEF /* Frameworks */, - 4D8703274DC7EE6EA9CA8665 /* Resources */, + 0D0260BCC220C52C5CA4FC3C /* Sources */, + D92113C9FF7B0AEB581F1C83 /* Frameworks */, + 123F3984EE81810B5DFB8B6B /* Resources */, ); buildRules = ( - B63F444955244A1EB61883A0 /* PBXBuildRule */, + 7529A40C10A7F572FBAF0B05 /* PBXBuildRule */, ); dependencies = ( + 75C002C3683579061F37770D /* PBXTargetDependency */, + 902D152B990BFBDB128AAAA4 /* PBXTargetDependency */, ); - name = "TestCommon iOS"; - productName = TestCommon; - productReference = 0FE38FC76D319902C8A9D90F /* TestCommon.framework */; - productType = "com.apple.product-type.framework"; + name = "IceRetry macOS"; + productName = IceRetry; + productReference = 52278F0A9D3CC113108CA88D /* IceRetry.bundle */; + productType = "com.apple.product-type.bundle"; }; - EA20FD9B92B4F4A508F0738F /* IceSlicingObjectsAMD iOS */ = { + E1EEB80531F6CCE4CB628B62 /* IceAdmin macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 0EE3B8E1D1C40DE7FA588CCC /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */; + buildConfigurationList = FBDF261EE2A45A604FD39FB6 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */; buildPhases = ( - 5455C447F677F56B64083910 /* Sources */, - 935E6B5A7462CBBADD77F680 /* Frameworks */, - 4119F6418B223102240679F7 /* Resources */, + 6BE9D4FCC694CDB86D5089A3 /* Sources */, + 55224A4B1A2B2FF203837392 /* Frameworks */, + 3D6046CAF77BBD978CCC84FE /* Resources */, ); buildRules = ( - 4CD8EBACCF0E243B2EDF4C62 /* PBXBuildRule */, + BB1E4B9A1CE49FF6469A7951 /* PBXBuildRule */, ); dependencies = ( + 264BC338C6E40185DAA8E7BC /* PBXTargetDependency */, + 06E52F3B4022C2B95DA5DC76 /* PBXTargetDependency */, ); - name = "IceSlicingObjectsAMD iOS"; - productName = IceSlicingObjectsAMD; - productReference = A3BB783984531DDB15DA995D /* IceSlicingObjectsAMD.bundle */; + name = "IceAdmin macOS"; + productName = IceAdmin; + productReference = 90AB8161442DBB20C4926B3B /* IceAdmin.bundle */; productType = "com.apple.product-type.bundle"; }; - EB3EA3436E39E34BB754ECF1 /* IceProxy iOS */ = { + E47FCF3BB733DC4EC57A0924 /* IceObjects iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = A42CCFD6344CE2EDEC80786E /* Build configuration list for PBXNativeTarget "IceProxy iOS" */; + buildConfigurationList = 665075D2E65EC4768153CF0C /* Build configuration list for PBXNativeTarget "IceObjects iOS" */; buildPhases = ( - 2EE495321A946EC99D8A7418 /* Sources */, - D9A3F7D9D92764B98B3123A8 /* Frameworks */, - BEE1CE17FC667A7EF7CCC411 /* Resources */, + A258BBCE321A6745D6E518FC /* Sources */, + DB78C24C92B766330E59B250 /* Frameworks */, + 2B77A6BE5427B9661BEBA0DB /* Resources */, ); buildRules = ( - BDD457CECD546D41165CAA57 /* PBXBuildRule */, + 5A461C2302DD2A6FD65D6113 /* PBXBuildRule */, ); dependencies = ( - 576DFD365EE603CDE8CAA9C5 /* PBXTargetDependency */, - 5EDE335AB5C67153012820C4 /* PBXTargetDependency */, + 3A15991EDADCB55D910D42DD /* PBXTargetDependency */, + 6786C94697BA770CC188DC4B /* PBXTargetDependency */, ); - name = "IceProxy iOS"; - productName = IceProxy; - productReference = 9330809B9C47D804EF5BC5E3 /* IceProxy.bundle */; + name = "IceObjects iOS"; + productName = IceObjects; + productReference = 58E4626AB44A7F584A615366 /* IceObjects.bundle */; productType = "com.apple.product-type.bundle"; }; - F27C8BBF5E4DB22EF58AF515 /* IceServantLocator iOS */ = { + E6806D7DB7060BC3A0C7306D /* IceOptionalAMD iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 686CA0DB8041143E1F8D142C /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */; + buildConfigurationList = D30BE105828013751D1037C9 /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */; buildPhases = ( - C455DFC954703E8B86E8FB16 /* Sources */, - 7AC019BA153CC3CDA1B7BEA1 /* Frameworks */, - 232294D33C24AE8830649E67 /* Resources */, + 0E225CB8906616C9B17D9D57 /* Sources */, + D40ED5C22867DF7D772839B8 /* Frameworks */, + 73C018973232EDBE1FFD8B57 /* Resources */, ); buildRules = ( - 2B5499CC882C269A50E4E91D /* PBXBuildRule */, + 9A95BDC1D13A3FAB26ADE6D5 /* PBXBuildRule */, ); dependencies = ( - 2976AD49BDA685FF3D348498 /* PBXTargetDependency */, - 1E85260D9970B3DEA09E1D7F /* PBXTargetDependency */, ); - name = "IceServantLocator iOS"; - productName = IceServantLocator; - productReference = 055E1371140F03C46BE4933C /* IceServantLocator.bundle */; + name = "IceOptionalAMD iOS"; + productName = IceOptionalAMD; + productReference = CB65DF0EB3BC9182E42B33C6 /* IceOptionalAMD.bundle */; productType = "com.apple.product-type.bundle"; }; - F4DA824A9FD9930888BD262E /* IceBinding macOS */ = { + EE743BE7277805136A7EEB71 /* Ice macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 7D0F8BCAD5EDB101F823DEC0 /* Build configuration list for PBXNativeTarget "IceBinding macOS" */; + buildConfigurationList = 8F67E660542E98461C602595 /* Build configuration list for PBXNativeTarget "Ice macOS" */; buildPhases = ( - E43AE966BAECD1D3D4212564 /* Sources */, - 88958F34BE3FFCC4CEAE3537 /* Frameworks */, - 9E65A521E552E75E4B64D032 /* Resources */, + E31CDE4D2F98BABCFCBB0E54 /* Headers */, + 9977338E8BAF8946DEF65C37 /* Sources */, + 70B54BD6C23881584479D162 /* Frameworks */, + 672274C85643D82182351BF0 /* Resources */, ); buildRules = ( - F0977AA6EDB770E8A7BB5F5A /* PBXBuildRule */, + 699FC11E0421B9B10B6143D9 /* PBXBuildRule */, ); dependencies = ( - 023095BB736D389D21B94F2E /* PBXTargetDependency */, - 2367577BB797E283A1A7213B /* PBXTargetDependency */, + 8777B7EA77BA6F64CBF1F713 /* PBXTargetDependency */, ); - name = "IceBinding macOS"; - productName = IceBinding; - productReference = 021E511AD9C9C3E31BB6E815 /* IceBinding.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Ice macOS"; + productName = Ice; + productReference = 665569D1BB698FBBAD74786F /* Ice.framework */; + productType = "com.apple.product-type.framework"; }; - F5CD065672396E4209757A74 /* IceServantLocatorAMD macOS */ = { + F1949C2140DCFA5E835C5C17 /* IceBinding iOS */ = { isa = PBXNativeTarget; - buildConfigurationList = AFAD3A592F040172798F6AF8 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */; + buildConfigurationList = 464CD32F92DF139FF90EA325 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */; buildPhases = ( - ADC4D491A20D62BF0856C4E5 /* Sources */, - 272C3895D070D354391C8BA6 /* Frameworks */, - C3A332D5958ABDE3578F4A43 /* Resources */, + F694C843C50BFC05832FCA72 /* Sources */, + 7E89AA06F95141112E2308DF /* Frameworks */, + 5A89118BBC68C60FA703DA20 /* Resources */, ); buildRules = ( - 3B52119A5101E7960F4CF13E /* PBXBuildRule */, + C05A427B4D1DAA3BA1510A0B /* PBXBuildRule */, ); dependencies = ( + 7208F57935FA5E9E24A307E3 /* PBXTargetDependency */, + 2E73BB1C13AA4FC7B334F57C /* PBXTargetDependency */, ); - name = "IceServantLocatorAMD macOS"; - productName = IceServantLocatorAMD; - productReference = 6D8A172CCED325773F9ACA7A /* IceServantLocatorAMD.bundle */; + name = "IceBinding iOS"; + productName = IceBinding; + productReference = 00B1BC62D4009B18B3E6DE80 /* IceBinding.bundle */; productType = "com.apple.product-type.bundle"; }; - FA5053DC63D60556D4AF6086 /* IceTimeout iOS */ = { + F4A16370E4157DCD4CF7F964 /* SliceEscape macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 73CA9515792EA282705ECAD7 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */; + buildConfigurationList = 81D802AA8BD4316DF8274377 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */; buildPhases = ( - CF31E29D8FD14FD8A85C2403 /* Sources */, - C87B421850A37441282C7EFF /* Frameworks */, - 44D627EA87427B1B5B919769 /* Resources */, + 9E9D8101C63F168A2671038A /* Sources */, + 52A82FE47013310F296127FD /* Frameworks */, + DA4AA28AE68729EB5BA89C76 /* Resources */, ); buildRules = ( - F65E53D41F3774164A27A2E3 /* PBXBuildRule */, + 6F305A5284E48EE6CB083308 /* PBXBuildRule */, ); dependencies = ( - 6B9057CED3EE87007DBBEE61 /* PBXTargetDependency */, - 7131C3403A2D441863F7E186 /* PBXTargetDependency */, + 6BECC44222CAD7C68E324C3D /* PBXTargetDependency */, + 2A80FC7A1C0D10531E545B83 /* PBXTargetDependency */, ); - name = "IceTimeout iOS"; - productName = IceTimeout; - productReference = 23F70E58CAF1EDFC2272E758 /* IceTimeout.bundle */; + name = "SliceEscape macOS"; + productName = SliceEscape; + productReference = 2C1845D9001948A194C9BF3D /* SliceEscape.bundle */; productType = "com.apple.product-type.bundle"; }; - FB42232B69F121EBC030A837 /* IceOperationsAMD iOS */ = { + FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 688C1823288F9E68F1712F26 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */; + buildConfigurationList = E7B316026DBF1CE6D68F925C /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */; buildPhases = ( - 16DA4E195F691E4D5BCAC450 /* Sources */, - B086170187254B6C38BD9BBE /* Frameworks */, - 0E09902C4BFA9607C95EC23B /* Resources */, + 3940C02D995F91447AEF86D6 /* Headers */, + 43ACB16B5DFA52DBEEAFBADF /* Sources */, + F1E137735CAC0DC93E63C75D /* Frameworks */, + 91EF5AFB0ADDEAC41F4BB970 /* Resources */, ); buildRules = ( - 925E0DFA94B513AAC2D917C9 /* PBXBuildRule */, + 1E983DE40B938FAE71CA7E93 /* PBXBuildRule */, ); dependencies = ( + C6F0F1CC258CECBC17386D3E /* PBXTargetDependency */, ); - name = "IceOperationsAMD iOS"; - productName = IceOperationsAMD; - productReference = D9B018EB339EB9B238FEA4EC /* IceOperationsAMD.bundle */; - productType = "com.apple.product-type.bundle"; + name = "Glacier2 macOS"; + productName = Glacier2; + productReference = EC3920B0A3180CE9468B5D48 /* Glacier2.framework */; + productType = "com.apple.product-type.framework"; }; - FFD3EBD911A26B666F11DC8C /* IceInfo iOS */ = { + FC49A3F19B353AC4051631B4 /* IceInheritance macOS */ = { isa = PBXNativeTarget; - buildConfigurationList = 9353801B529260F737851CAA /* Build configuration list for PBXNativeTarget "IceInfo iOS" */; + buildConfigurationList = BE77650B59C4E2B377676E45 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */; buildPhases = ( - 3699FBB3C28FB2A9C874EF43 /* Sources */, - B23C11469E61ABD0EDC6FC34 /* Frameworks */, - 485F12572DB946951AF71C6E /* Resources */, + FE047DCC21E6B1343E3D70AE /* Sources */, + C3D709A49D80D17285D3FDD8 /* Frameworks */, + 27DDD91423E85D6376113FC2 /* Resources */, ); buildRules = ( - E8B2F1326E477454FC030D59 /* PBXBuildRule */, + 930A34F60C3CEB7E00D8AE72 /* PBXBuildRule */, ); dependencies = ( - A4D2BF679F3B95A6B937905B /* PBXTargetDependency */, - 1D95A803903FF16821114567 /* PBXTargetDependency */, + CE185284674CE65CDCEF95B1 /* PBXTargetDependency */, + 5E5F2CC3DC8DF57F3D866B54 /* PBXTargetDependency */, ); - name = "IceInfo iOS"; - productName = IceInfo; - productReference = 2B615C29B6876A457E770F75 /* IceInfo.bundle */; + name = "IceInheritance macOS"; + productName = IceInheritance; + productReference = 23205029365EA8B8CFAB923B /* IceInheritance.bundle */; productType = "com.apple.product-type.bundle"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 6C4BDC12B235E63B3B624E92 /* Project object */ = { + FD69C74E28D7406AE764029E /* Project object */ = { isa = PBXProject; attributes = { LastSwiftUpdateCheck = 1500; LastUpgradeCheck = 1500; TargetAttributes = { - 00F4F87A480D875F2C651B81 = { + 02BA85F98EB32966A7AA3C21 = { ProvisioningStyle = Automatic; }; - 01B75CEA3EB80A6E664242B0 = { + 04ABE78C2D82D8E0F3B6615C = { ProvisioningStyle = Automatic; }; - 055B3C0D85846EE14E87127C = { + 08C942FD89E4D9E7FA113627 = { ProvisioningStyle = Automatic; }; - 096C6B1CDEA03B0A33EF7AB7 = { + 0A757D8B307D80F7BD3C5017 = { ProvisioningStyle = Automatic; }; - 0BE885FE5E5BBE860323877D = { + 0EDA203583B355501DD47E73 = { ProvisioningStyle = Automatic; }; - 0CC992ABE92F26754D8B7AC6 = { + 10E56726E39C8E4E56D51BC4 = { ProvisioningStyle = Automatic; }; - 0CCC3C20156C399AF82BA12D = { + 140CB18515FA53ECB140F7CC = { ProvisioningStyle = Automatic; }; - 0D82476565F3AEA63555293E = { + 14535688C6E2E4A839C04451 = { ProvisioningStyle = Automatic; }; - 0DA6226AD5937A1F51BF8750 = { + 16C02D2C934DC57FE079663F = { ProvisioningStyle = Automatic; }; - 124476FE277A9E3ABE9F4A34 = { + 1767B82F1961C76D47FF467B = { ProvisioningStyle = Automatic; }; - 14E9DB904AE22B49F37C4175 = { + 199245355B4B5CD9FF6A6386 = { ProvisioningStyle = Automatic; }; - 15259193E3C55F25AB0F68C2 = { + 1F284CA948D007302C982357 = { ProvisioningStyle = Automatic; }; - 1564B348BA2786B8C14E7ADE = { + 1F99406342A96A78168E74BB = { ProvisioningStyle = Automatic; }; - 1E5D4D4FE7BB61EAB8ECA266 = { + 24A0E61D1931744BC729034A = { ProvisioningStyle = Automatic; }; - 21CBD45E7CE90BF8C75C80EB = { + 2646D8A7E773E3BDE5BE8E29 = { ProvisioningStyle = Automatic; }; - 24DFB14E537F560FB7A2C4BB = { + 26D8717EB0F318653FB9C763 = { ProvisioningStyle = Automatic; }; - 263F8736790034DA7D5B83D1 = { + 29279E4ADC71CC6522E7C012 = { ProvisioningStyle = Automatic; }; - 27BA347B00896E18F811823C = { + 2997C7A465709CD09CD4C4BB = { ProvisioningStyle = Automatic; }; - 27F3896A1D44D94EF855517D = { + 2A0224A2EFBB3E87655C351C = { ProvisioningStyle = Automatic; }; - 283F1EEEFDF95C8EA1294341 = { + 2AA26A44152A667D249E2998 = { ProvisioningStyle = Automatic; }; - 28A1C2F2EB8DCCF1AFE83661 = { + 2B82F333BA11DB5D8BECDBF6 = { ProvisioningStyle = Automatic; }; - 2B6CEDAE0FF7E5682835597A = { + 31D342F49CC37B0DFA959D8A = { ProvisioningStyle = Automatic; }; - 3639C4450BB9A2FD62EC83B1 = { + 34AC5913121CF6E0F793DEDD = { ProvisioningStyle = Automatic; }; - 3682D0A08A431497D8699B03 = { + 3889B46D2FBF6B61B7DA5A5A = { ProvisioningStyle = Automatic; }; - 37631E1832EC47AB18B6F9F8 = { + 3892B1FD3640020576B40CDA = { ProvisioningStyle = Automatic; }; - 39438194D11EA03199C6686E = { + 38C1EA904D5C3BCB045C88A2 = { ProvisioningStyle = Automatic; }; - 3E00BC6A9646D9FED455066C = { + 3AA88FF2CD4BC207F3E38A68 = { ProvisioningStyle = Automatic; }; - 3E1C18FAE5F2A3A2849292E9 = { + 3CB27B168E65D6B824278AE1 = { ProvisioningStyle = Automatic; }; - 3EA20E16FBEAA1C5B0DA52BA = { + 3E69BE60A2C26A59EEE938DC = { ProvisioningStyle = Automatic; }; - 429CEDF95141D2685FE9AB01 = { + 41AF2CA6936313B5E6F391BD = { ProvisioningStyle = Automatic; }; - 4685FAE2AEBE43E1EEA7F814 = { + 4434399DDA0D789BDAB8EDCF = { ProvisioningStyle = Automatic; }; - 46A2B970AAE6DC244C6522E3 = { + 45549440E1718C4D35E63237 = { ProvisioningStyle = Automatic; }; - 473D6356B099988C3C7E81A3 = { + 46452DCDFFD6A246079637CB = { ProvisioningStyle = Automatic; }; - 478A8F3068E5FF5F72F783EC = { + 49D15054211B9CC6B08CB18E = { ProvisioningStyle = Automatic; }; - 47EF87D7ED829723C501BBBC = { + 4CDAAF1A166952EC0C4E0BF1 = { ProvisioningStyle = Automatic; }; - 4BB02C0AE52711EB3F20C5D7 = { + 529314BF4173169E9CB2F36B = { ProvisioningStyle = Automatic; }; - 4D5800AC0A437A45FB0049AB = { + 57285D8128490A28FD5E1EA9 = { ProvisioningStyle = Automatic; }; - 4E2639095BC1D8AB5CABDD8E = { + 57D39C477D54466601C5A786 = { ProvisioningStyle = Automatic; }; - 5658AB3FB70284E862079845 = { + 5A26265E443FF04358AE528C = { ProvisioningStyle = Automatic; }; - 5722522ABF0B09D7099DBA1F = { + 5DA5602D00AE3159023AFB5D = { ProvisioningStyle = Automatic; }; - 5E8A324AC0641CA083A50D0F = { + 60F33D27C2F25EAA1C58217D = { ProvisioningStyle = Automatic; }; - 6272130C7E84066D9A3C1C41 = { + 615480D42FAF508D7F8AA5BC = { ProvisioningStyle = Automatic; }; - 665EE5441D076F90F4516A23 = { + 627EF9C25191013A38BA3C83 = { ProvisioningStyle = Automatic; }; - 68BE8ACEDDD7433FDD2E5099 = { + 696D6136245EB191F3A59E1A = { ProvisioningStyle = Automatic; }; - 6ABC458490AA5F904B381F7D = { + 737F194EFAAE24FEE20C5FF6 = { ProvisioningStyle = Automatic; }; - 6BA09F6BC0797F624A68E17E = { + 7C5D25F9DE7921A57B72E85F = { ProvisioningStyle = Automatic; }; - 713B71D014689185E9E05395 = { + 7EB54A3072775CD2177DC7A7 = { ProvisioningStyle = Automatic; }; - 770013F768356B5BE1BB460C = { + 7F56B76EDE89B9AC6AF088FF = { ProvisioningStyle = Automatic; }; - 77D3FCCE81BDE4D86C21D2FC = { + 84AAA301C5D3AF97E6828B9A = { ProvisioningStyle = Automatic; }; - 78DF05AE60584A8F9A7E374B = { + 8C1035C93AB58A55E8EB9B9D = { ProvisioningStyle = Automatic; }; - 8919247F07DEFFC41FDA9486 = { + 8D4D7F1ABB790FA722EC7917 = { ProvisioningStyle = Automatic; }; - 8BCEB954ACECD9E143B3DD52 = { + 8E4EE2567B3C187D2F9C1173 = { ProvisioningStyle = Automatic; }; - 8F022C46667133AF20CDD4CC = { + 8F11329102906B0FE306EF9C = { ProvisioningStyle = Automatic; }; - 92A668B7841CFDC57756D6E7 = { + 915EFEBB1B2962C505C96286 = { ProvisioningStyle = Automatic; }; - 944D56850B5551840FD0118C = { + 983596DE8C0BFB636571955C = { ProvisioningStyle = Automatic; }; - 969752F2E953B2ED36823477 = { + 993C3F64323081AD7846C3D1 = { ProvisioningStyle = Automatic; }; - 98CD3D7B6AB129005DDDED37 = { + 99D043CF9A0E172FCFC4C4B0 = { ProvisioningStyle = Automatic; }; - 995512D73E07EFE9CD097A94 = { + 9A9DEB6418C9257648D6A235 = { ProvisioningStyle = Automatic; }; - 9A5B406340D1F54AA6A93582 = { + 9B13B57D40995B5A58986BCF = { ProvisioningStyle = Automatic; }; - 9B91000B96831D134868EF00 = { + 9F3B1821E0C570BF87946D26 = { ProvisioningStyle = Automatic; }; - 9F8CD7854A90F92273855E8E = { + 9F95E6A433F94E974D32566F = { ProvisioningStyle = Automatic; }; - A58A9C1B02FC1B2964645F6D = { + A02AEC1FCAEDD308F0CBDCC6 = { ProvisioningStyle = Automatic; }; - A69CCF574C4233A49E864528 = { + A1FCF6486037B74ACCD22503 = { ProvisioningStyle = Automatic; }; - A7EE978EE70DDA201B41538D = { + A250D484C77105742100E390 = { ProvisioningStyle = Automatic; }; - B015EA95DFADDD31E102004C = { + A3B6CDB0CD7C0059D4D3CBF9 = { ProvisioningStyle = Automatic; }; - B0416354B0422CE06305497C = { + A4F94E6B42A58EEF0623EC8F = { ProvisioningStyle = Automatic; }; - B0567014FA30FBBFC0E31969 = { + A83EF428E73401A533092DB4 = { ProvisioningStyle = Automatic; }; - B3DD3174FEA726C76B98C914 = { + AA856D3D0EBE73A655B10DCE = { ProvisioningStyle = Automatic; }; - B4169718E508CA7736735EF9 = { + AC5B52B4AAA6CC13CA8A2DDB = { ProvisioningStyle = Automatic; }; - B6B9D5B730E90977303A8BE3 = { + AEE1F674AD81A9327E42EDDB = { ProvisioningStyle = Automatic; }; - B8B31D762B3677F746970AF6 = { + B564F6A99559D774EF563A3F = { ProvisioningStyle = Automatic; }; - BCECD790F76F93F791126123 = { + B7EFE020C9D77334FB6C5B4B = { ProvisioningStyle = Automatic; }; - C01CDDFC69A3BAEE2DBC5560 = { + B8D5C1F592E31ABE249CC078 = { ProvisioningStyle = Automatic; }; - C4C1475F0319943EE6BF6CAB = { + BBA5FF013C8B19537743DE0C = { ProvisioningStyle = Automatic; }; - C6AFD5D37CF11FE461D86DD8 = { + BCD219D62CE917ADBC7AFD22 = { ProvisioningStyle = Automatic; }; - C7C6F15DD53FB4E2316C8AA3 = { + BEBD5165FA221E0C61A12DD9 = { ProvisioningStyle = Automatic; }; - C80A8E405B320E680839566D = { + BFD01B6CA65F9516862D1FA1 = { ProvisioningStyle = Automatic; }; - CA2ED7A56EF4FAC83454B118 = { + C07B8E267CA90FCDBE4E7E7D = { ProvisioningStyle = Automatic; }; - CA4363C4B69F792FD44B1A13 = { + C2F3B80C3A24BFA9444F31E1 = { ProvisioningStyle = Automatic; }; - CBED3CEC107C5D8FD12D1423 = { + C428EA0E3133ABA37187BE30 = { ProvisioningStyle = Automatic; }; - D09FEEF78E85A083AFB9AA4D = { + C4633684AA9C8E2D8E2A3BF1 = { ProvisioningStyle = Automatic; }; - D2C1A9BA75231D8469946A3C = { + C5982316F62D05CD651717E7 = { ProvisioningStyle = Automatic; }; - D3BDE8AC40C1810EB2A14067 = { + CC929AD29689B47CA62D417E = { ProvisioningStyle = Automatic; }; - DEABBE98FF536A890AE33865 = { + D07E492BEFB243158D25D09C = { ProvisioningStyle = Automatic; }; - E08F994D81F1404BD2BF4D5A = { + D2A90EB733FA2B780783AADF = { ProvisioningStyle = Automatic; }; - E4350886F7ECE83389DE7799 = { + D2E3C388100CC50AD3052CDB = { ProvisioningStyle = Automatic; }; - E47E556F6FF734E970050937 = { + D6B732964F3D00D84F9428AC = { ProvisioningStyle = Automatic; }; - E564301A82DF55065D5215D1 = { + D9AE09FB3585B148EE15E9D9 = { ProvisioningStyle = Automatic; }; - E73C245D51F93B4E9024CF4C = { + DF67C7AEC35876C0CCF4A96A = { ProvisioningStyle = Automatic; }; - E9620956250DB1FF4F31CD7B = { + E13AF536398A890833FFC655 = { ProvisioningStyle = Automatic; }; - EA20FD9B92B4F4A508F0738F = { + E1EEB80531F6CCE4CB628B62 = { ProvisioningStyle = Automatic; }; - EB3EA3436E39E34BB754ECF1 = { + E47FCF3BB733DC4EC57A0924 = { ProvisioningStyle = Automatic; }; - F27C8BBF5E4DB22EF58AF515 = { + E6806D7DB7060BC3A0C7306D = { ProvisioningStyle = Automatic; }; - F4DA824A9FD9930888BD262E = { + EE743BE7277805136A7EEB71 = { ProvisioningStyle = Automatic; }; - F5CD065672396E4209757A74 = { + F1949C2140DCFA5E835C5C17 = { ProvisioningStyle = Automatic; }; - FA5053DC63D60556D4AF6086 = { + F4A16370E4157DCD4CF7F964 = { ProvisioningStyle = Automatic; }; - FB42232B69F121EBC030A837 = { + FBFB66FA3AA0C4BACD7CAEF1 = { ProvisioningStyle = Automatic; }; - FFD3EBD911A26B666F11DC8C = { + FC49A3F19B353AC4051631B4 = { ProvisioningStyle = Automatic; }; }; }; - buildConfigurationList = 2D55C68F1B8DFD8505B722F7 /* Build configuration list for PBXProject "ice" */; + buildConfigurationList = 614B9769E03331E188CB19E8 /* Build configuration list for PBXProject "ice" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = en; hasScannedForEncodings = 0; @@ -10403,755 +10403,755 @@ Base, en, ); - mainGroup = 1A534B7D482B3A831A6E40F7; - productRefGroup = 1A29BB8AD325B8F12D32FF03 /* Products */; + mainGroup = B0C3452D122A26EAB9C7E207; + productRefGroup = 760772C12F4740EB4CB773F3 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - B015EA95DFADDD31E102004C /* Glacier2 iOS */, - 27BA347B00896E18F811823C /* Glacier2 macOS */, - 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */, - 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */, - 47EF87D7ED829723C501BBBC /* Ice iOS */, - 8F022C46667133AF20CDD4CC /* Ice macOS */, - B6B9D5B730E90977303A8BE3 /* IceAcm iOS */, - B0567014FA30FBBFC0E31969 /* IceAcm macOS */, - 28A1C2F2EB8DCCF1AFE83661 /* IceAdapterDeactivation iOS */, - 3639C4450BB9A2FD62EC83B1 /* IceAdapterDeactivation macOS */, - A58A9C1B02FC1B2964645F6D /* IceAdmin iOS */, - 3E00BC6A9646D9FED455066C /* IceAdmin macOS */, - 4BB02C0AE52711EB3F20C5D7 /* IceAmi iOS */, - 0D82476565F3AEA63555293E /* IceAmi macOS */, - 4E2639095BC1D8AB5CABDD8E /* IceBinding iOS */, - F4DA824A9FD9930888BD262E /* IceBinding macOS */, - 4685FAE2AEBE43E1EEA7F814 /* IceDefaultServant iOS */, - DEABBE98FF536A890AE33865 /* IceDefaultServant macOS */, - A69CCF574C4233A49E864528 /* IceDefaultValue iOS */, - 5E8A324AC0641CA083A50D0F /* IceDefaultValue macOS */, - 263F8736790034DA7D5B83D1 /* IceDiscovery C++11 iOS */, - 665EE5441D076F90F4516A23 /* IceDiscovery C++11 macOS */, - 429CEDF95141D2685FE9AB01 /* IceEnums iOS */, - 14E9DB904AE22B49F37C4175 /* IceEnums macOS */, - E564301A82DF55065D5215D1 /* IceExceptions iOS */, - 969752F2E953B2ED36823477 /* IceExceptions macOS */, - 5658AB3FB70284E862079845 /* IceExceptionsAMD iOS */, - 9F8CD7854A90F92273855E8E /* IceExceptionsAMD macOS */, - 21CBD45E7CE90BF8C75C80EB /* IceFacets iOS */, - 995512D73E07EFE9CD097A94 /* IceFacets macOS */, - 3E1C18FAE5F2A3A2849292E9 /* IceGrid iOS */, - 770013F768356B5BE1BB460C /* IceGrid macOS */, - 283F1EEEFDF95C8EA1294341 /* IceHold iOS */, - D2C1A9BA75231D8469946A3C /* IceHold macOS */, - 15259193E3C55F25AB0F68C2 /* IceImpl iOS */, - E47E556F6FF734E970050937 /* IceImpl macOS */, - FFD3EBD911A26B666F11DC8C /* IceInfo iOS */, - 9B91000B96831D134868EF00 /* IceInfo macOS */, - 78DF05AE60584A8F9A7E374B /* IceInheritance iOS */, - B3DD3174FEA726C76B98C914 /* IceInheritance macOS */, - 0CCC3C20156C399AF82BA12D /* IceInterceptor iOS */, - 055B3C0D85846EE14E87127C /* IceInterceptor macOS */, - 6272130C7E84066D9A3C1C41 /* IceInvoke iOS */, - 713B71D014689185E9E05395 /* IceInvoke macOS */, - 9A5B406340D1F54AA6A93582 /* IceLocation iOS */, - 24DFB14E537F560FB7A2C4BB /* IceLocation macOS */, - CBED3CEC107C5D8FD12D1423 /* IceLocatorDiscovery C++11 iOS */, - 1564B348BA2786B8C14E7ADE /* IceLocatorDiscovery C++11 macOS */, - 124476FE277A9E3ABE9F4A34 /* IceObjects iOS */, - 8BCEB954ACECD9E143B3DD52 /* IceObjects macOS */, - 27F3896A1D44D94EF855517D /* IceOperations iOS */, - D3BDE8AC40C1810EB2A14067 /* IceOperations macOS */, - FB42232B69F121EBC030A837 /* IceOperationsAMD iOS */, - 6BA09F6BC0797F624A68E17E /* IceOperationsAMD macOS */, - C4C1475F0319943EE6BF6CAB /* IceOptional iOS */, - 98CD3D7B6AB129005DDDED37 /* IceOptional macOS */, - 37631E1832EC47AB18B6F9F8 /* IceOptionalAMD iOS */, - CA2ED7A56EF4FAC83454B118 /* IceOptionalAMD macOS */, - B8B31D762B3677F746970AF6 /* IceProperties iOS */, - C01CDDFC69A3BAEE2DBC5560 /* IceProperties macOS */, - EB3EA3436E39E34BB754ECF1 /* IceProxy iOS */, - 92A668B7841CFDC57756D6E7 /* IceProxy macOS */, - E73C245D51F93B4E9024CF4C /* IceProxyAMD iOS */, - 3EA20E16FBEAA1C5B0DA52BA /* IceProxyAMD macOS */, - E08F994D81F1404BD2BF4D5A /* IceRetry iOS */, - CA4363C4B69F792FD44B1A13 /* IceRetry macOS */, - 6ABC458490AA5F904B381F7D /* IceScope iOS */, - 68BE8ACEDDD7433FDD2E5099 /* IceScope macOS */, - F27C8BBF5E4DB22EF58AF515 /* IceServantLocator iOS */, - A7EE978EE70DDA201B41538D /* IceServantLocator macOS */, - 77D3FCCE81BDE4D86C21D2FC /* IceServantLocatorAMD iOS */, - F5CD065672396E4209757A74 /* IceServantLocatorAMD macOS */, - 8919247F07DEFFC41FDA9486 /* IceServices iOS */, - E4350886F7ECE83389DE7799 /* IceServices macOS */, - B0416354B0422CE06305497C /* IceSlicingExceptions iOS */, - 2B6CEDAE0FF7E5682835597A /* IceSlicingExceptions macOS */, - D09FEEF78E85A083AFB9AA4D /* IceSlicingExceptionsAMD iOS */, - 3682D0A08A431497D8699B03 /* IceSlicingExceptionsAMD macOS */, - 0CC992ABE92F26754D8B7AC6 /* IceSlicingObjects iOS */, - C80A8E405B320E680839566D /* IceSlicingObjects macOS */, - EA20FD9B92B4F4A508F0738F /* IceSlicingObjectsAMD iOS */, - 00F4F87A480D875F2C651B81 /* IceSlicingObjectsAMD macOS */, - B4169718E508CA7736735EF9 /* IceSSLConfiguration iOS */, - 478A8F3068E5FF5F72F783EC /* IceSSLConfiguration macOS */, - 5722522ABF0B09D7099DBA1F /* IceStorm iOS */, - C7C6F15DD53FB4E2316C8AA3 /* IceStorm macOS */, - C6AFD5D37CF11FE461D86DD8 /* IceStream iOS */, - BCECD790F76F93F791126123 /* IceStream macOS */, - FA5053DC63D60556D4AF6086 /* IceTimeout iOS */, - 01B75CEA3EB80A6E664242B0 /* IceTimeout macOS */, - 0BE885FE5E5BBE860323877D /* IceUdp iOS */, - 39438194D11EA03199C6686E /* IceUdp macOS */, - 4D5800AC0A437A45FB0049AB /* SliceEscape iOS */, - 096C6B1CDEA03B0A33EF7AB7 /* SliceEscape macOS */, - E9620956250DB1FF4F31CD7B /* TestCommon iOS */, - 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */, - 944D56850B5551840FD0118C /* TestDriver iOS */, - 473D6356B099988C3C7E81A3 /* 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 */ - 0020C26533E1133E77AD8D39 /* Resources */ = { + 00249416E2CBA5788010C2D1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 02D7F5FE1FFD036C78530447 /* Resources */ = { + 04386FC27D0D00B9F679688A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 0BBDB32FE3327497A21BEFCB /* Resources */ = { + 0705EAB86A24010E8A8BB2E0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 39C47C046EDA14901A1A61AB /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0E09902C4BFA9607C95EC23B /* Resources */ = { + 0B707B677822B7E66B2CE8F1 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 114B1963139920BD4C148D8B /* Resources */ = { + 0CCFF48ADFA73FF91C03C2AE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1276515E4788053FB3CB4AA9 /* Resources */ = { + 123F3984EE81810B5DFB8B6B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 17ACD2A45F6EE83A3AC34886 /* Resources */ = { + 1273645862F6D09B04F6218B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1820192F3579B5E37FCA2BF2 /* Resources */ = { + 14A18AC2A5DAEEEB9691D1E2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 2C997348E994142B458506A3 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1AB95AEDF5AD059291ED92D9 /* Resources */ = { + 15D54B7AE2BF490CE5C78C8D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 232294D33C24AE8830649E67 /* Resources */ = { + 176FF9306341735D2EE9CC58 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 24EFBFE3ADA2749FF488D044 /* Resources */ = { + 1A7AA67BDDBF17637BB03F25 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 27365D5810F8DDE13D530B59 /* Resources */ = { + 1B7B83ADFA6C6D32F3080F6C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2A1FD57D952DFFC16A6455EB /* Resources */ = { + 1C6E9B0B4E17D018705B9C25 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + 1AD393C6742923EE9FC92894 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2AD8A388D3FF423A744DB1C5 /* Resources */ = { + 1F4534D9B186D114D80E1A4D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2C3F7BF7A7697FF44A039618 /* Resources */ = { + 21037D8232C39B7652991EDF /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2C973EE85DC5B092A8B1DD27 /* Resources */ = { + 2536391E9CEBD069A43C9DCB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2DA56DF6BDC99A4A58F8730B /* Resources */ = { + 25B07D3C764D35EFC9ED3D9C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3433D0B696CC0B2E8895F651 /* Resources */ = { + 27DDD91423E85D6376113FC2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 359190C1A44CEEB07092971A /* Resources */ = { + 29CA8F0C27AFBB27B927F33D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 36F519EA97FFA50120B018AF /* Resources */ = { + 2ACCCA73A818191FE00F24F0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3986A30D8D7CFBCC0267135F /* Resources */ = { + 2B77A6BE5427B9661BEBA0DB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4119F6418B223102240679F7 /* Resources */ = { + 2FDF2B1CF306F17449F96305 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 42D72A9E34CF08D69581B63E /* Resources */ = { + 31C2FA05CB826509E9A74215 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 44D627EA87427B1B5B919769 /* Resources */ = { + 32D1CA616E3B20B222CE7C95 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 454CD0CE4DDB15AE6636A5C4 /* Resources */ = { + 33770904A4C0961541E60453 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 45B349161EC08F674DA202F4 /* Resources */ = { + 36BDF807C86FE8D1CACF20C3 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 485F12572DB946951AF71C6E /* Resources */ = { + 379BC47417A4E9AF9CC58A67 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 49A066802994D933E5DCAE56 /* Resources */ = { + 3D6046CAF77BBD978CCC84FE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4B9C6AC1E445FE40B49C9B4E /* Resources */ = { + 3DBF72A660011E72DE28D7A2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4D8703274DC7EE6EA9CA8665 /* Resources */ = { + 3E9E75D6C36A2F07BC6E7AE7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 590B5426E457DB2BF1D82A2B /* Resources */ = { + 44FAD6E0EDAB8E4A1AEE1BF4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5BEE65549F36448CADA571FC /* Resources */ = { + 46F2D21F2C7973E5E24B0A4F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5C9093264E356EF7506B0894 /* Resources */ = { + 5021DFECF7C5DA399355C0B8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 5E434881B989C85F981DB80B /* Resources */ = { + 58103CB80C8A5C1A82DB6B60 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 631021495D98633A80ADA247 /* Resources */ = { + 5A89118BBC68C60FA703DA20 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6B0EE5F780354E816FF9CA31 /* Resources */ = { + 5DF156CE3B2ABCC95441BD48 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6D8FCFF2028B41E88732E523 /* Resources */ = { + 601E2EE29059F2F14E59D49F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6DFB1DD2E2E75F48323AECB3 /* Resources */ = { + 645817E1D539571875E0D08C /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 706B3E6E4672C762D99C7E93 /* Resources */ = { + 672274C85643D82182351BF0 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7119E28106D2A577A8A3F0AC /* Resources */ = { + 69FCFDD29309F0532D39A5B8 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 74BA519151EBEAFDEDFF973D /* Resources */ = { + 738EE344E32D27DDD8864DCD /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7560289BE6D17B87AD0E0D64 /* Resources */ = { + 73C018973232EDBE1FFD8B57 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 75FEC1F90A035D213EF10F8B /* Resources */ = { + 766457EA5472CC3DF57CBF9A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7A3A489AA063910EAE6274B9 /* Resources */ = { + 79CC6A7CE74376C9DA437F49 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7FDADC7E2F4C408B7A8E7527 /* Resources */ = { + 7CE86B1B003D237CB5820E37 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 836B5D5EACD7F6885E026237 /* Resources */ = { + 82ACCDBDF2E388C1E5BB417F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 844D9BF33068806C77C78861 /* Resources */ = { + 89EF7AC17461C4496796E470 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 86504AE9DAB1FC3E293D8DC9 /* Resources */ = { + 8A0DF499987AFF2D115AEDB4 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8C2B8E281D3F8E435B69AA78 /* Resources */ = { + 8A838501F68B8A18D5BAAD6F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8E12D75F2033D7406140D0A9 /* Resources */ = { + 8ADDBAF102282F7A12388221 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8E5B7E695002A042F1EB7A38 /* Resources */ = { + 8FCBA1D78694AF810B4FB355 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 8E600080603AAAF1F0AFC3AB /* Resources */ = { + 90133F3A21FECA0B03CCFEEB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 99703AE171232EE3316B7FC0 /* Resources */ = { + 91EF5AFB0ADDEAC41F4BB970 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9A6FB97FD62ADA170CBB7639 /* Resources */ = { + 964448A460E03F71B1466A29 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9C0FEF68AF1EAB85246ADEB9 /* Resources */ = { + 9805238AC059C1F2FF2B8E40 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9C8F862DFA162032660D5E3E /* Resources */ = { + 9949AEEBED679581FE7A8844 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9CFFB6BBA7E1ACA6E6102CD1 /* Resources */ = { + 999DDBCF1BA818840457744A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9E65A521E552E75E4B64D032 /* Resources */ = { + 99D63790BA8EFD5298169ADE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A0B128E85A3D225FE746C5E3 /* Resources */ = { + 9A06AC974913591F40021183 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A2A0ED32DFDE174544AE0F08 /* Resources */ = { + 9A31D72BCAFB8223D5072024 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AA4E9C8790445E9D35057FCB /* Resources */ = { + 9EAB34FC0DC358B87C0550B7 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - ABF8DE0E10BDE6A847E963E0 /* Resources */ = { + A0BE3341720002992247AA22 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - CDBB2803A82BE78292309065 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - AE94A17BBEFD40CDE875A414 /* Resources */ = { + A27900851590FFDE252185AB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7662016A7206E6C48AD1902A /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - B253E03A991CCAF40EFAD3A7 /* Resources */ = { + A5050AFBE120514A0ADC9678 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B28CF688D5975D799535462C /* Resources */ = { + A8D0D05355E911E75BA0CA65 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B55BC10DC5342FDB5EE4E146 /* Resources */ = { + AAB490B131E294BD5A649C94 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B813104FB39355654AEE5E1E /* Resources */ = { + AF6BB1F4B05AD6FF6C33B5C5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B88F882DB9BDF3B49E110495 /* Resources */ = { + B43309445EDD3C07B4C72D41 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BA52A0BA2C462A1C48C39FCE /* Resources */ = { + B6E4731B1043F209970479EE /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2B7BFA0E1A18A214B0817F80 /* certs in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BD8BF327C847FC440776338D /* Resources */ = { + B816B0D1F00E0B08AA31D24F /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - BEE1CE17FC667A7EF7CCC411 /* Resources */ = { + B9EEF1A7005854C201330A1B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C3A332D5958ABDE3578F4A43 /* Resources */ = { + BFA33ED339F68ED63E1D77F6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C50094EE4DBBAC8B73D539E6 /* Resources */ = { + C20BB80DF8D3029A668ABDCD /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C9DAB62BBE190CFBF7170A49 /* Resources */ = { + C5D9C8B89F7739DCB786002A /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CA1C99B3F8D4D7D793ECAB4A /* Resources */ = { + CA40D90191CACFAE032E2F17 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CE22FEB033CF164099C40427 /* Resources */ = { + CAF6D72C893C7F92B6DAAA18 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - CEDC6C4F7DFD4D758CF665C1 /* Resources */ = { + CCF692C86BEC1C923DE75E53 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D629A98CFA4F05182534E1DC /* Resources */ = { + CDE3F0985B68C0FC552B3BC2 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D6B18307D907DD86202D5525 /* Resources */ = { + CFB4DD62C76CB41C892AE89E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D8F05ECC12EFBE9DA321C8F1 /* Resources */ = { + D0DD61441324D88766B58467 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - D95664360051FBC8166B9A35 /* Resources */ = { + D279A9FD358C10D9C65B255D /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DA28C813D4FEE16A3341D1D5 /* Resources */ = { + D4360D6AABCA3914BB60B25E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E3A6C2D8C30337B97B11938F /* Resources */ = { + D4671023F96ACB467D0F62CC /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E43A6D66D5CCEEDB8B3B9D61 /* Resources */ = { + DA4AA28AE68729EB5BA89C76 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E506EADD812DFFA8DB192F5A /* Resources */ = { + DC95C2971E32D430B52E2A55 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E9F5F0922E44A83E54A7CE7E /* Resources */ = { + DFC737F81493E7E2EC57A008 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EAC748CE3EAAEC301CA5CC8D /* Resources */ = { + E1C49984FA480B9BCF65FA6B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - EB2AC86FE9C03693BCBB0A77 /* Resources */ = { + E8EDBAF10EC32B268285C51B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F23D88C9D1CF00A3A504428F /* Resources */ = { + EDFF44A5412FA135B91D14CA /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F74711427277109AE1B9ABA9 /* Resources */ = { + F159F9E36E629E9BDB80C93E /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F8270687196C373CCB5EB10B /* Resources */ = { + F387CA7EDE8E22EACC68078B /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FF3A8C84C00FA22BAF711434 /* Resources */ = { + F976B27FF94759CC796E9973 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -11161,3102 +11161,3099 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ - 017A05C9E5492039D3D8D7A3 /* Sources */ = { + 0125219F8494BC7CEBCBEAE8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ADD0712DE7B899A47722FC2C /* IceLocatorDiscovery.ice in Sources */, - 0CA5D61E117CEC8D73FE01C8 /* PluginI.cpp 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; }; - 02EDF6CA2C4F558C22BB1EE9 /* Sources */ = { + 0507ED7DC9A273C797301292 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ED6DD03F123C10F752D7CBBE /* ServerAMD.swift in Sources */, - 28879CEA796F54C475B2D579 /* ServerPrivateAMD.ice in Sources */, - 3DB99BBABAB7C0D17101B41D /* TestAMD.ice in Sources */, - 3A8010932AB49B8EA7B1F903 /* TestAMDI.swift 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; }; - 053867D376E8154EDC7988A4 /* Sources */ = { + 0D0260BCC220C52C5CA4FC3C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3558C96DFC3290A6100F2D27 /* AllTests.swift in Sources */, - C95D74E612CD44A8E5E74803 /* Client.swift in Sources */, - F09310D12E519AE60924BCD6 /* Collocated.swift in Sources */, - CF8B005366FF8F61870A8AE2 /* Server.swift in Sources */, - 42D6CDCD1F1AA39A8710A58B /* Test.ice in Sources */, - F5519272B5FF97DA83D66E80 /* TestI.swift 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; }; - 08A61FD3D335E356FA2AA2B0 /* Sources */ = { + 0E225CB8906616C9B17D9D57 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 816C8986F21DE2D43797087B /* TestCommon.swift in Sources */, + 48FA4EFF3774FD3F02C75194 /* ServerAMD.swift in Sources */, + 9E1AF2B945E75AB67F27DB2C /* TestAMD.ice in Sources */, + 5E675CD077AFC9339DCE10B6 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 099F0FBAAE02CE133E9AE1EE /* Sources */ = { + 0FD557A1D14D0A865ED5A5FD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A9EC0A71C71B5FF5AFED4B18 /* AdminFacetFactory.swift in Sources */, - CB6F1597E1BFF0463D10D0FC /* Blobject.swift in Sources */, - 3E508B3BB54CE3FF221930E0 /* BlobjectAsync.swift in Sources */, - 43B0E1298CB264DF6C7C335B /* BuiltinSequences.ice in Sources */, - E909DDEDE3DF9BAE2ED525AB /* ClassResolver.swift in Sources */, - FC155853488B9A0F41E99EFD /* Communicator.swift in Sources */, - 6C041107E8811070F5C673CE /* CommunicatorI.swift in Sources */, - 100D9B6351AB634A84E6EA30 /* Connection.swift in Sources */, - 0D1B0BF9795FBB8AED2DDD52 /* ConnectionI.swift in Sources */, - 313B877D5F4FC1DC8134BD1A /* ConnectionInfoFactory.swift in Sources */, - 939F48B7A82E60A6459321C9 /* Context.ice in Sources */, - 59AE3A025BB7D51366750BCB /* Current.swift in Sources */, - 99B11670C9E0DC749C9D53CC /* Endpoint.swift in Sources */, - 1C78CE07064B9E14D410DC54 /* EndpointI.swift in Sources */, - 9AF9489B8926192A481AF670 /* EndpointInfoFactory.swift in Sources */, - A452507B04A887F15CE4634D /* EndpointSelectionType.swift in Sources */, - 8120E196F15D7A9C3000355B /* EndpointTypes.ice in Sources */, - 559004F4BE7AEA5CD275952D /* Exception.swift in Sources */, - 76FBEAF279F6E0EF69F6FE4A /* FacetMap.swift in Sources */, - 6B38C77E3992B139034FB720 /* FormatType.swift in Sources */, - 015BE93C41A3CAC4E6ECA5B0 /* IAPConnectionInfo.swift in Sources */, - 9F778C7AB6B7878B7B6EE569 /* IAPEndpointInfo.swift in Sources */, - 4C2F700A5CEEF1722CC20508 /* Identity.ice in Sources */, - E3455A6C3076D0EA2F0D4B3C /* ImplicitContext.swift in Sources */, - 963D72FDB59EDAE42A1C2867 /* ImplicitContextI.swift in Sources */, - B2943A4C4F3190D879BA87F0 /* Incoming.swift in Sources */, - 2A173AEEE9215CF18C978D36 /* InitializationData.swift in Sources */, - A8084181C6D306D4C49EEF59 /* Initialize.swift in Sources */, - 16B9F0142D068E51EF591590 /* InputStream.swift in Sources */, - DF2C78175D84FDBC8C8315A2 /* Instrumentation.swift in Sources */, - 07B014AD0F72BC7A197F8071 /* LocalException.swift in Sources */, - A30D8022B3F949FDB45AB264 /* LocalExceptionDescription.swift in Sources */, - 95C11CADB4A3F39ACF11B8D6 /* LocalExceptionFactory.swift in Sources */, - A5E9EA2FF2470B46153CDA6A /* LocalObject.swift in Sources */, - 08DE17DEFDD40B51CECB7C6F /* Locator.ice in Sources */, - 5ACCF59D35ABE8D74765D44B /* LocatorF.ice in Sources */, - D25FA1D4555B90AA8EA2CA6A /* Logger.swift in Sources */, - 3B1E75699E8BF0FAA71699A1 /* LoggerWrapper.swift in Sources */, - EB7415FC08516D8085425448 /* Metrics.ice in Sources */, - 52A5E961C78A39186663169A /* Mutex.swift in Sources */, - D5EE45A18057938D31DF3CA9 /* NativePropertiesAdmin.swift in Sources */, - 4FFC82EC0B0C3618EF922C5C /* Object.swift in Sources */, - 4A0A85433AA1844F74CE92F7 /* ObjectAdapter.swift in Sources */, - EE6E78F71645C9163AAC6720 /* ObjectAdapterI.swift in Sources */, - 5B26531E8A3FF54A690616A8 /* OperationMode.ice in Sources */, - 8DACC60172ED92FEE1413F8E /* OptionalFormat.swift in Sources */, - 6957E6514741A42CFB3FD843 /* OutputStream.swift in Sources */, - C5F9F939CDCFF19348CEED27 /* Plugin.swift in Sources */, - A4E1145B88CE86D88F59F501 /* Process.ice in Sources */, - 878083D5BDE5054FE67157E5 /* ProcessI.swift in Sources */, - D9C3898B35154D67070B59B6 /* Properties.swift in Sources */, - 57E7D2C86D9A05EBAC1AE60B /* PropertiesAdmin.ice in Sources */, - 1495E8C9AB710FDE4FE9B882 /* PropertiesAdminI.swift in Sources */, - 19764FF1E36C227E2D6E9E51 /* PropertiesI.swift in Sources */, - 0BAE1F47FB54A5D9966AFF03 /* PropertyDict.ice in Sources */, - AC7FF1DC93E3F28F9D765448 /* Proxy.swift in Sources */, - 12F198DEDCC7F5FF1C915665 /* RemoteLogger.ice in Sources */, - A2F6A13639EF17AAF9E8C3DA /* Router.ice in Sources */, - CF457D75AF0694811BDB3828 /* RouterF.ice in Sources */, - 072401D28B18ECDCEC8250D2 /* ServantLocator.swift in Sources */, - 8F64A26110BDC58D8D54F3D9 /* ServantManager.swift in Sources */, - 17D81C30F65D3D520478406D /* SlicedData.swift in Sources */, - 23FA0DE689D5B4E11968579E /* SliceFlags.swift in Sources */, - 5132AE8676BA0DE8C1328C18 /* SliceInfo.swift in Sources */, - FE12E1E0B0C51F3449556B9F /* SSLConnectionInfo.swift in Sources */, - 2F84EC541FF7E5156D5ACEF5 /* SSLEndpointInfo.swift in Sources */, - 6C02F6B469F85F21320E551E /* UnknownSlicedValue.swift in Sources */, - 30AB0ADF3483478E5ACA7E81 /* Util.swift in Sources */, - 0EDE49A3D761885D2096FA60 /* Value.swift in Sources */, - BFE558871C8F222056FDC2D4 /* ValueFactory.swift in Sources */, - F46D013DDA2E66DD86E2FB4B /* ValueFactoryManagerI.swift in Sources */, - 5636B65B339485B359629946 /* Version.ice in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 0B146F32DDB488FA7CDA54CC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 34648D1661894C9189372B45 /* AllTests.swift in Sources */, - 177DD1BC6757798874CDC528 /* Client.swift in Sources */, - EDAEC3B6C7BC3E68C9177631 /* Server.swift in Sources */, - 79C0E9A35E639B954B5CA27A /* Test.ice in Sources */, - 0BA302A83685C2664019E98B /* TestI.swift 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; }; - 12F991893D8095920A799B31 /* Sources */ = { + 134BF1E77CFC07C466D60C07 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 68A7B3DE8BA3617FF30187D4 /* AllTests.swift in Sources */, - 6034C7EE1187099176DAB596 /* Client.swift in Sources */, - 95AAE0C33FD07EF76E9D26FC /* Server.swift in Sources */, - 37A7AFE9702BDAF42C2F9F38 /* Test.ice in Sources */, - DA322673C2069A47E32B6574 /* 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; }; - 147D6E84BB301C5013BD54DB /* Sources */ = { + 13973FD1142BC0EEA74F5791 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5822DF2756D7E2DAAEB81DF0 /* AllTests.swift in Sources */, - 5C249AAA2B1FECEB2F99663C /* Client.swift in Sources */, - 485B6A81CA77B322832278F1 /* Server.swift in Sources */, - 47753FB20D5A73A947BA72AE /* Test.ice in Sources */, - 1BD3A7F4BA5A57E971C6B144 /* TestI.swift in Sources */, + DB65655BB695669B985C0DC9 /* Client.swift in Sources */, + 405522C1C326EE3E5C90F939 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 16DA4E195F691E4D5BCAC450 /* Sources */ = { + 173FACE699124A87E04C914B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B8A3F70E2863B1E5C60D56C1 /* ServerAMD.swift in Sources */, - 0AFB96465B8EEEC05ECAF412 /* TestAMD.ice in Sources */, - 935A5D2312914D36D943F35E /* TestAMDI.swift in Sources */, + F003F36413ECB9AAC2EED254 /* Clash.ice in Sources */, + 0527885881E6046DA3B84E8B /* Client.swift in Sources */, + 8A8DA71DA7A74888C82992BE /* Key.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 189D6C47B729B0D4667B0D84 /* Sources */ = { + 18C14F16D15E4A694293DE19 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C3346732134A7FF4E54A350E /* AllTests.swift in Sources */, - EFE3FDFFCC689FB65371BC90 /* Client.swift in Sources */, - 07D364FA5369EF6D8D4E5AA8 /* Collocated.swift in Sources */, - 2786A90145677A16513C7844 /* Server.swift in Sources */, - 4E478527FDA44E11ADE2D2C1 /* Test.ice in Sources */, - 55D25A5EACBD3D706C3A0FE0 /* 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; }; - 1A6CF57760DFFFD82003731D /* Sources */ = { + 19E8C12591841D5245D5DC13 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C67E41468AFE0B965A90F29F /* main.swift in Sources */, + A19C0D1E53AE6AFE3D2BCCBA /* IceLocatorDiscovery.ice in Sources */, + 38A4DE3A5617EB42E8C105CE /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 1B03E3F3801D77DFC550183E /* Sources */ = { + 1A4ACB27A85EFF473C257854 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 283933A1953976C2DA9B7488 /* AllTests.swift in Sources */, - A2647D6098A7EB77AAF8CA7E /* Client.swift in Sources */, - 9B35EAB6F8BD88152D726AD3 /* Collocated.swift in Sources */, - 867FFBB85F8B387BD12388E5 /* Server.swift in Sources */, - 043D93ED61C15B54AE03FD26 /* Test.ice in Sources */, - 1D7C04D443B33DB1206B5BCA /* 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; }; - 1C729607C00CB2E52881670C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 87A4D87227FBDF8E2E0CAD68 /* Acceptor.cpp in Sources */, - 94048BBB033060E615673533 /* AcceptorI.cpp in Sources */, - 8FC1683310ADB8C866481055 /* ACM.cpp in Sources */, - F891F1E74DA88E56DA8E50C4 /* ArgVector.cpp in Sources */, - 4238E2CD900A7FE78DA5F8CB /* Base64.cpp in Sources */, - 92996512B2E2D9A664C2AE0D /* BatchRequestQueue.cpp in Sources */, - 070A544F88F5C9ADEEC6F00B /* Buffer.cpp in Sources */, - 58E9746CB646F7B7935D5526 /* BuiltinSequences.ice in Sources */, - 21BF35714A2046CC7C4DF8B1 /* CertificateI.cpp in Sources */, - E22DCE56F23EF9759DCEADB3 /* CollocatedRequestHandler.cpp in Sources */, - DFDB5511012AC679182BDDB0 /* Communicator.cpp in Sources */, - 992E4DE39703E1A0D4718E38 /* CommunicatorF.cpp in Sources */, - CA001DEF70908E891116A1B0 /* CommunicatorI.cpp in Sources */, - 169D64EEE25256A8EC47061C /* Cond.cpp in Sources */, - 13808799A6443C9ED85394CF /* Connection.cpp in Sources */, - 85E4BF86A36BB73D319B2CB4 /* ConnectionF.cpp in Sources */, - 6057AE44CD17675570BEC787 /* ConnectionFactory.cpp in Sources */, - 5BC367727BEF048C5FBC84CA /* ConnectionI.cpp in Sources */, - 505CDF80EEF8B1D50E79B835 /* ConnectionInfo.cpp in Sources */, - F5F6DE14CAD57D389D28AA0F /* ConnectionInfo.cpp in Sources */, - D661B9213BD59B119EEF84EF /* ConnectionInfoF.cpp in Sources */, - 8E63ECC4505FD2FAFEAFBC1F /* ConnectionRequestHandler.cpp in Sources */, - 9A2338535217B7CFB2473F02 /* Connector.cpp in Sources */, - 081CCE04946DEEEDA2549923 /* Connector.mm in Sources */, - E8FACC1133C8E173A929F831 /* ConnectorI.cpp in Sources */, - EE54595EDB60291258E1A374 /* ConnectRequestHandler.cpp in Sources */, - 8C66DA4F73B513778AE9ED84 /* ConsoleUtil.cpp in Sources */, - 8CB79E433C3F9800783D7070 /* Context.ice in Sources */, - 8F77618E5C9F1B0967F8FA87 /* CountDownLatch.cpp in Sources */, - 9859145304CA198B0C6AFFD9 /* CtrlCHandler.cpp in Sources */, - 83CDBD33C1150230F2E74107 /* Current.cpp in Sources */, - EEE9A2E49EC97E210B2B02E1 /* DefaultsAndOverrides.cpp in Sources */, - 090798C938CF1CDC51DB3176 /* DispatchInterceptor.cpp in Sources */, - AC63406EA7134396F84D027C /* DynamicLibrary.cpp in Sources */, - 52C9EE165E8D6C94EFEB4380 /* Endpoint.cpp in Sources */, - B8FED15A9B0BC3649AF07A73 /* EndpointF.cpp in Sources */, - 66C7DAD1EFDD50460B86B902 /* EndpointFactory.cpp in Sources */, - 5B6A0348E48C2CE822785978 /* EndpointFactoryManager.cpp in Sources */, - B7BD0338EFA7C3DB8FF32672 /* EndpointI.cpp in Sources */, - 1D52DAAEEECBAAB658304708 /* EndpointI.cpp in Sources */, - 9C24697B0F15EB28437FE156 /* EndpointI.mm in Sources */, - 0024142D08E8146ED6B749E4 /* EndpointInfo.cpp in Sources */, - A71D57F16C95BFF0C9C49555 /* EndpointInfo.cpp in Sources */, - 3C8FD1C2BE27B7363743D8E3 /* EndpointTypes.ice in Sources */, - C353812AD1FB72561FBEF9F0 /* EventHandler.cpp in Sources */, - 35133BE11FFC8A317FB38A02 /* Exception.cpp in Sources */, - 220D8F9E8C5D43C960422E4F /* FactoryTable.cpp in Sources */, - 896CB4F4F0863FCF72FD6E58 /* FactoryTableInit.cpp in Sources */, - 844D915B27090B848FB53FF3 /* FileUtil.cpp in Sources */, - 99F1F51264DCBBA1F7330936 /* HttpParser.cpp in Sources */, - 5C80929FF3811A8E0A6BE04E /* IconvStringConverter.cpp in Sources */, - 52488E1CF652C3BA12DBB7B8 /* Identity.ice in Sources */, - 087ED6AEA71048A2FE01505C /* ImplicitContext.cpp in Sources */, - 7F682B274ADF63F87E83B668 /* ImplicitContextF.cpp in Sources */, - 5FC217CB7163D86B3526B426 /* ImplicitContextI.cpp in Sources */, - 0663556E59DB2BCAD49E731C /* Incoming.cpp in Sources */, - F97B740AC442AC4B0D143E62 /* IncomingAsync.cpp in Sources */, - 97D14CB373FCCB20B5BC1FC7 /* Initialize.cpp in Sources */, - D05452AB7F6E47B9704E8F2E /* InputStream.cpp in Sources */, - D1E1F1E6A16F7E1D1EFDC4A4 /* InputUtil.cpp in Sources */, - 36791393A4409B89D926A227 /* Instance.cpp in Sources */, - 7247F656E5CA369BF5D62EBC /* Instance.cpp in Sources */, - 447023757EA980624C55B149 /* Instrumentation.cpp in Sources */, - 2C19656A4AF5ADE9DDBAC7A2 /* InstrumentationF.cpp in Sources */, - 62525224C960E2779D7756A2 /* InstrumentationI.cpp in Sources */, - 9B4F4419119ACDACCA449256 /* IPEndpointI.cpp in Sources */, - 1314E0CA8D759C03124C5A89 /* LocalException.cpp in Sources */, - 407C3D11A0C3E4733F7C99B9 /* LocalObject.cpp in Sources */, - 06FE7343E51654DF8A44C59F /* Locator.ice in Sources */, - EEE99D5CCFD33EEF81868AB1 /* LocatorF.ice in Sources */, - FB9F6BB94D193143D0B5E2C6 /* LocatorInfo.cpp in Sources */, - 8AC2B9CE61F373C2968A8D78 /* Logger.cpp in Sources */, - 36831A8229401DFDBE395F96 /* LoggerAdminI.cpp in Sources */, - 8F49ABCAAC6E4187E2B6CA58 /* LoggerF.cpp in Sources */, - BE7E09E447102CDC75718E7E /* LoggerI.cpp in Sources */, - 3858453259EA40101098D345 /* LoggerUtil.cpp in Sources */, - 5C53735690988DBD907B0748 /* Metrics.ice in Sources */, - 30CD85B4633420B63D7280C9 /* MetricsAdminI.cpp in Sources */, - AD875C52399723CE4475E71D /* MetricsObserverI.cpp in Sources */, - 828A8CC28F159BDCB54F2568 /* MutexProtocol.cpp in Sources */, - 78AC389A326D50268C9C1421 /* Network.cpp in Sources */, - BEBE36991D9BACCE4939A67C /* NetworkProxy.cpp in Sources */, - F1E6365515003844B72F5FAD /* Notifications.mm in Sources */, - CC0A1301E7FD1E4F851E58C7 /* Object.cpp in Sources */, - 1F87FA6503E2986C537BCF9D /* ObjectAdapter.cpp in Sources */, - A0CA87BB2AD0D07F39804C8F /* ObjectAdapterF.cpp in Sources */, - 809E2D74023BFE23E61934E1 /* ObjectAdapterFactory.cpp in Sources */, - BEF5ACC5DD0B74AADC279A1E /* ObjectAdapterI.cpp in Sources */, - 5930CC7F7118841036A6B7EF /* ObserverHelper.cpp in Sources */, - 828ACA81ADAEBD4A7C45BE44 /* OpaqueEndpointI.cpp in Sources */, - 31465B39CD28025DA514741C /* OperationMode.ice in Sources */, - 0929B68F398D982D5850DA38 /* Options.cpp in Sources */, - 0F8ED0401A5862836389F95D /* OSLogLoggerI.cpp in Sources */, - A6E6B51E80BBDC666B6E071C /* OutgoingAsync.cpp in Sources */, - D30EFAFE509B0F596DCB7C80 /* OutputStream.cpp in Sources */, - 4EACF0E5A18BA2EF76930E11 /* OutputUtil.cpp in Sources */, - 3BE4BCAAC743E7A5403A650C /* Plugin.cpp in Sources */, - 8D05E1908CC1C02E65416C0B /* PluginF.cpp in Sources */, - 49440DE41C93F8BE96CD82BA /* PluginI.cpp in Sources */, - 68235D57AB04CF4E76F6496C /* PluginManagerI.cpp in Sources */, - A958FBD4D8743332B89D8A9F /* Process.ice in Sources */, - 1E4DC7E206F1EFD6CC78DF94 /* Properties.cpp in Sources */, - CC62C41A43CDF7880146CA62 /* PropertiesAdmin.ice in Sources */, - DD91BDBDF304B914DD0AE38E /* PropertiesAdminI.cpp in Sources */, - D2485C66283CFD2F2C0E8250 /* PropertiesF.cpp in Sources */, - C70D891B4BEEE2ED25DD9FC0 /* PropertiesI.cpp in Sources */, - 10A917B381D58299302F0E9F /* PropertyDict.ice in Sources */, - 224B69B54087CA089D7FBD7C /* PropertyNames.cpp in Sources */, - 453B1D72841FECE7DD81CAD2 /* Protocol.cpp in Sources */, - F0BFE69F3E6EB11FF6C9A215 /* ProtocolInstance.cpp in Sources */, - A4457F8891CC4A735E38473D /* ProtocolPluginFacade.cpp in Sources */, - BBDF488A0D76D385FA9A778A /* Proxy.cpp in Sources */, - 1DEA3EF5FB9844787BF0B350 /* ProxyFactory.cpp in Sources */, - BD346138D37DBC38517DD6E4 /* Random.cpp in Sources */, - BCA8A4514E249D3C06575584 /* RecMutex.cpp in Sources */, - DECC2A6910E64F875FD34570 /* Reference.cpp in Sources */, - 1B7BB4266B61BADD75263B04 /* ReferenceFactory.cpp in Sources */, - 9EA9B5E79AFB53974ABC7AFE /* RegisterPluginsInit.cpp in Sources */, - D6CB4E18B0388D30588C0469 /* RemoteLogger.ice in Sources */, - CA8BE400C1A388279ED6539C /* RequestHandler.cpp in Sources */, - 1E3DE5C8839A98964950D5E2 /* RequestHandlerFactory.cpp in Sources */, - 28E61955AD742A460CBBC90C /* RetryQueue.cpp in Sources */, - F14D90500BF758A100DF4918 /* RFC2253.cpp in Sources */, - 29D3ED44FB31C93EBFBE9A37 /* Router.ice in Sources */, - 32093CD583078D225E5120A3 /* RouterF.ice in Sources */, - 27AC9C069FA287B5CBAF3DFE /* RouterInfo.cpp in Sources */, - 61AAF3E3DD069C0870837CFB /* SecureTransportCertificateI.cpp in Sources */, - 2370F05BA8CD3A5DE60D5016 /* SecureTransportEngine.cpp in Sources */, - 7D393B5197D8C9F764A4521A /* SecureTransportPluginI.cpp in Sources */, - C46DCDCC048DC9AA90572DED /* SecureTransportTransceiverI.cpp in Sources */, - E5E608DF1CF09D64C7F7569D /* SecureTransportUtil.cpp in Sources */, - D27FE379B6FA3B86DAB9C871 /* Selector.cpp in Sources */, - 18C072940A70F14F69FE3F40 /* ServantLocator.cpp in Sources */, - 6D8FDB93E8C66B54255B96B6 /* ServantLocatorF.cpp in Sources */, - 5F832F238CA8F9AF20070005 /* ServantManager.cpp in Sources */, - 28AA316F364B77A7B7DC2AB2 /* Service.cpp in Sources */, - 5D2B00CB36B9F707209466FF /* SHA1.cpp in Sources */, - 2394083793788EDFF3EE4775 /* Shared.cpp in Sources */, - F0C7200AE0CEB8E3DD71036C /* SlicedData.cpp in Sources */, - ECD6E46B065E370B3598C98D /* SSLEngine.cpp in Sources */, - 65D15DB5067FC53F6BC3132D /* StreamAcceptor.cpp in Sources */, - 4DFB007003F91F0FA4685AD7 /* StreamConnector.cpp in Sources */, - A8FC1EAF0AA3504AFD846939 /* StreamEndpointI.cpp in Sources */, - 127E17A1E5A7C739CC7CB1C0 /* StreamSocket.cpp in Sources */, - F28792F31B175D0C5EFA9340 /* StreamTransceiver.cpp in Sources */, - BF40E8BC2701770F6F2B1238 /* StringConverter.cpp in Sources */, - 5385448290174C711B57CE51 /* StringConverterPlugin.cpp in Sources */, - 68511C23940695BE53860DC2 /* StringUtil.cpp in Sources */, - F2427061CF69C098C78D2C90 /* SysLoggerI.cpp in Sources */, - 9746010596C112B8051EFE24 /* SystemdJournalI.cpp in Sources */, - 126AD68DB3E55E2881550C60 /* Thread.cpp in Sources */, - E5C6B5AED56F9BC934CC4DC7 /* ThreadException.cpp in Sources */, - 26485651B696FE7658060E27 /* ThreadPool.cpp in Sources */, - 43C041F80EFB1DEB20266001 /* Time.cpp in Sources */, - 6812902E002944DFB86BD1F9 /* Timer.cpp in Sources */, - E5F6FEF06ABA37D0A16EF93E /* TraceLevels.cpp in Sources */, - 5F3C138F87152028C505F187 /* TraceUtil.cpp in Sources */, - CB2687687AB5F910284C23CB /* Transceiver.cpp in Sources */, - 51244B53B4AE8A7CC88FDDCE /* Transceiver.mm in Sources */, - 8F88C5056F59C4F461B7E944 /* TrustManager.cpp in Sources */, - 8BD3590077F2A155B5486CC7 /* UdpConnector.cpp in Sources */, - 87169C720693983968D640DF /* UdpEndpointI.cpp in Sources */, - CF2FE08D882509CAA6DD32B0 /* UdpTransceiver.cpp in Sources */, - 8C757C6A801ACB43E07B3847 /* Util.cpp in Sources */, - 135503B16ECF7FE8834B022B /* UtilException.cpp in Sources */, - 4C8BC3B2EB3417E69F88DA48 /* UUID.cpp in Sources */, - A457D66D0A9DD47D91424E7E /* Value.cpp in Sources */, - 80D13332A162835326C3DF20 /* ValueFactory.cpp in Sources */, - CA37756C70641135D69865CF /* ValueFactoryManagerI.cpp in Sources */, - DD2CC01F50A9FD8A0B59AE76 /* Version.ice in Sources */, - 73D63D830F8098C60C84A0BE /* WSAcceptor.cpp in Sources */, - 11AF59D1CAEA33AD50DB0A7D /* WSConnector.cpp in Sources */, - EA55DBA8AB62EF9298A3B767 /* WSEndpoint.cpp in Sources */, - 8EF0D7A11A26D61A09ECFFB2 /* WSTransceiver.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 225AF2F874C2476133C2F0B1 /* Sources */ = { + 1B076AF33AFF242A2B16A9C1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4DD2839688E91F883C110B2D /* AllTests.swift in Sources */, - 1FD45EA7DD80CC11311BDA31 /* Client.swift in Sources */, - C2DD6C9517D54EE8170B01E7 /* Collocated.swift in Sources */, - 43ABBB28ECBB5FB5DBC4B16A /* Server.swift in Sources */, - C4C6B0C4FB541B81634C25EC /* Test.ice in Sources */, - B9BBE89A10AD153981A385BB /* TestI.swift in Sources */, + A6BBA41F0AD88A20589F5CA4 /* ServerAMD.swift in Sources */, + EC5656E3040B84EA47EF916F /* TestAMD.ice in Sources */, + 682422A3B82DB1C4AEF9E1D4 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2B77FA804C9FC98848A3BF41 /* Sources */ = { + 1BC366E59F8EFBEF11B33FD3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4F5EFC4F5C35BC8BA3DAAF61 /* AllTests.swift in Sources */, - DB0B6ACB09E3F07029CCD0D6 /* Client.swift in Sources */, - 9A0155DDBCA4FFEC1A349FB3 /* Collocated.swift in Sources */, - DB695550603F9C75775666F4 /* Server.swift in Sources */, - E7E9C572C7C05E0813EF78C5 /* Test.ice in Sources */, - 32D6D9111DB62134301F669A /* TestI.swift in Sources */, + DD4688ED369D5398F27F3A93 /* TestCommon.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2EE495321A946EC99D8A7418 /* Sources */ = { + 218707E1D04EA9FE5757B1BB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BD80D443905E58947347F959 /* AllTests.swift in Sources */, - D007472094A8CCE6FC434CE8 /* Client.swift in Sources */, - 8F5B27D45817CC9DC3486365 /* Collocated.swift in Sources */, - 2C66AE552E67BA6B0E3279E9 /* Server.swift in Sources */, - B501D13A1A9EE63F7638605D /* Test.ice in Sources */, - AA1B174000281436BC0479CA /* TestI.swift in Sources */, + 64C4E0EDDB53BCE4FB23E310 /* ServerAMD.swift in Sources */, + E6F0BE4CB1ABA83CE61C9945 /* ServerPrivateAMD.ice in Sources */, + E4CC75662A01D162EE144698 /* TestAMD.ice in Sources */, + 19FC06374CCF7EE38506B482 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2FA2A3D57A394EFFD7D51C4E /* Sources */ = { + 226D9040A51EC7958E04A69B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C232B65C84FEDD8CEEAB7B1E /* AllTests.swift in Sources */, - 71AE26572DE03E7A8D380677 /* Client.swift in Sources */, - 2AC2F321EA8DF646A2F8ED2E /* Collocated.swift in Sources */, - FBB16729EB0F5F7BA5415885 /* Server.swift in Sources */, - DDEF658C0972A36DDD721FF0 /* Test.ice in Sources */, - 32DE5ADD106045FA5CA17523 /* 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; }; - 32BEA01ACBF119855F9EDAAF /* Sources */ = { + 22D72A154B099999DA6C2B6B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0EE1712A1DA0DAA8F783EF04 /* AllTests.swift in Sources */, - 62F38B37E6BC9A7EE1C4D82B /* Client.swift in Sources */, - 39268F660BBE6359E8AE7A88 /* Server.swift in Sources */, - 953E91436CE58A04CBA8D31D /* Test.ice in Sources */, - 634864BCBA1C3462B793A772 /* TestI.swift in Sources */, + 0A32FD95A093165DD69FFD39 /* AllTests.swift in Sources */, + A60CCEDFB2EFBF7E4A1C52EE /* Client.swift in Sources */, + 454052662F451F169F1D5B0C /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3699FBB3C28FB2A9C874EF43 /* Sources */ = { + 248CDA2D74739565F3521E8E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C732FF1B674435836AEA4266 /* AllTests.swift in Sources */, - A7D8D3D0DBFD5F54A63F808C /* Client.swift in Sources */, - 77D9647970F1FF697D9D9C96 /* Server.swift in Sources */, - 43DA7C98896E7FCBBEA77A79 /* Test.ice in Sources */, - 13999E48614CE52A6FBCEAC3 /* 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; }; - 3E1F45930E5FE2EDA87D5CD2 /* Sources */ = { + 25C3206F9603FF6938CF9B10 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 53B126E081D0367234EF6CB5 /* AllTests.swift in Sources */, - F930B86AD80EF1CF48C47AB9 /* Client.swift in Sources */, - 4FB740BB1EA5F46970098735 /* Collocated.swift in Sources */, - 0C14941F15A92753776C0CDC /* Server.swift in Sources */, - F1D6D8065192F452067CB422 /* Test.ice in Sources */, - 03949E3F114B9055E063CCD5 /* TestI.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; }; - 403C5012F40381B9C8149B5E /* Sources */ = { + 265C5F11C4DF1AC9FCBCABF9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 76E199959830AB560F3E2F2F /* AllTests.swift in Sources */, - BA27D3FF886FCCB851238FEE /* Client.swift in Sources */, - 2BFB3DA0C51EACA54D43C16E /* Server.swift in Sources */, - 4D99483783F1AC42FE90CFF1 /* Test.ice in Sources */, - 527E15A291C202A19879B6EA /* 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; }; - 405CD52C99BA714EBBF20283 /* Sources */ = { + 2727D9A1FC12DB83161640C9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7A6E96D004F26E9B1BB8F989 /* TestCommon.swift in Sources */, + E223F919074FF937A6DD4674 /* ServerAMD.swift in Sources */, + 5F65D2FEC048254C9E1083DC /* TestAMD.ice in Sources */, + 8223F1F8F0E1E13FC39DCDB2 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 410CEAD6B34978C77E76A465 /* Sources */ = { + 2892793081A78839DF6EC65E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C5A09A75C25E6B7B97E82DDD /* Metrics.ice in Sources */, - FF341543F93F0A39F6D7EB65 /* PermissionsVerifier.ice in Sources */, - 78B10D1E2118BABF5FE5511F /* Router.ice in Sources */, - A33F469D207EAFFDB8FB1D3A /* Session.ice in Sources */, - BBCB27DFA915FC2BCFFE092C /* SSLInfo.ice in Sources */, + 49E523F72B458AE0AC97A4E9 /* AllTests.swift in Sources */, + F7415767004FA2E0065FA725 /* Client.swift in Sources */, + 64F69A05C89C108F67E0872E /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4234B37CA2D6F002BAB743DC /* Sources */ = { + 293303B279AB89FF6AF2D9CF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 08C54E5DEBB4C78669163180 /* AllTests.swift in Sources */, - DE33309388A2D6D35E0D00C9 /* Client.swift in Sources */, - 10A3BBE740D13AF0C740BC8E /* Server.swift in Sources */, - 3EA13F38B9051070A90B295B /* Test.ice in Sources */, - 24E6ACFCBC8D63858A66F8E7 /* TestI.swift 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; }; - 43DEE7804C5BF7F6DEB80507 /* Sources */ = { + 2B694C6F4219A83F6C856555 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E686E59B93F9BECF552301B3 /* Client.swift in Sources */, + 872DA73CEB9AB130280CACEF /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 43E30871AEAE37E37C0FDC5B /* Sources */ = { + 307985BBA47C398695E2B1F3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D1B49D38A4391950B9366FBA /* ServantLocatorI.swift in Sources */, - 17DCF21F4DDABFF050F0745E /* ServerAMD.swift in Sources */, - 7657975AD42AC20108D07027 /* TestAMD.ice in Sources */, - B51683D810232AB7F6965350 /* TestAMDI.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; }; - 458D27F6B882241EBEF446F2 /* Sources */ = { + 31CAA11822A27837A20198DD /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 40A14EE0B6207B29C7616CAF /* IceLocatorDiscovery.ice in Sources */, - E1C3660C58AA23A810E6A3CF /* PluginI.cpp in Sources */, + 7CB67121D23B858EFFBE4474 /* Client.swift in Sources */, + 964223501738DC1B2CCE8B09 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 48D6393E8A3A2A9A167F7EC8 /* Sources */ = { + 33B1F7E1237A46BE66481B63 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EB86EAE346B18FD1386478AF /* ServerAMD.swift in Sources */, - 02DDAFC836F2EC3E8E413597 /* ServerPrivateAMD.ice in Sources */, - 92205818C828E4B5D16AA8AC /* TestAMD.ice in Sources */, - 7880F2DBCCF3B4FDF0BA9D30 /* TestAMDI.swift 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; }; - 4E879BA1D09CBAB3A63157A7 /* Sources */ = { + 3584EB0EDCF9EF8FBFAECDD6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A73AA8A31476BD2803B0E84C /* AllTests.swift in Sources */, - B31B43F77AF169D916DAB8C6 /* Client.swift in Sources */, - FAE56358026884E7BD7AD702 /* Collocated.swift in Sources */, - A11B058C87B826A8A68318F2 /* Server.swift in Sources */, - 3C32347A7AB72AEAD51D1F5D /* Test.ice in Sources */, - 66955246E47C08C7A9EEE8D4 /* TestI.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; }; - 4EDE5F9D421F14059D4E8F33 /* Sources */ = { + 37E4B6226FAA627420AD950B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 64C0FC4877E7312A6657335B /* Admin.ice in Sources */, - 283BA03D63F2E5CCD241DAE2 /* Descriptor.ice in Sources */, - 2A85673264DD9C4FF629CA6A /* Exception.ice in Sources */, - F915629B1F571DFC1A3DC899 /* FileParser.ice in Sources */, - D4DED64A5C28684FC11B9BBD /* Registry.ice in Sources */, - C0EB837F25A195490E03F95B /* Session.ice in Sources */, - 9364DD9F6D8DA434C268DBA6 /* UserAccountMapper.ice in Sources */, + A3373CE979CB43C206CBEDBF /* AllTests.swift in Sources */, + EC564EE3C735217D1425A1F6 /* Client.swift in Sources */, + 485ED50D8DC1FBDECADBE865 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 4F8EC0615E2ED8BE7DAB2324 /* Sources */ = { + 3DA0EEE1FC1B570F1658980C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1C9FF3BD071F50569EEF5B8B /* AllTests.swift in Sources */, - 9EA795C10EA59F5A12BD863D /* Client.swift in Sources */, - 810D238B45D8FE86375B6277 /* ClientPrivate.ice in Sources */, - 0B414F22DE059BE997F8DCF7 /* Server.swift in Sources */, - D5D15DD30033BEF6E843444D /* ServerPrivate.ice in Sources */, - 5EA75E67D518F03D9E89D911 /* Test.ice in Sources */, - 3F41FDEBAB1DAD3E79E0A918 /* TestI.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; }; - 5455C447F677F56B64083910 /* Sources */ = { + 3E9760E37E9F23B4490D30C8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6D0DA924998E95CEC4B9C9B7 /* ServerAMD.swift in Sources */, - 3DD95F32FA86A873399E022B /* ServerPrivateAMD.ice in Sources */, - 38D6ECE8850D5A354E086011 /* TestAMD.ice in Sources */, - 968C3AD7FF2E24810965EC8D /* TestAMDI.swift in Sources */, + 6785CFDE9028CBB9DF666771 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 56957981C03B9A3FA02A091C /* Sources */ = { + 426EF7186FC39709CF36993D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C6670777D45B34F4F55383C8 /* Client.swift in Sources */, + B388A2E9C12888AE3036941F /* TestCommon.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 5787B438D0CCA709CCE50737 /* Sources */ = { + 43ACB16B5DFA52DBEEAFBADF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F4A4322B62B6CD345E5DB879 /* AllTests.swift in Sources */, - 5219348A3397452F75226943 /* Client.swift in Sources */, - 30F9B1C5622A20E712E8F578 /* Collocated.swift in Sources */, - 7EDBADF415026D08BE00ED54 /* Server.swift in Sources */, - 3372567B45FEE2448D214402 /* Test.ice in Sources */, - 90F0DB577F458B5BBF5CD826 /* 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; }; - 579324ED4945E63A904D0606 /* Sources */ = { + 467A92002F81EECEA33D76E6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E96D9D0E119CF23373C46695 /* IceStorm.ice in Sources */, - DBE9BB62EAF3D24495F2C24B /* Metrics.ice 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; }; - 655F49FCF65BE7CBE57565B2 /* Sources */ = { + 46E22643788ED3AEF53E2D71 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F802821B381C10DE143B1174 /* ServerAMD.swift in Sources */, - 2D34799609A8A41448486E2F /* TestAMD.ice in Sources */, - 7C9749638F33756CAFCACFD7 /* TestAMDI.swift 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; }; - 6620174E22DD4D6CCD3282CB /* Sources */ = { + 52C2BC3F393D4B071AB4DA50 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 94B38541371A80684508FFFC /* Client.swift in Sources */, + C454C5EED2C69E238ED50DA5 /* Client.swift in Sources */, + 41ACA14990011BF34FD3F2AA /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 67155914C03ABD8C613F680E /* Sources */ = { + 543F29EC36AD500F2D82AE88 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 64BF91EED61A1D3FE6C90E9D /* AllTests.swift in Sources */, - F1C6CF21D2E9B6AF66BA47FA /* Client.swift in Sources */, - A2001B962A3E23AC8698461A /* Server.swift in Sources */, - 6E00E1750B687743D25FC5A3 /* Test.ice in Sources */, - 61116BF9D1C69E856E850780 /* TestI.swift in Sources */, + B962FED105E70E6758FE6C94 /* AllTests.swift in Sources */, + 4C4F3BAED894DF9F5A7A368B /* Client.swift in Sources */, + C3FBE778CA9AECD610236D69 /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 69DDECD27807D9D00780E084 /* Sources */ = { + 546286E57A4EAA9483C1EB73 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2B305AC06256E79C862653EF /* AllTests.swift in Sources */, - 83ADC83B0013D225A82582EA /* Client.swift in Sources */, - 07B52E45F10451703560A6DF /* Server.swift in Sources */, - 3B9BA3DCBFD517ACF2F26189 /* Test.ice in Sources */, - 0D2EBAE3BEC12140C8FFEAED /* 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; }; - 69FA2E241CE59E9C3369F708 /* Sources */ = { + 55EA03F9FF5B5258E2D95203 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E437D41C66B9C6EC28D6503A /* AllTests.swift in Sources */, - 488364CA860E4460F00E1783 /* Client.swift in Sources */, - 11704346304A31C19690E230 /* Collocated.swift in Sources */, - 9ACA67AB49660B8296EA466C /* Server.swift in Sources */, - 1A60D6921AA577F7F0C230B1 /* Test.ice in Sources */, - F0CEA2E719B332639087A122 /* 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; }; - 6ABBD8B70A885D37B8A5E341 /* Sources */ = { + 582FCE8AE556DA8DA5C41C72 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6E654F0A8EC84E6037DE27D9 /* Client.swift in Sources */, - 6C398D7D5C1EDCC142FD4BC6 /* Test.ice 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; }; - 716E3F78488DF0AFCCE91031 /* Sources */ = { + 5ABDC168A46FFCC4BC5DBE83 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C076AA6FB3BE0CEFA46D3006 /* AllTests.swift in Sources */, - 9815DDD9489CEB32587F6D06 /* Client.swift in Sources */, - 31E4CE81617D1D57DB5855DA /* ClientPrivate.ice in Sources */, - 61B43B09235BB754FAB8DDD6 /* Server.swift in Sources */, - FC789C6064EEFAC62846CF10 /* ServerPrivate.ice in Sources */, - 3E3FF2E3D9C5CA825A70EEC5 /* Test.ice in Sources */, - A23591B0BE17C73DBFFE3B05 /* 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; }; - 726C32E70C36A5B300698C1D /* Sources */ = { + 5C4B39A79197C7F484055077 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 44D90D302B2EEC55F9628897 /* AllTests.swift in Sources */, - 621C5B6E7657FB86E6B7B51F /* Client.swift in Sources */, - C9842BC97C2C0889E4A153F3 /* Server.swift in Sources */, - 2D292BDD0A9A1E24479E4AC9 /* Test.ice in Sources */, - 11CB6E15E76A8A28DA82A0A0 /* TestI.swift 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; }; - 78763EFE4244AF2640CEF60D /* Sources */ = { + 5E5AA18560C5DB3446283A99 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6CB7CC4363D824D38DBB75BA /* AllTests.swift in Sources */, - A5E7463E93E51698C4FA62FC /* Client.swift in Sources */, - E7F0C5863C240F0C61C792D5 /* Server.swift in Sources */, - 94DD6CBBE02737D9EFFEC285 /* Test.ice in Sources */, - 298BCCC75141BF72F190CE7E /* TestI.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 78C53CA1FF99A4EBF97916C9 /* 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 = ( - 039778551EDBA4E26DED4F50 /* AllTests.swift in Sources */, - 335624C3ECBAF9AB3A04F8D9 /* Client.swift in Sources */, - 00E6D2BCDB624F2D111697FC /* Server.swift in Sources */, - 42B377EB3735683014AB234B /* Test.ice in Sources */, - 566DF77C914EC3872FB39951 /* 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; }; - 794CC756BC61DA86436DF30D /* Sources */ = { + 6881CCF877304AB0D49EFF21 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - AFDB4215D50B3770598EA91C /* Clash.ice in Sources */, - 217623D13A3358D164F38F80 /* Client.swift in Sources */, - A8EC75556A8EFAD34C9C4AAF /* Key.ice in Sources */, + A21F3C5B9215C266E3165ADE /* ServerAMD.swift in Sources */, + 1C724A372C4EC19D6B43AA31 /* TestAMD.ice in Sources */, + 10450A8F5D1657A9FBDB3724 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7CA59DD48A5F2DD2F1203DA0 /* Sources */ = { + 69743D90DF5C84F3D4D5CC5C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 51668FC30C14F66919C8B381 /* AllTests.swift in Sources */, - 6FD7A841F37161AE926047D4 /* Client.swift in Sources */, - 3E98E39692157C4AC1F9B666 /* Server.swift in Sources */, - AC8FA20A8E9A3591E503A3EA /* Test.ice in Sources */, - BC4A965F00389AFA1C4EC94E /* 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; }; - 7EDB299C07B10EFAD2A9D9EE /* Sources */ = { + 6BE9D4FCC694CDB86D5089A3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FB826A2836E1BBE93F404820 /* AllTests.swift in Sources */, - 305A0C86472070B1AE564313 /* Client.swift in Sources */, - 815413C11DAC970EC4F0FEED /* Collocated.swift in Sources */, - EF8B25A4769EC04362C4D559 /* Forward.ice in Sources */, - C6F35C40C7CAD0C3F77FD4D2 /* Server.swift in Sources */, - B97CD3BF18905C818A868F12 /* Test.ice in Sources */, - F633A9D43A323F931BCC899B /* 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; }; - 82D6113098F570AFCEDF2A16 /* Sources */ = { + 6EF6C9E40D191F808F0F1E64 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F7E9924F2C30B7BDCE908009 /* IceDiscovery.ice in Sources */, - 82C8426F92304576DE536C49 /* LocatorI.cpp in Sources */, - A4DFD3718AF68E0E47FA9D41 /* LookupI.cpp in Sources */, - 12C757825C2E077AF245A57A /* PluginI.cpp 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; }; - 88FBE0C1A68DEEAB8105F856 /* Sources */ = { + 71E06AEBA4B516B8D2B1F91E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - E7A19DC3180379FAE502829C /* AllTests.swift in Sources */, - F2B44C5B98EB645ABE40C16A /* Client.swift in Sources */, - EEA5EE91CC45E766332B8FFD /* Server.swift in Sources */, - F417584E7188CC80E8E277D6 /* Test.ice in Sources */, - 1A60CBD5A72816C85C3E687E /* 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; }; - 8EE6710B66BF776E86C6ABE5 /* Sources */ = { + 7374F772E8AC58CBC834E62C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 60E640C9B38DD0C3E07683BD /* AllTests.swift in Sources */, - A056BB0F75DC449BC21A868C /* Client.swift in Sources */, - A9790114286E03FDBEFEFF14 /* Test.ice 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; }; - 8F2AC178E7873170615856A8 /* Sources */ = { + 7562FB5F2D5496507FB656CB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D3546FE15CF03316B5A91396 /* AllTests.swift in Sources */, - 2AC395DB52A3D7F577FE5113 /* Client.swift in Sources */, - 14B743A7A9FEB39E1FCFD3F0 /* Test.ice in Sources */, + 1F1B2A120600717E9CA151F7 /* ServerAMD.swift in Sources */, + 86B9C06840F8EA8534A76485 /* TestAMD.ice in Sources */, + 4183C8DC691BDAF574D88EE1 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 908875F30A31F98DBEEC6853 /* Sources */ = { + 7DB0956D51347FF877757F6F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - DB7366CED937744025502032 /* Clash.ice in Sources */, - D3743F079C5AE339931CA1FD /* Client.swift in Sources */, - CDD67A8982DBF28CA51F1F31 /* Key.ice 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; }; - 928DFF172E1FC782D4A3C492 /* Sources */ = { + 830352D57BA099B4E44F02B4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 86F21F920A338C9B8E4C58D1 /* AllTests.swift in Sources */, - A218647C4ED5BCB5DEF2C856 /* Client.swift in Sources */, - EBDC44BBA0C2C638C4FDE665 /* Server.swift in Sources */, - 7AD8DD9EBBA848966B90E8CD /* Test.ice in Sources */, - CB095ABCB85EA416200469FC /* 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; }; - 95A3D802A190A788C095FA55 /* Sources */ = { + 845DA976F8C240ED749F0993 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B2C6D001A53B337E96DAAF99 /* AppDelegate.swift in Sources */, - 9EF395D8FC087E745CC0E2B3 /* Assets.xcassets in Sources */, - 3A37F816C90ED30F4101C30B /* Controller.ice in Sources */, - 85BC01ACB28163CA71D951C6 /* ControllerI.swift in Sources */, - 0D5BB545FDA707CA2E9ECFB7 /* LaunchScreen.storyboard in Sources */, - C3FC196932AD70FF912918C2 /* Main.storyboard in Sources */, - 0A93FCD2AECB8E9CF8D55A29 /* ViewController.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; }; - 97D68F07E18DC5E0A9FE3EDA /* Sources */ = { + 881EE104DE2C4C5FB6BA5122 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - ECDCC511C2F7E5E99513C31F /* Admin.ice in Sources */, - C171DF4EB004F8FAD5E6EA69 /* Descriptor.ice in Sources */, - CB21D6E2CFDC1DA5DFA706DB /* Exception.ice in Sources */, - 66986D65297867F370C71246 /* FileParser.ice in Sources */, - 584F1B182620F22BC9FE2CAB /* Registry.ice in Sources */, - ADBBFA59FAF09F9C1DE28C06 /* Session.ice in Sources */, - 51EF59C8C4309B80A6A73346 /* UserAccountMapper.ice 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; }; - 98DA39F4403BBC2A614A5643 /* Sources */ = { + 8B95A794840586734615E96F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7246969EF7456B34FA3D17CE /* BlobjectFacade.mm in Sources */, - E6DFEA695019BC4C971BF870 /* Communicator.mm in Sources */, - 596F5178CCEC404C6E0D465B /* Connection.mm in Sources */, - C3AEC7DB466BF3A156CE31ED /* Convert.mm in Sources */, - F75002F0E849D90CB8567BA2 /* Endpoint.mm in Sources */, - 1944F69679AB587CED597FF9 /* Exception.mm in Sources */, - A06F28264FE9AC00BF0C0030 /* IceUtil.mm in Sources */, - EBC02991D3AAB52FE34867D2 /* ImplicitContext.mm in Sources */, - 1F7E7557DB78D31D8B693A76 /* LocalObject.mm in Sources */, - 81DF90B58589897B66CE326E /* Logger.mm in Sources */, - DF00731D06ECAE6719AD64C0 /* ObjectAdapter.mm in Sources */, - 89E06C0162972C2C91BCDE55 /* ObjectPrx.mm in Sources */, - 43300A34CBEBFFA523449B96 /* Process.mm in Sources */, - FA7EA0C86DB3A74ED62C29DC /* Properties.mm in Sources */, - 015C3B4F1DF3714139598CF7 /* PropertiesAdmin.mm in Sources */, - C6F569F44F1FFFF5EB05547E /* TraceUtil.mm in Sources */, - 2A1B7F74C8C6C6059794135D /* UnsupportedAdminFacet.mm 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; }; - 9956BCFAA677883DD752707A /* Sources */ = { + 8BC7C7488C636DAFE42DF7E3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C7DBEF7E416349E035A919C5 /* IceDiscovery.ice in Sources */, - 3D8DD8762C2BA500E5DFE5FE /* LocatorI.cpp in Sources */, - A78E5DDC9FF22C15DF996CEB /* LookupI.cpp in Sources */, - 0F2B48183718EAD49608D11C /* PluginI.cpp in Sources */, + 212052526996E61998DB65D3 /* Client.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9A8DF622A084ABC6AD5CEB09 /* Sources */ = { + 8BFD07AA3DE581D8525A1964 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 92C3862CB23C0C52E5E708BA /* AllTests.swift in Sources */, - 21CDF2E5F6BCFB580B4EB4C1 /* Client.swift in Sources */, - 897F454A2E54D6B9ED1CC39D /* Collocated.swift in Sources */, - 5737476E80EBB169B518968C /* ServantLocatorI.swift in Sources */, - 159D1DCC76ECE3CF996152BB /* Server.swift in Sources */, - 36CF43C7392987B46253C456 /* Test.ice in Sources */, - 77D9F4551EEEA292FFA03454 /* 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; }; - 9BAD66AD0EC25C8BDC52C970 /* Sources */ = { + 8F27F193739466C647769865 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 43E0EC14EBDBB1DE22D4CD5E /* ServerAMD.swift in Sources */, - AA726D1400A560CF97752832 /* TestAMD.ice in Sources */, - E224BC34CEE9B97DA6446042 /* TestAMDI.swift in Sources */, + 55E7A43504BC2169071C952F /* IceStorm.ice in Sources */, + D1086683670BCE57082B1CD4 /* Metrics.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9BC3F6F228B2B8CC44C9A008 /* Sources */ = { + 93EDD1C49BFCD3186F93E06C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3EED6409FDB6D53AA939D95D /* AllTests.swift in Sources */, - 6895E4342971BB7DFF143A19 /* Client.swift in Sources */, - 5669D7A6BA9E41C504A360F3 /* Server.swift in Sources */, - A0134E2C57ED7ACA82FAE414 /* Test.ice in Sources */, - 54A1EF08C8A87DD1CDB2505D /* TestI.swift 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; }; - 9DD73DF35AB14838BEFD510B /* Sources */ = { + 94BA113A33B1F7D930559978 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 7D4BFF385409F41DDAA66BC3 /* AllTests.swift in Sources */, - ABA1232826877F82079AA611 /* Client.swift in Sources */, - 837E9D7B78BE00674EF13D4F /* ClientPrivate.ice in Sources */, - 138633C2D72C15353E1FAEE2 /* Server.swift in Sources */, - 58B68AE606BA3A81348B7585 /* ServerPrivate.ice in Sources */, - 1917AB2AB67D05D8EE504CE2 /* Test.ice in Sources */, - E8ECF125C99587AA89A85E87 /* 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; }; - 9ECC6D430B808A89B3854A6B /* Sources */ = { + 96349055B134C09EFCC26C32 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 854D6208F3303E72908EB06F /* IceStorm.ice in Sources */, - 4E2FA101FE0D14BB24E244BB /* Metrics.ice in Sources */, + F619711485EDDECCB70B13D6 /* IceLocatorDiscovery.ice in Sources */, + B1F9D23863E61F678A8A3764 /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9FEC8E70B5CF85980CBBC182 /* Sources */ = { + 995AC1FE963E60344D4CC2E8 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B3756370B221CD6396E20656 /* Metrics.ice in Sources */, - 0870B5ABB7A3D930328ED6C2 /* PermissionsVerifier.ice in Sources */, - DC55B4A0C94773A803F89A57 /* Router.ice in Sources */, - 0DA845ADE51AAB9852C20481 /* Session.ice in Sources */, - CF514BFCB5FD644FC13CE4D7 /* SSLInfo.ice 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; }; - A07809F6BA4FB2EBCDA57A0E /* Sources */ = { + 9977338E8BAF8946DEF65C37 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 06315EAE2E8DEC55B85105E2 /* AllTests.swift in Sources */, - 41459A4D16FAA88A013E3141 /* Client.swift in Sources */, - E816790986F5BE0A937C0475 /* Server.swift in Sources */, - C6C52B22BD7BC8E9DAFC8FAE /* Test.ice in Sources */, - E8655F3D94350A7F0C8A7E62 /* TestI.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - A51674944759CDA437CD977D /* 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 = ( - B977C81B5074600C563DCB93 /* Client.swift in Sources */, - 4DA7EE74FC425C8FA4A0D33D /* Test.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; }; - A660EB5F9FF6AEDB20390263 /* Sources */ = { + 99FEE7D269C10FAC6C445165 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1CB22725EF77D35C961DC5CF /* AllTests.swift in Sources */, - D2AC08B5E7D7F5DA267CF8FB /* Client.swift in Sources */, - 77DC371E43381EF16158F9EE /* Server.swift in Sources */, - A082D8514D02C406D845DFDE /* Test.ice in Sources */, - B4812044969EDC648CF8759C /* TestI.swift 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; }; - A987F7B6BD8618AE688E4ADD /* Sources */ = { + 9E9D8101C63F168A2671038A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CEC32138BC33E2696F3143BA /* Client.swift in Sources */, + 48F65F1EC6084A5403D04581 /* Clash.ice in Sources */, + BC6D32D684B5D1AD42E0F152 /* Client.swift in Sources */, + 162EB825BB854127C89AFD5A /* Key.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - ACC172DFEF365F0F73B16F5D /* Sources */ = { + A0A95DA7DA0837299DE560B5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - A9A264A27202F290824CB808 /* AllTests.swift in Sources */, - B319E2588A5E524131DC1E57 /* Client.swift in Sources */, - 938AD770BF6739D032B7E255 /* ClientPrivate.ice in Sources */, - 6A1AD6198ED355D783C4ABA3 /* Server.swift in Sources */, - 4F80D4F7344E223FCD8F18A7 /* ServerPrivate.ice in Sources */, - 47E2D5917DCF925D43AA13E5 /* Test.ice in Sources */, - 3824528B30BE3C7E4502A4CD /* 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; }; - ACF2443A3629DCACA621F6AC /* Sources */ = { + A105E9C54B8CE1280D18B996 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - CBC9DC2609577E94AC193165 /* AllTests.swift in Sources */, - 0EDDFFAEC77ECB392806115F /* Client.swift in Sources */, - 3797173835AB3B517EAECC5D /* Server.swift in Sources */, - 8807378728C319C1F71FCF0F /* Test.ice in Sources */, - B916A32845E887D26A90BB8E /* TestI.swift in Sources */, + 91EE5AFE5F51B13A2CE3DF2B /* ServerAMD.swift in Sources */, + 80F1D9C228F0BF9DBBAE4303 /* TestAMD.ice in Sources */, + FC4406B16133D5DB2D35C383 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - ADC4D491A20D62BF0856C4E5 /* Sources */ = { + A258BBCE321A6745D6E518FC /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2E760408E022B189EF18D310 /* ServantLocatorI.swift in Sources */, - D507F6AE61C100C49B391B8B /* ServerAMD.swift in Sources */, - ABE96A45D5047D07B494D811 /* TestAMD.ice in Sources */, - F5D528CD0959ED8FBE47D801 /* TestAMDI.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; }; - B2E76AB5325FD0B44497BBAA /* Sources */ = { + A2CDC7AD3288B99AD16BB1FF /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 2DCD004B98AAC958160F09D2 /* Client.swift in Sources */, - D69293571C79142BD4644BFF /* Test.ice 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; }; - B71341B8DCD3386E969D021F /* Sources */ = { + A3058C0E432687C445899555 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 45A5B7A80526F19EAE9A8213 /* AllTests.swift in Sources */, - DACF76C855E14513876EE388 /* BatchOneways.swift in Sources */, - 4FC731395B73EB87D18816C9 /* BatchOnewaysAMI.swift in Sources */, - 87AC8565D3129BB566C4E4BB /* Client.swift in Sources */, - 4E5192486BA4131D7C59C04E /* Collocated.swift in Sources */, - 788FF870AE92183F633E2547 /* Oneways.swift in Sources */, - 4CB50F7AEBAA2C7624FF53BC /* OnewaysAMI.swift in Sources */, - 657683B9E266C397C84D33D2 /* Server.swift in Sources */, - A5EC9178D79AA00619027912 /* Test.ice in Sources */, - 9CD19EC1CD1C690CE3BF1942 /* TestI.swift in Sources */, - 5FDB6870F64FBCC0F9DA7B01 /* Twoways.swift in Sources */, - C7BBC8F2BA3013ECBEACB528 /* TwowaysAMI.swift in Sources */, + BB3B26C8715649A1082E7F4B /* ServerAMD.swift in Sources */, + 474E338B4AC8335316D7614B /* TestAMD.ice in Sources */, + EED1C79E8ACA0DEC111B78B5 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C3172FA1F30C4892944AB13B /* Sources */ = { + A4CF7E95480B760598F95AB6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B137642667AE3706E6A0A5DA /* AllTests.swift in Sources */, - D2C7FB4EE14AC7C9771B8872 /* Client.swift in Sources */, - 911E0D67438383EE6B41AA41 /* Collocated.swift in Sources */, - A329C64D7DEC8DA9EE2CC8A9 /* Server.swift in Sources */, - 21618E4743251E8681B2D50C /* Test.ice in Sources */, - 352E655F4D372EA208233852 /* 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; }; - C455DFC954703E8B86E8FB16 /* Sources */ = { + A4DF6A87BDB936461A8E9EE1 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3D2E6350CD0369A8D7DCC7B9 /* AllTests.swift in Sources */, - CBFE90C015F5938E006F7B51 /* Client.swift in Sources */, - 7EB795072A11C2241D41CA7D /* Collocated.swift in Sources */, - BB5A9BB8BEA3E1E533FDD635 /* ServantLocatorI.swift in Sources */, - 7B0BB91AD2AAE0A9D6EEA849 /* Server.swift in Sources */, - 5DCC5C2EA2BFA97F799DC6FA /* Test.ice in Sources */, - 374B575A6906DE8A97FFAA8B /* TestI.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; }; - C5D06F06BDD0203C2A0D7EB4 /* Sources */ = { + A50761946EE7786E8FF77E3E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 4E305CC8C23442E8892A5969 /* AllTests.swift in Sources */, - F6F9A7163D5CB24FBE765E4E /* Client.swift in Sources */, - 63015A531AD0039B53247592 /* Collocated.swift in Sources */, - 86C7FD865D845D0228E595AC /* Server.swift in Sources */, - B76CC8C18A41B77044FEF8F9 /* Test.ice in Sources */, - 5E48336FFA495568832DB7E5 /* TestI.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; }; - C9862A8B24C5CD002B5B285E /* Sources */ = { + A567673057B52D283B55DAEB /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3A81FB47D8BAEF9D47F67CAA /* Acceptor.cpp in Sources */, - 6D2E85B95C19A5BE0CBBD640 /* AcceptorI.cpp in Sources */, - CA0CC7435D5114B8AB44F7F6 /* ACM.cpp in Sources */, - BBFE1CB14B5EF1F55F39B2B0 /* ArgVector.cpp in Sources */, - 2B30A380F57B5CB57817CA97 /* Base64.cpp in Sources */, - AD100F4352996B95B7E7CEEC /* BatchRequestQueue.cpp in Sources */, - CB4DDB5C8CBC00891F4F6913 /* Buffer.cpp in Sources */, - 04CE142AF814C48EC05D3A57 /* BuiltinSequences.ice in Sources */, - 9F76CE45F0A14F83DBBBCC9C /* CertificateI.cpp in Sources */, - 6558EE541043DBC42195026B /* CollocatedRequestHandler.cpp in Sources */, - 5D06D578B67541E764B028E4 /* Communicator.cpp in Sources */, - D643181C088F9CE93D88F13E /* CommunicatorF.cpp in Sources */, - A59FDFD98086574E6A91CD4A /* CommunicatorI.cpp in Sources */, - A2A28FADC3A8F42D74F94152 /* Cond.cpp in Sources */, - 0CDA05DC036F12BC7933113F /* Connection.cpp in Sources */, - C0FC3735E785045EC4461BBB /* ConnectionF.cpp in Sources */, - FC61278C365AAC5B5EB0996B /* ConnectionFactory.cpp in Sources */, - 4B323EA94F5330CB76D61630 /* ConnectionI.cpp in Sources */, - FB5F2BF62D1A09A6073D031F /* ConnectionInfo.cpp in Sources */, - A0646964B11526959E15863F /* ConnectionInfoF.cpp in Sources */, - 15C8E2EBF9387EDE196AC06E /* ConnectionRequestHandler.cpp in Sources */, - 583B54EF8BC7A12EB7ECFF36 /* Connector.cpp in Sources */, - 8C1D9454BDD5D1D6813888B5 /* ConnectorI.cpp in Sources */, - 679797836BA03F28C23CEBB6 /* ConnectRequestHandler.cpp in Sources */, - 223D69B71DC50CCF692B7F5C /* ConsoleUtil.cpp in Sources */, - 3AF6C0BEB04AEEF81EE7D9CF /* Context.ice in Sources */, - 00C54888EF2A7C455F916280 /* CountDownLatch.cpp in Sources */, - B4125D5A6CDD59B0ACB46418 /* CtrlCHandler.cpp in Sources */, - 35D24984165CABD98088A6E3 /* Current.cpp in Sources */, - 2FF16A6CC846F2F5154FBC4A /* DefaultsAndOverrides.cpp in Sources */, - 4AEFE53F63AB7281FE54BB67 /* DispatchInterceptor.cpp in Sources */, - F557430C1BB366EE08B0B77C /* DynamicLibrary.cpp in Sources */, - DE96CD226BEB221D08CA1C20 /* Endpoint.cpp in Sources */, - 793F3B65373B8679C6E3B69E /* EndpointF.cpp in Sources */, - 9C13EC1D5BDDEF39E0035621 /* EndpointFactory.cpp in Sources */, - A3A56A528D7A874125579BE0 /* EndpointFactoryManager.cpp in Sources */, - 6B86FBA84BEDE9B92B7A8BED /* EndpointI.cpp in Sources */, - 03480C9ECD1C063F948DF2EA /* EndpointI.cpp in Sources */, - D2C9176747A7C81A27C095D6 /* EndpointInfo.cpp in Sources */, - 01D2D31B16EECA66BE55F042 /* EndpointTypes.ice in Sources */, - D76AF5DF6713A46A3F5713E9 /* EventHandler.cpp in Sources */, - 51E4E719DFABD7EA5EA818BB /* Exception.cpp in Sources */, - 61DB8351BB9DD2D2FAEA82D0 /* FactoryTable.cpp in Sources */, - 782E7FAE67003BE21307B1F6 /* FactoryTableInit.cpp in Sources */, - 074F2BE69D4B6E0B74D4F19A /* FileUtil.cpp in Sources */, - 91C62960606D8FCCF6747F78 /* HttpParser.cpp in Sources */, - E1E71D2982C42BEA77D98F1B /* IconvStringConverter.cpp in Sources */, - E97138E0D1B93F302A064640 /* Identity.ice in Sources */, - 73BA968691D9B340A52E44D0 /* ImplicitContext.cpp in Sources */, - 5D268EE9D1AD00B6ED31A5F9 /* ImplicitContextF.cpp in Sources */, - EBDEE2AC104C7DDFD21B5349 /* ImplicitContextI.cpp in Sources */, - C7B889058A1CE7DE22185681 /* Incoming.cpp in Sources */, - 2391835E95B662AB5F5E5375 /* IncomingAsync.cpp in Sources */, - 9BA0A38C0BD7E36A1BD60C32 /* Initialize.cpp in Sources */, - 5D8EB13A30F715EA61268B54 /* InputStream.cpp in Sources */, - B108FB61D8349D59B81F5072 /* InputUtil.cpp in Sources */, - 4B937F11A84BFBB5430E5CBE /* Instance.cpp in Sources */, - 736E2EF02C7B0796F4068902 /* Instance.cpp in Sources */, - 38847268EB2F2E4FF7AF0940 /* Instrumentation.cpp in Sources */, - DE86DF521D0A29EA2B0095BC /* InstrumentationF.cpp in Sources */, - 13E09FD31C14F9FE90AFFCC2 /* InstrumentationI.cpp in Sources */, - 75A8B4B6066AA93A556B8178 /* IPEndpointI.cpp in Sources */, - 1D2F1653E1F237366ED37E74 /* LocalException.cpp in Sources */, - 83D583E25B45CB7E322FA652 /* LocalObject.cpp in Sources */, - 25E71CF92C0AB9AC508B822B /* Locator.ice in Sources */, - 8DFB4A0306490FFF8426C78D /* LocatorF.ice in Sources */, - 22248D7C6A354BF4F3B37B9F /* LocatorInfo.cpp in Sources */, - 3CA10FE78E0D7F55CAD1CE77 /* Logger.cpp in Sources */, - 4039FCD3C24A18FF82E9FFCD /* LoggerAdminI.cpp in Sources */, - 19E0C061D8AC2085265BCB52 /* LoggerF.cpp in Sources */, - A0370BD7322D40CD43A9D333 /* LoggerI.cpp in Sources */, - D6A7CE6063A9BE0B0C82D0EA /* LoggerUtil.cpp in Sources */, - 649F89CE6DBA1882D9CA7381 /* Metrics.ice in Sources */, - 9DAFEBB1B955F5C465481165 /* MetricsAdminI.cpp in Sources */, - 4BF7802BDB2912938F8A5401 /* MetricsObserverI.cpp in Sources */, - C1E6B9220DF9020129DF71F3 /* MutexProtocol.cpp in Sources */, - 0F71DD6A67178D0C707B2F85 /* Network.cpp in Sources */, - 945D2F9580D30BECC37243CF /* NetworkProxy.cpp in Sources */, - 174897CF28EEF25C2FB22102 /* Object.cpp in Sources */, - F3F5E8F7A92DF0ED4C887F9A /* ObjectAdapter.cpp in Sources */, - 2265ABB36D033A2AEA5AF713 /* ObjectAdapterF.cpp in Sources */, - 6BDB81E44E8ED661D9D99FA7 /* ObjectAdapterFactory.cpp in Sources */, - A1EF1604B0D51B76BAFE7556 /* ObjectAdapterI.cpp in Sources */, - D58D8E08552392999A098329 /* ObserverHelper.cpp in Sources */, - F8B1A0BEF3AB75B1B3B5B0CE /* OpaqueEndpointI.cpp in Sources */, - DB5DD8C88730E98BC04AABDA /* OperationMode.ice in Sources */, - 7FC2B37350F3E5995B4ECECE /* Options.cpp in Sources */, - 5349563EEF2578DB61C4A973 /* OSLogLoggerI.cpp in Sources */, - 4FB3FB49E23C28F3D464FCEB /* OutgoingAsync.cpp in Sources */, - E1D2F7A064F903818BC5C81B /* OutputStream.cpp in Sources */, - 7997ECFD992D1B49A8B352D8 /* OutputUtil.cpp in Sources */, - F8D058617878D4D9B3E25EDB /* Plugin.cpp in Sources */, - 0B7E47D4AF20BEB3B3846836 /* PluginF.cpp in Sources */, - 31DEAC51BC34082B948D1968 /* PluginI.cpp in Sources */, - 97436689F8CB87D4C1FF11BE /* PluginManagerI.cpp in Sources */, - EBBFB1974A4E613A90B1324C /* Process.ice in Sources */, - 70BFA57D6FF9C7379186A4A0 /* Properties.cpp in Sources */, - 1961595FE9CC70DD3D0A7975 /* PropertiesAdmin.ice in Sources */, - 451002ACFD0D95E5DEB8FDC0 /* PropertiesAdminI.cpp in Sources */, - 27A328B4CE2F898DA5F44FF2 /* PropertiesF.cpp in Sources */, - 09A04454140CDCF98273DEC9 /* PropertiesI.cpp in Sources */, - F9F79CFA380A6BD76F0256F5 /* PropertyDict.ice in Sources */, - 7A0B0587DEFF310CF9B800D8 /* PropertyNames.cpp in Sources */, - 01110EBADB5441FECC1C4EDB /* Protocol.cpp in Sources */, - 3D3DBA3857372EC08983506C /* ProtocolInstance.cpp in Sources */, - F71B7394848C334C4FC51BFA /* ProtocolPluginFacade.cpp in Sources */, - 3B43ADB16168DD10352EF8FE /* Proxy.cpp in Sources */, - 0FD2142CD0E2EBC31B9B2CCE /* ProxyFactory.cpp in Sources */, - 214922BA289C0240CF8D93A4 /* Random.cpp in Sources */, - 4222160FD257F0C52E1A09CD /* RecMutex.cpp in Sources */, - 13F7AC00FF0C5CC44E51FEED /* Reference.cpp in Sources */, - 93EA132FFB90C6038E00C831 /* ReferenceFactory.cpp in Sources */, - C14B9D2ACDA59BBFF227D036 /* RegisterPluginsInit.cpp in Sources */, - 6A074A20E524994BFB355CC9 /* RemoteLogger.ice in Sources */, - 02E5E7016AC05F7A655E2219 /* RequestHandler.cpp in Sources */, - 3050ED6F4B7AB30BE192A06A /* RequestHandlerFactory.cpp in Sources */, - 4136956F7D6DE65A0E0D9582 /* RetryQueue.cpp in Sources */, - F968F0B69C9A21BDF84CEA63 /* RFC2253.cpp in Sources */, - D51E815892C6AB254E9A015B /* Router.ice in Sources */, - 67E0BA668DD8ED6D30348A10 /* RouterF.ice in Sources */, - CF21B01E38CB4A4001D47B3E /* RouterInfo.cpp in Sources */, - D572E08E607AF19F07ED7AAB /* SecureTransportCertificateI.cpp in Sources */, - 79B6C0C76C38F872B0C79378 /* SecureTransportEngine.cpp in Sources */, - 0A89B3A1F5FB92AADC45B237 /* SecureTransportPluginI.cpp in Sources */, - C4D1211585C895BB820057C0 /* SecureTransportTransceiverI.cpp in Sources */, - 8C61A337FDCC3B9BF1964ADF /* SecureTransportUtil.cpp in Sources */, - ED7BC22AAA04977B3356C7EB /* Selector.cpp in Sources */, - E7D9D3C909593D23FA8FDA7A /* ServantLocator.cpp in Sources */, - 45C96192E204B6AE5B272285 /* ServantLocatorF.cpp in Sources */, - F2F60590B4B53220278EE1EF /* ServantManager.cpp in Sources */, - 7E7DEABC002DFDE84F7C7784 /* Service.cpp in Sources */, - 58BD3A0CEAC9816BE48E7C1B /* SHA1.cpp in Sources */, - 7CC28E32C596E2B96BA97437 /* Shared.cpp in Sources */, - C0AF01F8C1A2680A86A26B01 /* SlicedData.cpp in Sources */, - BC3D6EC3D90A4AE009CC3D5F /* SSLEngine.cpp in Sources */, - 4D25051593A83339036F00C8 /* StreamSocket.cpp in Sources */, - 160043DED8FCC4B4461B8CC6 /* StringConverter.cpp in Sources */, - 6AD1CD753151676666EB72C9 /* StringConverterPlugin.cpp in Sources */, - 34C56ED108DA5603633185D5 /* StringUtil.cpp in Sources */, - 22F2090EBDD0134127A4717E /* SysLoggerI.cpp in Sources */, - C4FC8EAD023FB1FB5FA5F353 /* SystemdJournalI.cpp in Sources */, - 8886606759CF3C907ECEC53B /* TcpAcceptor.cpp in Sources */, - 8140A9ACBAFECD8048F2C4F6 /* TcpConnector.cpp in Sources */, - 5A0C72759744FAC248F76750 /* TcpEndpointI.cpp in Sources */, - 01EF086D0665E2D7DC2297D9 /* TcpTransceiver.cpp in Sources */, - 088A6BBCF4CE108259A3ED27 /* Thread.cpp in Sources */, - 49BFF564D0A72D4835A03029 /* ThreadException.cpp in Sources */, - 27C5B9CB32BB0B8E9E992910 /* ThreadPool.cpp in Sources */, - 54E34B14AD4D1750156935B2 /* Time.cpp in Sources */, - 002593FA6E99043AABEF19A8 /* Timer.cpp in Sources */, - ED868AC52D578FE5E1E32A0E /* TraceLevels.cpp in Sources */, - 2063A2A53076F3222EB4F4B0 /* TraceUtil.cpp in Sources */, - 558402645321D08AAE5D4765 /* Transceiver.cpp in Sources */, - 25F19EF255F8105DD0073F46 /* TrustManager.cpp in Sources */, - 64320C37681C5B634C5FAD97 /* UdpConnector.cpp in Sources */, - 799B94989EB0FB659DB5FD16 /* UdpEndpointI.cpp in Sources */, - D72E35AE8C558E7BC749F191 /* UdpTransceiver.cpp in Sources */, - 5D039B66F551328A0945E6F3 /* Util.cpp in Sources */, - BBBCAC7EEBFCAEA884101D8D /* UtilException.cpp in Sources */, - 00FE0665F407342D39498E2B /* UUID.cpp in Sources */, - 8039E0224BB29439AE536715 /* Value.cpp in Sources */, - AC66AEAB62812F101CC1A9FC /* ValueFactory.cpp in Sources */, - B0E111F7B287DD1530DDEA1A /* ValueFactoryManagerI.cpp in Sources */, - 6DE8A983BE1304DB333D5A54 /* Version.ice in Sources */, - 4006DB9C513AA2E07BEDB69C /* WSAcceptor.cpp in Sources */, - 5C158C1E51ABA0D75A47E202 /* WSConnector.cpp in Sources */, - 5CA9E7325A11D1072D3B998D /* WSEndpoint.cpp in Sources */, - 43F7AAF102E93B0FDFF85F8A /* WSTransceiver.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - CCE2454EF62FDB1BEF8150C9 /* 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; + }; + AD531935AFAD1531570A2E88 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 30BD1CC63A3B7E7A6A05253C /* AllTests.swift in Sources */, - CB74367931EFE9E5362CA132 /* Client.swift in Sources */, - 30884BEB531E5485E17BC923 /* Server.swift in Sources */, - 2B02CB531C54D4196BB7C999 /* Test.ice in Sources */, - 6918AA844C697E82C64B2F9F /* TestI.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; }; - CF1B1444062FE5D9E38586D4 /* Sources */ = { + B07361FD04E0EB287FC02C73 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 6E6366FBA97D46D0596795B4 /* AllTests.swift in Sources */, - A1491B81B02939D1F2695390 /* Client.swift in Sources */, - 101226D239A906D14D232C6E /* Server.swift in Sources */, - F194CDBC2AF32E45AA04AB45 /* Test.ice in Sources */, - DE39A43B950347837A88F697 /* 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; }; - CF31E29D8FD14FD8A85C2403 /* Sources */ = { + BAED5288881D9007CA76557B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 078296B9E5B53929C2EDAD43 /* AllTests.swift in Sources */, - D46E7C646A1E8D77C6AE1F5D /* Client.swift in Sources */, - DDDA7CC0304D7D1174EAFD93 /* Server.swift in Sources */, - 8E0523110D6C42D2134C4A47 /* Test.ice in Sources */, - B451AD2F2E8335D26E2DC8AA /* TestI.swift 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; }; - CF7B1CD3457464E44032ADFC /* Sources */ = { + C289295116515405522CC64B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 0124F5D1935B3D72A6E64EF2 /* AllTests.swift in Sources */, - B78646021526E09FAE9D9E3A /* Client.swift in Sources */, - 8BFEB606F665B7541EA1052E /* Collocated.swift in Sources */, - 00F487D3AD3785EACE924C0F /* Server.swift in Sources */, - 0299BA4B0F079501AA420194 /* Test.ice in Sources */, - 425141FE2ABC86DD5B948F74 /* 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; }; - D293DEB055122373A6D625CF /* Sources */ = { + C69B92D8253CAABE1A233CD6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1B90E097ED6BB4EE1E6E2D18 /* AllTests.swift in Sources */, - 595B4A531DE157B61D18422A /* Client.swift in Sources */, - 9FF2F13524A1987FB5A421FD /* Server.swift in Sources */, - 60AC310EEEF9B8BD4D60DAAF /* Test.ice in Sources */, - 9D398526A52E1A0DE368F2E4 /* TestI.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; }; - DAE89EA2584CA56DA4BF1DEB /* Sources */ = { + C9BC85A39F6E524BDBD6DBE5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - C0F045DEE2AE93566EEDB6ED /* ServerAMD.swift in Sources */, - BE5C0EBDADB099CCC3BB9156 /* TestAMD.ice in Sources */, - 8C4507D8EBD56AE7C70ECD02 /* TestAMDI.swift 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; }; - DF8A023C84839E51364A1063 /* 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 = ( - 2110AA4BF29B32586B7D8012 /* AllTests.swift in Sources */, - 3309A74215F7525C83407C81 /* Client.swift in Sources */, - 8F3AB1BE615B4F7C552E3560 /* Test.ice 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; }; - E0FA8EE687F03346A9E3EA5D /* Sources */ = { + D47795DE45B565BDB964B23A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B0F3417F7C374C0F482F9DA5 /* ServerAMD.swift in Sources */, - 41FF5166052684179CBD44E6 /* ServerPrivateAMD.ice in Sources */, - 83ABA46B9D89440A0C8034D2 /* TestAMD.ice in Sources */, - 7904865EB4D9B844039CD2A6 /* TestAMDI.swift 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; }; - E2F1BEE041F303D35091A880 /* Sources */ = { + D49EE87B9CACBEF092809F3E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EA34FB21DA849348CC580D41 /* ServerAMD.swift in Sources */, - 8016511938D5F624D464633A /* TestAMD.ice in Sources */, - 8D6130ECAA002485B2C17923 /* TestAMDI.swift in Sources */, + 02F2EFBEA4590FD7AFB2CFC0 /* main.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E3A8DEA90BC4DD24203B4A0D /* Sources */ = { + DCB1F6BD4F9A4018C16A552A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - F91B098208997F1EB1299E70 /* AllTests.swift in Sources */, - 34BC98DF30DC09C7B23D8CF0 /* Client.swift in Sources */, - 0CF450A0A2F39F0454148A99 /* Server.swift in Sources */, - 8622A720644080DF580FD0ED /* Test.ice in Sources */, - 89BD626D72A50F6924F340FB /* TestI.swift in Sources */, + EBBBBA347D35251165034E98 /* Client.swift in Sources */, + 5CF5C759CD5C9A490EA16A3F /* Test.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E43AE966BAECD1D3D4212564 /* Sources */ = { + DCBD1C7C048C69D71EEC4948 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 88D7D9285A591764AE1DCFF1 /* AllTests.swift in Sources */, - A833858ADAD9204E9668A713 /* Client.swift in Sources */, - ACE982D339EDFFC653754B91 /* Server.swift in Sources */, - 3B3AD0090683BBDA262F5508 /* Test.ice in Sources */, - 2839DAC15D5287856ADEBFB0 /* TestI.swift in Sources */, + 5E90DAC6C21862E543F964B8 /* IceStorm.ice in Sources */, + 8293FA06292D0916E7E406E8 /* Metrics.ice in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EBFA09B91AB7A2B6617AAF3E /* Sources */ = { + DD7D82133E5ABDF91FA82F91 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 89CBFE5358A64C8A08A8E908 /* ServerAMD.swift in Sources */, - 5729FC85A5F81362D64C788E /* TestAMD.ice in Sources */, - 4FBCFE426FEE604A4F5DC518 /* TestAMDI.swift in Sources */, + 659150220A61BE0629AA408C /* ServerAMD.swift in Sources */, + 6CC0A293FAF7D9EBE4CE3999 /* TestAMD.ice in Sources */, + DBA772351D1FF736995A2143 /* TestAMDI.swift in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F10295EA2BA3F6C2C198BBC5 /* Sources */ = { + DD87BBC707D274A0611EB50F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5F10DAB82E234F86D81B0EAA /* AllTests.swift in Sources */, - 48F81BC696321E7DD455531E /* Client.swift in Sources */, - 3B3E61B98E6458DBE8E1D134 /* Server.swift in Sources */, - 79A1925010F96055D419F173 /* Test.ice in Sources */, - C14261921EC5B6DE9586AA24 /* TestI.swift in 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; }; - F397727F47CFBB558C1BA0B0 /* Sources */ = { + E078DD2EC4116147822ECE01 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5EE9E3167B275C2706119801 /* AdminFacetFactory.swift in Sources */, - E65A12912D5C10F7A5F78A49 /* Blobject.swift in Sources */, - 381F2E1A3E0357DD8D7F6A8F /* BlobjectAsync.swift in Sources */, - BD43FAB5A93C34E64E28BF55 /* BuiltinSequences.ice in Sources */, - 2E09829FB9961B1320CCECA3 /* ClassResolver.swift in Sources */, - 1C48E0521B537C80932E2D14 /* Communicator.swift in Sources */, - CA68D62399ACFCB8817B64C5 /* CommunicatorI.swift in Sources */, - 875EB2E0A298E0D4B82D425B /* Connection.swift in Sources */, - BAA9CFBA87D8EA695783DEA2 /* ConnectionI.swift in Sources */, - 7ED2872294B29183D74E6D87 /* ConnectionInfoFactory.swift in Sources */, - 3289BB4B1953834352FD82F1 /* Context.ice in Sources */, - EDC726E5116DF79B42E10724 /* Current.swift in Sources */, - FB530E3D167CA5BCDBE9BEC2 /* Endpoint.swift in Sources */, - 848E2A01CE44343781BEF6CD /* EndpointI.swift in Sources */, - 5B1A07BE7511FE3C61F2D046 /* EndpointInfoFactory.swift in Sources */, - 8FE65F6DAEDB22104FD0609A /* EndpointSelectionType.swift in Sources */, - D4344DFCF693191817C81A00 /* EndpointTypes.ice in Sources */, - 8758B7E46B770685B266FFC8 /* Exception.swift in Sources */, - DBF476418CD0E189A1673811 /* FacetMap.swift in Sources */, - 8A69ADDB57C84FBA4F528240 /* FormatType.swift in Sources */, - 126403DC6D1B09CDFC7EBAC4 /* IAPConnectionInfo.swift in Sources */, - 4B1606F2BA1FF3AA33BD2ACB /* IAPEndpointInfo.swift in Sources */, - B991982DFFEB4E157255AE6F /* Identity.ice in Sources */, - 6CA2DB9DDA91E513530F1D0D /* ImplicitContext.swift in Sources */, - D7B0002B1C68D0E52E8FAFEE /* ImplicitContextI.swift in Sources */, - 1B4323468E2ADA38457B870B /* Incoming.swift in Sources */, - EC177206816100D056A7C635 /* InitializationData.swift in Sources */, - 6F372057CC71DDD00F5D3B28 /* Initialize.swift in Sources */, - C8430DD25DF281D70F6CCCFA /* InputStream.swift in Sources */, - 75231CA5EA77CEA177619D68 /* Instrumentation.swift in Sources */, - 10F351325620C77D1E508B7B /* LocalException.swift in Sources */, - 387C9FBCF807EBD311D89BB2 /* LocalExceptionDescription.swift in Sources */, - E83D2828AA7D25CB5987291E /* LocalExceptionFactory.swift in Sources */, - FAF775CD4CC584724B6E4BFC /* LocalObject.swift in Sources */, - 9DE8B5F4F6CD04FC92F08A18 /* Locator.ice in Sources */, - 25FA9E5BB2F62F57E834F0D3 /* LocatorF.ice in Sources */, - ACBFD23F7C301915C5856651 /* Logger.swift in Sources */, - 39B5D32367FA4CE4F120027B /* LoggerWrapper.swift in Sources */, - 8311F26BE59DEFD56E414269 /* Metrics.ice in Sources */, - 59EB0033873F6E39267226DC /* Mutex.swift in Sources */, - FE4887740E46F96A432B6F75 /* NativePropertiesAdmin.swift in Sources */, - 723EE9C5CAAF84265489CADF /* Object.swift in Sources */, - 76537F251BBF45019A95995E /* ObjectAdapter.swift in Sources */, - 3B94BD4C53B501BBED67162A /* ObjectAdapterI.swift in Sources */, - 8D5DA597F06AB00006A334A0 /* OperationMode.ice in Sources */, - BBE742F1DFDDCEB7A3BE8625 /* OptionalFormat.swift in Sources */, - FB4AE4F1A6430ECE8CAD317F /* OutputStream.swift in Sources */, - A391F8627181A212266CE4F8 /* Plugin.swift in Sources */, - 5A270029AA086FCD68401A9F /* Process.ice in Sources */, - D19E0496C898E9B7697C0726 /* ProcessI.swift in Sources */, - D90123A4143E72D3ECDE112D /* Properties.swift in Sources */, - 0CB00C51D1538F274D69152F /* PropertiesAdmin.ice in Sources */, - 49510B169380DAE5FC8B2E10 /* PropertiesAdminI.swift in Sources */, - 00A667381383D7A104D11FA8 /* PropertiesI.swift in Sources */, - 668EC761627F2EC1BAAB953E /* PropertyDict.ice in Sources */, - 48E6810798AD40D0134A0BDC /* Proxy.swift in Sources */, - B4FED0CB275415CA0BDBE88C /* RemoteLogger.ice in Sources */, - F63F8F55A184BAAE3C16D5BB /* Router.ice in Sources */, - 08844D0461D00EFE56B5AD1B /* RouterF.ice in Sources */, - 03D4D96A2E376F6E49556346 /* ServantLocator.swift in Sources */, - 6EDCD02EC62F84DF7B9D7607 /* ServantManager.swift in Sources */, - 028A7F9998CD9F657744EE2B /* SlicedData.swift in Sources */, - DDF330BBC0C728B5BAEF0159 /* SliceFlags.swift in Sources */, - F7C188B7CAD692A761D796E8 /* SliceInfo.swift in Sources */, - D4C3F051368A99283CF157BD /* SSLConnectionInfo.swift in Sources */, - 7A4D6B16AAE5C59182AE40D1 /* SSLEndpointInfo.swift in Sources */, - A9C7285A0DF9DF7F94906A6E /* UnknownSlicedValue.swift in Sources */, - 1A44854689C4F681D3348B03 /* Util.swift in Sources */, - E61AF76EF66344DE9F88AE5C /* Value.swift in Sources */, - F27F39F7B04DE92D90D5CB28 /* ValueFactory.swift in Sources */, - 8A4F6176FCA37C036D7804DF /* ValueFactoryManagerI.swift in Sources */, - C2627C5A2479A57E5EE53629 /* Version.ice in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - F55A84E3271B987BEDCD3FB2 /* Sources */ = { + E181720D16E284E00EF5594A /* Client.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E39E496686784AA05C22CC97 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 71AAF522F60C965C350446C9 /* AllTests.swift in Sources */, - B73417712AE0BFE19DC85E71 /* BatchOneways.swift in Sources */, - A3809439D9D0321CE539FDD0 /* BatchOnewaysAMI.swift in Sources */, - 7C2B31B5C272133DE1948E73 /* Client.swift in Sources */, - 3CC4943D16C9FEBE7E141812 /* Collocated.swift in Sources */, - 7C55661EC9DFAC0E5E0A4AF8 /* Oneways.swift in Sources */, - 56E97FDF069E8FF5D6198C8D /* OnewaysAMI.swift in Sources */, - A77DCD9B91D2E95FCC978260 /* Server.swift in Sources */, - 0EB0010773FB71EE1DF2308E /* Test.ice in Sources */, - F236DA1A4D2B575460EE9CEF /* TestI.swift in Sources */, - C04E44502642BFDC01773F49 /* Twoways.swift in Sources */, - 3AB6DA8D15B4E7A6EADF3857 /* TwowaysAMI.swift 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; }; - F883BDAC576982772FA180AA /* Sources */ = { + E5D35452D06C65272699DA6D /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - BF7CED554DC9F717C953BEBD /* ServerAMD.swift in Sources */, - 96C46DF1A21FEC3E0065C7BD /* TestAMD.ice in Sources */, - EBAA5849483697AE5E16232A /* TestAMDI.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; }; - F9440AFC2469DF50591441D3 /* Sources */ = { + EDA094C1C4131E1A673E1E38 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5E08EB311D6E16A25D4D5FEA /* AllTests.swift in Sources */, - BD08218A3D3AE414822402A2 /* Client.swift in Sources */, - 8C0A2D9F0804871932011BB5 /* Test.ice in Sources */, + 66861428929B44C881B19992 /* IceDiscovery.ice in Sources */, + 62342547D0A276825BB0B640 /* LocatorI.cpp in Sources */, + 305AE1B91CE98B360902D641 /* LookupI.cpp in Sources */, + FE91EA7EF11C6BA28BBDC339 /* PluginI.cpp in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - FA4743AAA8336CD1C662C664 /* Sources */ = { + EEDCDE710185F3317D468277 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 123AC9FEB47482139B9F4974 /* ServerAMD.swift in Sources */, - 9629F9484B15CF5546D3FD4C /* TestAMD.ice in Sources */, - 6A11080ED9C275CCBD4A3B60 /* TestAMDI.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; }; - FBAB2BF624487B3AD91E9DD2 /* Sources */ = { + F694C843C50BFC05832FCA72 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 842358F2A2C78210E827D854 /* BlobjectFacade.mm in Sources */, - 5FF72A1A2D75592EC9D2A447 /* Communicator.mm in Sources */, - 9CD7519D7A0B4FB0FC9B0627 /* Connection.mm in Sources */, - 417681F023BC2C9D3ED87D34 /* Convert.mm in Sources */, - 55D3DA41FC490F04DD2529B6 /* Endpoint.mm in Sources */, - EC62E2D762C81829674F1635 /* Exception.mm in Sources */, - 5E4EDDD599F3AED3672370B5 /* IceUtil.mm in Sources */, - 969285B4BE28CFEEC42C375E /* ImplicitContext.mm in Sources */, - 93B7487AB18E1A9A3B1781B9 /* LocalObject.mm in Sources */, - FCF032C01B28F823A151F4AE /* Logger.mm in Sources */, - FC92FCA370E4FBCA8079ABD1 /* ObjectAdapter.mm in Sources */, - 9C1B41496E95DD89E1AB38F6 /* ObjectPrx.mm in Sources */, - CC817ADCD9DDC10A912EE45A /* Process.mm in Sources */, - 8404E57A693222161BC56732 /* Properties.mm in Sources */, - 4192519E1A06C7457BC9DC1C /* PropertiesAdmin.mm in Sources */, - 82B07F81F92C82FC2C8E859C /* TraceUtil.mm in Sources */, - A663AD708EDDDF794AE80847 /* UnsupportedAdminFacet.mm 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; }; - FDA13795394CA6C06A6E63B4 /* Sources */ = { + F84517A4D3BABA53BB2AA94C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 5DCACE4010ACB486CFBFCCA3 /* Client.swift in Sources */, - D31863D4C2285EE26B4B5BF5 /* Test.ice 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; }; - FDC9787080C924D81B9C2280 /* Sources */ = { + FE047DCC21E6B1343E3D70AE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D93E9CE5FA4075E4129F5FFA /* AllTests.swift in Sources */, - 9C991835EB6469C2C8FE9028 /* Client.swift in Sources */, - CD1C57F0EB79D5859889637B /* Collocated.swift in Sources */, - 71FA006F994324C748C9AD24 /* Forward.ice in Sources */, - F7E8D1A74667461F322D5563 /* Server.swift in Sources */, - A74E2ACB156AC71ADF209D33 /* Test.ice in Sources */, - A202237B8A5762C836D3F45D /* TestI.swift 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 */ - 004E3BD554C37FB3CBC4E2F1 /* PBXTargetDependency */ = { + 02AE090786CAF2F25D18C7B7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceTimeout macOS"; - target = 01B75CEA3EB80A6E664242B0 /* IceTimeout macOS */; - targetProxy = 48A05C6747E6A0EFD505F916 /* PBXContainerItemProxy */; + name = "IceHold iOS"; + target = BBA5FF013C8B19537743DE0C /* IceHold iOS */; + targetProxy = 991264BBD05F5B0C3EB15175 /* PBXContainerItemProxy */; }; - 023095BB736D389D21B94F2E /* PBXTargetDependency */ = { + 0356A3A245B9D197AE470682 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 214F2022F11C51A60354D2FD /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 6D8BD82FC4D2E7D88CD1E206 /* PBXContainerItemProxy */; }; - 0298BDC1A4881843FD6359B6 /* PBXTargetDependency */ = { + 0356D9257481D2DAC1477D98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 1F6E39B0AF1CA523FE1104ED /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 7ED02EC4A652BACF79A7FBD3 /* PBXContainerItemProxy */; }; - 03134A7173C5F92037D8BC35 /* PBXTargetDependency */ = { + 03E984B972C8157DA2D93308 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdapterDeactivation macOS"; - target = 3639C4450BB9A2FD62EC83B1 /* IceAdapterDeactivation macOS */; - targetProxy = ABB6F45CD4ED637CBEED9AB2 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 65275F3033D631BFFDB68F37 /* PBXContainerItemProxy */; }; - 04E4526F7B2AA2655197C56F /* PBXTargetDependency */ = { + 04205069B5145186C7C5AA9A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = ACE53CA2816C4E55258DDBF3 /* PBXContainerItemProxy */; + }; + 04D3A8A4D370449E0F2961F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 547B75DA5DF24164A91EB88F /* PBXContainerItemProxy */; + }; + 054A49A3CE39EC48F11E8672 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = BFC9235FE83BA2E248689D61 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 00DE841C8687D0E197EE85CE /* PBXContainerItemProxy */; }; - 06AD476773998DB766063AA0 /* PBXTargetDependency */ = { + 0596616D6761FCE4D0555E45 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 20F7F3CB060E2090ED871F71 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 04A622B5D5B12F62B158F08A /* PBXContainerItemProxy */; }; - 0711AC59187DD9DC662E4FFD /* PBXTargetDependency */ = { + 06E52F3B4022C2B95DA5DC76 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 74304FDE80AF64C29200E27D /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 1B73AE5BB2E857F560D937D3 /* PBXContainerItemProxy */; }; - 09D3052B0E301E57DB00C947 /* PBXTargetDependency */ = { + 07A546A6D38DEE5AB3BCB897 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = CC3F335017C739B8F7DFFE67 /* PBXContainerItemProxy */; + name = "IceServantLocatorAMD iOS"; + target = D2E3C388100CC50AD3052CDB /* IceServantLocatorAMD iOS */; + targetProxy = 0B0BE533B1668784A4F6EE1D /* PBXContainerItemProxy */; }; - 0B04243124955F9134481732 /* PBXTargetDependency */ = { + 07C6F7B220C492E23B1C0018 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */; - targetProxy = 1CFB7F5DBEA57A48B2E1171E /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = B44F1E29F31C520BAD808D20 /* PBXContainerItemProxy */; }; - 0BAF063A3E73FE1E9F85BBFF /* PBXTargetDependency */ = { + 09CB6BF22B26F03069623513 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = E5EDE10DBD743B2B88272616 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = CAFBDF8687533CCA806C1502 /* PBXContainerItemProxy */; }; - 0EF9EF4783171AF2103CFD5F /* PBXTargetDependency */ = { + 0A91B8A116875CEC970DB85E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 487E2719252E3289C9CC2421 /* PBXContainerItemProxy */; + name = "IceExceptionsAMD macOS"; + target = D6B732964F3D00D84F9428AC /* IceExceptionsAMD macOS */; + targetProxy = 51F244B025EF269D92B3F262 /* PBXContainerItemProxy */; }; - 0FFDAC4A08652765099EA6F1 /* PBXTargetDependency */ = { + 0C3850A95834B28C11362CCF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultValue iOS"; - target = A69CCF574C4233A49E864528 /* IceDefaultValue iOS */; - targetProxy = 932A74664455DA068E3A15C2 /* PBXContainerItemProxy */; + name = "IceInvoke macOS"; + target = A4F94E6B42A58EEF0623EC8F /* IceInvoke macOS */; + targetProxy = 413D3258EDF4221463EBEB9C /* PBXContainerItemProxy */; }; - 1064301F302334151EA6390F /* PBXTargetDependency */ = { + 0CE7B06C949606A74D76872C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 7CC54CF37E775799AE523FFF /* PBXContainerItemProxy */; + name = "IceGrid macOS"; + target = A250D484C77105742100E390 /* IceGrid macOS */; + targetProxy = BCEA82B1F942CA1B16338658 /* PBXContainerItemProxy */; }; - 120EC5E39F021DB7DC78826D /* PBXTargetDependency */ = { + 0DA5BDF460102F04C8CC3A5E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = EFDC1B11E41C9B68528DA3AB /* PBXContainerItemProxy */; + name = "SliceEscape iOS"; + target = 26D8717EB0F318653FB9C763 /* SliceEscape iOS */; + targetProxy = 0DDD4EE66F91D09188619B17 /* PBXContainerItemProxy */; }; - 13564D9121B17F14DA89ECD9 /* PBXTargetDependency */ = { + 0F10BA3B5220F9FB61BF7D16 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 2E24BDD2EB699E821381EE6E /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 5D87AD3193C4D90FD9C8179B /* PBXContainerItemProxy */; }; - 1668D9984B544411EF6127A9 /* PBXTargetDependency */ = { + 0FAE2DBE27D95467C3AFB46D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServices macOS"; - target = E4350886F7ECE83389DE7799 /* IceServices macOS */; - targetProxy = 6447F140D3855CB2A934008B /* PBXContainerItemProxy */; + name = "IceSlicingObjectsAMD iOS"; + target = 983596DE8C0BFB636571955C /* IceSlicingObjectsAMD iOS */; + targetProxy = 93BEBC05532306FA1AEDF168 /* PBXContainerItemProxy */; }; - 16814372AF840708839F0163 /* PBXTargetDependency */ = { + 1164E4382B9F2C4C300A9DAE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 2AFEEC4032840A9398F816FE /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 37ED755B12FCC0583ECA1212 /* PBXContainerItemProxy */; }; - 172590E345988F2A73800535 /* PBXTargetDependency */ = { + 11D741130322376C7172CC42 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 49D8595FBEE292E8490C19DC /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = FDF9A5645B0240D99DE2FF8B /* PBXContainerItemProxy */; }; - 17352DE6341BC3926B870B09 /* PBXTargetDependency */ = { + 1266E8E92D898438FC6EF1B5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 54727D84878D2D579323A84A /* PBXContainerItemProxy */; + name = "IceBinding macOS"; + target = 84AAA301C5D3AF97E6828B9A /* IceBinding macOS */; + targetProxy = 720F330D49EF2814155C4761 /* PBXContainerItemProxy */; }; - 176CDC7FE90E8C736046CF72 /* PBXTargetDependency */ = { + 13EC7376399917A6F4985F30 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = BD25CE387C2F7A6673DC1249 /* PBXContainerItemProxy */; + name = "IceServices iOS"; + target = DF67C7AEC35876C0CCF4A96A /* IceServices iOS */; + targetProxy = F3F9BFAF309FD4836BD0FDF4 /* PBXContainerItemProxy */; }; - 17E9A9CB0540B86A5D180043 /* PBXTargetDependency */ = { + 167EC68770DCBFC81886B91F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = CECFB40220DF43A9D4B2475A /* PBXContainerItemProxy */; + name = "IceLocation macOS"; + target = 4434399DDA0D789BDAB8EDCF /* IceLocation macOS */; + targetProxy = 221A2C420C1A9087B55E7CDF /* PBXContainerItemProxy */; }; - 17EC27CE297AA6E9065BB02A /* PBXTargetDependency */ = { + 1697C65C44B82CBEB265245E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 31FBBDA3349CA05A02DCB97B /* PBXContainerItemProxy */; + name = "IceStorm macOS"; + target = B8D5C1F592E31ABE249CC078 /* IceStorm macOS */; + targetProxy = E650749F9DE5664CE7EFD2FE /* PBXContainerItemProxy */; }; - 1A07374B3416C0DC9EDFA40C /* PBXTargetDependency */ = { + 16E0DC56003F27C197DA65D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = D8416E33B6CD2C36AD8B6C5E /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */; + targetProxy = 21F2AE70E3D37455D567BBB9 /* PBXContainerItemProxy */; }; - 1B368E8F1EE4A7512FD3973F /* PBXTargetDependency */ = { + 17D6FC07049104A3479EE431 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceTimeout iOS"; - target = FA5053DC63D60556D4AF6086 /* IceTimeout iOS */; - targetProxy = 4AEF98C694E4398B686F61DB /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 7CA3910FB0789320EE20268F /* PBXContainerItemProxy */; }; - 1B4708EFE676B0617E942186 /* PBXTargetDependency */ = { + 17E4AA84E0081A0160F7A22F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 6BC063A5D73FD71B54DA9C89 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 5710FC39CDFFBBD1632956E4 /* PBXContainerItemProxy */; }; - 1C9F3CFD7598AFBA884A0ABC /* PBXTargetDependency */ = { + 1807BFE7D066FFE825A19EBC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceUdp iOS"; - target = 0BE885FE5E5BBE860323877D /* IceUdp iOS */; - targetProxy = D204316036368C4278CE7559 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 4B24C60DD2735F19F92AB8D3 /* PBXContainerItemProxy */; }; - 1CBF579EC013B2E376910769 /* PBXTargetDependency */ = { + 1C8C8242D9958C85A81FB707 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = E074E4486CC1CB2F8544E30B /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = F2C07CC5EC3AE2EF3E48430B /* PBXContainerItemProxy */; }; - 1D34CC2EBD4CECFDDCDFB1BC /* PBXTargetDependency */ = { + 1D0F5F70057CFE956BCE3C98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxyAMD macOS"; - target = 3EA20E16FBEAA1C5B0DA52BA /* IceProxyAMD macOS */; - targetProxy = 6AA66EDB612628ECEBD99430 /* PBXContainerItemProxy */; + name = "IceServantLocatorAMD macOS"; + target = 9B13B57D40995B5A58986BCF /* IceServantLocatorAMD macOS */; + targetProxy = 9211D311DD89DD888C03D35D /* PBXContainerItemProxy */; }; - 1D95A803903FF16821114567 /* PBXTargetDependency */ = { + 1E5528ACD23F1444C341E3B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = CAE51B4E432EBC708C039700 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = F347A0D0390120C571DF18FE /* PBXContainerItemProxy */; }; - 1D9E349307B8AC6A78B16C9C /* PBXTargetDependency */ = { + 1F96080B43C6108C5BA9A004 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceFacets iOS"; - target = 21CBD45E7CE90BF8C75C80EB /* IceFacets iOS */; - targetProxy = EA43F5A92F5981734F841172 /* PBXContainerItemProxy */; + name = "IceHold macOS"; + target = 41AF2CA6936313B5E6F391BD /* IceHold macOS */; + targetProxy = BC72A5BAF0F8B596CDDDDF97 /* PBXContainerItemProxy */; }; - 1E85260D9970B3DEA09E1D7F /* PBXTargetDependency */ = { + 210D93C5CE1B6BAF8583E68D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 6DB6FBBEEF9107C0356251CC /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 2F145549E2ECE2604831DFC1 /* PBXContainerItemProxy */; }; - 201B5C1C0AEC5EE1E56D1AF5 /* PBXTargetDependency */ = { + 223FA5C36D5387D3A92718C3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocatorAMD macOS"; - target = F5CD065672396E4209757A74 /* IceServantLocatorAMD macOS */; - targetProxy = 431323999F9B2609B23DDEB9 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = C6FAC2B7A282B158A959FF06 /* PBXContainerItemProxy */; }; - 213019ABFBDB96BD8C65B7B3 /* PBXTargetDependency */ = { + 225C8AA1BDF53746F19E059E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = F0CAC9CB4CB4C06E1BE93C9E /* PBXContainerItemProxy */; + name = "IceServantLocator iOS"; + target = 08C942FD89E4D9E7FA113627 /* IceServantLocator iOS */; + targetProxy = F999F6D9AA5364C5641B87EB /* PBXContainerItemProxy */; }; - 21326B009F7622080ED1C8ED /* PBXTargetDependency */ = { + 22954B34E0A47983E6B3DE9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 2056098B0E2B55DABA18B8EE /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 1F2B3F76BEAF1A445EAD42B1 /* PBXContainerItemProxy */; }; - 2367577BB797E283A1A7213B /* PBXTargetDependency */ = { + 25FB548EF674C7A8DC71D534 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 12BB418486F51E54CC92F9DA /* PBXContainerItemProxy */; + name = "IceInterceptor iOS"; + target = 2B82F333BA11DB5D8BECDBF6 /* IceInterceptor iOS */; + targetProxy = 09D86D6C5084A5D227EE225F /* PBXContainerItemProxy */; }; - 2515347844C24DEB2A01ECAE /* PBXTargetDependency */ = { + 26273A8A01152B7B735D8E52 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 36AA695C134C523B6DD246EB /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 4D812AF9E49B9BA1AF671E67 /* PBXContainerItemProxy */; }; - 26ED27E144843A00C086BEA1 /* PBXTargetDependency */ = { + 264BC338C6E40185DAA8E7BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl macOS"; - target = E47E556F6FF734E970050937 /* IceImpl macOS */; - targetProxy = 2FF1C3EFC1E0BAFB52D6B55E /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = ED22EDC542CA4128A4272E26 /* PBXContainerItemProxy */; }; - 2716428E9B531A65D3377B42 /* PBXTargetDependency */ = { + 26587AD449CCB3B5D3DD2D6E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceFacets macOS"; - target = 995512D73E07EFE9CD097A94 /* IceFacets macOS */; - targetProxy = D2736822D87D78823604F385 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = BE1E84FF3A8338A1BA3DFE4A /* PBXContainerItemProxy */; }; - 2768FAC75611D30E3DC16C0B /* PBXTargetDependency */ = { + 26E5DD3BEB852EE4C8DB3FF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocation iOS"; - target = 9A5B406340D1F54AA6A93582 /* IceLocation iOS */; - targetProxy = 017D617F05A79DC3E75E1867 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 0D0E77FB031E59897244F92D /* PBXContainerItemProxy */; + }; + 26E6A837F9F3EFF049C9A1AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceExceptions macOS"; + target = 5A26265E443FF04358AE528C /* IceExceptions macOS */; + targetProxy = F292D38B412A25F57B561E8C /* PBXContainerItemProxy */; + }; + 27AA1C0790CF7A8B2557983B /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = A2C96F9A6982B7F377ED37D4 /* PBXContainerItemProxy */; }; - 27BCE5C17E0BC2EFE96D9805 /* PBXTargetDependency */ = { + 28FCEC4C8FBAE8C9D638AE3A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = A39C25EFE0F64DB7A9B478A0 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 97A804BC39125A92D546055F /* PBXContainerItemProxy */; }; - 27FA504BD00219560AF87677 /* PBXTargetDependency */ = { + 2A80FC7A1C0D10531E545B83 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = C4AD91397B522AA9E23C597D /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 396D95E81049556B6818C49D /* PBXContainerItemProxy */; }; - 295438B5CAFE9CE6A2060CE5 /* PBXTargetDependency */ = { + 2B09BB6A39751A23449D1194 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceBinding iOS"; - target = 4E2639095BC1D8AB5CABDD8E /* IceBinding iOS */; - targetProxy = 4CB60D7AE0828B4C5307A56B /* PBXContainerItemProxy */; + name = "IceOperationsAMD iOS"; + target = 9F3B1821E0C570BF87946D26 /* IceOperationsAMD iOS */; + targetProxy = 144F03DDB219C92CC0AD982B /* PBXContainerItemProxy */; }; - 2956B7B75F4D412AF02EFF31 /* PBXTargetDependency */ = { + 2B1B355F21DDF3BE4F41B18B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultServant macOS"; - target = DEABBE98FF536A890AE33865 /* IceDefaultServant macOS */; - targetProxy = 06E2F46705DA55C6A2B74117 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = FA38DD4A2599FD79A1FCA902 /* PBXContainerItemProxy */; }; - 2976AD49BDA685FF3D348498 /* PBXTargetDependency */ = { + 2B47301E751C23EFBE4F8294 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = BD8948999598714FBF24D4CA /* PBXContainerItemProxy */; + name = "IceOperations macOS"; + target = 615480D42FAF508D7F8AA5BC /* IceOperations macOS */; + targetProxy = EBDBA820E18BCDE686908DF9 /* PBXContainerItemProxy */; }; - 2A12B9C7041B620AF29C39EC /* PBXTargetDependency */ = { + 2B778FCC7C694EED66868D10 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 637B366C15B65850C6F90DCA /* PBXContainerItemProxy */; + name = "IceDiscovery C++11 macOS"; + target = 3AA88FF2CD4BC207F3E38A68 /* IceDiscovery C++11 macOS */; + targetProxy = 076A7FBA191D0BF483C0A3DE /* PBXContainerItemProxy */; }; - 2B173C14DE63B3886B29223D /* PBXTargetDependency */ = { + 2C35865548487819E61CD5C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 2119F0153B7672564FDE9352 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */; + targetProxy = 89130D871CF9DB3F3FFB3C38 /* PBXContainerItemProxy */; }; - 2B93FFC81500D248421591C7 /* PBXTargetDependency */ = { + 2C75679E47BB1A606F96DE00 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 31A6C9E7B044CD56F7F4B1BB /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = D673464449D815C693CED06F /* PBXContainerItemProxy */; }; - 2E7CD23A36D6ECD9DDB009F5 /* PBXTargetDependency */ = { + 2E2365AC0BDC8918C91F15F3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = F6A28F925DEE920CAA8D477F /* PBXContainerItemProxy */; + name = "IceFacets iOS"; + target = 8C1035C93AB58A55E8EB9B9D /* IceFacets iOS */; + targetProxy = 484B59305DCF5D0F7D737D6E /* PBXContainerItemProxy */; }; - 2EF0FF8E8B9198F8D0752DF2 /* PBXTargetDependency */ = { + 2E73BB1C13AA4FC7B334F57C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 45E8B8739927241A85B77A0C /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = F56C6CA8F14343C786663240 /* PBXContainerItemProxy */; }; - 2FE04E929B05A627C1689DEA /* PBXTargetDependency */ = { + 2F831D8CEE40F51B9F617D79 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptionsAMD macOS"; - target = 9F8CD7854A90F92273855E8E /* IceExceptionsAMD macOS */; - targetProxy = E2C6757F98AD2F3BCFA443AB /* PBXContainerItemProxy */; + name = "IceGrid iOS"; + target = 2646D8A7E773E3BDE5BE8E29 /* IceGrid iOS */; + targetProxy = 6833646617F50B5F99224F96 /* PBXContainerItemProxy */; }; - 30C046AADB977BE9C4A79B12 /* PBXTargetDependency */ = { + 3244052F17A2A6DDF30979C1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 53286E42A0BF3C0F24DEDFDE /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */; + targetProxy = CA56ABC7E7B37A199F53B865 /* PBXContainerItemProxy */; }; - 31A66F09B3162862E4B3954A /* PBXTargetDependency */ = { + 32A9B8CD1DF556B5E5C61FE8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperations macOS"; - target = D3BDE8AC40C1810EB2A14067 /* IceOperations macOS */; - targetProxy = 8B6199793E858890BE13B8C1 /* PBXContainerItemProxy */; + name = "IceProperties macOS"; + target = 529314BF4173169E9CB2F36B /* IceProperties macOS */; + targetProxy = 78F98741015DAF726FBA93FA /* PBXContainerItemProxy */; }; - 31F711D9B60355CC16FE3A48 /* PBXTargetDependency */ = { + 335A5AB7C7B7A487BA41F78C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 9597FB16871D9D4BDF6A58A9 /* PBXContainerItemProxy */; + }; + 33A8D8114126AA8536176F9A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = A84BFF87D0198C1872FE0CD9 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 98DB500817B95AC1BE905C7A /* PBXContainerItemProxy */; }; - 33C9B29A2C6F71E8AC4A5273 /* PBXTargetDependency */ = { + 33CC3B2171296B8FEE8D9CB0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocator macOS"; - target = A7EE978EE70DDA201B41538D /* IceServantLocator macOS */; - targetProxy = 29AC2C7E0DB10E41A627D4AA /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 2090F85D0C4A629C299DAC0A /* PBXContainerItemProxy */; + }; + 354922DD748FAF19507292F0 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceInheritance macOS"; + target = FC49A3F19B353AC4051631B4 /* IceInheritance macOS */; + targetProxy = 571722DCA58D3280510DBAE2 /* PBXContainerItemProxy */; }; - 340386BFD6092E294F96DDB2 /* PBXTargetDependency */ = { + 3549A8EFC012523759D7C1B9 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = EEB85058AAB0ED8D1F09CA5B /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 1405B64CF0AB7E8116B7FFF9 /* PBXContainerItemProxy */; }; - 356D04B529083865813959EB /* PBXTargetDependency */ = { + 384F9D5525DDD9DA5F2BDCB1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 7E42163A5BD5EB9625515535 /* PBXContainerItemProxy */; + }; + 3A15991EDADCB55D910D42DD /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 503C194C0BB2C054BB9B4C87 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = A5B8085302BFA40AF3522E4B /* PBXContainerItemProxy */; }; - 365A22EBF5A4FDADF221E23F /* PBXTargetDependency */ = { + 3A6302D4E95736627714E1FF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInterceptor macOS"; - target = 055B3C0D85846EE14E87127C /* IceInterceptor macOS */; - targetProxy = 1384274EDEE7A7FAA55AD26F /* PBXContainerItemProxy */; + name = "IceOperations iOS"; + target = B7EFE020C9D77334FB6C5B4B /* IceOperations iOS */; + targetProxy = C20D2C69AEEDD95371E42ACB /* PBXContainerItemProxy */; }; - 37013EDE8DFC3E9D2FD76CE4 /* PBXTargetDependency */ = { + 3C571710DABB166F5AB0D497 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 1191388E89BA38934CD70895 /* PBXContainerItemProxy */; + name = "IceStorm macOS"; + target = B8D5C1F592E31ABE249CC078 /* IceStorm macOS */; + targetProxy = B69CE10E62DE8F029C6CBA37 /* PBXContainerItemProxy */; }; - 374811107DE398E12960D278 /* PBXTargetDependency */ = { + 416D7FD01A7671C500F22B8D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = B015EA95DFADDD31E102004C /* Glacier2 iOS */; - targetProxy = E32CCBD20385AB74896F5913 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 0EB89F1B2A18E897F751F54B /* PBXContainerItemProxy */; }; - 3801411212C153DF30A2252F /* PBXTargetDependency */ = { + 416FAFE324EDB70B39EEAAC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 85E74D5D665AC53235A8BA7B /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 8DFC07199E95E21CB8D2ABF3 /* PBXContainerItemProxy */; }; - 38E9400954C5518735939765 /* PBXTargetDependency */ = { + 43B165872B3B751A3C828633 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 065709735975E1794527B9B7 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 4CA0D05C006208E49B678FCC /* PBXContainerItemProxy */; }; - 3936611C36535AD3F4155E07 /* PBXTargetDependency */ = { + 4433B6BB516D59984B87129C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 4A2DD3FCD2B58B84CEA19C63 /* 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 */; }; - 3A944994753FF0CAFC681A28 /* PBXTargetDependency */ = { + 445588A8E4930A760FD185E7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 80796B2D618056666858C9F6 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 6F71D9490BEF8E58D04C1868 /* PBXContainerItemProxy */; }; - 3B6087890EFE699EE58EBC82 /* PBXTargetDependency */ = { + 4609D89767C5EC483B2A4EF2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptionsAMD iOS"; - target = D09FEEF78E85A083AFB9AA4D /* IceSlicingExceptionsAMD iOS */; - targetProxy = 130D31F8BD9124BA58249168 /* PBXContainerItemProxy */; + name = "IceSlicingExceptionsAMD macOS"; + target = D07E492BEFB243158D25D09C /* IceSlicingExceptionsAMD macOS */; + targetProxy = 0B6551F9AB9BAA4EB2DFA780 /* PBXContainerItemProxy */; }; - 3CC75AD56303036F1EBB8998 /* PBXTargetDependency */ = { + 47FB782459BC2150AD05A8C0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm macOS"; - target = C7C6F15DD53FB4E2316C8AA3 /* IceStorm macOS */; - targetProxy = 8A1ED9492B7471048F9E9B5C /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 68FA5CD5D3BE1AE97589F1C8 /* PBXContainerItemProxy */; }; - 3DBE51302F6C198FD8C49ECF /* PBXTargetDependency */ = { + 47FE95D45ABA35FC405F49A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl iOS"; - target = 15259193E3C55F25AB0F68C2 /* IceImpl iOS */; - targetProxy = 05C361795C27A9E377A5C00E /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = E99774074A8FF35E057B2617 /* PBXContainerItemProxy */; }; - 3DC15ECB7A44F56792CB7070 /* PBXTargetDependency */ = { + 49CBBCF4F2BE23E6AC12D730 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = AF68E94A7402B6E6732C6E90 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 1819A3F4E2BF3546C183A010 /* PBXContainerItemProxy */; }; - 3F1CB2E5551EEDC59E1E432F /* PBXTargetDependency */ = { + 4A6A04D7D9C890A5021B5F52 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = A100CA95376252E5800514F5 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = CE57E0618D88D8B0EDCFAE66 /* PBXContainerItemProxy */; }; - 421BF68BAE989652701BB2EE /* PBXTargetDependency */ = { + 4AA57B4CCAFD40B94EB5703C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptionalAMD macOS"; - target = CA2ED7A56EF4FAC83454B118 /* IceOptionalAMD macOS */; - targetProxy = D39B58791CFE826FC5C0B3CE /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 2D02A219CBEBD9573C6A045D /* PBXContainerItemProxy */; }; - 42C8E46CBBDE065DD4F3AE64 /* PBXTargetDependency */ = { + 4B02A11F530EE883CB2578B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = CEF1ED2A44B2BAE0AE0B676B /* PBXContainerItemProxy */; + name = "IceDiscovery C++11 iOS"; + target = 49D15054211B9CC6B08CB18E /* IceDiscovery C++11 iOS */; + targetProxy = F8E3F3CD0C91D48B98C016D3 /* PBXContainerItemProxy */; }; - 42FE01A7DDE457D508342618 /* PBXTargetDependency */ = { + 4BAC91CC5FEA7F7B16E72836 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceBinding macOS"; - target = F4DA824A9FD9930888BD262E /* IceBinding macOS */; - targetProxy = 443297BF76E4DEDA5E7D1E75 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = C640207D4C684B47C8580F7D /* PBXContainerItemProxy */; }; - 43CE86862EBAEC29625C6B12 /* PBXTargetDependency */ = { + 4D3889E084E8D41CA4DEDB01 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 69719D3E20250DD8CAE426F2 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 3D208A518B330B7F9465B12D /* PBXContainerItemProxy */; }; - 43FD2DE664E32B8F89030A19 /* PBXTargetDependency */ = { + 4F1EA7D3FA5C865629A2BBCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = DE9F785118DDEF3B4D7CFAC0 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = ABDC8BDE7C177CC5735A455B /* PBXContainerItemProxy */; }; - 462EF77A0D83099CC171DD6B /* PBXTargetDependency */ = { + 505B7DE87463FDA5DDC46ED5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjects iOS"; - target = 0CC992ABE92F26754D8B7AC6 /* IceSlicingObjects iOS */; - targetProxy = 2F4791483C4760E90314EFD8 /* PBXContainerItemProxy */; + name = "IceSlicingExceptions iOS"; + target = 737F194EFAAE24FEE20C5FF6 /* IceSlicingExceptions iOS */; + targetProxy = 11F96F305582FC17417991AD /* PBXContainerItemProxy */; }; - 470B6D2077BC29AB1E28CEFA /* PBXTargetDependency */ = { + 5065DF2B0375FBEBBB2201BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSSLConfiguration iOS"; - target = B4169718E508CA7736735EF9 /* IceSSLConfiguration iOS */; - targetProxy = BE56FBD87AA52E5AC92C9110 /* PBXContainerItemProxy */; + name = "IceScope iOS"; + target = 3E69BE60A2C26A59EEE938DC /* IceScope iOS */; + targetProxy = EE9FB5C41B9FBA5CC9ADF816 /* PBXContainerItemProxy */; }; - 47708FB0075A1C13990F2FD3 /* PBXTargetDependency */ = { + 50A1A7D5CE091CCF362A1E0C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultValue macOS"; - target = 5E8A324AC0641CA083A50D0F /* IceDefaultValue macOS */; - targetProxy = 47B6C0242181C35322973D86 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = BC08447AFDB3B5F220C7F52A /* PBXContainerItemProxy */; }; - 48F7FFB5A72CDB6B20901312 /* PBXTargetDependency */ = { + 50D2263AAB01A82D88D338AC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDiscovery C++11 macOS"; - target = 665EE5441D076F90F4516A23 /* IceDiscovery C++11 macOS */; - targetProxy = BF06298AD8E4646AE89AE32D /* PBXContainerItemProxy */; + name = "IceLocation iOS"; + target = 199245355B4B5CD9FF6A6386 /* IceLocation iOS */; + targetProxy = 19A7FC7514BFDF27540E6C14 /* PBXContainerItemProxy */; }; - 4A3ED2B405EC21507ADAF8AE /* PBXTargetDependency */ = { + 5268EA67DC169DE818CC8F75 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = AD112DE19AB3306F14D5B1C1 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 20B470636241F129E7F93EC8 /* PBXContainerItemProxy */; }; - 4B73F09BAD7093CC023E236A /* PBXTargetDependency */ = { + 526B313AFAD59FA551C9CD53 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "IceLocatorDiscovery C++11 iOS"; - target = CBED3CEC107C5D8FD12D1423 /* IceLocatorDiscovery C++11 iOS */; - targetProxy = F882422A1D0EA82F4DB7EEB8 /* PBXContainerItemProxy */; + target = 696D6136245EB191F3A59E1A /* IceLocatorDiscovery C++11 iOS */; + targetProxy = 60C30DE929B72855A8DD1372 /* PBXContainerItemProxy */; }; - 4D9C9F1E7021B8459797BE64 /* PBXTargetDependency */ = { + 52B1E6A9E6405D07BA0F27F4 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 5E926C954F3A8858CB799B09 /* PBXContainerItemProxy */; + }; + 5357751A9DD5D2904A7730A7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 5C7237AFB448374F73E30851 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = F61FA6822996E3BB551D7DDB /* PBXContainerItemProxy */; }; - 4DD30FA8F8C40E68D1B364F6 /* PBXTargetDependency */ = { + 542D43169C87228020236E49 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 124775A9F6E93C3CF3D7B005 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 59E2AF8828513099F1A302F3 /* PBXContainerItemProxy */; }; - 4F2C2FCF937DF0F70D8A6B90 /* PBXTargetDependency */ = { + 561BA1C3CB952DA14DB79002 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 70248659A5F8BBC954BC26E2 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 929A515A6EDD66B671E40125 /* PBXContainerItemProxy */; }; - 4F59EB9BA4DDB8492E6B49FA /* PBXTargetDependency */ = { + 563C4F9E29E7516CE8B3250D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAmi iOS"; - target = 4BB02C0AE52711EB3F20C5D7 /* IceAmi iOS */; - targetProxy = C66710A873A6375613BB94E8 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 9C64BBEB1865EAF981E3B50B /* PBXContainerItemProxy */; }; - 503E702ADDC8FD6011CAD63D /* PBXTargetDependency */ = { + 56AD4C9FBA4453BBCDDD0875 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceHold iOS"; - target = 283F1EEEFDF95C8EA1294341 /* IceHold iOS */; - targetProxy = 32859D088768354421E2C3F2 /* PBXContainerItemProxy */; + name = "IceDefaultServant iOS"; + target = 3889B46D2FBF6B61B7DA5A5A /* IceDefaultServant iOS */; + targetProxy = 1AA5486C2B2780994FABE39E /* PBXContainerItemProxy */; }; - 505CBB999F89EAF643CAB88D /* PBXTargetDependency */ = { + 58136F1BADC3144165D815F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjects macOS"; - target = C80A8E405B320E680839566D /* IceSlicingObjects macOS */; - targetProxy = C9B59001DFFF30A9E98EE502 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 5D8A49A1E8DBBD731D1D4D8C /* PBXContainerItemProxy */; }; - 50B9C0D91F208AF8AD49BB9D /* PBXTargetDependency */ = { + 5ACD58BB931BA6EFA23D53DA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxyAMD iOS"; - target = E73C245D51F93B4E9024CF4C /* IceProxyAMD iOS */; - targetProxy = 154D5E7DD7CCA693A8B80FA1 /* PBXContainerItemProxy */; + name = "IceDefaultServant macOS"; + target = 2997C7A465709CD09CD4C4BB /* IceDefaultServant macOS */; + targetProxy = B2DBBBA58DCF59CA9E9CA36B /* PBXContainerItemProxy */; }; - 51172D8ABCC4360E0461FCEC /* PBXTargetDependency */ = { + 5BFDD882BC29CD6E31A0A5E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptional macOS"; - target = 98CD3D7B6AB129005DDDED37 /* IceOptional macOS */; - targetProxy = C34BCDB1C760A2DCC9950149 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */; + targetProxy = 831F35CFD61D8BB19FDD3A3E /* PBXContainerItemProxy */; }; - 53A98460378A24B6F10DAAFF /* PBXTargetDependency */ = { + 5CE3621271F0E4C4F63E9D9D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = 27BA347B00896E18F811823C /* Glacier2 macOS */; - targetProxy = 9BA0C4349EF5EC69F4456D61 /* PBXContainerItemProxy */; + name = "IceInfo macOS"; + target = 10E56726E39C8E4E56D51BC4 /* IceInfo macOS */; + targetProxy = 59A627B94164E5E4A39D7900 /* PBXContainerItemProxy */; }; - 542C81497575401A8F247803 /* PBXTargetDependency */ = { + 5DAF9558BD888A9BA538C325 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSSLConfiguration macOS"; - target = 478A8F3068E5FF5F72F783EC /* IceSSLConfiguration macOS */; - targetProxy = 284488109C19406A338C318F /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 2C5DE750C359BC2A30F63723 /* PBXContainerItemProxy */; }; - 547F233ED8B9A05358310B09 /* PBXTargetDependency */ = { + 5E5F2CC3DC8DF57F3D866B54 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdmin iOS"; - target = A58A9C1B02FC1B2964645F6D /* IceAdmin iOS */; - targetProxy = D7E079C305C44DE9B4CD61BB /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 399FF3FB6347A6503490CFDE /* PBXContainerItemProxy */; }; - 54EC40BBC1C029B6732B2879 /* PBXTargetDependency */ = { + 5FD75BA8D5A7A7C4F0CA3088 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProperties macOS"; - target = C01CDDFC69A3BAEE2DBC5560 /* IceProperties macOS */; - targetProxy = FBD1556FF95503AFAD857D61 /* PBXContainerItemProxy */; + name = "IceAmi macOS"; + target = 0A757D8B307D80F7BD3C5017 /* IceAmi macOS */; + targetProxy = 30FB8DC6A686B05DEB1C3628 /* PBXContainerItemProxy */; }; - 55EB74D578CA62B140CDDE41 /* PBXTargetDependency */ = { + 5FF97F04EC1FEDE3204B0343 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = FCAC7B70417844AE5079A64E /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 09A3E52F59DDF46922C5FB89 /* PBXContainerItemProxy */; }; - 576DFD365EE603CDE8CAA9C5 /* PBXTargetDependency */ = { + 618D3972916FA254B26E328E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 2FE96DCC2A6E467FC8B9AD7B /* PBXContainerItemProxy */; + name = "IceSlicingExceptionsAMD iOS"; + target = 3CB27B168E65D6B824278AE1 /* IceSlicingExceptionsAMD iOS */; + targetProxy = E7695BD8EE27DDCDDC9CD1C9 /* PBXContainerItemProxy */; }; - 57FBAB8574FD4EF3C78F098A /* PBXTargetDependency */ = { + 62E1383BBC82CAA4600921BB /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 7BACB03973B944A4910038F6 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = C177500A281F8265CCD482BE /* PBXContainerItemProxy */; }; - 58DA9CF4530A5339A0E89DBF /* PBXTargetDependency */ = { + 6339F28A779A84F57105BBD3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 10DD7D30096FC40DE3F91A69 /* PBXContainerItemProxy */; + name = "IceObjects iOS"; + target = E47FCF3BB733DC4EC57A0924 /* IceObjects iOS */; + targetProxy = D738E969E2DDF9D604BAAD45 /* PBXContainerItemProxy */; }; - 5948E0E3CBA886404C166D46 /* PBXTargetDependency */ = { + 6473BB2BF839A0C3AA0BBF14 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStream iOS"; - target = C6AFD5D37CF11FE461D86DD8 /* IceStream iOS */; - targetProxy = EFFE91856D641568551E0037 /* PBXContainerItemProxy */; + name = "SliceEscape macOS"; + target = F4A16370E4157DCD4CF7F964 /* SliceEscape macOS */; + targetProxy = E9D5A68388B16A6E41C42542 /* PBXContainerItemProxy */; }; - 5A27B9C89C9598CFB6BB153B /* PBXTargetDependency */ = { + 64E2DBD2FB0CF03A0FD858C5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxy iOS"; - target = EB3EA3436E39E34BB754ECF1 /* IceProxy iOS */; - targetProxy = B41E82BC6E8AA6D7768B6039 /* PBXContainerItemProxy */; + name = "IceAdapterDeactivation macOS"; + target = C5982316F62D05CD651717E7 /* IceAdapterDeactivation macOS */; + targetProxy = 9338026585418A72A05DEE35 /* PBXContainerItemProxy */; }; - 5A3127CFCA184D1967C19B95 /* PBXTargetDependency */ = { + 6550E774623793A73ACDD4EE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = A9329B710B1FB152D0828949 /* PBXContainerItemProxy */; + name = "IceProxy iOS"; + target = BEBD5165FA221E0C61A12DD9 /* IceProxy iOS */; + targetProxy = 56D67D1D13551ECC494292BC /* PBXContainerItemProxy */; }; - 5A5F490E3C9235C51179AAE6 /* PBXTargetDependency */ = { + 65F8D90FAF604B13E5D29075 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 5A59BC1ABA375B56BA8F06CC /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 8FF049F5EBED88BB74760CA6 /* PBXContainerItemProxy */; }; - 5D5F29E46A8930E120396A7D /* PBXTargetDependency */ = { + 67789B7982F0B48D06EC11B0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStream macOS"; - target = BCECD790F76F93F791126123 /* IceStream macOS */; - targetProxy = E7EE39CAA698BC3A8AAC4904 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 2F16B705DBEE879F8AEE845F /* PBXContainerItemProxy */; }; - 5E904894107853C99797608D /* PBXTargetDependency */ = { + 6786C94697BA770CC188DC4B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = 27BA347B00896E18F811823C /* Glacier2 macOS */; - targetProxy = EE042DB16B155396659BCB8A /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 208712A54D7C80A5E1D013C2 /* PBXContainerItemProxy */; }; - 5EDE335AB5C67153012820C4 /* PBXTargetDependency */ = { + 67AC6E75E00A1CF41A8FACF7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 31FA4B87FE7AA6F1831B6A28 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 9D1505E60C38D15B1D840713 /* PBXContainerItemProxy */; }; - 5FEC7F91F2FB629D2923CCDD /* PBXTargetDependency */ = { + 67B031B4D8993288C7843E4D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 58603EC9606806B7A3EA7A1C /* PBXContainerItemProxy */; + name = "IceObjects macOS"; + target = B564F6A99559D774EF563A3F /* IceObjects macOS */; + targetProxy = FC804A9AB6BDB06C3653BEDF /* PBXContainerItemProxy */; }; - 6081B6A17344A1480287164E /* PBXTargetDependency */ = { + 6869B13D9CCD41CC7B01357D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 7F26E8F0312AC4387C551222 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = A14C3825AE339D2C4D4C65DF /* PBXContainerItemProxy */; }; - 608F0166FCDB893FC4748FEB /* PBXTargetDependency */ = { + 6904747B72BC3EF7E92C60A6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 16491446254BF6DA0F57E718 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = EF4E1423CA3DE48796FBF7D3 /* PBXContainerItemProxy */; }; - 60C26C61835A0ED1FE59D87C /* PBXTargetDependency */ = { + 6914D31020D1CBDDF97969C7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = EBDF70525CF268A20F7D6539 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 61EBF15B7A1C2349628E4AF4 /* PBXContainerItemProxy */; }; - 61444C015F295C95E1D0DC4E /* PBXTargetDependency */ = { + 69964E7848A218E1DEDFC2E0 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 291EFFBB81B18BF46AE26242 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 7A68B6DCA42F642338D76D6C /* PBXContainerItemProxy */; + }; + 6A2AD27DCD8B5B2CB05083E8 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceAcm iOS"; + target = 46452DCDFFD6A246079637CB /* IceAcm iOS */; + targetProxy = D60BD7E9DC5676E77F63EDDF /* PBXContainerItemProxy */; }; - 6377997689E7691F99CEDD82 /* PBXTargetDependency */ = { + 6A5B13C3D4BF44CF6DE975DE /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceTimeout iOS"; + target = 29279E4ADC71CC6522E7C012 /* IceTimeout iOS */; + targetProxy = 9742AE7FC358856C1F997A37 /* PBXContainerItemProxy */; + }; + 6B800448C27AC9995729A2E3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 66D397E6F385363810F73DED /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 144D57699F421A453D879D0E /* PBXContainerItemProxy */; }; - 6488CCA4C33A18941B6512B3 /* PBXTargetDependency */ = { + 6BECC44222CAD7C68E324C3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 7F3F3950F5D4BA9E76C5FC5D /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = A9D86FD03FA249C0E1B1FF42 /* PBXContainerItemProxy */; }; - 657B7F580C2C29007B695ADC /* PBXTargetDependency */ = { + 6C22381685946362D296DF7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInfo macOS"; - target = 9B91000B96831D134868EF00 /* IceInfo macOS */; - targetProxy = 8C51AABB3038D9E5B2902E67 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 232EE525AB7443632644DF3D /* PBXContainerItemProxy */; }; - 65EC0246623D2174EBB69059 /* PBXTargetDependency */ = { + 6C3562F7E1400576B368712F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptionsAMD iOS"; - target = 5658AB3FB70284E862079845 /* IceExceptionsAMD iOS */; - targetProxy = 5DF535E937A6D64A50F2F2A3 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 6D0310C13A5DCC1002BCEDFF /* PBXContainerItemProxy */; }; - 66BB78C5509FDEF0963665E6 /* PBXTargetDependency */ = { + 6DF06C963636C427AF40A926 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceObjects iOS"; - target = 124476FE277A9E3ABE9F4A34 /* IceObjects iOS */; - targetProxy = C951F048C4F5208A6E9DA412 /* PBXContainerItemProxy */; + name = "IceExceptionsAMD iOS"; + target = 57D39C477D54466601C5A786 /* IceExceptionsAMD iOS */; + targetProxy = E455388208A742768A7D24EB /* PBXContainerItemProxy */; }; - 6951A5349AAC4517CC9BC0F1 /* PBXTargetDependency */ = { + 6FC6EC1890665DCEAC5A5727 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = E5B684721705FCA27DC73170 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = DC9533A8C2C8F985E804CD9C /* PBXContainerItemProxy */; }; - 6A5F97B6B824293DA375BCCB /* PBXTargetDependency */ = { + 7051368F9D3D1E5E3808805C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 1F4AB26DE65D4BB01E237717 /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */; + targetProxy = 5861FE679598D667D6219FC8 /* PBXContainerItemProxy */; }; - 6A7B12069DE9EF5071D8D206 /* PBXTargetDependency */ = { + 711D5DEEE06075DDADB72213 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServices iOS"; - target = 8919247F07DEFFC41FDA9486 /* IceServices iOS */; - targetProxy = 04F7EF21288FCCF003111EAD /* PBXContainerItemProxy */; + name = "IceOptional macOS"; + target = D2A90EB733FA2B780783AADF /* IceOptional macOS */; + targetProxy = CD34B6091220C74DD1668C00 /* PBXContainerItemProxy */; }; - 6B9057CED3EE87007DBBEE61 /* PBXTargetDependency */ = { + 7208F57935FA5E9E24A307E3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 8380A0037DB411A405266CD5 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 7330088081A46278F32264FF /* PBXContainerItemProxy */; }; - 6C84C09A147E85B35E086BF1 /* PBXTargetDependency */ = { + 72746F191DD4652E14575CF6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceHold macOS"; - target = D2C1A9BA75231D8469946A3C /* IceHold macOS */; - targetProxy = D650A6A6607044C14838039D /* PBXContainerItemProxy */; + name = "IceOperationsAMD macOS"; + target = 8D4D7F1ABB790FA722EC7917 /* IceOperationsAMD macOS */; + targetProxy = 7C4197A3AFACC893BF9F54EC /* PBXContainerItemProxy */; }; - 6EAF8977CBD757836D3C473C /* PBXTargetDependency */ = { + 73508A1A1B56CD95DCCF893E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInterceptor iOS"; - target = 0CCC3C20156C399AF82BA12D /* IceInterceptor iOS */; - targetProxy = C148D02B6CEDAB28D97CAF65 /* PBXContainerItemProxy */; + name = "IceProperties iOS"; + target = A3B6CDB0CD7C0059D4D3CBF9 /* IceProperties iOS */; + targetProxy = 718762720FB2D9A1D6045FCD /* PBXContainerItemProxy */; }; - 70CD224FB8E80C601FC7F1DB /* PBXTargetDependency */ = { + 7448C1D149CBF37D898D6415 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceServantLocator iOS"; - target = F27C8BBF5E4DB22EF58AF515 /* IceServantLocator iOS */; - targetProxy = 725FDDE0666ADDEF228E1844 /* PBXContainerItemProxy */; + name = "IceAdmin iOS"; + target = 24A0E61D1931744BC729034A /* IceAdmin iOS */; + targetProxy = 736425D866A7923A2719540C /* PBXContainerItemProxy */; }; - 7131C3403A2D441863F7E186 /* PBXTargetDependency */ = { + 75C002C3683579061F37770D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = EF17EE72FA310A0624E0A94F /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = DB666A0A9E696FCCA300C8D7 /* PBXContainerItemProxy */; }; - 720BF5D1D44C8F77A5585337 /* PBXTargetDependency */ = { + 75FF220CA1125F22FF50CA9C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceEnums iOS"; - target = 429CEDF95141D2685FE9AB01 /* IceEnums iOS */; - targetProxy = 713A2BBD74543BE9186E4FF3 /* PBXContainerItemProxy */; + name = "IceInfo iOS"; + target = 2A0224A2EFBB3E87655C351C /* IceInfo iOS */; + targetProxy = 2152DAED3FAD6AB0B5DF41B0 /* PBXContainerItemProxy */; }; - 74564A42D52BBFA9E9715A73 /* PBXTargetDependency */ = { + 769B73A0D383FE05DBB7FFD5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 5A205E5256B40B6042194080 /* PBXContainerItemProxy */; + name = "IceExceptions iOS"; + target = 7EB54A3072775CD2177DC7A7 /* IceExceptions iOS */; + targetProxy = C266014555D8E6DBEF4A28F2 /* PBXContainerItemProxy */; }; - 74A503EEED98844A79AB1833 /* PBXTargetDependency */ = { + 78CEFB1A72110EE60FDB3F21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInfo iOS"; - target = FFD3EBD911A26B666F11DC8C /* IceInfo iOS */; - targetProxy = F2B2A9DEA03772448940BD96 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 1E5D3D36B7A333EDDDD3C5CF /* PBXContainerItemProxy */; }; - 7C9E2B828CEC22051C74CEFD /* PBXTargetDependency */ = { + 79907CBDE1D21DF4674DCEBB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid iOS"; - target = 3E1C18FAE5F2A3A2849292E9 /* IceGrid iOS */; - targetProxy = 6EBFF7F48E74EF95B563C696 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = BD3E6E18E657D24DC3A40C9D /* PBXContainerItemProxy */; }; - 7E97DDF1A5A8DECE5F1A021B /* PBXTargetDependency */ = { + 7A1B75A2AFF576862F850EB8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptionalAMD iOS"; - target = 37631E1832EC47AB18B6F9F8 /* IceOptionalAMD iOS */; - targetProxy = A0B964A97E56EA4A520F2D12 /* PBXContainerItemProxy */; + name = "IceAcm macOS"; + target = 45549440E1718C4D35E63237 /* IceAcm macOS */; + targetProxy = AE9D345A351B33C079E3FC91 /* PBXContainerItemProxy */; }; - 7F5BC227C2BDD56F0A6C7308 /* PBXTargetDependency */ = { + 7AB9AFA228B9357774F00016 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl iOS"; - target = 15259193E3C55F25AB0F68C2 /* IceImpl iOS */; - targetProxy = E14468F9EC4A90BE63C326F8 /* PBXContainerItemProxy */; + name = "IceAdapterDeactivation iOS"; + target = AEE1F674AD81A9327E42EDDB /* IceAdapterDeactivation iOS */; + targetProxy = B7F1953731CF30A6D0C42344 /* PBXContainerItemProxy */; }; - 7FDDCCA36B06D44409F6806F /* PBXTargetDependency */ = { + 7B2D6496A0B0CA37BC1B1E7A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProxy macOS"; - target = 92A668B7841CFDC57756D6E7 /* IceProxy macOS */; - targetProxy = 6C00C204CBF7B1506CE50E8B /* PBXContainerItemProxy */; + name = "IceDefaultValue macOS"; + target = 627EF9C25191013A38BA3C83 /* IceDefaultValue macOS */; + targetProxy = E7C2FF626DBEF09B758F3F47 /* PBXContainerItemProxy */; }; - 800E83C2B330AFEAD399DD60 /* PBXTargetDependency */ = { + 7C19001548D502798662B0D1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = D9A193151B4BA9E858011342 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = E28C5869BB6C1CC613CD30BB /* PBXContainerItemProxy */; }; - 832C8EF29E8BF213A71811E0 /* PBXTargetDependency */ = { + 7C45704DFE9C89DE81C18E81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = CCE86294CB35A02288A09380 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 195FCFDEE7EFAAB16AF81A5F /* PBXContainerItemProxy */; }; - 84D63EA5B75EFD1433CE435A /* PBXTargetDependency */ = { + 7C885D4DC1517A39B6AAEC36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocation macOS"; - target = 24DFB14E537F560FB7A2C4BB /* IceLocation macOS */; - targetProxy = 46CF9B45AC233FABDD79EFDD /* PBXContainerItemProxy */; + name = "IceBinding iOS"; + target = F1949C2140DCFA5E835C5C17 /* IceBinding iOS */; + targetProxy = 7197824CC6154D953B46BE8A /* PBXContainerItemProxy */; }; - 897EC357311088A4F5AA4A4A /* PBXTargetDependency */ = { + 7EECA71D1209359102D19880 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = B71C584CA75E8A5ED4B1ED58 /* PBXContainerItemProxy */; + name = "IceTimeout macOS"; + target = 9F95E6A433F94E974D32566F /* IceTimeout macOS */; + targetProxy = F3A66F44F7A8713864CD6250 /* PBXContainerItemProxy */; }; - 8A9FD47E8658EE7705211187 /* PBXTargetDependency */ = { + 7F1CBFCEDFF7592299B8E767 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 07CDF98D8A1B02D1AD19FACC /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 894F108120051CBF396B7383 /* PBXContainerItemProxy */; }; - 8AAB5B505E0774A3ACC488F1 /* PBXTargetDependency */ = { + 8013596BF0B6673017AE9925 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceProperties iOS"; - target = B8B31D762B3677F746970AF6 /* IceProperties iOS */; - targetProxy = A0359E061251BE43F67CEEF6 /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */; + targetProxy = B98AF5B51203F4D0188792E2 /* PBXContainerItemProxy */; }; - 8AC903386D3D6116DFDACF3F /* PBXTargetDependency */ = { + 80415BFA23B5F71708C31594 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */; - targetProxy = 22FB592105AF3E82C5B6B392 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 302E9DDA13EDEBAA0C1C6461 /* PBXContainerItemProxy */; }; - 8BDB8A98B09045E5AB11B27F /* PBXTargetDependency */ = { + 83E58029B07ED33EB879DB29 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 5D22FFD629042D7E88A4C6FD /* PBXContainerItemProxy */; + name = "IceOptionalAMD macOS"; + target = 7C5D25F9DE7921A57B72E85F /* IceOptionalAMD macOS */; + targetProxy = 6CB8FFC27C1C7F3D2A0E974C /* PBXContainerItemProxy */; }; - 8C15E82AC048B7F75BF62545 /* PBXTargetDependency */ = { + 862E19C471E8DE68F15CBF4F /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 63B459BA47359EAC6C74A3E7 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = B89F2D0235F69678736B2597 /* PBXContainerItemProxy */; }; - 8D591E47149945369DF1771F /* PBXTargetDependency */ = { + 865F09E12BF0AB27BF5FE513 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 3401CA5F00B4DEB13D644281 /* PBXContainerItemProxy */; + name = "IceGrid macOS"; + target = A250D484C77105742100E390 /* IceGrid macOS */; + targetProxy = 1E59CC1DE82AF2C223F12E78 /* PBXContainerItemProxy */; }; - 8EA188D77F70D24C2796F1F2 /* PBXTargetDependency */ = { + 86F52CD5342C5A5094EBBF81 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = A79F4E7B8C8022F4E4E8E520 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 1D8BD3CF996B922E28683DB1 /* PBXContainerItemProxy */; }; - 934DA8231C701557DF9C79CE /* PBXTargetDependency */ = { + 8777B7EA77BA6F64CBF1F713 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 3759B96D9D365B8DDB0CEBC7 /* PBXContainerItemProxy */; + name = "IceImpl macOS"; + target = C07B8E267CA90FCDBE4E7E7D /* IceImpl macOS */; + targetProxy = BCC16596ECA2804FEDB53B69 /* PBXContainerItemProxy */; }; - 93D9D3EDF78007C8C23E1A41 /* PBXTargetDependency */ = { + 88CE47F5A6556E984A0C3314 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAmi macOS"; - target = 0D82476565F3AEA63555293E /* IceAmi macOS */; - targetProxy = 4C89D5BB46AD1167F827A1FD /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 45D7F71E010A419A4F9BDD80 /* PBXContainerItemProxy */; }; - 94E4BC494FADAB44F0A4A05E /* PBXTargetDependency */ = { + 896C3ABA52835962B333F257 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = BE5965ED547B5BA3F3E5EA26 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 50A1FA2B88000EDD83006EF1 /* PBXContainerItemProxy */; }; - 9534CD955FA043C654E89173 /* PBXTargetDependency */ = { + 8DE1D2AFA66323BE0D6830F2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 659A51CF1221C28304378595 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = F2074BD9EB83504F96A73C4C /* PBXContainerItemProxy */; }; - 97896DDCDED7480374941F2C /* PBXTargetDependency */ = { + 8E5E9DF78C4648D714DEA913 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 75C2A85B36D55E5EEF424BB6 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 4F280D704E7E30DBFF24D934 /* PBXContainerItemProxy */; }; - 9882DAC1C90963F118992497 /* PBXTargetDependency */ = { + 8F43B4ABBB390EA0AA2806B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 5BADF5D9A4028AEDDFBB748E /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 4A4F8C5EAEFD06F4B880420C /* PBXContainerItemProxy */; }; - 98FC60EF164A665E63B13F20 /* PBXTargetDependency */ = { + 8F7B5636B28615FCF1F89DAB /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SliceEscape iOS"; - target = 4D5800AC0A437A45FB0049AB /* SliceEscape iOS */; - targetProxy = 036D846A6AF64973488231F6 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 09B639B4B4CE81CDDCBEC692 /* PBXContainerItemProxy */; }; - 990292A15E55958A41738506 /* PBXTargetDependency */ = { + 902D152B990BFBDB128AAAA4 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = F7E75593187CF84DFF596746 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 5B2F93B6F54E4110EE384EB4 /* PBXContainerItemProxy */; }; - 99328E43F83EDAA0A512AF99 /* PBXTargetDependency */ = { + 932568BF537D0E9CF04A3F73 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOptional iOS"; - target = C4C1475F0319943EE6BF6CAB /* IceOptional iOS */; - targetProxy = A2A1E77182CE84BD40C21B16 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 7B189B537112F1A3D8466612 /* PBXContainerItemProxy */; }; - 9A48EDEDE82E2138C7527754 /* PBXTargetDependency */ = { + 949E14996BB86EA14239E327 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 2A6BCBB826A171FFDBD954A6 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 4C60141AA1A8FD05F8685B95 /* PBXContainerItemProxy */; }; - 9AF017062C8BBE42CF67CBB0 /* PBXTargetDependency */ = { + 996596739BF001F14B815636 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 731ECB1786180D7229E827DC /* PBXContainerItemProxy */; + name = "IceSlicingExceptions macOS"; + target = 57285D8128490A28FD5E1EA9 /* IceSlicingExceptions macOS */; + targetProxy = DC9398A2524EFC9ABDCDD65D /* PBXContainerItemProxy */; }; - 9B992E1F5F07104C27BCC46B /* PBXTargetDependency */ = { + 9B7DC02499B2C036C616A166 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 93C12D6F5A8DB5FAD273F5B6 /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = B38B23126632727546B9AF43 /* PBXContainerItemProxy */; }; - 9BD771586727B4841BFDEFC4 /* PBXTargetDependency */ = { + 9C3512FCC97B40E3D8F88C03 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = B523031CD273161B6D2E776F /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 8F77F087CA76298635C6EB3B /* PBXContainerItemProxy */; }; - A4A639EE912CDFA594409636 /* PBXTargetDependency */ = { + 9D410204734AAA73906D3161 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDiscovery C++11 iOS"; - target = 263F8736790034DA7D5B83D1 /* IceDiscovery C++11 iOS */; - targetProxy = 2902CAF1CFE84D4795C4C6B1 /* PBXContainerItemProxy */; + name = "IceInheritance iOS"; + target = C2F3B80C3A24BFA9444F31E1 /* IceInheritance iOS */; + targetProxy = D515AAF200C59B874CB199F9 /* PBXContainerItemProxy */; }; - A4D2BF679F3B95A6B937905B /* PBXTargetDependency */ = { + 9E47C0D59B7542553E30A851 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = F7ACA790D939A0F3860CFBFF /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = FAF02CF1DDD58658039E04DB /* PBXContainerItemProxy */; }; - A57627368CC0EE1A16DCB109 /* PBXTargetDependency */ = { + 9E82D85D6E5E2CBF7F61188A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = BEFAAB2D9FB1EEE67D4C764A /* PBXContainerItemProxy */; + name = "IceProxy macOS"; + target = 915EFEBB1B2962C505C96286 /* IceProxy macOS */; + targetProxy = 0FC18BDE7D824822616376E6 /* PBXContainerItemProxy */; }; - A5A0858FF649EA88502C6129 /* PBXTargetDependency */ = { + A2967B38CF2279E1730A4928 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAcm macOS"; - target = B0567014FA30FBBFC0E31969 /* IceAcm macOS */; - targetProxy = 062208D122C76FB49A69BA54 /* PBXContainerItemProxy */; + name = "IceServantLocator macOS"; + target = 1F99406342A96A78168E74BB /* IceServantLocator macOS */; + targetProxy = CF727DA49691973064686C6A /* PBXContainerItemProxy */; }; - A5FF4459AFF629E41C5AD166 /* PBXTargetDependency */ = { + A3FCCE06FBBB03C015426F21 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjectsAMD macOS"; - target = 00F4F87A480D875F2C651B81 /* IceSlicingObjectsAMD macOS */; - targetProxy = 452481330D51BBEF58874AAD /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 458731DB8A8E8EFE42D7E6C3 /* PBXContainerItemProxy */; }; - A6B47FEC89AB78ED55334147 /* PBXTargetDependency */ = { + A646BFF2EBABF5DA511E2EA2 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceGrid iOS"; - target = 3E1C18FAE5F2A3A2849292E9 /* IceGrid iOS */; - targetProxy = FEA730C593FB853B9D5918F5 /* PBXContainerItemProxy */; + name = "IceStream macOS"; + target = A02AEC1FCAEDD308F0CBDCC6 /* IceStream macOS */; + targetProxy = 2F78747818E14907E05B6CE6 /* PBXContainerItemProxy */; }; - A7A853B5689F1F86A54D9059 /* PBXTargetDependency */ = { + A7B3E8467799D00673BAB97C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceScope macOS"; - target = 68BE8ACEDDD7433FDD2E5099 /* IceScope macOS */; - targetProxy = 2D14FA2555165E862E5DFE97 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 192BAF3A73C465B85A7C1F06 /* PBXContainerItemProxy */; }; - A7E74AE38024FCF81760BB7C /* PBXTargetDependency */ = { + A82EA4403CC23337135C80BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = C4F17837E68B18F1150A9D09 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 5A8BB27B6F9BA4688ED7F443 /* PBXContainerItemProxy */; }; - A94CA64CC5DF9174C6BFB90D /* PBXTargetDependency */ = { + A8ECDEF5B6890C8F5A429DE1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = CFA71F24E3EF55BB92294A36 /* PBXContainerItemProxy */; + name = "IceProxyAMD iOS"; + target = BCD219D62CE917ADBC7AFD22 /* IceProxyAMD iOS */; + targetProxy = E6950B775308746D5C44E728 /* PBXContainerItemProxy */; }; - A9CA7AFB4C01AA70E2A69E0E /* PBXTargetDependency */ = { + A98F664C6659C5CD598BB15B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 698E4783ACCF8203631D5A4E /* PBXContainerItemProxy */; + name = "IceOptional iOS"; + target = 34AC5913121CF6E0F793DEDD /* IceOptional iOS */; + targetProxy = B58780123737EA9831766563 /* PBXContainerItemProxy */; }; - AB3E1EEE0E8905A364D54485 /* PBXTargetDependency */ = { + AEC180946B16CB7D1C4DBF3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceExceptions iOS"; - target = E564301A82DF55065D5215D1 /* IceExceptions iOS */; - targetProxy = 4F697F775AFF7DEC113B1B3F /* PBXContainerItemProxy */; + name = "IceImpl macOS"; + target = C07B8E267CA90FCDBE4E7E7D /* IceImpl macOS */; + targetProxy = B285BE39E77D3B8ED9754FD9 /* PBXContainerItemProxy */; + }; + B013408EC0683BA8E33F05B2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "IceDefaultValue iOS"; + target = 8E4EE2567B3C187D2F9C1173 /* IceDefaultValue iOS */; + targetProxy = A51CFA7AB7E9E40ED0DF1944 /* PBXContainerItemProxy */; }; - AC4CC6B8A2031AD2045B501A /* PBXTargetDependency */ = { + B04DB607E476251755885F9E /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 4BA17AA9E5DDCA68E293DAA9 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 9A9011F308379E6B0B07DF7C /* PBXContainerItemProxy */; }; - ADB6979E4FEC016457718AE0 /* PBXTargetDependency */ = { + B13CE3F8761F18087CE22379 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInheritance macOS"; - target = B3DD3174FEA726C76B98C914 /* IceInheritance macOS */; - targetProxy = FDA7520F217E9DCD8734D732 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 231E3EB4B30195829B9C7C43 /* PBXContainerItemProxy */; }; - AE85E35BBB4EE9007FC59B34 /* PBXTargetDependency */ = { + B49EAB63D6E9C34958A5D033 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 873CE4E43C3A14151F88412E /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 96EFEFE1AAD1D22BEBEADECE /* PBXContainerItemProxy */; }; - AECF227D9832582C2723CB16 /* PBXTargetDependency */ = { + B4D560EC692795C1AB1CEE1A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = B015EA95DFADDD31E102004C /* Glacier2 iOS */; - targetProxy = F29B89EA6B0E2094CEA3BB00 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = BC52C300EB2A04A651C8A75E /* PBXContainerItemProxy */; }; - AED09B4E4172B4B44AA7DCA8 /* PBXTargetDependency */ = { + B7F7351D814B5FBA1FFC8E3D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 31FEEE23FA4CF66E31A7A873 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 0D834A00427086014DA514E3 /* PBXContainerItemProxy */; }; - B2588F8928BC033C40F3E59B /* PBXTargetDependency */ = { + B8F1E89B87825266C11A5519 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = EDB765EAF9B6F87E4B6F972C /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = B0030EF96F2C9179821DEEDD /* PBXContainerItemProxy */; }; - B2979DB87EC9525F4FC07F61 /* PBXTargetDependency */ = { + B9D7BB9E7B4B9D112E9DF8EF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperationsAMD macOS"; - target = 6BA09F6BC0797F624A68E17E /* IceOperationsAMD macOS */; - targetProxy = 771D9AA9820D0ED832E73009 /* PBXContainerItemProxy */; + name = "IceStorm iOS"; + target = 16C02D2C934DC57FE079663F /* IceStorm iOS */; + targetProxy = 7CA52B64C6B2B6B870FF00A8 /* PBXContainerItemProxy */; }; - B3507191F0D173F77DCDC320 /* PBXTargetDependency */ = { + BAABD39AF8227DE63E0F15A3 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInheritance iOS"; - target = 78DF05AE60584A8F9A7E374B /* IceInheritance iOS */; - targetProxy = 284D5E91C3E666A9474E965D /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 555E024B24C17A7DE5F0ADE3 /* PBXContainerItemProxy */; }; - B588339708F34300FC993054 /* PBXTargetDependency */ = { + BAC027B9F32EA0F4AFC54489 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "SliceEscape macOS"; - target = 096C6B1CDEA03B0A33EF7AB7 /* SliceEscape macOS */; - targetProxy = 6C2D2F0E813CD0407F4628D6 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 740DC98CDBA9B6B07DFF5C7F /* PBXContainerItemProxy */; }; - B72170EFD46C6CC04FAD3073 /* PBXTargetDependency */ = { + BB29484678B4A6BC5EAD1F7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdmin macOS"; - target = 3E00BC6A9646D9FED455066C /* IceAdmin macOS */; - targetProxy = 576C5FBC4CC1D555CF56F894 /* PBXContainerItemProxy */; + name = "IceSlicingObjects macOS"; + target = A1FCF6486037B74ACCD22503 /* IceSlicingObjects macOS */; + targetProxy = E32F18D290F55AE591D00478 /* PBXContainerItemProxy */; }; - B8C1043C2FCAE46F711B6D95 /* PBXTargetDependency */ = { + BBE4C6AFCAA0609900EA9E58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = A0CA1F9B17E30E7BAF26B71C /* PBXContainerItemProxy */; + name = "IceSSLConfiguration macOS"; + target = C4633684AA9C8E2D8E2A3BF1 /* IceSSLConfiguration macOS */; + targetProxy = FB51C03C494EF521DC56095E /* PBXContainerItemProxy */; }; - B9BB69BAC71C0FAA58686230 /* PBXTargetDependency */ = { + BBFC483DC74CA8ED3A565C13 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = A3BC08A426E1EAF2D3E3C628 /* PBXContainerItemProxy */; + name = "IceSlicingObjectsAMD macOS"; + target = 2AA26A44152A667D249E2998 /* IceSlicingObjectsAMD macOS */; + targetProxy = 5043D766A126E61F250463D1 /* PBXContainerItemProxy */; }; - BA5E9FBA424E548C1DFFCFB3 /* PBXTargetDependency */ = { + BD80C5D9BB72B119C04283F1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInvoke iOS"; - target = 6272130C7E84066D9A3C1C41 /* IceInvoke iOS */; - targetProxy = 4A7D14E003FE473FDF170A71 /* PBXContainerItemProxy */; + name = "IceUdp iOS"; + target = CC929AD29689B47CA62D417E /* IceUdp iOS */; + targetProxy = A6DC1B99D20022B136E62F81 /* PBXContainerItemProxy */; }; - BA76E7009C807481CDE371D6 /* PBXTargetDependency */ = { + C17DD2C1DFB44F065EB562D7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = D4F4E1CE75C1E6E9EEED1551 /* PBXContainerItemProxy */; + name = "IceImpl iOS"; + target = 4CDAAF1A166952EC0C4E0BF1 /* IceImpl iOS */; + targetProxy = DC5AE239C7B721B9673DD654 /* PBXContainerItemProxy */; }; - BAC4BB0CCC6787349A6306AC /* PBXTargetDependency */ = { + C1956C8C1A66B382C06C35BC /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceEnums macOS"; - target = 14E9DB904AE22B49F37C4175 /* IceEnums macOS */; - targetProxy = E0BE0570BFAF46ED9153321D /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = B19925B9ED338D734914D922 /* PBXContainerItemProxy */; }; - BCE12792758EF8EA92B0B17E /* PBXTargetDependency */ = { + C1F394080804B49038462DC5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceUdp macOS"; - target = 39438194D11EA03199C6686E /* IceUdp macOS */; - targetProxy = A013D5E988F0FD2A59503BA5 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 4EEA7C7E13C8CB9FA6592163 /* PBXContainerItemProxy */; }; - BD6A42DE2ED05DF514BF4656 /* PBXTargetDependency */ = { + C2D552543A04BCB1C90C0836 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 60C71CBF8E99A2D051443F3D /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 9EAC2BB7D69A92CC378D399F /* PBXContainerItemProxy */; }; - BDDD5B9DCDD4094791EEB3BA /* PBXTargetDependency */ = { + C31F871E6F410119CF66B3AE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = EC5119E3EC0EF3AD72305691 /* PBXContainerItemProxy */; + name = "IceUdp macOS"; + target = 1F284CA948D007302C982357 /* IceUdp macOS */; + targetProxy = 6622A1F58AE077A765492903 /* PBXContainerItemProxy */; }; - BEF15874D70EED59180D035F /* PBXTargetDependency */ = { + C3351F650DE37970BEF63E6A /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 254F4C346B84994DAE5A76D5 /* PBXContainerItemProxy */; + name = "IceEnums iOS"; + target = D9AE09FB3585B148EE15E9D9 /* IceEnums iOS */; + targetProxy = 8685E9A8FFDD5344998A5E70 /* PBXContainerItemProxy */; }; - BFCE5FB9230491517B1F422D /* PBXTargetDependency */ = { + C3E08614742AB34ACA072519 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 87763892645110E58F8A6899 /* PBXContainerItemProxy */; - }; - BFE70C8A03062A01DB129678 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceSlicingExceptions macOS"; - target = 2B6CEDAE0FF7E5682835597A /* IceSlicingExceptions macOS */; - targetProxy = BB3D6DAD19EBA911820ACFD7 /* PBXContainerItemProxy */; - }; - BFF201D84DE85053F0DDB77C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */; - targetProxy = 6B7ECA4BD2F60079BF41B3AD /* PBXContainerItemProxy */; - }; - C111472E48165E881EFF337E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice C++11 iOS"; - target = 1E5D4D4FE7BB61EAB8ECA266 /* Ice C++11 iOS */; - targetProxy = C58DECEDE46042796024EE83 /* PBXContainerItemProxy */; + name = "IceInvoke iOS"; + target = 31D342F49CC37B0DFA959D8A /* IceInvoke iOS */; + targetProxy = EC4B7698A70E3DEE1849D547 /* PBXContainerItemProxy */; }; - C25E171182CE76078011C5AD /* PBXTargetDependency */ = { + C3EC146D2A7DB317B4C97D58 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceObjects macOS"; - target = 8BCEB954ACECD9E143B3DD52 /* IceObjects macOS */; - targetProxy = 9682EE4EEAA6C1E874A6E4E7 /* PBXContainerItemProxy */; + name = "IceSlicingObjects iOS"; + target = 99D043CF9A0E172FCFC4C4B0 /* IceSlicingObjects iOS */; + targetProxy = 321D14768D089FF940693129 /* PBXContainerItemProxy */; }; - C48DC5160B65EC80A35EED6B /* PBXTargetDependency */ = { + C5DB2260BB147B158EB4CCFF /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 49DC6ABB392A3D3F4D708706 /* PBXContainerItemProxy */; - }; - C6423C92B65868913DA5D155 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceExceptions macOS"; - target = 969752F2E953B2ED36823477 /* IceExceptions macOS */; - targetProxy = 70F65C9FA842A68DE863558B /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 0D9BD4F49481916A916FF362 /* PBXContainerItemProxy */; }; - C711DAE3B9BDBD24024146A2 /* PBXTargetDependency */ = { + C5F9CCC0B291D8A268473F19 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 5F806804FDC3C3DCB802D603 /* PBXContainerItemProxy */; + name = "IceAmi iOS"; + target = 9A9DEB6418C9257648D6A235 /* IceAmi iOS */; + targetProxy = E00FE735E612D8AD79F39317 /* PBXContainerItemProxy */; }; - C7CAB4442CBF9EBCD7CDEEF0 /* PBXTargetDependency */ = { + C66718354985552446A566E6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 26FD4E9CD44C491B6E962790 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = B92E478B0BBBA773E2AC843C /* PBXContainerItemProxy */; }; - C81BC52B6E5E1B55AA526DCA /* PBXTargetDependency */ = { + C6F0F1CC258CECBC17386D3E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm iOS"; - target = 5722522ABF0B09D7099DBA1F /* IceStorm iOS */; - targetProxy = 254EB829A6A55C1191255D58 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 854A090F6A66CEBF0AEDED26 /* PBXContainerItemProxy */; }; - C952D4C257062F34819F1D02 /* PBXTargetDependency */ = { + CB8F434183D2935509B39B0B /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = A3DE40439BF5697F6F51FA48 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = ABE4C8E7C88C74E206D2105E /* PBXContainerItemProxy */; }; - CA1C927F4E7E3DBC98AEB662 /* PBXTargetDependency */ = { + CC0059B926218535B5D62531 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 72E721853B32D87FC4962163 /* PBXContainerItemProxy */; + name = "IceAdmin macOS"; + target = E1EEB80531F6CCE4CB628B62 /* IceAdmin macOS */; + targetProxy = EA5010438DC08BDCE3A224EC /* PBXContainerItemProxy */; }; - CAC9A3B84C1B39ABEFF74F88 /* PBXTargetDependency */ = { + CC6BBD2AB5F9CC06D02D249D /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 2BE57B1E72AABA6197DE52F5 /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */; + targetProxy = 68A0CA494016011E788CEF14 /* PBXContainerItemProxy */; }; - CADAFB3437C135AD3AC5469E /* PBXTargetDependency */ = { + CE185284674CE65CDCEF95B1 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 16B38D07EC66222AD1CBE7E1 /* PBXContainerItemProxy */; - }; - CB3B7B0043F55BF6802CD033 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 6A0E20DFD90E56FE5B1721D9 /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 256A70A32FCC1DB9CFA8A408 /* PBXContainerItemProxy */; }; - CC7AFDDAAB23EC8E363F1BE9 /* PBXTargetDependency */ = { + CF10BC561FC771931781C170 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 50ED7029C813B38C31E4AA07 /* PBXContainerItemProxy */; - }; - CDDBC496BCFD2351CD8295A9 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */; - targetProxy = F1D462422970113630813AAE /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 6CFFA5183F70AC0997AAD28F /* PBXContainerItemProxy */; }; - CE5A7F4270E7F56C10EC6FCC /* PBXTargetDependency */ = { + D00A8B60DC6109E22F68E856 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceRetry iOS"; - target = E08F994D81F1404BD2BF4D5A /* IceRetry iOS */; - targetProxy = AAE46F8A6CE4764CD1EB75C6 /* PBXContainerItemProxy */; + name = "IceStorm iOS"; + target = 16C02D2C934DC57FE079663F /* IceStorm iOS */; + targetProxy = 9D5A32D676174C1C468BC8C9 /* PBXContainerItemProxy */; }; - CE5DAAAB7F64DF3F8A27B067 /* PBXTargetDependency */ = { + D10918C649245B16EDE14174 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = CD92B8558C26C6D9F51DC698 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = FBF4CD6EAD3CA367161D3B9C /* PBXContainerItemProxy */; }; - CF36AA42B1C161B8DBB5B733 /* PBXTargetDependency */ = { + D142A33923862678D6C26242 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = E77E183E549A254F40DE3B02 /* PBXContainerItemProxy */; - }; - D035A62BF44ACC71CA42FCCA /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceServantLocatorAMD iOS"; - target = 77D3FCCE81BDE4D86C21D2FC /* IceServantLocatorAMD iOS */; - targetProxy = B4CEAFEF840521EE5CB279B2 /* PBXContainerItemProxy */; - }; - D0BB0CEAEC672F130A0776D1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceGrid macOS"; - target = 770013F768356B5BE1BB460C /* IceGrid macOS */; - targetProxy = 58E82FCE800E5C3718A52B9B /* PBXContainerItemProxy */; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 18BD8B97402ED565EFA00DEC /* PBXContainerItemProxy */; }; - D275F1DAA709D3AEF814C624 /* PBXTargetDependency */ = { + D233CF0851E7A6B017FFAE3C /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 2F0B268568A407079B46543E /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = D0EC1560DF36D4E14A0B954C /* PBXContainerItemProxy */; }; - D416128806C19231D0758179 /* PBXTargetDependency */ = { + D24A0353C199C7B7AF4BA774 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperationsAMD iOS"; - target = FB42232B69F121EBC030A837 /* IceOperationsAMD iOS */; - targetProxy = A9514F70D63C6A5A071F30C7 /* PBXContainerItemProxy */; + name = "IceGrid iOS"; + target = 2646D8A7E773E3BDE5BE8E29 /* IceGrid iOS */; + targetProxy = 7672624AD54550F8521412D8 /* PBXContainerItemProxy */; }; - D7D4C3899E06FA984CF0ABA4 /* PBXTargetDependency */ = { + D2E7DBF27809B6A06601A7F6 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 22FF4760559EEC96A48CD0E1 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 45EA93F06DC1579D94330C63 /* PBXContainerItemProxy */; }; - DBC12F078658209CBDE27327 /* PBXTargetDependency */ = { + D3F80F9B28BE6A19F1ACEEA7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = B97E399B4A2F2C32AF384EEB /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */; + targetProxy = 7E4D632BC6E4DE248653A07D /* PBXContainerItemProxy */; }; - DDF36C186BCD8C7411F54C61 /* PBXTargetDependency */ = { + D421E76E09FD1F357EDF2FE8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = A908C6545007DE1E5506F130 /* PBXContainerItemProxy */; + name = "IceImpl iOS"; + target = 4CDAAF1A166952EC0C4E0BF1 /* IceImpl iOS */; + targetProxy = B6C22FC8D0F087C940837712 /* PBXContainerItemProxy */; }; - DECBA1CB2D07F2D341550502 /* PBXTargetDependency */ = { + D4B36895492985F143ADF9A5 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 259BAF7AA9AB756835E68D85 /* PBXContainerItemProxy */; + name = "Ice C++11 macOS"; + target = 04ABE78C2D82D8E0F3B6615C /* Ice C++11 macOS */; + targetProxy = C4D21D47AAB3654BCCDC3144 /* PBXContainerItemProxy */; }; - DFAE8AAB920636E63569BEB4 /* PBXTargetDependency */ = { + D5550FAD971FCDE391AA7C98 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingExceptions iOS"; - target = B0416354B0422CE06305497C /* IceSlicingExceptions iOS */; - targetProxy = CE2AE6F980B037377B66B113 /* PBXContainerItemProxy */; + name = "TestCommon iOS"; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = BB2F38D82D49B3702C78F330 /* PBXContainerItemProxy */; }; - E0BF637470C41B5A1EDD5D66 /* PBXTargetDependency */ = { + D5B23B291835F00B4DB24A36 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = E32897EE35C8CACD0A7F8480 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 094C2E5066A5323901EC3AD3 /* PBXContainerItemProxy */; }; - E158DEA7863B9E28F883AEC0 /* PBXTargetDependency */ = { + D6016936626FCA5F3921E496 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceImpl macOS"; - target = E47E556F6FF734E970050937 /* IceImpl macOS */; - targetProxy = 5563B0FB65D1914F101DC69E /* PBXContainerItemProxy */; + name = "IceRetry macOS"; + target = E13AF536398A890833FFC655 /* IceRetry macOS */; + targetProxy = 0909673234428DAD5D8D8243 /* PBXContainerItemProxy */; }; - E16FB8DFB5947B0E90BD3B28 /* PBXTargetDependency */ = { + D8350F0624357AEB979D0135 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAcm iOS"; - target = B6B9D5B730E90977303A8BE3 /* IceAcm iOS */; - targetProxy = 53967316851E8DD578A7CADF /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 919DC87F97E7B2AACBBD5B5D /* PBXContainerItemProxy */; }; - E404EE64F84E3BBD294238F5 /* PBXTargetDependency */ = { + DB3C03ACEE31AEC337853CCE /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Glacier2 macOS"; - target = 27BA347B00896E18F811823C /* Glacier2 macOS */; - targetProxy = 47C1A51B4AD6D01F1A97913A /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = D97E20121570AE74FCF873DA /* PBXContainerItemProxy */; }; - E4187628621AC05D211283D5 /* PBXTargetDependency */ = { + DE3CF6E0EBAC74076AF0320E /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice C++11 macOS"; - target = 0DA6226AD5937A1F51BF8750 /* Ice C++11 macOS */; - targetProxy = 1CFF3D08008F34CC6B0DED2E /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 81E73D014721118BE76D87E0 /* PBXContainerItemProxy */; }; - E4EEDB6E0DB6CE2C862838D3 /* PBXTargetDependency */ = { + DF3CFD08EEAE5D55AD373E77 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceLocatorDiscovery C++11 macOS"; - target = 1564B348BA2786B8C14E7ADE /* IceLocatorDiscovery C++11 macOS */; - targetProxy = A157DC24CBE36B244ACB33AB /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 5736D1BB77BBE6E9612973CB /* PBXContainerItemProxy */; }; - E5CC56D0327A0347CD9AB753 /* PBXTargetDependency */ = { + DFCC719F50E4B316FF9F2F55 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceOperations iOS"; - target = 27F3896A1D44D94EF855517D /* IceOperations iOS */; - targetProxy = B94FFD3BF72B7B892C425131 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = 17FD1919F9AFA945C049CE71 /* PBXContainerItemProxy */; }; - E6B46F39DA1C4362ABCC5A4F /* PBXTargetDependency */ = { + DFD93F8D96E58582C0022010 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = F4338620F6575E0B75D4964F /* PBXContainerItemProxy */; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 8460DD3ED78B8DA7BC8E0465 /* PBXContainerItemProxy */; }; - E7AE64DDACDAA212A2356ADA /* PBXTargetDependency */ = { + DFEB9FEAE6481E1DA65CE2CA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice macOS"; - target = 8F022C46667133AF20CDD4CC /* Ice macOS */; - targetProxy = 6AD2A0060F73499638F052C1 /* PBXContainerItemProxy */; + name = "TestCommon macOS"; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 0994D1F501AAD22D7284006B /* PBXContainerItemProxy */; }; - E86A2C6BD0F6E31B15F04CC2 /* PBXTargetDependency */ = { + E0CCA65D2B58CB8992CA6CBA /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = F686607852CB67216AA7BB52 /* PBXContainerItemProxy */; + name = "IceServices macOS"; + target = 140CB18515FA53ECB140F7CC /* IceServices macOS */; + targetProxy = 7C0C367A5555B3F62AC3AFF8 /* PBXContainerItemProxy */; }; - E928D870FD0AA9E48537C782 /* PBXTargetDependency */ = { + E213F74F6508F05644EA6583 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceInvoke macOS"; - target = 713B71D014689185E9E05395 /* IceInvoke macOS */; - targetProxy = 90EAEEBA767B1E67CDEACCD2 /* PBXContainerItemProxy */; + name = "Ice iOS"; + target = AA856D3D0EBE73A655B10DCE /* Ice iOS */; + targetProxy = EB4069F072DB9B568B95EE5A /* PBXContainerItemProxy */; }; - E94DDB62ECF9533EA3F2112D /* PBXTargetDependency */ = { + E570FFFC1A885690A46C20BF /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceAdapterDeactivation iOS"; - target = 28A1C2F2EB8DCCF1AFE83661 /* IceAdapterDeactivation iOS */; - targetProxy = 38088E7956F252C3262A6F6E /* PBXContainerItemProxy */; + name = "Ice C++11 iOS"; + target = 5DA5602D00AE3159023AFB5D /* Ice C++11 iOS */; + targetProxy = 7A4B14E50A9EF8889C043508 /* PBXContainerItemProxy */; }; - E9AC98A3B2B578F64DA7E752 /* PBXTargetDependency */ = { + E63570D6A030D4724784A119 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceSlicingObjectsAMD iOS"; - target = EA20FD9B92B4F4A508F0738F /* IceSlicingObjectsAMD iOS */; - targetProxy = FAB4BD8100D683B13DF8CD38 /* PBXContainerItemProxy */; + name = "IceLocatorDiscovery C++11 macOS"; + target = 14535688C6E2E4A839C04451 /* IceLocatorDiscovery C++11 macOS */; + targetProxy = E956E0C6D4280C3D1EC78328 /* PBXContainerItemProxy */; }; - E9DABD37E785A712124E697A /* PBXTargetDependency */ = { + E8DCDF71A89FC57000D3C535 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceRetry macOS"; - target = CA4363C4B69F792FD44B1A13 /* IceRetry macOS */; - targetProxy = 3E6C8981BB05A82E5B46DA22 /* PBXContainerItemProxy */; + name = "IceSSLConfiguration iOS"; + target = 0EDA203583B355501DD47E73 /* IceSSLConfiguration iOS */; + targetProxy = AB0351D1ED35B9AC93D57E65 /* PBXContainerItemProxy */; }; - EBF87720282F082544399E99 /* PBXTargetDependency */ = { + E9417BFC8C112DCAB09A5D68 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = F40C812FFC2DDF6D46FFC42D /* PBXContainerItemProxy */; + name = "Glacier2 iOS"; + target = AC5B52B4AAA6CC13CA8A2DDB /* Glacier2 iOS */; + targetProxy = 6392976D3234498D8EDEBFFA /* PBXContainerItemProxy */; }; - EE82C6ED95BC44037DA4412B /* PBXTargetDependency */ = { + E982B85311CB453D092BF136 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 650507FC56E67E6424A58185 /* PBXContainerItemProxy */; + name = "IceScope macOS"; + target = 993C3F64323081AD7846C3D1 /* IceScope macOS */; + targetProxy = 838948C62C02702EC068F299 /* PBXContainerItemProxy */; }; - F03EA759905DEDFC7B18290C /* PBXTargetDependency */ = { + ED3159A6574CC60DC0FE5C65 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 47522CF62B0BDA6DDA9992C4 /* PBXContainerItemProxy */; + name = "IceInterceptor macOS"; + target = 60F33D27C2F25EAA1C58217D /* IceInterceptor macOS */; + targetProxy = 534235D975DA598C3003B922 /* PBXContainerItemProxy */; }; - F10735D401705032A9100A7F /* PBXTargetDependency */ = { + EE4B4058636058A3B8BD22F7 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 87ABD59DFD4BEA6D6A406C73 /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = DD86754DFB50565D3B9C1645 /* PBXContainerItemProxy */; }; - F33665458C5E4F7379E8A069 /* PBXTargetDependency */ = { + EEF2761A50D84951B3FC3D7D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = 1F3015AD5B46D646046CD330 /* PBXContainerItemProxy */; - }; - F338CFC8737E1990D95E88D7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Glacier2 iOS"; - target = B015EA95DFADDD31E102004C /* Glacier2 iOS */; - targetProxy = 9A16ABC88E61CBD482EF810B /* PBXContainerItemProxy */; - }; - F66CBACFBF5ACE1C684F0F2B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceGrid macOS"; - target = 770013F768356B5BE1BB460C /* IceGrid macOS */; - targetProxy = 0949EA22F4B01AD12CBB5979 /* PBXContainerItemProxy */; - }; - F792378C33010C66EEB34D7B /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 15879DAC8086124116B6869D /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = D4D39EE0C45DB478740DD88A /* PBXContainerItemProxy */; }; - F7A765493A04F5E1A473ED60 /* PBXTargetDependency */ = { + F328C6236A09249A8325AB66 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = 780327C8CE3D30662467C4D5 /* PBXContainerItemProxy */; + name = "Ice macOS"; + target = EE743BE7277805136A7EEB71 /* Ice macOS */; + targetProxy = 2F4AB5C5978C4CB4D968B985 /* PBXContainerItemProxy */; }; - F8B2F444158A861CFEFE71FF /* PBXTargetDependency */ = { + F4B3D0B07B15108174A0CC90 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceScope iOS"; - target = 6ABC458490AA5F904B381F7D /* IceScope iOS */; - targetProxy = F16177A362E8400BCAED17B7 /* PBXContainerItemProxy */; + name = "IceEnums macOS"; + target = BFD01B6CA65F9516862D1FA1 /* IceEnums macOS */; + targetProxy = 6034F24196B01C89E967E0A4 /* PBXContainerItemProxy */; }; - F93AB82337F7ABBBCCB73CAC /* PBXTargetDependency */ = { + F5787A99C870CB54CFFB2E44 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = E695A78610E3BF21AF2E469C /* PBXContainerItemProxy */; + name = "IceFacets macOS"; + target = 8F11329102906B0FE306EF9C /* IceFacets macOS */; + targetProxy = 1CA354496945D633B349F340 /* PBXContainerItemProxy */; }; - FA56A7280BEC89FE70519B68 /* PBXTargetDependency */ = { + F5C06429B5D05FD6F4B92B02 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm macOS"; - target = C7C6F15DD53FB4E2316C8AA3 /* IceStorm macOS */; - targetProxy = 991E13A1336380BC10E34B65 /* PBXContainerItemProxy */; + name = "Glacier2 macOS"; + target = FBFB66FA3AA0C4BACD7CAEF1 /* Glacier2 macOS */; + targetProxy = 197361DC1A8766585D3FFC5C /* PBXContainerItemProxy */; }; - FABB5A728EB763E133148B73 /* PBXTargetDependency */ = { + F605D9358858CD7019AEB782 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceStorm iOS"; - target = 5722522ABF0B09D7099DBA1F /* IceStorm iOS */; - targetProxy = B2D2ED3DAE209ABD4665CF6C /* PBXContainerItemProxy */; + name = "IceRetry iOS"; + target = 02BA85F98EB32966A7AA3C21 /* IceRetry iOS */; + targetProxy = 79334374FD217F097648201E /* PBXContainerItemProxy */; }; - FB94CB2385382EAB605FFA78 /* PBXTargetDependency */ = { + F63875B0AFF87808BB1D2D7C /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon macOS"; - target = 46A2B970AAE6DC244C6522E3 /* TestCommon macOS */; - targetProxy = A49B5F2F56F51281018F1781 /* PBXContainerItemProxy */; - }; - FBC8B2CA9E0EC001FFDBCC4A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "IceSlicingExceptionsAMD macOS"; - target = 3682D0A08A431497D8699B03 /* IceSlicingExceptionsAMD macOS */; - targetProxy = D3C23D87DFDCA738814D482C /* PBXContainerItemProxy */; + target = A83EF428E73401A533092DB4 /* TestCommon macOS */; + targetProxy = 758F86A89C7437E034F49AFC /* PBXContainerItemProxy */; }; - FC9B91912DEDE6206860CBB8 /* PBXTargetDependency */ = { + F63FD1480C3C24B34EFB7031 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "Ice iOS"; - target = 47EF87D7ED829723C501BBBC /* Ice iOS */; - targetProxy = 27E10F3E72C61E3680C6D05E /* PBXContainerItemProxy */; + name = "IceOptionalAMD iOS"; + target = E6806D7DB7060BC3A0C7306D /* IceOptionalAMD iOS */; + targetProxy = 8BD2308214CF9938B6042169 /* PBXContainerItemProxy */; }; - FDDC6921F7FA776C8D389BC0 /* PBXTargetDependency */ = { + F80D78B26EFAE8B8DE4CF68A /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "TestCommon iOS"; - target = E9620956250DB1FF4F31CD7B /* TestCommon iOS */; - targetProxy = CD9099A61B35FDCAC27B5E62 /* PBXContainerItemProxy */; + target = C428EA0E3133ABA37187BE30 /* TestCommon iOS */; + targetProxy = 947D552787CC836F5CD53736 /* PBXContainerItemProxy */; }; - FF15AD1FAD609A46D7E75A0B /* PBXTargetDependency */ = { + FC4E19EC147DD39FF5EF2979 /* PBXTargetDependency */ = { isa = PBXTargetDependency; - name = "IceDefaultServant iOS"; - target = 4685FAE2AEBE43E1EEA7F814 /* IceDefaultServant iOS */; - targetProxy = A3C1495B32AB5F22BE735595 /* PBXContainerItemProxy */; + name = "IceStream iOS"; + target = 1767B82F1961C76D47FF467B /* IceStream iOS */; + targetProxy = 15E3D293BAB68AC851D74B14 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 00C763F71BB41D64C72F5B08 /* Release */ = { + 00212E653D64CB6E18BB9028 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14266,60 +14263,54 @@ 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.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 = Release; + name = Debug; }; - 011CC2AF958F50548FC2A0FA /* Debug */ = { + 009B1D5AA0CAACBA370FCB9D /* 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/Ice/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.Ice; - PRODUCT_NAME = Ice; + 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; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 0347629109200410FC7237FF /* Debug */ = { + 016AEECBFC9EFFF1E6090B11 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14330,8 +14321,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14341,16 +14332,13 @@ }; name = Debug; }; - 07B4CC6A8722B10798000EF4 /* Debug */ = { + 0354499B2DD0DC62AB168977 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14360,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.IceServantLocator; - PRODUCT_NAME = IceServantLocator; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14371,7 +14359,7 @@ }; name = Debug; }; - 0ABE4B874D9B891FDCC943B0 /* Release */ = { + 05657ECF61EFEC81DC7208F3 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14386,7 +14374,6 @@ ICE_BUILDING_SRC, ICE_STATIC_LIBS, ICE_SWIFT, - NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -14396,55 +14383,54 @@ "$(SRCROOT)/../cpp/src/", ); MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; + PRODUCT_NAME = "IceDiscovery++11macOS"; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; }; - name = Release; + name = Debug; }; - 0F3049905D9E501C160E9121 /* Release */ = { + 060AFB2F371CCA06ED926100 /* 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/"; + 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; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks"; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; - PRODUCT_NAME = TestCommon; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; + PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; 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; }; - 0FC5496CADC7C7D73E821F9D /* Debug */ = { + 07E5F000623435C259AA3148 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14454,28 +14440,58 @@ 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.SliceEscape; + PRODUCT_NAME = SliceEscape; 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; + }; + 0999A071A417465129F1CB6A /* 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_SYMBOLS_PRIVATE_EXTERN = YES; + GCC_TREAT_WARNINGS_AS_ERRORS = YES; + INFOPLIST_FILE = src/Ice/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.Ice; + PRODUCT_NAME = Ice; + 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; }; - 10B53309D03E6CCFD9E43949 /* Release */ = { + 09EF95091B2C941C8FF1E748 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14486,8 +14502,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.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14497,16 +14513,14 @@ }; name = Release; }; - 112259378DEFD9415D29BB12 /* Debug */ = { + 0A396FB5C6DB40A0BC7B2F01 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14515,94 +14529,54 @@ 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.IceAdmin; - PRODUCT_NAME = IceAdmin; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInvoke; + PRODUCT_NAME = IceInvoke; + 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; }; - 12BEA97FA2FDB585862360A7 /* Release */ = { + 0C5C2DAF8D756CCECBA59F25 /* 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, - 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; 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; - }; - 132EFC9A96243B9910662B83 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; - 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.IceInfo; - PRODUCT_NAME = IceInfo; + 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 = Release; + name = Debug; }; - 1365C74468FCEF15966DC571 /* Debug */ = { + 0CE17BDB74111CCD583007AD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14611,54 +14585,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.IceInheritance; + PRODUCT_NAME = IceInheritance; + 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; }; - 150321E7973095640FC098BD /* 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.Ice++11iOS"; - PRODUCT_NAME = "Ice++11iOS"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - 1625D39D0C6F2EB7B99C0165 /* Debug */ = { + 0D9D638DB854AFAC8DEAF9F6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -14673,6 +14613,7 @@ ICE_BUILDING_SRC, ICE_STATIC_LIBS, ICE_SWIFT, + NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -14688,19 +14629,16 @@ SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; }; - name = Debug; + name = Release; }; - 198661EE5CD1C319035315B4 /* Release */ = { + 0DA062A9F13FAE05620C9AB7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14711,8 +14649,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceScope; + PRODUCT_NAME = IceScope; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14722,17 +14660,14 @@ }; name = Release; }; - 1D9AA09DB3B18BA39583735F /* Debug */ = { + 0F49847A3D30FD2426C95804 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14743,8 +14678,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.IceLocation; + PRODUCT_NAME = IceLocation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14754,17 +14689,14 @@ }; name = Debug; }; - 1E4BAF1583875EDBA336D237 /* Release */ = { + 119F65B8F08EBACF923587B0 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14775,8 +14707,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.IceObjects; + PRODUCT_NAME = IceObjects; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -14786,16 +14718,14 @@ }; name = Release; }; - 205C3B001D1785630498378E /* Debug */ = { + 11B6B9A02D099FAA3EDC5C79 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14804,28 +14734,27 @@ 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.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; - 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; }; - 20D0C1B391680119AFE248AE /* Debug */ = { + 1634CFB4307FE4E7F762BDF1 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14834,29 +14763,26 @@ 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.IceFacets; - PRODUCT_NAME = IceFacets; - 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; }; - 217CEF0EA476A9DE4C798D13 /* Release */ = { + 1658450DE946D9DD3F85967B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14865,29 +14791,26 @@ 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.IceInterceptor; + PRODUCT_NAME = IceInterceptor; + 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; }; - 21D226499A7361A419CEFE18 /* Release */ = { + 189F759795665D2D47C52CC0 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14897,8 +14820,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -14909,17 +14832,13 @@ }; name = Release; }; - 22E4AD97DA54E75E5AD28B99 /* Debug */ = { + 19DC30A096698F1A2FEAEDC7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14928,30 +14847,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.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; }; - 2451DF474EA10000CBFCAFBB /* Release */ = { + 1CC3B4ADA7F46E26B0C50F41 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14960,30 +14874,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.IceTimeout; - PRODUCT_NAME = IceTimeout; - 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; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 26FA6B439D408D06CA1D55CB /* Release */ = { + 1CEDFBC7D1144BB6AD4A569C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -14992,29 +14901,26 @@ 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.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; }; - 27AEDD44314A9DA2ACAF62D6 /* Debug */ = { + 1E51A9B641EDCF87BD064DC1 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15024,28 +14930,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.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; 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; }; - 287ADA50FE6D9E982B0D3A7A /* Release */ = { + 1F66A9EA800ADB6FB598E151 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15056,8 +14960,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; + PRODUCT_NAME = IceStream; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15065,18 +14969,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 28D310C2B0FBA44F114B4547 /* Debug */ = { + 202F90A6056798A44A053A01 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15086,8 +14987,8 @@ 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.IceAdmin; + PRODUCT_NAME = IceAdmin; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15097,16 +14998,14 @@ }; name = Debug; }; - 2A869C9562BC45F1DAD26782 /* Debug */ = { + 231A559E2F4678F0CEE0F016 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15115,92 +15014,87 @@ 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.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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 2C5F3BADECC6CA58BE1C453E /* Debug */ = { + 28BB67947897DD592CA0F4D4 /* 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.IceStream; + PRODUCT_NAME = IceStream; 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 = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 2CBD468F8A6CF787C4BA5DD6 /* Release */ = { + 2A49049DC2EE04F26563E85E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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; - 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.IceHold; - PRODUCT_NAME = IceHold; + 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 = Release; }; - 2D450C72B46B986D09B55ED9 /* Debug */ = { + 2B678FAF79A30F363A1C296D /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15211,8 +15105,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.IceServantLocator; + PRODUCT_NAME = IceServantLocator; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15220,18 +15114,16 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 2DD65509D64D176188D582A0 /* Debug */ = { + 2CD3EFA3EDCE0C5BCE245D37 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15240,28 +15132,26 @@ 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; + 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 = "iphoneos iphonesimulator"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 3039B8BF73BA2B1CA7D1DB19 /* Debug */ = { + 2F04F8D6E5F2FC5D52163668 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15271,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.IceInheritance; - PRODUCT_NAME = IceInheritance; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15282,48 +15172,14 @@ }; name = Debug; }; - 30B12A81FD644A795EA13E83 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; - 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.IceSSLConfiguration; - PRODUCT_NAME = IceSSLConfiguration; - 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; - }; - 30E453DBB208267E59D830F1 /* Release */ = { + 2FCD884F7716D61AA099F6E5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15334,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; @@ -15343,19 +15199,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 3B278C0C6C2D8B0E174555F7 /* Debug */ = { + 332DA6EB470437102B3384CF /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15364,30 +15216,26 @@ 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.IceOptional; - PRODUCT_NAME = IceOptional; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; + 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; }; - 3C089350D7C122B295078195 /* Debug */ = { + 334EEAC0E06FCF19981245FD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15398,8 +15246,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.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15409,17 +15257,14 @@ }; name = Debug; }; - 3D18B97208F3127AA4D3BA9F /* Debug */ = { + 33920A4E3ADE0B87F492CBB7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15430,8 +15275,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15439,18 +15284,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 3E27AE079302475EC7F05B37 /* Release */ = { + 361036643181FE5D16B60347 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15460,8 +15302,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.IceTimeout; + PRODUCT_NAME = IceTimeout; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15472,17 +15314,14 @@ }; name = Release; }; - 405BACCF3A9B3478F2EF994B /* Release */ = { + 36C3B9CB33D359570C165D87 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15493,8 +15332,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAcm; + PRODUCT_NAME = IceAcm; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15502,49 +15341,45 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 420591BACB209C7C60D6A7C8 /* Release */ = { + 3763FE1D5D07E69ABEA6C6FD /* 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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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; + INFOPLIST_FILE = test/TestDriver/iOS/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceStream; - PRODUCT_NAME = IceStream; + 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; - 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"; }; - name = Release; + name = Debug; }; - 4279868881B2DE6EAC027941 /* Release */ = { + 378AB8A03B8825928BD7CA70 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15553,185 +15388,185 @@ 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.IceAcm; - PRODUCT_NAME = IceAcm; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceRetry; + PRODUCT_NAME = IceRetry; + 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; }; - 45A0D99A811AAACDC8C518D4 /* 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; - 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; - 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; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 4679AA721BFCCDCD65CB9408 /* Debug */ = { + 3B9F2A9A04C375097DF5DA5B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceExceptions; - PRODUCT_NAME = IceExceptions; + 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; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 4A96CE1C17B02803D67C1F73 /* Debug */ = { + 3BCD3C246EC27D9918028AF9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceObjects; - PRODUCT_NAME = IceObjects; - SDKROOT = iphoneos; + 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; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + 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; }; - 4A96FF0775FD9B8261A908C1 /* Release */ = { + 3CC583BD5B53A083491B5B35 /* Release */ = { 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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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, + NDEBUG, + ); 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.IceLocatorDiscovery++11iOS"; + PRODUCT_NAME = "IceLocatorDiscovery++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; }; name = Release; }; - 4ACFD9F505479535A347F069 /* Release */ = { + 3F0D0B4901EB77018B68AEED /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceOptionalAMD; - PRODUCT_NAME = IceOptionalAMD; + 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; }; - 4ADFFD2E5E75840AC32CA067 /* Debug */ = { + 43092AEE9282AE4492F9E8C1 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15740,28 +15575,26 @@ 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.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; }; - 4AE8B6D8551528AE40545B1B /* Debug */ = { + 43AFF6BB4488768B7ADE168D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15771,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.IceStream; - PRODUCT_NAME = IceStream; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -15782,48 +15615,46 @@ }; name = Debug; }; - 4B74CB3A587F6F127EDFC763 /* Debug */ = { + 43BACE1B30980E095D1043C5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceRetry; - PRODUCT_NAME = IceRetry; - SDKROOT = macosx; + 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; 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; }; - 4E5559177B38BBC8AF832698 /* Debug */ = { + 4466198637A4588CE4E780E6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15832,28 +15663,26 @@ 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; + 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; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 4EE6049531ABE9D83CEF621A /* Debug */ = { + 449E71DA8CE0102A4D3FE271 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15863,58 +15692,55 @@ 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.IceLocation; + PRODUCT_NAME = IceLocation; 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; }; - 4FFDA4D7D709A98DD4C5C111 /* Debug */ = { + 4622F5680462A9BC895EECCF /* 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/IceStorm/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.IceStorm; - PRODUCT_NAME = IceStorm; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; 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; }; - 5002EC97CCF08EAC78615F2A /* Release */ = { + 464F1C354904FC6F8225F42E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15923,29 +15749,26 @@ 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.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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 50CAFBEBFA4C52005167582E /* Debug */ = { + 4A51618B84F5931CCB50C6D5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15955,28 +15778,26 @@ 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.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 = Debug; + name = Release; }; - 51343BCE46CCF3D0EBF8974F /* Debug */ = { + 4B0503C843A97EED4234885C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -15987,8 +15808,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -15998,16 +15819,14 @@ }; name = Debug; }; - 52CB59830C30C74F2D549DB0 /* Debug */ = { + 4BCF325A0A55C5E3246CA63C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16016,28 +15835,26 @@ 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.IceAcm; - PRODUCT_NAME = IceAcm; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; + 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; }; - 53C75FE2DC576E2DB33B0338 /* Release */ = { + 4D432DDEF77EF6C8D5B063AB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16047,28 +15864,24 @@ 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.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; + name = Debug; }; - 545E7D6B2266745FE716C2EA /* Release */ = { + 4E2881FF86974CAB24460CDA /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16078,29 +15891,25 @@ 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; + 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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 57470DF6F499A483802F4409 /* Release */ = { + 4ECD262FB71069194383327D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16111,8 +15920,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.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16120,19 +15929,16 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 58C370DFDA25589F5F814EB4 /* Release */ = { + 4FDA2FAFEFD9EE7F3C11EAF3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16143,8 +15949,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.SliceEscape; + PRODUCT_NAME = SliceEscape; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16154,48 +15960,41 @@ }; name = Release; }; - 5A5D3ED1075BFCD7819B071A /* Debug */ = { + 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/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.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"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 5D4DCF542DEF20FCD712E5EB /* Debug */ = { + 52F16DBFDDB29D8337E5A9C2 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16206,8 +16005,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.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16217,48 +16016,43 @@ }; name = Debug; }; - 5D72F7A2FA24166F161E77BE /* Debug */ = { + 530FCAB81C139133B4140A49 /* 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, - ); + 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.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 5E4D6320B488378DDCE9DDA1 /* Debug */ = { + 5554B9F7B95836737BB07140 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16267,60 +16061,101 @@ 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.IceSlicingExceptions; - PRODUCT_NAME = IceSlicingExceptions; - 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; WRAPPER_EXTENSION = bundle; }; name = Debug; }; - 5EEF7F1110B5EA7231C45CE9 /* Debug */ = { + 59A5313052D318C259C99FF9 /* 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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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, + ); 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"; + 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.Swift-Test-Controller"; - PRODUCT_NAME = TestDriver; + 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 = Debug; + }; + 5A78DB7F65CB39389441528D /* 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/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; + 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 = ""; }; name = Debug; }; - 60DC3753797AE277083A79DC /* Release */ = { + 5ADB4519C98E98559E850BD9 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16331,8 +16166,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.IceStream; + PRODUCT_NAME = IceStream; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16342,16 +16177,13 @@ }; name = Release; }; - 622FED553C986FBB2E98C4B5 /* Release */ = { + 5C0FBBF4EBD9B7782B924DA2 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16361,28 +16193,25 @@ 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.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; 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; }; - 624159B9005E625C69B2766D /* Debug */ = { + 5CBA4ED58F2F60A54E615EF2 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16391,59 +16220,58 @@ 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.IceUdp; + PRODUCT_NAME = IceUdp; + 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; }; - 62D11CD5B18A50F997534C1C /* Debug */ = { + 5E5FCAF913C07ECE44B4B687 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceServantLocatorAMD; - PRODUCT_NAME = IceServantLocatorAMD; + 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; }; - 635FB8F29F3545CF5D1C2CCF /* Release */ = { + 5F26EF188432AE2765F0D788 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16454,8 +16282,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.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16465,17 +16293,14 @@ }; name = Release; }; - 654A884C08F411226A4E1096 /* Release */ = { + 5FCD71235F27C105EAE4CE89 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16486,8 +16311,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.IceInfo; + PRODUCT_NAME = IceInfo; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16497,80 +16322,41 @@ }; name = Release; }; - 67770D43D33076741AA56821 /* 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; - 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 = ""; - }; - name = Release; - }; - 69AF4ACB1345497CC8760BC3 /* 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/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.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; }; - 6B76C262F18DED8812CE4043 /* Debug */ = { + 60AE7F72CE719DED162A24FC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16581,8 +16367,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.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16590,49 +16376,47 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 6C507DA486A980470217DD18 /* Release */ = { + 63FD65C5E0D84791EF23A177 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceBinding; - PRODUCT_NAME = IceBinding; + 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; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Release; }; - 6C5716235443937679696276 /* Release */ = { + 6605DD1F0450DF2E5107309B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16642,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.IceExceptions; - PRODUCT_NAME = IceExceptions; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16654,16 +16438,14 @@ }; name = Release; }; - 6DBC2F6DCFCC8FDF8640187A /* Release */ = { + 6AAB8AFFE8FCCFEAEB26CC1F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16672,29 +16454,26 @@ 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.IceSlicingObjects; - PRODUCT_NAME = IceSlicingObjects; - 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; }; - 704C49473DB46BD1A3AD7431 /* Debug */ = { + 6C3678B6DEBB04FBAB8678AB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16704,8 +16483,8 @@ 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.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16715,79 +16494,14 @@ }; name = Debug; }; - 73AA6C1E546A2A0DFFAD33B7 /* 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; - }; - 7417FC9553D0752B212C80A1 /* Debug */ = { + 6D19B5418B7F4F87CA49139F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16798,8 +16512,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.IceExceptionsAMD; + PRODUCT_NAME = IceExceptionsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16809,16 +16523,13 @@ }; name = Debug; }; - 746D9445BC2F683E373882E4 /* Release */ = { + 6D7F26353031A2206559038D /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16828,24 +16539,22 @@ 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; + 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; }; - 74B4F808449BD133F7D215B4 /* Release */ = { + 6D831C9F7FF99624C0D1543B /* 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; DYLIB_COMPATIBILITY_VERSION = 0; @@ -16857,31 +16566,29 @@ 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; + 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; - SDKROOT = macosx; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + 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 = ""; }; - name = Release; + name = Debug; }; - 74EEB8ED8BC649A164D44D5A /* Debug */ = { + 6FFFF59AADB3FC5FEE78CC24 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16892,8 +16599,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdmin; + PRODUCT_NAME = IceAdmin; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16901,18 +16608,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 76A34945520A32193465D243 /* Release */ = { + 721AAAE4997C701F3D97D2CC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16922,8 +16626,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.IceExceptions; + PRODUCT_NAME = IceExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16934,17 +16638,14 @@ }; name = Release; }; - 77568847C4326D667191703B /* Release */ = { + 73EBC7901108C83DFC9DEB5E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16955,8 +16656,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.IceProperties; + PRODUCT_NAME = IceProperties; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -16966,16 +16667,13 @@ }; name = Release; }; - 77FF3CC4C1DEA6D3EA793236 /* Release */ = { + 753E4E1389A306FD91D57134 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -16985,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.IceUdp; - PRODUCT_NAME = IceUdp; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -16997,47 +16695,14 @@ }; name = Release; }; - 7830EF6D4934D2D5794C75E8 /* Debug */ = { + 77F12FE102ACD06426F9B1C5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; - 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; - }; - 7855E109704F59DEF3504EEB /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = macosx; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17048,8 +16713,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.IceFacets; + PRODUCT_NAME = IceFacets; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17057,18 +16722,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 79E624FA79C750FFDE1E3B2E /* Release */ = { + 79BAC867CE0BA26F48EAB081 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17078,8 +16740,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.IceAdmin; + PRODUCT_NAME = IceAdmin; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17090,17 +16752,14 @@ }; name = Release; }; - 7BB8D657EA4D1A675D50E1B9 /* Debug */ = { + 7D81FF808715F401F5995BAD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17111,8 +16770,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.IceTimeout; + PRODUCT_NAME = IceTimeout; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17120,83 +16779,74 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - 7CA1D2A04997DC911739BDC3 /* Release */ = { + 7F47D6F51BFC46D845A57292 /* 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/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.IceUdp; + PRODUCT_NAME = IceUdp; 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; }; - 7D50FD009A17A71A0477734F /* Release */ = { + 7FCBFF890BD3F0D9EE31F206 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceBinding; - PRODUCT_NAME = IceBinding; + 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; }; - 7F038F0E39CE843194A0FF04 /* Release */ = { + 81B28E701634B5B16B664ACF /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17205,30 +16855,27 @@ 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.IceExceptions; - PRODUCT_NAME = IceExceptions; - 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; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - 8272FEB0A6D1093F72EE92B6 /* Release */ = { + 81FC912F25482677E4F43256 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17239,8 +16886,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.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17248,19 +16895,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 83C48DF5B7B05719C6F7E2AF /* Debug */ = { + 83038D154DFC8371AB4E2769 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17269,65 +16912,53 @@ 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.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; }; - 83F0437DDE8EA40FDCA8E1F4 /* Release */ = { + 876140CA53A19A94210E1A27 /* 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, - 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; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11iOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; + PRODUCT_NAME = IceProxy; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - 8506411B6F66811B9F3AF489 /* Release */ = { + 877807A5CBEBD1FA31DD2EC0 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17336,29 +16967,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.IceProxy; - PRODUCT_NAME = IceProxy; - 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; }; - 86FAAB0280B252900A322015 /* Release */ = { + 8AA1D310567C3C34DC3A3B88 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17368,28 +16995,24 @@ 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.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; }; - 88496326373DAD5ABADBA984 /* Debug */ = { + 8D491209353684FB7A4CE88F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17399,8 +17022,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceBinding; + PRODUCT_NAME = IceBinding; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17410,12 +17033,11 @@ }; name = Debug; }; - 8BBD11CC665F6D0D472C81CA /* Debug */ = { + 91A6BCA875B11CA88A3D7D4D /* 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 = YES; DYLIB_COMPATIBILITY_VERSION = 0; @@ -17427,6 +17049,7 @@ ICE_CPP11_MAPPING, ICE_STATIC_LIBS, ICE_SWIFT, + NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -17437,32 +17060,31 @@ ); 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; + 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 = macosx; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - 8FF84525302075EE367FBB39 /* Release */ = { + 93537074330FCA54DF4A84B5 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17472,8 +17094,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.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17484,17 +17106,13 @@ }; name = Release; }; - 9129AEC5D18413C87330E818 /* Debug */ = { + 9549DB8E65D16AAB595A3E2A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17503,91 +17121,89 @@ 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; + 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 = Debug; + name = Release; }; - 93CFBF6BF8C6A835CDC6F358 /* Debug */ = { + 968C0F6708FEA447C8916E48 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; - 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.Ice++11iOS"; + PRODUCT_NAME = "Ice++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; }; - 9406A6CF8EEEA324012871AE /* Debug */ = { + 96BA5896B39B3675A1D71350 /* Release */ = { 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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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; + INFOPLIST_FILE = test/TestDriver/iOS/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; - PRODUCT_NAME = IceServices; + 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; - 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; }; - name = Debug; + name = Release; }; - 9677F3607D2D482339DADB85 /* Debug */ = { + 96DC0149749876FB50947267 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17597,58 +17213,26 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServices; + PRODUCT_NAME = IceServices; 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; }; - 982E9558F3D919C717C33E7B /* Debug */ = { + 97BA4334B3723744E42F46A9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; - 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.IceScope; - PRODUCT_NAME = IceScope; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - 99C4530DC1169A541CF0025B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = macosx; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17659,8 +17243,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.SliceEscape; + PRODUCT_NAME = SliceEscape; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17670,16 +17254,13 @@ }; name = Debug; }; - 9A87C1FAC5021EFD0F153CCF /* Release */ = { + 98F1E8ECE83B2DE82189A30C /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17689,8 +17270,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -17701,16 +17282,14 @@ }; name = Release; }; - 9C67E7158243AE9BBED3DB4C /* Release */ = { + 9AD3EDD476D2920F0F249ABB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17719,29 +17298,26 @@ 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; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInheritance; + PRODUCT_NAME = IceInheritance; + 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; }; - 9D1716F294A6D62558E8B993 /* Release */ = { + 9AF9FCFAFB73516832793D05 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17751,29 +17327,24 @@ 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.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; }; - 9F2FED871388C948F0171559 /* Debug */ = { + 9B9C7EF21BEEE60B38BCEB36 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17782,20 +17353,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.IceServantLocator; - PRODUCT_NAME = IceServantLocator; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProperties; + PRODUCT_NAME = IceProperties; + 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; }; - A119980529BB02FF8D4392B5 /* Debug */ = { + 9C0805CAD879C67097B4A5E6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; @@ -17810,12 +17381,12 @@ FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; - INFOPLIST_FILE = src/Glacier2/Info.plist; + 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.Glacier2; - PRODUCT_NAME = Glacier2; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceGrid; + PRODUCT_NAME = IceGrid; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17824,19 +17395,16 @@ VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - A22BD33109C6BEA55E18DB0D /* Debug */ = { + 9D864059DFD5511AE06D4091 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17847,8 +17415,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.IceHold; + PRODUCT_NAME = IceHold; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17858,17 +17426,13 @@ }; name = Debug; }; - A443BE882D9C496DB96AF46D /* Release */ = { + 9DF7EB1B04CDFD3F047AF9A8 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17877,30 +17441,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.IceSlicingObjects; - PRODUCT_NAME = IceSlicingObjects; - 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 = Release; + name = Debug; }; - A6D6DF96DE9B609CE1F67B11 /* Release */ = { + 9EAF4316550850D09FF4D447 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17909,30 +17468,27 @@ 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.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; }; - A992A64B551306E52EBFFA70 /* Debug */ = { + A007AFE8BE813285B739F6B6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17943,8 +17499,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.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -17952,18 +17508,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - AA657A8480CFE70725FEB6F3 /* Debug */ = { + A02167146CAE1B3999BB019F /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -17973,27 +17526,25 @@ 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; + 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; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - AAE4AD255551004EADF51BD7 /* Debug */ = { + A11F000CB22F87844BAADF02 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18003,28 +17554,26 @@ 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.IceStream; + PRODUCT_NAME = IceStream; 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; }; - AC8E443C05576E025FF51C1B /* Debug */ = { + A24DA5E0DE1CA4E2CD90B48A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18035,8 +17584,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.IceOperationsAMD; + PRODUCT_NAME = IceOperationsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18046,17 +17595,14 @@ }; name = Debug; }; - AD22694864642BA851786963 /* Release */ = { + A410CB7D76F91AAEA2214AD9 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18067,8 +17613,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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18076,18 +17622,16 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - AE1B04F3622818478F347040 /* Debug */ = { + A50AFDCEEC347902D75959B7 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18096,59 +17640,58 @@ 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.IceExceptionsAMD; - PRODUCT_NAME = IceExceptionsAMD; - SDKROOT = iphoneos; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; + MACOSX_DEPLOYMENT_TARGET = 11; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; + 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; }; - B0E0E6358F6068CF85A96E53 /* Release */ = { + A5C7C0C842A76589E6DDE89F /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceExceptionsAMD; - PRODUCT_NAME = IceExceptionsAMD; - 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; }; - B1EDA408C2AA15D820B1C19A /* Release */ = { + A721DDF43D4E0CEFCBBD4073 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18157,29 +17700,27 @@ 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.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; }; - B37631B2E178C85C0BD7416D /* Release */ = { + A7975A847EFD7B826CDC0EC4 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18188,30 +17729,27 @@ 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.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; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - B451467279E39C98ACA0D2A7 /* Debug */ = { + A8C733172599762C570115A3 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18222,8 +17760,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceLocation; + PRODUCT_NAME = IceLocation; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18231,18 +17769,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - B5FC310418A6D9DA79A0820D /* Debug */ = { + AB1CE677DB877CDA9CB1CC93 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18252,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.IceProxy; - PRODUCT_NAME = IceProxy; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceUdp; + PRODUCT_NAME = IceUdp; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18263,16 +17798,14 @@ }; name = Debug; }; - B65244A117A1628C45A692D1 /* Release */ = { + ACC9000AD9276B68D7D629C8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18281,92 +17814,81 @@ 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.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; - SDKROOT = iphoneos; + 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"; + SUPPORTED_PLATFORMS = macosx; SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; SWIFT_VERSION = 5.2; - VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; name = Release; }; - B67DEA58EDF38D2146555E43 /* Debug */ = { + AD5893227C6606A55BED4454 /* 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 = 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"; - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.TestCommon; - PRODUCT_NAME = TestCommon; - 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; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + WRAPPER_EXTENSION = bundle; }; name = Debug; }; - B70958A07820F24153C82D69 /* Debug */ = { + AD7BBFBBBA861F31DB7781DC /* Release */ = { 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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceProxyAMD; + PRODUCT_NAME = IceProxyAMD; 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; }; - name = Debug; + name = Release; }; - B9CB2F17BB60D2A93774E9AF /* Release */ = { + AE2877F1D00DF4C6026EEB10 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18376,8 +17898,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.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -18388,17 +17910,13 @@ }; name = Release; }; - BA11D8584470852444BF8934 /* Release */ = { + AFAE7EA50F6094EFD254507C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18407,62 +17925,58 @@ 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.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 = Release; + name = Debug; }; - BADB147846512CDC8EC00AD9 /* Release */ = { + B00CA0EB495341182C146271 /* 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_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 = src/Glacier2/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.Glacier2; - PRODUCT_NAME = Glacier2; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS"; + PRODUCT_NAME = "IceLocatorDiscovery++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; + name = Debug; }; - BB06D6D5BF72325BAE0F1B94 /* Debug */ = { + B1D9635EF1F28C9A3EEC199C /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18471,62 +17985,57 @@ 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; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; + 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; }; - BB89164D04115B81A55A28EB /* Debug */ = { + B286B1D33C019FE8C93C85DE /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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/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.IceProxy; - PRODUCT_NAME = IceProxy; + 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; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; - name = Debug; + name = Release; }; - BCAC3A75E4CAAF3919AA30CF /* Debug */ = { + B303B59216692AFE21FB1283 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18537,8 +18046,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; @@ -18548,47 +18057,47 @@ }; name = Debug; }; - BDAFAC3D6B2F4A315FA24E54 /* Debug */ = { + B32D28768D8961B44F6EB096 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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; + HEADER_SEARCH_PATHS = ( + "$(SRCROOT)/../cpp/include/", + "$(SYMROOT)/$(PLATFORM_NAME)/include/", + "$(SRCROOT)/../cpp/src/", + ); IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceTimeout; - PRODUCT_NAME = IceTimeout; + 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; - WRAPPER_EXTENSION = bundle; + TARGETED_DEVICE_FAMILY = "1,2"; }; name = Debug; }; - C0062FCF81519D76B1255855 /* Debug */ = { + B3614573B6385A61CA652EE1 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18599,8 +18108,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInfo; + PRODUCT_NAME = IceInfo; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18610,20 +18119,19 @@ }; name = Debug; }; - C1A3C77248B736730997AD8F /* Debug */ = { + B547B942FB033115FDF4EC19 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; 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/"; + EXECUTABLE_PREFIX = lib; GCC_PREPROCESSOR_DEFINITIONS = ( ICE_CPP11_MAPPING, + ICE_BUILDING_SRC, ICE_STATIC_LIBS, ICE_SWIFT, ); @@ -18634,67 +18142,22 @@ "$(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; - }; - C230C000D0FCA1D35318241C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - AVAILABLE_PLATFORMS = macosx; - CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; - CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; - 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.IceServantLocator; - PRODUCT_NAME = IceServantLocator; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS"; + PRODUCT_NAME = "Ice++11macOS"; 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; }; - C27B521B497DE5FBBE1EBD28 /* Debug */ = { + B56D9FDB62477D711E6FCB73 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18704,90 +18167,56 @@ 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.IceInheritance; + PRODUCT_NAME = IceInheritance; 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; }; - C29728A7401614F494367D38 /* Release */ = { + B5A3C7B3A80F77A26CDA3C49 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceAcm; - PRODUCT_NAME = IceAcm; + 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; - }; - name = Release; - }; - C3722EB1E530D97837CD26CE /* 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/Ice/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.Ice; - PRODUCT_NAME = Ice; - 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 = ""; }; name = Debug; }; - C61A0F02E93ADD988CD97C4E /* Release */ = { + B9D743A5FA3A7CE89359E6D3 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18797,29 +18226,25 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceObjects; + PRODUCT_NAME = IceObjects; 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; }; - C65AD7E4113A848C59513B71 /* Release */ = { + B9EF31F46ADF6C8E77CDA3FD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18830,8 +18255,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.IceDefaultServant; + PRODUCT_NAME = IceDefaultServant; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -18839,50 +18264,48 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - C6F0D3C48F7AF28F3D2E2807 /* Debug */ = { + BA7687216DA47E0AC5ED93AA /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceServantLocatorAMD; - PRODUCT_NAME = IceServantLocatorAMD; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; + PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; - SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; - SWIFT_VERSION = 5.2; - WRAPPER_EXTENSION = bundle; }; name = Debug; }; - C87C6044B643B62B21050611 /* Release */ = { + BC915B8D2230241E306787E8 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -18891,20 +18314,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.IceOperations; - PRODUCT_NAME = IceOperations; - 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; }; - C9B8EFE9B9017FBCF0F50FD4 /* Release */ = { + BD20C38B6446441879C8FF2B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -18959,144 +18382,131 @@ }; name = Release; }; - CA30A575821BD6DFDB1CA02D /* Release */ = { + BDDA287D18F5AA0968836E5D /* Debug */ = { 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_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/", - ); - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11macOS"; - PRODUCT_NAME = "Ice++11macOS"; - SDKROOT = macosx; + 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 = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - CA65B01C95D602822A48ED60 /* Debug */ = { + BE2C76A8F2347CCBBEDF27DC /* 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/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.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; 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; }; - CA9FA5D725CDB3801AC8CBEF /* Release */ = { + C0D4AE648BB79689416BDA47 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceProxy; - PRODUCT_NAME = IceProxy; - SDKROOT = iphoneos; + 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; 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; }; - CEF445C20B9435947C182348 /* Debug */ = { + C2F8293F1995280FC979E6AD /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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/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.IceLocation; - PRODUCT_NAME = IceLocation; + 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; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - CFED7F1F6617B1CF2D3D4D32 /* Release */ = { + C38F9CCF33D50DD7936909BB /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19105,63 +18515,54 @@ 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; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - D204410F3C771B53C68A5009 /* 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; - 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.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; - TARGETED_DEVICE_FAMILY = "1,2"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + VALIDATE_PRODUCT = YES; + WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - D3D001F8E544D390D0D1AF51 /* Debug */ = { + C625627B68C80AF03A05FF02 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19172,8 +18573,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.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19181,52 +18582,105 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - D48E3016D5ADE10C3A00DFC4 /* Debug */ = { + 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; - 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.IceDiscovery++11iOS"; - PRODUCT_NAME = "IceDiscovery++11iOS"; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceServantLocatorAMD; + PRODUCT_NAME = IceServantLocatorAMD; 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; }; - D780534798616EC4BFDF9FD3 /* Release */ = { + 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 = ( + "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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19237,8 +18691,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19248,17 +18702,14 @@ }; name = Release; }; - D961DAA17BD6AC10C7ECB17B /* Debug */ = { + CB02F881EF1A6E7331861765 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19269,8 +18720,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19280,16 +18731,13 @@ }; name = Debug; }; - DBCDB6AEE8716E3AE99E8BAB /* Release */ = { + CB054B23514ACEA1E5B94B06 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19299,29 +18747,24 @@ 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.IceInheritance; + PRODUCT_NAME = IceInheritance; 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; }; - DE013AECC305883A62CBDFEC /* Release */ = { + CBA7D63EE017BD803D7DD44B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19330,93 +18773,82 @@ 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.IceSlicingObjectsAMD; - PRODUCT_NAME = IceSlicingObjectsAMD; - 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 = Release; + name = Debug; }; - DE833C97F990B7F608AF3545 /* Debug */ = { + CBD53C80A7474FDC490BF0C8 /* 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/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.IceOptional; + PRODUCT_NAME = IceOptional; 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; }; - DEDD9294323B4DFC822104AC /* 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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceAmi; - PRODUCT_NAME = IceAmi; + 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 = Release; }; - DF791BBC010C7DEA35C6288B /* Release */ = { + CCDAF0BD73A00FF61D43A1BC /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19427,8 +18859,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.IceSSLConfiguration; + PRODUCT_NAME = IceSSLConfiguration; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19438,17 +18870,14 @@ }; name = Release; }; - DF80BA1DD3440176640EB8C4 /* Release */ = { + CCF58F1A554367A9BB5DA407 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19459,8 +18888,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceProxy; + PRODUCT_NAME = IceProxy; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19470,17 +18899,14 @@ }; name = Release; }; - E0E0C87104F919DDE32F19EC /* Release */ = { + CDC4DFBD7B5FC2334BC8AB05 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19491,8 +18917,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.IceRetry; + PRODUCT_NAME = IceRetry; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19502,16 +18928,14 @@ }; name = Release; }; - E1AD6FECB9FD4526CC295047 /* Debug */ = { + D257660EE74809A6FC5E13C7 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19520,54 +18944,56 @@ 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.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; }; - E22DB570F4B3184DAE1E4BB8 /* Release */ = { + D4342FFBD5E22F6E89EF170E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; + AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceInvoke; - PRODUCT_NAME = IceInvoke; - 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; }; - E2D31ED62E6C3D699254A5FD /* Debug */ = { + D5F43C9E2BF076953C751490 /* 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; DYLIB_COMPATIBILITY_VERSION = 0; @@ -19579,32 +19005,28 @@ 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"; + 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 = iphoneos; + 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; }; - E41FC74F1042766105A53541 /* Release */ = { + D6005378B384B661EE93A6FC /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19615,8 +19037,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.IceServantLocator; + PRODUCT_NAME = IceServantLocator; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19624,18 +19046,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - E54DD2BC48D7DABDFC986791 /* Debug */ = { + D67AC4DADC43587CE3B0FD2E /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19645,28 +19064,26 @@ 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.IceInfo; + PRODUCT_NAME = IceInfo; 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; }; - E6616EE3382A5B4F1755C5CB /* Debug */ = { + D88D261665B417E518187B42 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19677,8 +19094,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.IceServices; + PRODUCT_NAME = IceServices; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19688,16 +19105,13 @@ }; name = Debug; }; - E6D88E40851CA6206B232133 /* Release */ = { + DB1BA83B5AEDD6DCDBBED87B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19707,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.IceHold; - PRODUCT_NAME = IceHold; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjectsAMD; + PRODUCT_NAME = IceSlicingObjectsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19719,17 +19133,14 @@ }; name = Release; }; - E7F47928E080A245266CEA61 /* Debug */ = { + DE65FFE10625BF8B737951A6 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19749,128 +19160,106 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - EB0799B2B3A8067AFC224C24 /* Release */ = { + E225D1B4DEBF3757A3A63F1C /* 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/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.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; 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; }; - EC0D969108C9AC1353BF3F9C /* Release */ = { + E35E6F1EEF54C8B4BD4AD7A1 /* 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_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"; + INFOPLIST_FILE = test/TestCommon/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles"; MACOSX_DEPLOYMENT_TARGET = 11; - OTHER_LDFLAGS = ( - "-lbz2", - "-liconv", - ); - PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceImpl; - PRODUCT_NAME = IceImpl; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceInterceptor; + PRODUCT_NAME = IceInterceptor; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - ED83A473D1943A5FD3884024 /* Release */ = { + E40793A2DA2FD1B84088FF60 /* 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.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; + 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; }; - EDBEDCAC04DE41B3F53864DE /* Debug */ = { + E4E3E80BCF1099A6E5F92434 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + 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; - EXECUTABLE_PREFIX = lib; + FRAMEWORK_SEARCH_PATHS = "$(SRCROOT)/../Carthage/Build/"; GCC_PREPROCESSOR_DEFINITIONS = ( ICE_CPP11_MAPPING, - ICE_BUILDING_SRC, ICE_STATIC_LIBS, ICE_SWIFT, ); @@ -19881,26 +19270,33 @@ "$(SYMROOT)/$(PLATFORM_NAME)/include/", "$(SRCROOT)/../cpp/src/", ); - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11macOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11macOS"; - SDKROOT = macosx; + 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 = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; }; name = Debug; }; - EE14543D05758DB6D05CE53E /* Release */ = { + E7041EC9CF0EE21FC97773F6 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19911,8 +19307,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.IceProxy; + PRODUCT_NAME = IceProxy; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -19920,18 +19316,15 @@ SWIFT_VERSION = 5.2; WRAPPER_EXTENSION = bundle; }; - name = Release; + name = Debug; }; - EE232280D015186BEDFB9F87 /* Debug */ = { + E73E965AE4F4F657D99B5900 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -19941,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.IceInvoke; - PRODUCT_NAME = IceInvoke; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceEnums; + PRODUCT_NAME = IceEnums; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -19952,62 +19345,45 @@ }; name = Debug; }; - EF59A7BB816EBCC1AE48790E /* Release */ = { + E7D10C6F6EBF711E4AE4316E /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; 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, - 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; + INFOPLIST_FILE = src/Ice/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; + 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; TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; VERSIONING_SYSTEM = "apple-generic"; VERSION_INFO_PREFIX = ""; }; - name = Release; + name = Debug; }; - EF60AA9DB9FC3D6C95A263BA /* Release */ = { + E839E23A3D8FE879308ED3BD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20018,8 +19394,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.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -20029,16 +19405,13 @@ }; name = Release; }; - F0D908A5A98B609F695B28AE /* Release */ = { + E8A266A9CACD828FD5D91DAD /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20060,17 +19433,13 @@ }; name = Release; }; - F1BAF8B6DED5E94738BB4669 /* Debug */ = { + EA336F4614487B7192AEF282 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20079,29 +19448,28 @@ 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.IceInheritance; - PRODUCT_NAME = IceInheritance; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceHold; + PRODUCT_NAME = IceHold; + 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; }; - F374F3D5438C236C87A58A73 /* Release */ = { + EC657E54B1B7BE372A249147 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { - AVAILABLE_PLATFORMS = macosx; + 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; - EXECUTABLE_PREFIX = lib; GCC_PREPROCESSOR_DEFINITIONS = ( ICE_CPP11_MAPPING, ICE_BUILDING_SRC, @@ -20116,56 +19484,82 @@ "$(SYMROOT)/$(PLATFORM_NAME)/include/", "$(SRCROOT)/../cpp/src/", ); - MACOSX_DEPLOYMENT_TARGET = 11; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceDiscovery++11macOS"; - PRODUCT_NAME = "IceDiscovery++11macOS"; - SDKROOT = macosx; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + OTHER_LDFLAGS = "-ObjC"; + PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.Ice++11iOS"; + PRODUCT_NAME = "Ice++11iOS"; + SDKROOT = iphoneos; SKIP_INSTALL = YES; - SUPPORTED_PLATFORMS = macosx; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + ECF4559A965DFB454EDBD04F /* 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.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 = Release; }; - F3E273E3BF86133FE3672542 /* Release */ = { + ED0143B5BD711C7FDCC14D91 /* 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"; + 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.IceGrid; - PRODUCT_NAME = IceGrid; + 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 = Release; + name = Debug; }; - F3E9114AB4CD6F863CFF72CB /* Release */ = { + ED57FE96F7F9BD2863487190 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20175,8 +19569,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingExceptionsAMD; + PRODUCT_NAME = IceSlicingExceptionsAMD; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -20187,17 +19581,14 @@ }; name = Release; }; - F4680B102DF5832D606C2591 /* Release */ = { + EDF9FB7DA979576B72EA656A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20208,8 +19599,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.IceOptional; + PRODUCT_NAME = IceOptional; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -20219,16 +19610,13 @@ }; name = Release; }; - F63EB3889A540862B5C1409E /* Debug */ = { + EEC0A817374DB756E6E5D0B5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20238,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.IceInfo; - PRODUCT_NAME = IceInfo; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceSlicingObjects; + PRODUCT_NAME = IceSlicingObjects; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -20249,16 +19637,13 @@ }; name = Debug; }; - F659780EFCABF3F48709A7C8 /* Debug */ = { + F1D2C3C4131F274A39F78218 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20268,28 +19653,26 @@ 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; + 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; + VALIDATE_PRODUCT = YES; WRAPPER_EXTENSION = bundle; }; - name = Debug; + name = Release; }; - FA754E7056636EED796F69E7 /* Debug */ = { + F2E1E34AD76F3053D7C54F09 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20300,8 +19683,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.IceAmi; + PRODUCT_NAME = IceAmi; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -20311,16 +19694,13 @@ }; name = Debug; }; - FA7B8E9B6AECB88CD2CF7167 /* Release */ = { + F2F568D17AF6B70C14C90ECB /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20330,8 +19710,8 @@ 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; + PRODUCT_BUNDLE_IDENTIFIER = com.zeroc.IceDefaultValue; + PRODUCT_NAME = IceDefaultValue; SDKROOT = iphoneos; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; @@ -20342,70 +19722,63 @@ }; name = Release; }; - FC7A0050481D2D6FAAF4591F /* 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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.SliceEscape; - PRODUCT_NAME = SliceEscape; + 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; }; - FC9C9F9E579C1F434D78DF44 /* Release */ = { + F680B50DDFE6347DA32F3CDB /* 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"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; - COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; 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.IceProxy; + PRODUCT_NAME = IceProxy; + 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; }; - FD705E568316F758E8D0CC2F /* Debug */ = { + F6D7582D1E580B97184ED22B /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; @@ -20419,6 +19792,7 @@ ICE_BUILDING_SRC, ICE_STATIC_LIBS, ICE_SWIFT, + NDEBUG, ); GCC_SYMBOLS_PRIVATE_EXTERN = YES; GCC_TREAT_WARNINGS_AS_ERRORS = YES; @@ -20429,26 +19803,24 @@ ); IPHONEOS_DEPLOYMENT_TARGET = 12.0; OTHER_LDFLAGS = "-ObjC"; - PRODUCT_BUNDLE_IDENTIFIER = "com.zeroc.IceLocatorDiscovery++11iOS"; - PRODUCT_NAME = "IceLocatorDiscovery++11iOS"; + 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 = Debug; + name = Release; }; - FD741080A0C1B98C1D1B75E3 /* Debug */ = { + F7AEAA92674355CDEF388AC0 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20459,8 +19831,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.IceExceptions; + PRODUCT_NAME = IceExceptions; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -20470,17 +19842,42 @@ }; name = Debug; }; - FE669A089EFEC864BB290077 /* Release */ = { + 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; + }; + F9A34E48B4066A5D2BC3CBA0 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20491,8 +19888,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.IceAcm; + PRODUCT_NAME = IceAcm; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -20502,17 +19899,95 @@ }; name = Release; }; - FEBEBBD015A0D4A547FE9595 /* Debug */ = { + FB01E283F43542E615067814 /* 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.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + FCBE121D7DCE516CCC9BEA9E /* 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.IceOptionalAMD; + PRODUCT_NAME = IceOptionalAMD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + FCE4D54C4A37077978FE911B /* 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.IceAdapterDeactivation; + PRODUCT_NAME = IceAdapterDeactivation; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SUPPORTED_PLATFORMS = "iphoneos iphonesimulator"; + SWIFT_TREAT_WARNINGS_AS_ERRORS = YES; + SWIFT_VERSION = 5.2; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + FE479150A5E98C346B0B6B0B /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = macosx; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 3.7.10; DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; DYLIB_COMPATIBILITY_VERSION = 0; DYLIB_CURRENT_VERSION = 3.7.10; ENABLE_BITCODE = NO; @@ -20523,8 +19998,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.IceSlicingExceptions; + PRODUCT_NAME = IceSlicingExceptions; SDKROOT = macosx; SKIP_INSTALL = YES; SUPPORTED_PLATFORMS = macosx; @@ -20534,932 +20009,977 @@ }; name = Debug; }; - FF95D0AC21DB3D6207E35630 /* Release */ = { + FF4F40A6B8A5FE7E55CBA539 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { AVAILABLE_PLATFORMS = "iphoneos iphonesimulator"; CLANG_CXX_LANGUAGE_STANDARD = "c++17"; - CODE_SIGN_IDENTITY = "Apple Development"; - CODE_SIGN_STYLE = Automatic; CURRENT_PROJECT_VERSION = 3.7.10; - DEAD_CODE_STRIPPING = YES; - DEVELOPMENT_TEAM = U4TBVKNQ7F; + 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.IceLocation; - PRODUCT_NAME = IceLocation; + 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; + TARGETED_DEVICE_FAMILY = "1,2"; VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = bundle; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + FFBAF0E9654CC11BFDD25C8A /* 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; }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 03C104B96C3644524557A697 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = { + 0157127A05BBD04C218262B0 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - B67DEA58EDF38D2146555E43 /* Debug */, - 0F3049905D9E501C160E9121 /* Release */, + B32D28768D8961B44F6EB096 /* Debug */, + F6D7582D1E580B97184ED22B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 08B22C9A9A85F18B106D85BA /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = { + 0252968214EFD83026C28885 /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AC8E443C05576E025FF51C1B /* Debug */, - 8272FEB0A6D1093F72EE92B6 /* Release */, + D6005378B384B661EE93A6FC /* Debug */, + 2B678FAF79A30F363A1C296D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 08C75263908EA0F1DB23F0E4 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = { + 030B0C213166A908514BBEE3 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FEBEBBD015A0D4A547FE9595 /* Debug */, - FE669A089EFEC864BB290077 /* Release */, + 28BB67947897DD592CA0F4D4 /* Debug */, + A11F000CB22F87844BAADF02 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 092F36D88613D1A5972D047F /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = { + 0D38EB796BDA440B8E66B871 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9129AEC5D18413C87330E818 /* Debug */, - E41FC74F1042766105A53541 /* Release */, + 00212E653D64CB6E18BB9028 /* Debug */, + E8A266A9CACD828FD5D91DAD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0A75FB26B366B04407C83993 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = { + 0DB26316D880D79A043C8220 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - DE833C97F990B7F608AF3545 /* Debug */, - EB0799B2B3A8067AFC224C24 /* Release */, + 11B6B9A02D099FAA3EDC5C79 /* Debug */, + 464F1C354904FC6F8225F42E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0B05EAB79BFAA962F80CF8AC /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = { + 0E2D5CC6DCF10732C7895AEA /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C1A3C77248B736730997AD8F /* Debug */, - EF59A7BB816EBCC1AE48790E /* Release */, + 59A5313052D318C259C99FF9 /* Debug */, + FFBAF0E9654CC11BFDD25C8A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0BFC94187CF7D53768ABBC15 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = { + 0EFEF1D7EBC06BC77FD52F2A /* Build configuration list for PBXNativeTarget "IceImpl iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5E4D6320B488378DDCE9DDA1 /* Debug */, - 3E27AE079302475EC7F05B37 /* Release */, + E4E3E80BCF1099A6E5F92434 /* Debug */, + 91A6BCA875B11CA88A3D7D4D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0C54B13449B12B4038C3F423 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = { + 1436FED26E53A492AD49A198 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FD705E568316F758E8D0CC2F /* Debug */, - 83F0437DDE8EA40FDCA8E1F4 /* Release */, + AD5893227C6606A55BED4454 /* Debug */, + 4A51618B84F5931CCB50C6D5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0D88577E87719A0CF76623A9 /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = { + 163A2F3CF4F68749AD6BE907 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4B74CB3A587F6F127EDFC763 /* Debug */, - 57470DF6F499A483802F4409 /* Release */, + 968C0F6708FEA447C8916E48 /* Debug */, + EC657E54B1B7BE372A249147 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0EE3B8E1D1C40DE7FA588CCC /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = { + 1B21314EACDD9B26090F7A0D /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 205C3B001D1785630498378E /* Debug */, - B65244A117A1628C45A692D1 /* Release */, + EEC0A817374DB756E6E5D0B5 /* Debug */, + 9549DB8E65D16AAB595A3E2A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 0EFAE24B5CC863CCCA4508F9 /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = { + 1D4D43FA26654DDFBB6F5AEA /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - BCAC3A75E4CAAF3919AA30CF /* Debug */, - C29728A7401614F494367D38 /* Release */, + D88D261665B417E518187B42 /* Debug */, + 6AAB8AFFE8FCCFEAEB26CC1F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 10E1403F759E228BC195828D /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = { + 1EAF04FCF683069900CD2CB5 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7BB8D657EA4D1A675D50E1B9 /* Debug */, - C65AD7E4113A848C59513B71 /* Release */, + FCE4D54C4A37077978FE911B /* Debug */, + 93537074330FCA54DF4A84B5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 141A424AF6A38313304014AE /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = { + 24D42F76DBAE051B1B76F4CE /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4ADFFD2E5E75840AC32CA067 /* Debug */, - 30B12A81FD644A795EA13E83 /* Release */, + E7041EC9CF0EE21FC97773F6 /* Debug */, + CCF58F1A554367A9BB5DA407 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1884127EAB4501CE6C47D3E9 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = { + 26A74315ED193312D199F3B9 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FC7A0050481D2D6FAAF4591F /* Debug */, - 30E453DBB208267E59D830F1 /* Release */, + 9AF9FCFAFB73516832793D05 /* Debug */, + 9B9C7EF21BEEE60B38BCEB36 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1AF909433E628EC26457205C /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = { + 2D0A6566A0B9851960104854 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5EEF7F1110B5EA7231C45CE9 /* Debug */, - FC9C9F9E579C1F434D78DF44 /* Release */, + 332DA6EB470437102B3384CF /* Debug */, + DB1BA83B5AEDD6DCDBBED87B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1C904D2FB673DBE16373FA83 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = { + 2D0CF23009F00A73CEFE08EE /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CA65B01C95D602822A48ED60 /* Debug */, - F3E273E3BF86133FE3672542 /* Release */, + C38F9CCF33D50DD7936909BB /* Debug */, + F2F568D17AF6B70C14C90ECB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 1FBF92B4CD04CC8C9EFB5E86 /* Build configuration list for PBXNativeTarget "IceAmi iOS" */ = { + 2E5E382C433373FE08562DEC /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0FC5496CADC7C7D73E821F9D /* Debug */, - F0D908A5A98B609F695B28AE /* Release */, + 0C5C2DAF8D756CCECBA59F25 /* Debug */, + ECF4559A965DFB454EDBD04F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 20FB15239DAE99F4DCE2B62A /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = { + 3128757B52EE1F33A8DBE372 /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 83C48DF5B7B05719C6F7E2AF /* Debug */, - DF80BA1DD3440176640EB8C4 /* Release */, + 19DC30A096698F1A2FEAEDC7 /* Debug */, + F1D2C3C4131F274A39F78218 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 225D7B3D02FECE8F0BFF6D90 /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = { + 31B85D81BB3BFAAF230662F4 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 51343BCE46CCF3D0EBF8974F /* Debug */, - 198661EE5CD1C319035315B4 /* Release */, + 0354499B2DD0DC62AB168977 /* Debug */, + 98F1E8ECE83B2DE82189A30C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 25EC7192854BA2624581D9F0 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = { + 32C4A6C4DF4E4784C694E4CA /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7417FC9553D0752B212C80A1 /* Debug */, - 10B53309D03E6CCFD9E43949 /* Release */, + 876140CA53A19A94210E1A27 /* Debug */, + F680B50DDFE6347DA32F3CDB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 270B29BCEE9A0485CBB85E84 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = { + 349E46BBAA5C23BC49FDDCA7 /* Build configuration list for PBXNativeTarget "IceDefaultServant iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 27AEDD44314A9DA2ACAF62D6 /* Debug */, - 622FED553C986FBB2E98C4B5 /* Release */, + 43AFF6BB4488768B7ADE168D /* Debug */, + 189F759795665D2D47C52CC0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2B547B22617DE6EA322A9DE6 /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = { + 3A17E7095AB1ECA3CBAC256C /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3B278C0C6C2D8B0E174555F7 /* Debug */, - 654A884C08F411226A4E1096 /* Release */, + 4B0503C843A97EED4234885C /* Debug */, + 5CBA4ED58F2F60A54E615EF2 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2C6B159FF806CA13EF38DE93 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = { + 3A6B018810B2355184BFADD6 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4EE6049531ABE9D83CEF621A /* Debug */, - 6C507DA486A980470217DD18 /* Release */, + 05657ECF61EFEC81DC7208F3 /* Debug */, + 2A49049DC2EE04F26563E85E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D22126AE89A3BAA829CC1AC /* Build configuration list for PBXNativeTarget "IceServantLocator macOS" */ = { + 3BBD0784B868C9DF93BA087B /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9F2FED871388C948F0171559 /* Debug */, - C230C000D0FCA1D35318241C /* Release */, + 6C3678B6DEBB04FBAB8678AB /* Debug */, + CBD53C80A7474FDC490BF0C8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2D55C68F1B8DFD8505B722F7 /* Build configuration list for PBXProject "ice" */ = { + 464CD32F92DF139FF90EA325 /* Build configuration list for PBXNativeTarget "IceBinding iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 73AA6C1E546A2A0DFFAD33B7 /* Debug */, - C9B8EFE9B9017FBCF0F50FD4 /* Release */, + 8D491209353684FB7A4CE88F /* Debug */, + 6605DD1F0450DF2E5107309B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3335761187FD8F6B86CBDFBE /* Build configuration list for PBXNativeTarget "Ice macOS" */ = { + 495A226D42894D7C7C4FB3B2 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 011CC2AF958F50548FC2A0FA /* Debug */, - ED83A473D1943A5FD3884024 /* Release */, + 2F04F8D6E5F2FC5D52163668 /* Debug */, + 1658450DE946D9DD3F85967B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 33815915876E472B4F87E193 /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = { + 4B428E0CA2D95FAE74B01562 /* Build configuration list for PBXNativeTarget "IceGrid macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 99C4530DC1169A541CF0025B /* Debug */, - 2CBD468F8A6CF787C4BA5DD6 /* Release */, + D5F43C9E2BF076953C751490 /* Debug */, + 9C0805CAD879C67097B4A5E6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 381EE69BF39E2A31A9574035 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = { + 4C8BEDE4F71178624F9BDD5D /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C27B521B497DE5FBBE1EBD28 /* Debug */, - FF95D0AC21DB3D6207E35630 /* Release */, + B00CA0EB495341182C146271 /* Debug */, + 3CC583BD5B53A083491B5B35 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 39202D7414A70877BE45837D /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = { + 577ED2287A5F0BBFA0232583 /* Build configuration list for PBXNativeTarget "IceHold iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 624159B9005E625C69B2766D /* Debug */, - E6D88E40851CA6206B232133 /* Release */, + B1D9635EF1F28C9A3EEC199C /* Debug */, + EA336F4614487B7192AEF282 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 40F601399935EA83044348DE /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = { + 614B9769E03331E188CB19E8 /* Build configuration list for PBXProject "ice" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4679AA721BFCCDCD65CB9408 /* Debug */, - 6C5716235443937679696276 /* Release */, + CAA78153EABB685F2D464844 /* Debug */, + BD20C38B6446441879C8FF2B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 469CC415C2CD4E23C9440A03 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = { + 665075D2E65EC4768153CF0C /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EDBEDCAC04DE41B3F53864DE /* Debug */, - 0ABE4B874D9B891FDCC943B0 /* Release */, + B9D743A5FA3A7CE89359E6D3 /* Debug */, + 1CEDFBC7D1144BB6AD4A569C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4D82084280C676C2093AF62F /* Build configuration list for PBXNativeTarget "IceOperations iOS" */ = { + 69B629EDFCB8FBDE7E173C34 /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2DD65509D64D176188D582A0 /* Debug */, - C87C6044B643B62B21050611 /* Release */, + 3763FE1D5D07E69ABEA6C6FD /* Debug */, + 96BA5896B39B3675A1D71350 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4DB434BEC4D47FE241686799 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = { + 6B982611FF349CB1EE5F5CDD /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4E5559177B38BBC8AF832698 /* Debug */, - DBCDB6AEE8716E3AE99E8BAB /* Release */, + 5242E73DBE21CDC14C12CC93 /* Debug */, + D67AC4DADC43587CE3B0FD2E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 544FCAA3BF572ECC5525C591 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = { + 6D13163FD66559C4FBD1F390 /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7855E109704F59DEF3504EEB /* Debug */, - BA11D8584470852444BF8934 /* Release */, + CB054B23514ACEA1E5B94B06 /* Debug */, + B56D9FDB62477D711E6FCB73 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 555A63D73D762337A889ABFE /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = { + 6E9AE200122845A170FA96E8 /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 50CAFBEBFA4C52005167582E /* Debug */, - 00C763F71BB41D64C72F5B08 /* Release */, + BDDA287D18F5AA0968836E5D /* Debug */, + F7F2FDA49B1BD99B483C4303 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5B649B5CD051BB6398F0AB73 /* Build configuration list for PBXNativeTarget "IceOperations macOS" */ = { + 6FE087B24FDE257DD79D7A6A /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 6B76C262F18DED8812CE4043 /* Debug */, - EF60AA9DB9FC3D6C95A263BA /* Release */, + A410CB7D76F91AAEA2214AD9 /* Debug */, + BE2C76A8F2347CCBBEDF27DC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5C6A38D5A003D8C2B10EB588 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = { + 7132AA38811E7617A47E8634 /* Build configuration list for PBXNativeTarget "IceHold macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 112259378DEFD9415D29BB12 /* Debug */, - B9CB2F17BB60D2A93774E9AF /* Release */, + 9D864059DFD5511AE06D4091 /* Debug */, + 60AE7F72CE719DED162A24FC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5D60C6D4805FE0840A563B9A /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = { + 7171AF48EFEC75029772E593 /* Build configuration list for PBXNativeTarget "IceInfo macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4FFDA4D7D709A98DD4C5C111 /* Debug */, - 74B4F808449BD133F7D215B4 /* Release */, + B3614573B6385A61CA652EE1 /* Debug */, + 5FCD71235F27C105EAE4CE89 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5D6E3AC8616035B5AECEBBAC /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = { + 71C26DB9FF59095377426D7F /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 28D310C2B0FBA44F114B4547 /* Debug */, - 4ACFD9F505479535A347F069 /* Release */, + ED0143B5BD711C7FDCC14D91 /* Debug */, + 09EF95091B2C941C8FF1E748 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 5FFFF89B11EECD1E5C41B703 /* Build configuration list for PBXNativeTarget "IceObjects iOS" */ = { + 71D9586CD06D3A7AA552F80B /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4A96CE1C17B02803D67C1F73 /* Debug */, - FA7B8E9B6AECB88CD2CF7167 /* Release */, + 38B6FAD82C23C5497F196AD0 /* Debug */, + 73EBC7901108C83DFC9DEB5E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 602FD78BB42EED22AE69E70E /* Build configuration list for PBXNativeTarget "IceImpl macOS" */ = { + 77CF292B6405CD9DC50E55F1 /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8BBD11CC665F6D0D472C81CA /* Debug */, - EC0D969108C9AC1353BF3F9C /* Release */, + 5C0FBBF4EBD9B7782B924DA2 /* Debug */, + 1E51A9B641EDCF87BD064DC1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 62CB538FB022CED190E6659E /* Build configuration list for PBXNativeTarget "IceExceptionsAMD iOS" */ = { + 7D856E3928914BABAE964FDB /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AE1B04F3622818478F347040 /* Debug */, - B0E0E6358F6068CF85A96E53 /* Release */, + 530FCAB81C139133B4140A49 /* Debug */, + ACC9000AD9276B68D7D629C8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 674190F44ED8DD47BBD3457E /* Build configuration list for PBXNativeTarget "IceUdp macOS" */ = { + 7FE01F67067D7142B0CD4F65 /* Build configuration list for PBXNativeTarget "IceLocation iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - B451467279E39C98ACA0D2A7 /* Debug */, - 26FA6B439D408D06CA1D55CB /* Release */, + 9DF7EB1B04CDFD3F047AF9A8 /* Debug */, + 449E71DA8CE0102A4D3FE271 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 686CA0DB8041143E1F8D142C /* Build configuration list for PBXNativeTarget "IceServantLocator iOS" */ = { + 81D802AA8BD4316DF8274377 /* Build configuration list for PBXNativeTarget "SliceEscape macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 07B4CC6A8722B10798000EF4 /* Debug */, - 86FAAB0280B252900A322015 /* Release */, + 97BA4334B3723744E42F46A9 /* Debug */, + 4FDA2FAFEFD9EE7F3C11EAF3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 688C1823288F9E68F1712F26 /* Build configuration list for PBXNativeTarget "IceOperationsAMD iOS" */ = { + 8604BB88AF7054188522024C /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 704C49473DB46BD1A3AD7431 /* Debug */, - 5002EC97CCF08EAC78615F2A /* Release */, + E40793A2DA2FD1B84088FF60 /* Debug */, + ED57FE96F7F9BD2863487190 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6CFA15E18CBCD5A1B9C078C2 /* Build configuration list for PBXNativeTarget "IceAcm iOS" */ = { + 8B6BCE61CD3D67F3E3BD8082 /* Build configuration list for PBXNativeTarget "IceStorm iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 52CB59830C30C74F2D549DB0 /* Debug */, - 4279868881B2DE6EAC027941 /* Release */, + 6D831C9F7FF99624C0D1543B /* Debug */, + 3B9F2A9A04C375097DF5DA5B /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 70304980DAC6B5CAC7E8F6DE /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = { + 8F67E660542E98461C602595 /* Build configuration list for PBXNativeTarget "Ice macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5D4DCF542DEF20FCD712E5EB /* Debug */, - DF791BBC010C7DEA35C6288B /* Release */, + C2F8293F1995280FC979E6AD /* Debug */, + B286B1D33C019FE8C93C85DE /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 72FFED9A8E87191EE3B81797 /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = { + 9199459F36DFC89B49984138 /* Build configuration list for PBXNativeTarget "TestCommon macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 7830EF6D4934D2D5794C75E8 /* Debug */, - B1EDA408C2AA15D820B1C19A /* Release */, + B5A3C7B3A80F77A26CDA3C49 /* Debug */, + 7FCBFF890BD3F0D9EE31F206 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 73CA9515792EA282705ECAD7 /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = { + 94387391F728B13F25DE50C7 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - BDAFAC3D6B2F4A315FA24E54 /* Debug */, - C61A0F02E93ADD988CD97C4E /* Release */, + C9BDFD21E846A4CCA47736D1 /* Debug */, + A02167146CAE1B3999BB019F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 73F016E3CC9A4846DC92237F /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = { + 949317B550B1B1AFD92D0533 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1D9AA09DB3B18BA39583735F /* Debug */, - A443BE882D9C496DB96AF46D /* Release */, + F7AEAA92674355CDEF388AC0 /* Debug */, + 43092AEE9282AE4492F9E8C1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 79C62B5F4AC3F786B504F1F0 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = { + 964D3AF528C6D718B99C4B07 /* Build configuration list for PBXNativeTarget "IceAdmin iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3C089350D7C122B295078195 /* Debug */, - 1E4BAF1583875EDBA336D237 /* Release */, + 202F90A6056798A44A053A01 /* Debug */, + 79BAC867CE0BA26F48EAB081 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7D0F8BCAD5EDB101F823DEC0 /* Build configuration list for PBXNativeTarget "IceBinding macOS" */ = { + 977E8284CE65D07066ADD555 /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A992A64B551306E52EBFFA70 /* Debug */, - 7D50FD009A17A71A0477734F /* Release */, + D257660EE74809A6FC5E13C7 /* Debug */, + 119F65B8F08EBACF923587B0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 80944B96D7BD14FEB4A109E5 /* Build configuration list for PBXNativeTarget "IceExceptions macOS" */ = { + 99C7AB75CFB58B2BC9CB54D3 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E6616EE3382A5B4F1755C5CB /* Debug */, - 7F038F0E39CE843194A0FF04 /* Release */, + 0F49847A3D30FD2426C95804 /* Debug */, + A8C733172599762C570115A3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 83AB53993A049DAAD70B1062 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = { + 9CBEAA1D89D83E1B7344586B /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5A5D3ED1075BFCD7819B071A /* Debug */, - BADB147846512CDC8EC00AD9 /* Release */, + B547B942FB033115FDF4EC19 /* Debug */, + 0D9D638DB854AFAC8DEAF9F6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8438D59C3B885588B64C9832 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = { + 9D893DF6CA15F319D4C37CFE /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E1AD6FECB9FD4526CC295047 /* Debug */, - 53C75FE2DC576E2DB33B0338 /* Release */, + 1634CFB4307FE4E7F762BDF1 /* Debug */, + E839E23A3D8FE879308ED3BD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 85C13ACAB3711BD642FCE4C4 /* Build configuration list for PBXNativeTarget "IceServices macOS" */ = { + A058B15145DAA4177378CA84 /* Build configuration list for PBXNativeTarget "IceOperationsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2D450C72B46B986D09B55ED9 /* Debug */, - 77568847C4326D667191703B /* Release */, + A24DA5E0DE1CA4E2CD90B48A /* Debug */, + 4622F5680462A9BC895EECCF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8D6981486561EBD3BEBBE95C /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation iOS" */ = { + A0C903109661754A7310890E /* Build configuration list for PBXNativeTarget "IceOptional macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9677F3607D2D482339DADB85 /* Debug */, - 9A87C1FAC5021EFD0F153CCF /* Release */, + 2FCD884F7716D61AA099F6E5 /* Debug */, + EDF9FB7DA979576B72EA656A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8FEE51B6A3BE6A237451E98D /* Build configuration list for PBXNativeTarget "IceProperties macOS" */ = { + A49FFB8AF3A3C860FD54F46E /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A22BD33109C6BEA55E18DB0D /* Debug */, - 60DC3753797AE277083A79DC /* Release */, + 4E2881FF86974CAB24460CDA /* Debug */, + 83038D154DFC8371AB4E2769 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9353801B529260F737851CAA /* Build configuration list for PBXNativeTarget "IceInfo iOS" */ = { + AA28C8DA746390B23C998CD3 /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F63EB3889A540862B5C1409E /* Debug */, - 132EFC9A96243B9910662B83 /* Release */, + F2E1E34AD76F3053D7C54F09 /* Debug */, + BC915B8D2230241E306787E8 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 96C433DB6D4ADD824EF8C135 /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD iOS" */ = { + ACACE4173894FFF52EE39DA7 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1365C74468FCEF15966DC571 /* Debug */, - 8FF84525302075EE367FBB39 /* Release */, + 5E5FCAF913C07ECE44B4B687 /* Debug */, + 63FD65C5E0D84791EF23A177 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 9DE455849AC8D536550B2EEC /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = { + AD6CB133F0EFD74046390926 /* Build configuration list for PBXNativeTarget "IceStream macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 88496326373DAD5ABADBA984 /* Debug */, - 77FF3CC4C1DEA6D3EA793236 /* Release */, + 1F66A9EA800ADB6FB598E151 /* Debug */, + 5ADB4519C98E98559E850BD9 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A42CCFD6344CE2EDEC80786E /* Build configuration list for PBXNativeTarget "IceProxy iOS" */ = { + AD814D241780CB1F06437AF5 /* Build configuration list for PBXNativeTarget "IceEnums iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - B5FC310418A6D9DA79A0820D /* Debug */, - CA9FA5D725CDB3801AC8CBEF /* Release */, + E73E965AE4F4F657D99B5900 /* Debug */, + C50229ECE27F3F9A4DBA84B3 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A587A06D5F6E132F5A3B9C1F /* Build configuration list for PBXNativeTarget "IceObjects macOS" */ = { + B3FA3031CFC7509713D02FB1 /* Build configuration list for PBXNativeTarget "Ice iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FD741080A0C1B98C1D1B75E3 /* Debug */, - CFED7F1F6617B1CF2D3D4D32 /* Release */, + E7D10C6F6EBF711E4AE4316E /* Debug */, + 0999A071A417465129F1CB6A /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A73372CD2DFDD509AAC6B941 /* Build configuration list for PBXNativeTarget "IceProperties iOS" */ = { + B8A4900C8A10B4D3B524509C /* Build configuration list for PBXNativeTarget "IceRetry macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AA657A8480CFE70725FEB6F3 /* Debug */, - F3E9114AB4CD6F863CFF72CB /* Release */, + 378AB8A03B8825928BD7CA70 /* Debug */, + CDC4DFBD7B5FC2334BC8AB05 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A9DB78C0FD4634D297D9ACE3 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 macOS" */ = { + B8AEBDC5CCFFA9D36FF72CD0 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5D72F7A2FA24166F161E77BE /* Debug */, - F374F3D5438C236C87A58A73 /* Release */, + 3F0D0B4901EB77018B68AEED /* Debug */, + FF4F40A6B8A5FE7E55CBA539 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - A9F09C08CD7BD7CA33AF995F /* Build configuration list for PBXNativeTarget "IceOptionalAMD macOS" */ = { + BD31B570526360322E7F63BA /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0347629109200410FC7237FF /* Debug */, - D780534798616EC4BFDF9FD3 /* Release */, + CBA7D63EE017BD803D7DD44B /* Debug */, + 96DC0149749876FB50947267 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AE759CF313ADE80AD78FF935 /* Build configuration list for PBXNativeTarget "IceSlicingObjectsAMD macOS" */ = { + BE77650B59C4E2B377676E45 /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 93CFBF6BF8C6A835CDC6F358 /* Debug */, - DE013AECC305883A62CBDFEC /* Release */, + 0CE17BDB74111CCD583007AD /* Debug */, + 9AD3EDD476D2920F0F249ABB /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - AFAD3A592F040172798F6AF8 /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD macOS" */ = { + C22E9D48367DAB854CD8AB46 /* Build configuration list for PBXNativeTarget "TestDriver macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C6F0D3C48F7AF28F3D2E2807 /* Debug */, - E0E0C87104F919DDE32F19EC /* Release */, + F404E5A34F098B49362FE6CF /* Debug */, + CC566650C5A5C5A74BB8D3DA /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B177DF1D1629B1AE10FE43D1 /* Build configuration list for PBXNativeTarget "IceGrid iOS" */ = { + C2937583439E12DEE92C51F2 /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E2D31ED62E6C3D699254A5FD /* Debug */, - 7CA1D2A04997DC911739BDC3 /* Release */, + 231A559E2F4678F0CEE0F016 /* Debug */, + 7D81FF808715F401F5995BAD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B3EB63E7E80278C3A46AB5D0 /* Build configuration list for PBXNativeTarget "Ice iOS" */ = { + C3B296EDB3547BDC8388C399 /* Build configuration list for PBXNativeTarget "IceAdapterDeactivation macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C3722EB1E530D97837CD26CE /* Debug */, - 69AF4ACB1345497CC8760BC3 /* Release */, + 016AEECBFC9EFFF1E6090B11 /* Debug */, + A50AFDCEEC347902D75959B7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B6686F53B6B2DB01F7D2D51E /* Build configuration list for PBXNativeTarget "IceServantLocatorAMD iOS" */ = { + C987906A8741F66B405FD072 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 62D11CD5B18A50F997534C1C /* Debug */, - 9C67E7158243AE9BBED3DB4C /* Release */, + 334EEAC0E06FCF19981245FD /* Debug */, + 5F26EF188432AE2765F0D788 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B6AFDDBBEE1B3573134850DE /* Build configuration list for PBXNativeTarget "TestDriver iOS" */ = { + CA5A320E5664C9BFB05772CE /* Build configuration list for PBXNativeTarget "IceAcm macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - B70958A07820F24153C82D69 /* Debug */, - 4A96FF0775FD9B8261A908C1 /* Release */, + 36C3B9CB33D359570C165D87 /* Debug */, + F9A34E48B4066A5D2BC3CBA0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - B89F4C4E44F64BDD966EE1B5 /* Build configuration list for PBXNativeTarget "Ice C++11 iOS" */ = { + CB0394D655BA7D9B8142D057 /* Build configuration list for PBXNativeTarget "IceDefaultServant macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D204410F3C771B53C68A5009 /* Debug */, - 150321E7973095640FC098BD /* Release */, + B9EF31F46ADF6C8E77CDA3FD /* Debug */, + 33920A4E3ADE0B87F492CBB7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - BF4C2C5F37875869E7BF37E8 /* Build configuration list for PBXNativeTarget "IceDefaultValue iOS" */ = { + D0AA8018E3D1C21DC2A00EBC /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F659780EFCABF3F48709A7C8 /* Debug */, - 21D226499A7361A419CEFE18 /* Release */, + B303B59216692AFE21FB1283 /* Debug */, + 77F12FE102ACD06426F9B1C5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C55E74E3597122A4D2934E60 /* Build configuration list for PBXNativeTarget "IceScope iOS" */ = { + D30BE105828013751D1037C9 /* Build configuration list for PBXNativeTarget "IceOptionalAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 982E9558F3D919C717C33E7B /* Debug */, - B37631B2E178C85C0BD7416D /* Release */, + FCBE121D7DCE516CCC9BEA9E /* Debug */, + E225D1B4DEBF3757A3A63F1C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C75CE301532817FB9F18CF2D /* Build configuration list for PBXNativeTarget "IceTimeout macOS" */ = { + D33AE6C245142D0675324FCF /* Build configuration list for PBXNativeTarget "IceSlicingObjects macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D3D001F8E544D390D0D1AF51 /* Debug */, - 2451DF474EA10000CBFCAFBB /* Release */, + 52F16DBFDDB29D8337E5A9C2 /* Debug */, + A007AFE8BE813285B739F6B6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C774EC4F7B80A9DC640C4A98 /* Build configuration list for PBXNativeTarget "IceLocation macOS" */ = { + D4827EC355C3F9035B72BF00 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - CEF445C20B9435947C182348 /* Debug */, - 287ADA50FE6D9E982B0D3A7A /* Release */, + 4ECD262FB71069194383327D /* Debug */, + CCDAF0BD73A00FF61D43A1BC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CAA6AB848FDFE69287273CB7 /* Build configuration list for PBXNativeTarget "IceDiscovery C++11 iOS" */ = { + D87BFF32BBF64821815CA977 /* Build configuration list for PBXNativeTarget "IceUdp iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D48E3016D5ADE10C3A00DFC4 /* Debug */, - 12BEA97FA2FDB585862360A7 /* Release */, + AB1CE677DB877CDA9CB1CC93 /* Debug */, + 7F47D6F51BFC46D845A57292 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - CB1B55F276722B4DC699283F /* Build configuration list for PBXNativeTarget "IceAmi macOS" */ = { + DAC003A18A73B54FD01E21B7 /* Build configuration list for PBXNativeTarget "IceRetry iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - D961DAA17BD6AC10C7ECB17B /* Debug */, - DEDD9294323B4DFC822104AC /* Release */, + 877807A5CBEBD1FA31DD2EC0 /* Debug */, + AE2877F1D00DF4C6026EEB10 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D0CCC607E5806E77831B1416 /* Build configuration list for PBXNativeTarget "IceSlicingObjects iOS" */ = { + E038B4B9CC945838CD3D9B02 /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - AAE4AD255551004EADF51BD7 /* Debug */, - 6DBC2F6DCFCC8FDF8640187A /* Release */, + 0A396FB5C6DB40A0BC7B2F01 /* Debug */, + DE65FFE10625BF8B737951A6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D12D148799602A4AC7FF510F /* Build configuration list for PBXNativeTarget "IceInheritance macOS" */ = { + E44C1CBBD0B26C3481F76879 /* Build configuration list for PBXNativeTarget "IceStorm macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - F1BAF8B6DED5E94738BB4669 /* Debug */, - EE14543D05758DB6D05CE53E /* Release */, + 3BCD3C246EC27D9918028AF9 /* Debug */, + C0D4AE648BB79689416BDA47 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D19A58BF707835F960F106B8 /* Build configuration list for PBXNativeTarget "Ice C++11 macOS" */ = { + E4537A8468EF1FEEE8F8F311 /* Build configuration list for PBXNativeTarget "SliceEscape iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 1625D39D0C6F2EB7B99C0165 /* Debug */, - CA30A575821BD6DFDB1CA02D /* Release */, + 606D46DE7B48AE5486C73A4B /* Debug */, + 07E5F000623435C259AA3148 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D7544F8A922AE8F2EDB41A02 /* Build configuration list for PBXNativeTarget "IceFacets iOS" */ = { + E7B316026DBF1CE6D68F925C /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 20D0C1B391680119AFE248AE /* Debug */, - 79E624FA79C750FFDE1E3B2E /* Release */, + A5C7C0C842A76589E6DDE89F /* Debug */, + D4342FFBD5E22F6E89EF170E /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D78ED8ECC0AE408DA83908A4 /* Build configuration list for PBXNativeTarget "IceInterceptor iOS" */ = { + E9970C605E8859BAAB002530 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E54DD2BC48D7DABDFC986791 /* Debug */, - 76A34945520A32193465D243 /* Release */, + FB01E283F43542E615067814 /* Debug */, + 753E4E1389A306FD91D57134 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D8007E39E45FCA7368E53B31 /* Build configuration list for PBXNativeTarget "IceProxy macOS" */ = { + E9A35DA707780FA15F886576 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - BB89164D04115B81A55A28EB /* Debug */, - 8506411B6F66811B9F3AF489 /* Release */, + CB02F881EF1A6E7331861765 /* Debug */, + 4466198637A4588CE4E780E6 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D85F93533003653E8BEEEDCF /* Build configuration list for PBXNativeTarget "IceFacets macOS" */ = { + EDC6890C79963D7F1EC96376 /* Build configuration list for PBXNativeTarget "IceScope macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 22E4AD97DA54E75E5AD28B99 /* Debug */, - 635FB8F29F3545CF5D1C2CCF /* Release */, + 5554B9F7B95836737BB07140 /* Debug */, + 0DA062A9F13FAE05620C9AB7 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D94673340A9825A2C0D0FF4A /* Build configuration list for PBXNativeTarget "IceOptional iOS" */ = { + EDCBAD1868C21D4D52A43EC8 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2A869C9562BC45F1DAD26782 /* Debug */, - 746D9445BC2F683E373882E4 /* Release */, + AFAE7EA50F6094EFD254507C /* Debug */, + 81B28E701634B5B16B664ACF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DA5782EA7C56F1C9C9EE074A /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = { + F0D8FCBCA123963F12AA14B8 /* Build configuration list for PBXNativeTarget "IceEnums macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - C0062FCF81519D76B1255855 /* Debug */, - 405BACCF3A9B3478F2EF994B /* Release */, + 81FC912F25482677E4F43256 /* Debug */, + C625627B68C80AF03A05FF02 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DBB2EA67BA6CDCB7FCB3DE91 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration macOS" */ = { + F0F1827DA5AFDAEAA66F8225 /* Build configuration list for PBXNativeTarget "IceSlicingExceptions macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 74EEB8ED8BC649A164D44D5A /* Debug */, - 58C370DFDA25589F5F814EB4 /* Release */, + FE479150A5E98C346B0B6B0B /* Debug */, + A721DDF43D4E0CEFCBBD4073 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E15FE701211C54FAB6478CA8 /* Build configuration list for PBXNativeTarget "IceInvoke iOS" */ = { + F2077D8AD4DFC86DB8B0364B /* Build configuration list for PBXNativeTarget "IceTimeout iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - EE232280D015186BEDFB9F87 /* Debug */, - E22DB570F4B3184DAE1E4BB8 /* Release */, + 4D432DDEF77EF6C8D5B063AB /* Debug */, + 361036643181FE5D16B60347 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E4220777441E5EF3ECA5F089 /* Build configuration list for PBXNativeTarget "Glacier2 macOS" */ = { + F4A79ED2732065B4851C86EB /* Build configuration list for PBXNativeTarget "IceSlicingExceptionsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - A119980529BB02FF8D4392B5 /* Debug */, - 67770D43D33076741AA56821 /* Release */, + 009B1D5AA0CAACBA370FCB9D /* Debug */, + A7975A847EFD7B826CDC0EC4 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E670FBC18F8DB839607BC8E3 /* Build configuration list for PBXNativeTarget "IceServices iOS" */ = { + F999CB9EA63099F760D8B7CC /* Build configuration list for PBXNativeTarget "IceExceptionsAMD macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9406A6CF8EEEA324012871AE /* Debug */, - 9D1716F294A6D62558E8B993 /* Release */, + 6D19B5418B7F4F87CA49139F /* Debug */, + 4BCF325A0A55C5E3246CA63C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E84BF87A0A0D54A334C069D6 /* Build configuration list for PBXNativeTarget "TestCommon iOS" */ = { + FB60A0B415E9E347AA1E331F /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 2C5F3BADECC6CA58BE1C453E /* Debug */, - 45A0D99A811AAACDC8C518D4 /* Release */, + E35E6F1EEF54C8B4BD4AD7A1 /* Debug */, + CAE5C045E0B58561DF388F62 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - E9FFA63035886ECE1E9ECE85 /* Build configuration list for PBXNativeTarget "IceDefaultValue macOS" */ = { + FBC432173B82346F63A1CD28 /* Build configuration list for PBXNativeTarget "IceProxyAMD iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - BB06D6D5BF72325BAE0F1B94 /* Debug */, - AD22694864642BA851786963 /* Release */, + 6D7F26353031A2206559038D /* Debug */, + AD7BBFBBBA861F31DB7781DC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EDDCB3D00193C75D1E33B973 /* Build configuration list for PBXNativeTarget "IceInterceptor macOS" */ = { + FBDF261EE2A45A604FD39FB6 /* Build configuration list for PBXNativeTarget "IceAdmin macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3D18B97208F3127AA4D3BA9F /* Debug */, - A6D6DF96DE9B609CE1F67B11 /* Release */, + 2CD3EFA3EDCE0C5BCE245D37 /* Debug */, + 6FFFF59AADB3FC5FEE78CC24 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - EE4E19AF95E379FC43413ABA /* Build configuration list for PBXNativeTarget "IceInvoke macOS" */ = { + FC10685FF608E313BEC22C18 /* Build configuration list for PBXNativeTarget "IceSSLConfiguration iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - E7F47928E080A245266CEA61 /* Debug */, - 217CEF0EA476A9DE4C798D13 /* Release */, + 1CC3B4ADA7F46E26B0C50F41 /* Debug */, + 9EAF4316550850D09FF4D447 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FA1EA884977C3652AEBA8EBC /* Build configuration list for PBXNativeTarget "IceInheritance iOS" */ = { + FC9F6692633CE8F5DEDAF0AB /* Build configuration list for PBXNativeTarget "IceExceptions iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 3039B8BF73BA2B1CA7D1DB19 /* Debug */, - 545E7D6B2266745FE716C2EA /* Release */, + 8AA1D310567C3C34DC3A3B88 /* Debug */, + 721AAAE4997C701F3D97D2CC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FAB7791B2C8C1018698D7909 /* Build configuration list for PBXNativeTarget "IceStream iOS" */ = { + FDD08CA1D9C4CEE1314AB011 /* Build configuration list for PBXNativeTarget "IceLocatorDiscovery C++11 macOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4AE8B6D8551528AE40545B1B /* Debug */, - 420591BACB209C7C60D6A7C8 /* Release */, + BA7687216DA47E0AC5ED93AA /* Debug */, + 060AFB2F371CCA06ED926100 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - FBAF081DB3D9A6FADF284C05 /* Build configuration list for PBXNativeTarget "IceProxyAMD macOS" */ = { + FFF95930E70A3FD5E4AA31B1 /* Build configuration list for PBXNativeTarget "Glacier2 iOS" */ = { isa = XCConfigurationList; buildConfigurations = ( - FA754E7056636EED796F69E7 /* Debug */, - F4680B102DF5832D606C2591 /* Release */, + 5A78DB7F65CB39389441528D /* Debug */, + 43BACE1B30980E095D1043C5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = 6C4BDC12B235E63B3B624E92 /* 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 97afd963fae..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 37ecfbcf989..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">