From cf269f05581138561938a4958bdcdc48c7634fa8 Mon Sep 17 00:00:00 2001 From: Mikhail Vospennikov Date: 2022年8月11日 14:47:45 +0300 Subject: [PATCH 1/2] Update Binary Search project to Swift 5.0 and Xcode 13.4.1 --- .../BinarySearch.playground/Contents.swift | 2 + .../contents.xcplayground | 2 +- .../contents.xcworkspacedata | 2 +- .../BinarySearch.xcodeproj/project.pbxproj | 468 ++++++++++++++++++ .../contents.xcworkspacedata | 7 + .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../xcshareddata/WorkspaceSettings.xcsettings | 10 + .../xcshareddata/xcschemes/Tests.xcscheme | 45 +- Binary Search/Source/BinarySearch.h | 18 + Binary Search/{ => Source}/BinarySearch.swift | 0 Binary Search/Tests/BinarySearchTests.swift | 1 + Binary Search/Tests/Info.plist | 24 - .../Tests/Tests.xcodeproj/project.pbxproj | 269 ---------- 13 files changed, 532 insertions(+), 324 deletions(-) rename Binary Search/{Tests/Tests.xcodeproj/project.xcworkspace => BinarySearch.playground/playground.xcworkspace}/contents.xcworkspacedata (72%) create mode 100644 Binary Search/BinarySearch.xcodeproj/project.pbxproj create mode 100644 Binary Search/BinarySearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata create mode 100644 Binary Search/BinarySearch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 Binary Search/BinarySearch.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings rename Binary Search/{Tests/Tests.xcodeproj => BinarySearch.xcodeproj}/xcshareddata/xcschemes/Tests.xcscheme (61%) create mode 100644 Binary Search/Source/BinarySearch.h rename Binary Search/{ => Source}/BinarySearch.swift (100%) delete mode 100644 Binary Search/Tests/Info.plist delete mode 100644 Binary Search/Tests/Tests.xcodeproj/project.pbxproj diff --git a/Binary Search/BinarySearch.playground/Contents.swift b/Binary Search/BinarySearch.playground/Contents.swift index f673f25c4..2a5774606 100644 --- a/Binary Search/BinarySearch.playground/Contents.swift +++ b/Binary Search/BinarySearch.playground/Contents.swift @@ -1,3 +1,5 @@ +import BinarySearch + //: Playground - noun: a place where people can play // An unsorted array of numbers diff --git a/Binary Search/BinarySearch.playground/contents.xcplayground b/Binary Search/BinarySearch.playground/contents.xcplayground index 69d154d1e..1c968e7d1 100644 --- a/Binary Search/BinarySearch.playground/contents.xcplayground +++ b/Binary Search/BinarySearch.playground/contents.xcplayground @@ -1,4 +1,4 @@ - + \ No newline at end of file diff --git a/Binary Search/Tests/Tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Binary Search/BinarySearch.playground/playground.xcworkspace/contents.xcworkspacedata similarity index 72% rename from Binary Search/Tests/Tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata rename to Binary Search/BinarySearch.playground/playground.xcworkspace/contents.xcworkspacedata index 6c0ea8493..919434a62 100644 --- a/Binary Search/Tests/Tests.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/Binary Search/BinarySearch.playground/playground.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "self:"> diff --git a/Binary Search/BinarySearch.xcodeproj/project.pbxproj b/Binary Search/BinarySearch.xcodeproj/project.pbxproj new file mode 100644 index 000000000..d3e772365 --- /dev/null +++ b/Binary Search/BinarySearch.xcodeproj/project.pbxproj @@ -0,0 +1,468 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 53; + objects = { + +/* Begin PBXBuildFile section */ + DD699BF428A51F44007137E9 /* BinarySearch.swift in Sources */ = {isa = PBXBuildFile; fileRef = DD699BF328A51F44007137E9 /* BinarySearch.swift */; }; + DDF8EE6528A51E8D0052E0DB /* BinarySearch.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDF8EE5C28A51E8D0052E0DB /* BinarySearch.framework */; }; + DDF8EE6A28A51E8D0052E0DB /* BinarySearchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = DDF8EE6928A51E8D0052E0DB /* BinarySearchTests.swift */; }; + DDF8EE6B28A51E8D0052E0DB /* BinarySearch.h in Headers */ = {isa = PBXBuildFile; fileRef = DDF8EE5F28A51E8D0052E0DB /* BinarySearch.h */; settings = {ATTRIBUTES = (Public, ); }; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + DDF8EE6628A51E8D0052E0DB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = DDF8EE5328A51E8D0052E0DB /* Project object */; + proxyType = 1; + remoteGlobalIDString = DDF8EE5B28A51E8D0052E0DB; + remoteInfo = BinarySearch; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + DD1847ED28A52093004B2172 /* README.markdown */ = {isa = PBXFileReference; lastKnownFileType = net.daringfireball.markdown; path = README.markdown; sourceTree = ""; }; + DD32F1CF28A51F0200D5DED9 /* BinarySearch.playground */ = {isa = PBXFileReference; lastKnownFileType = file.playground; path = BinarySearch.playground; sourceTree = ""; xcLanguageSpecificationIdentifier = xcode.lang.swift; }; + DD699BF328A51F44007137E9 /* BinarySearch.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BinarySearch.swift; sourceTree = ""; }; + DDF8EE5C28A51E8D0052E0DB /* BinarySearch.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = BinarySearch.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + DDF8EE5F28A51E8D0052E0DB /* BinarySearch.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BinarySearch.h; sourceTree = ""; }; + DDF8EE6428A51E8D0052E0DB /* BinarySearchTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = BinarySearchTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + DDF8EE6928A51E8D0052E0DB /* BinarySearchTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = BinarySearchTests.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + DDF8EE5928A51E8D0052E0DB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DDF8EE6128A51E8D0052E0DB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + DDF8EE6528A51E8D0052E0DB /* BinarySearch.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + DDF8EE5228A51E8D0052E0DB = { + isa = PBXGroup; + children = ( + DD1847ED28A52093004B2172 /* README.markdown */, + DD32F1CF28A51F0200D5DED9 /* BinarySearch.playground */, + DDF8EE5E28A51E8D0052E0DB /* Source */, + DDF8EE6828A51E8D0052E0DB /* Tests */, + DDF8EE5D28A51E8D0052E0DB /* Products */, + ); + sourceTree = ""; + }; + DDF8EE5D28A51E8D0052E0DB /* Products */ = { + isa = PBXGroup; + children = ( + DDF8EE5C28A51E8D0052E0DB /* BinarySearch.framework */, + DDF8EE6428A51E8D0052E0DB /* BinarySearchTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + DDF8EE5E28A51E8D0052E0DB /* Source */ = { + isa = PBXGroup; + children = ( + DD699BF328A51F44007137E9 /* BinarySearch.swift */, + DDF8EE5F28A51E8D0052E0DB /* BinarySearch.h */, + ); + path = Source; + sourceTree = ""; + }; + DDF8EE6828A51E8D0052E0DB /* Tests */ = { + isa = PBXGroup; + children = ( + DDF8EE6928A51E8D0052E0DB /* BinarySearchTests.swift */, + ); + path = Tests; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + DDF8EE5728A51E8D0052E0DB /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + DDF8EE6B28A51E8D0052E0DB /* BinarySearch.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + DDF8EE5B28A51E8D0052E0DB /* BinarySearch */ = { + isa = PBXNativeTarget; + buildConfigurationList = DDF8EE6E28A51E8D0052E0DB /* Build configuration list for PBXNativeTarget "BinarySearch" */; + buildPhases = ( + DDF8EE5728A51E8D0052E0DB /* Headers */, + DDF8EE5828A51E8D0052E0DB /* Sources */, + DDF8EE5928A51E8D0052E0DB /* Frameworks */, + DDF8EE5A28A51E8D0052E0DB /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = BinarySearch; + productName = BinarySearch; + productReference = DDF8EE5C28A51E8D0052E0DB /* BinarySearch.framework */; + productType = "com.apple.product-type.framework"; + }; + DDF8EE6328A51E8D0052E0DB /* BinarySearchTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = DDF8EE7128A51E8D0052E0DB /* Build configuration list for PBXNativeTarget "BinarySearchTests" */; + buildPhases = ( + DDF8EE6028A51E8D0052E0DB /* Sources */, + DDF8EE6128A51E8D0052E0DB /* Frameworks */, + DDF8EE6228A51E8D0052E0DB /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + DDF8EE6728A51E8D0052E0DB /* PBXTargetDependency */, + ); + name = BinarySearchTests; + productName = BinarySearchTests; + productReference = DDF8EE6428A51E8D0052E0DB /* BinarySearchTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + DDF8EE5328A51E8D0052E0DB /* Project object */ = { + isa = PBXProject; + attributes = { + BuildIndependentTargetsInParallel = 1; + LastSwiftUpdateCheck = 1340; + LastUpgradeCheck = 1340; + TargetAttributes = { + DDF8EE5B28A51E8D0052E0DB = { + CreatedOnToolsVersion = 13.4.1; + LastSwiftMigration = 1340; + }; + DDF8EE6328A51E8D0052E0DB = { + CreatedOnToolsVersion = 13.4.1; + }; + }; + }; + buildConfigurationList = DDF8EE5628A51E8D0052E0DB /* Build configuration list for PBXProject "BinarySearch" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = DDF8EE5228A51E8D0052E0DB; + productRefGroup = DDF8EE5D28A51E8D0052E0DB /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + DDF8EE5B28A51E8D0052E0DB /* BinarySearch */, + DDF8EE6328A51E8D0052E0DB /* BinarySearchTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + DDF8EE5A28A51E8D0052E0DB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DDF8EE6228A51E8D0052E0DB /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + DDF8EE5828A51E8D0052E0DB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DD699BF428A51F44007137E9 /* BinarySearch.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DDF8EE6028A51E8D0052E0DB /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + DDF8EE6A28A51E8D0052E0DB /* BinarySearchTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + DDF8EE6728A51E8D0052E0DB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = DDF8EE5B28A51E8D0052E0DB /* BinarySearch */; + targetProxy = DDF8EE6628A51E8D0052E0DB /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + DDF8EE6C28A51E8D0052E0DB /* 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++17"; + 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; + CURRENT_PROJECT_VERSION = 1; + 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; + MACOSX_DEPLOYMENT_TARGET = 10.11; + MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; + MTL_FAST_MATH = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = macosx; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + DDF8EE6D28A51E8D0052E0DB /* 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++17"; + 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; + CURRENT_PROJECT_VERSION = 1; + 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; + MACOSX_DEPLOYMENT_TARGET = 10.11; + MTL_ENABLE_DEBUG_INFO = NO; + MTL_FAST_MATH = YES; + SDKROOT = macosx; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + DDF8EE6F28A51E8D0052E0DB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = 35J7AXFYQT; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.raywenderlich.BinarySearch; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + DDF8EE7028A51E8D0052E0DB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + CODE_SIGN_STYLE = Automatic; + COMBINE_HIDPI_IMAGES = YES; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DEVELOPMENT_TEAM = 35J7AXFYQT; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GENERATE_INFOPLIST_FILE = YES; + INFOPLIST_KEY_NSHumanReadableCopyright = ""; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/../Frameworks", + "@loader_path/Frameworks", + ); + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.raywenderlich.BinarySearch; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SKIP_INSTALL = YES; + SWIFT_EMIT_LOC_STRINGS = YES; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; + DDF8EE7228A51E8D0052E0DB /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 35J7AXFYQT; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gmail.vospennikov.BinarySearchTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + }; + name = Debug; + }; + DDF8EE7328A51E8D0052E0DB /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + CODE_SIGN_STYLE = Automatic; + CURRENT_PROJECT_VERSION = 1; + DEVELOPMENT_TEAM = 35J7AXFYQT; + GENERATE_INFOPLIST_FILE = YES; + MARKETING_VERSION = 1.0; + PRODUCT_BUNDLE_IDENTIFIER = com.gmail.vospennikov.BinarySearchTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_EMIT_LOC_STRINGS = NO; + SWIFT_VERSION = 5.0; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + DDF8EE5628A51E8D0052E0DB /* Build configuration list for PBXProject "BinarySearch" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DDF8EE6C28A51E8D0052E0DB /* Debug */, + DDF8EE6D28A51E8D0052E0DB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DDF8EE6E28A51E8D0052E0DB /* Build configuration list for PBXNativeTarget "BinarySearch" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DDF8EE6F28A51E8D0052E0DB /* Debug */, + DDF8EE7028A51E8D0052E0DB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + DDF8EE7128A51E8D0052E0DB /* Build configuration list for PBXNativeTarget "BinarySearchTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + DDF8EE7228A51E8D0052E0DB /* Debug */, + DDF8EE7328A51E8D0052E0DB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = DDF8EE5328A51E8D0052E0DB /* Project object */; +} diff --git a/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 000000000..919434a62 --- /dev/null +++ b/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 000000000..18d981003 --- /dev/null +++ b/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning +
+ + diff --git a/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 000000000..ff23ebc81 --- /dev/null +++ b/Binary Search/BinarySearch.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,10 @@ + + + + + IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded + + PreviewsEnabled + + + diff --git a/Binary Search/Tests/Tests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme b/Binary Search/BinarySearch.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme similarity index 61% rename from Binary Search/Tests/Tests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme rename to Binary Search/BinarySearch.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme index 14f27f777..39c5df357 100644 --- a/Binary Search/Tests/Tests.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme +++ b/Binary Search/BinarySearch.xcodeproj/xcshareddata/xcschemes/Tests.xcscheme @@ -1,6 +1,6 @@ + buildForProfiling = "YES" + buildForArchiving = "YES" + buildForAnalyzing = "YES"> + BlueprintIdentifier = "DDF8EE5B28A51E8D0052E0DB" + BuildableName = "BinarySearch.framework" + BlueprintName = "BinarySearch" + ReferencedContainer = "container:BinarySearch.xcodeproj"> @@ -32,15 +32,13 @@ skipped = "NO"> + BlueprintIdentifier = "DDF8EE6328A51E8D0052E0DB" + BuildableName = "BinarySearchTests.xctest" + BlueprintName = "BinarySearchTests" + ReferencedContainer = "container:BinarySearch.xcodeproj"> - - - - - - - - + BlueprintIdentifier = "DDF8EE5B28A51E8D0052E0DB" + BuildableName = "BinarySearch.framework" + BlueprintName = "BinarySearch" + ReferencedContainer = "container:BinarySearch.xcodeproj"> diff --git a/Binary Search/Source/BinarySearch.h b/Binary Search/Source/BinarySearch.h new file mode 100644 index 000000000..d19cc1049 --- /dev/null +++ b/Binary Search/Source/BinarySearch.h @@ -0,0 +1,18 @@ +// +// BinarySearch.h +// BinarySearch +// +// Created by Mikhail Vospennikov on 11.08.2022. +// + +#import + +//! Project version number for BinarySearch. +FOUNDATION_EXPORT double BinarySearchVersionNumber; + +//! Project version string for BinarySearch. +FOUNDATION_EXPORT const unsigned char BinarySearchVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/Binary Search/BinarySearch.swift b/Binary Search/Source/BinarySearch.swift similarity index 100% rename from Binary Search/BinarySearch.swift rename to Binary Search/Source/BinarySearch.swift diff --git a/Binary Search/Tests/BinarySearchTests.swift b/Binary Search/Tests/BinarySearchTests.swift index 35ad9559b..aa65ca0d0 100755 --- a/Binary Search/Tests/BinarySearchTests.swift +++ b/Binary Search/Tests/BinarySearchTests.swift @@ -1,5 +1,6 @@ import Foundation import XCTest +import BinarySearch class BinarySearchTest: XCTestCase { var searchList = [Int]() diff --git a/Binary Search/Tests/Info.plist b/Binary Search/Tests/Info.plist deleted file mode 100644 index ba72822e8..000000000 --- a/Binary Search/Tests/Info.plist +++ /dev/null @@ -1,24 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleExecutable - $(EXECUTABLE_NAME) - CFBundleIdentifier - $(PRODUCT_BUNDLE_IDENTIFIER) - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - $(PRODUCT_NAME) - CFBundlePackageType - BNDL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1 - - diff --git a/Binary Search/Tests/Tests.xcodeproj/project.pbxproj b/Binary Search/Tests/Tests.xcodeproj/project.pbxproj deleted file mode 100644 index 6e29252ec..000000000 --- a/Binary Search/Tests/Tests.xcodeproj/project.pbxproj +++ /dev/null @@ -1,269 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 7B80C3CE1C77A256003CECC7 /* BinarySearchTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B80C3CD1C77A256003CECC7 /* BinarySearchTests.swift */; }; - 7B80C3D01C77A263003CECC7 /* BinarySearch.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7B80C3CF1C77A263003CECC7 /* BinarySearch.swift */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 7B2BBC801C779D720067B71D /* Tests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = Tests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; - 7B2BBC941C779E7B0067B71D /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = SOURCE_ROOT; }; - 7B80C3CD1C77A256003CECC7 /* BinarySearchTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = BinarySearchTests.swift; sourceTree = SOURCE_ROOT; }; - 7B80C3CF1C77A263003CECC7 /* BinarySearch.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = BinarySearch.swift; path = ../BinarySearch.swift; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 7B2BBC7D1C779D720067B71D /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 7B2BBC681C779D710067B71D = { - isa = PBXGroup; - children = ( - 7B2BBC831C779D720067B71D /* Tests */, - 7B2BBC721C779D710067B71D /* Products */, - ); - sourceTree = ""; - }; - 7B2BBC721C779D710067B71D /* Products */ = { - isa = PBXGroup; - children = ( - 7B2BBC801C779D720067B71D /* Tests.xctest */, - ); - name = Products; - sourceTree = ""; - }; - 7B2BBC831C779D720067B71D /* Tests */ = { - isa = PBXGroup; - children = ( - 7B80C3CF1C77A263003CECC7 /* BinarySearch.swift */, - 7B80C3CD1C77A256003CECC7 /* BinarySearchTests.swift */, - 7B2BBC941C779E7B0067B71D /* Info.plist */, - ); - name = Tests; - path = TestsTests; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 7B2BBC7F1C779D720067B71D /* Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7B2BBC8C1C779D720067B71D /* Build configuration list for PBXNativeTarget "Tests" */; - buildPhases = ( - 7B2BBC7C1C779D720067B71D /* Sources */, - 7B2BBC7D1C779D720067B71D /* Frameworks */, - 7B2BBC7E1C779D720067B71D /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Tests; - productName = TestsTests; - productReference = 7B2BBC801C779D720067B71D /* Tests.xctest */; - productType = "com.apple.product-type.bundle.unit-test"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 7B2BBC691C779D710067B71D /* Project object */ = { - isa = PBXProject; - attributes = { - LastSwiftUpdateCheck = 0720; - LastUpgradeCheck = 0800; - ORGANIZATIONNAME = "Swift Algorithm Club"; - TargetAttributes = { - 7B2BBC7F1C779D720067B71D = { - CreatedOnToolsVersion = 7.2; - LastSwiftMigration = 0800; - }; - }; - }; - buildConfigurationList = 7B2BBC6C1C779D710067B71D /* Build configuration list for PBXProject "Tests" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - Base, - ); - mainGroup = 7B2BBC681C779D710067B71D; - productRefGroup = 7B2BBC721C779D710067B71D /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 7B2BBC7F1C779D720067B71D /* Tests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 7B2BBC7E1C779D720067B71D /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 7B2BBC7C1C779D720067B71D /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 7B80C3D01C77A263003CECC7 /* BinarySearch.swift in Sources */, - 7B80C3CE1C77A256003CECC7 /* BinarySearchTests.swift in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 7B2BBC871C779D720067B71D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = dwarf; - ENABLE_STRICT_OBJC_MSGSEND = YES; - ENABLE_TESTABILITY = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - 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; - MACOSX_DEPLOYMENT_TARGET = 10.11; - MTL_ENABLE_DEBUG_INFO = YES; - ONLY_ACTIVE_ARCH = YES; - SDKROOT = macosx; - SWIFT_OPTIMIZATION_LEVEL = "-Onone"; - }; - name = Debug; - }; - 7B2BBC881C779D720067B71D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGN_IDENTITY = "-"; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu99; - 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; - MACOSX_DEPLOYMENT_TARGET = 10.11; - MTL_ENABLE_DEBUG_INFO = NO; - SDKROOT = macosx; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - }; - name = Release; - }; - 7B2BBC8D1C779D720067B71D /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = swift.algorithm.club.Tests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - }; - name = Debug; - }; - 7B2BBC8E1C779D720067B71D /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - COMBINE_HIDPI_IMAGES = YES; - INFOPLIST_FILE = Info.plist; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/../Frameworks"; - PRODUCT_BUNDLE_IDENTIFIER = swift.algorithm.club.Tests; - PRODUCT_NAME = "$(TARGET_NAME)"; - SWIFT_VERSION = 3.0; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 7B2BBC6C1C779D710067B71D /* Build configuration list for PBXProject "Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7B2BBC871C779D720067B71D /* Debug */, - 7B2BBC881C779D720067B71D /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - 7B2BBC8C1C779D720067B71D /* Build configuration list for PBXNativeTarget "Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 7B2BBC8D1C779D720067B71D /* Debug */, - 7B2BBC8E1C779D720067B71D /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 7B2BBC691C779D710067B71D /* Project object */; -} From 6db07991b0c1dc6cbe1a08b6b31abc638964e55b Mon Sep 17 00:00:00 2001 From: Mikhail Vospennikov Date: 2022年8月11日 15:02:56 +0300 Subject: [PATCH 2/2] Remove automatic sign managment --- .../BinarySearch.xcodeproj/project.pbxproj | 20 +++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/Binary Search/BinarySearch.xcodeproj/project.pbxproj b/Binary Search/BinarySearch.xcodeproj/project.pbxproj index d3e772365..5f14f0031 100644 --- a/Binary Search/BinarySearch.xcodeproj/project.pbxproj +++ b/Binary Search/BinarySearch.xcodeproj/project.pbxproj @@ -345,11 +345,11 @@ isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_STYLE = Manual; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; - DEVELOPMENT_TEAM = 35J7AXFYQT; + DEVELOPMENT_TEAM = ""; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -364,6 +364,7 @@ MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.raywenderlich.BinarySearch; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_OPTIMIZATION_LEVEL = "-Onone"; @@ -375,11 +376,11 @@ isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_STYLE = Manual; COMBINE_HIDPI_IMAGES = YES; CURRENT_PROJECT_VERSION = 1; DEFINES_MODULE = YES; - DEVELOPMENT_TEAM = 35J7AXFYQT; + DEVELOPMENT_TEAM = ""; DYLIB_COMPATIBILITY_VERSION = 1; DYLIB_CURRENT_VERSION = 1; DYLIB_INSTALL_NAME_BASE = "@rpath"; @@ -394,6 +395,7 @@ MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.raywenderlich.BinarySearch; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SKIP_INSTALL = YES; SWIFT_EMIT_LOC_STRINGS = YES; SWIFT_VERSION = 5.0; @@ -404,13 +406,14 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = 35J7AXFYQT; + DEVELOPMENT_TEAM = ""; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.gmail.vospennikov.BinarySearchTests; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_EMIT_LOC_STRINGS = NO; SWIFT_VERSION = 5.0; }; @@ -420,13 +423,14 @@ isa = XCBuildConfiguration; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 1; - DEVELOPMENT_TEAM = 35J7AXFYQT; + DEVELOPMENT_TEAM = ""; GENERATE_INFOPLIST_FILE = YES; MARKETING_VERSION = 1.0; PRODUCT_BUNDLE_IDENTIFIER = com.gmail.vospennikov.BinarySearchTests; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_EMIT_LOC_STRINGS = NO; SWIFT_VERSION = 5.0; };

AltStyle によって変換されたページ (->オリジナル) /