diff --git a/ch01/chapter01.xcodeproj/project.pbxproj b/ch01/chapter01.xcodeproj/project.pbxproj index b1fbd4e..c403e71 100644 --- a/ch01/chapter01.xcodeproj/project.pbxproj +++ b/ch01/chapter01.xcodeproj/project.pbxproj @@ -10,6 +10,7 @@ 29400C7D1C3AEE1300345568 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29400C7C1C3AEE1300345568 /* AppDelegate.swift */; }; 29400C7F1C3AEE1300345568 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 29400C7E1C3AEE1300345568 /* ViewController.swift */; }; 29400C841C3AEE1300345568 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 29400C821C3AEE1300345568 /* Main.storyboard */; }; + 2B090FF8241CE1D7000E7F0C /* MetalKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B090FF7241CE1D7000E7F0C /* MetalKit.framework */; }; /* End PBXBuildFile section */ /* Begin PBXFileReference section */ @@ -18,6 +19,7 @@ 29400C7E1C3AEE1300345568 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 29400C831C3AEE1300345568 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 29400C851C3AEE1300345568 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 2B090FF7241CE1D7000E7F0C /* MetalKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MetalKit.framework; path = System/Library/Frameworks/MetalKit.framework; sourceTree = SDKROOT; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -25,6 +27,7 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + 2B090FF8241CE1D7000E7F0C /* MetalKit.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -36,6 +39,7 @@ children = ( 29400C7B1C3AEE1300345568 /* chapter01 */, 29400C7A1C3AEE1300345568 /* Products */, + 2B090FF6241CE1D7000E7F0C /* Frameworks */, ); sourceTree = ""; }; @@ -66,6 +70,14 @@ name = "Supporting files"; sourceTree = ""; }; + 2B090FF6241CE1D7000E7F0C /* Frameworks */ = { + isa = PBXGroup; + children = ( + 2B090FF7241CE1D7000E7F0C /* MetalKit.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXNativeTarget section */ @@ -98,7 +110,9 @@ TargetAttributes = { 29400C781C3AEE1300345568 = { CreatedOnToolsVersion = 7.2; + DevelopmentTeam = HM63W6A69M; LastSwiftMigration = 0900; + ProvisioningStyle = Automatic; }; }; }; @@ -107,6 +121,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -254,11 +269,15 @@ 29400C891C3AEE1300345568 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = HM63W6A69M; INFOPLIST_FILE = chapter01/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = org.mhorga.chapter01; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_SWIFT3_OBJC_INFERENCE = Default; SWIFT_VERSION = 4.0; }; @@ -267,11 +286,15 @@ 29400C8A1C3AEE1300345568 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = HM63W6A69M; INFOPLIST_FILE = chapter01/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = org.mhorga.chapter01; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_SWIFT3_OBJC_INFERENCE = Default; SWIFT_VERSION = 4.0; diff --git a/ch01/chapter01.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ch01/chapter01.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ch01/chapter01.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ch01/chapter01.xcodeproj/project.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate b/ch01/chapter01.xcodeproj/project.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..c525f7e Binary files /dev/null and b/ch01/chapter01.xcodeproj/project.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/ch01/chapter01.xcodeproj/xcuserdata/hendysaleh.xcuserdatad/xcschemes/xcschememanagement.plist b/ch01/chapter01.xcodeproj/xcuserdata/hendysaleh.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..773770b --- /dev/null +++ b/ch01/chapter01.xcodeproj/xcuserdata/hendysaleh.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + chapter01.xcscheme_^#shared#^_ + + orderHint + 0 + + + + diff --git a/ch02/chapter02.xcodeproj/project.pbxproj b/ch02/chapter02.xcodeproj/project.pbxproj index 10e92f9..a8dde41 100644 --- a/ch02/chapter02.xcodeproj/project.pbxproj +++ b/ch02/chapter02.xcodeproj/project.pbxproj @@ -98,7 +98,9 @@ TargetAttributes = { 29E74ACC1C4159D60023A39A = { CreatedOnToolsVersion = 7.2; + DevelopmentTeam = HM63W6A69M; LastSwiftMigration = 0900; + ProvisioningStyle = Automatic; }; }; }; @@ -107,6 +109,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -254,11 +257,15 @@ 29E74ADD1C4159D60023A39A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = HM63W6A69M; INFOPLIST_FILE = chapter02/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = org.mhorga.chapter02; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_SWIFT3_OBJC_INFERENCE = Default; SWIFT_VERSION = 4.0; }; @@ -267,11 +274,15 @@ 29E74ADE1C4159D60023A39A /* Release */ = { isa = XCBuildConfiguration; buildSettings = { + CODE_SIGN_IDENTITY = "Apple Development"; + CODE_SIGN_STYLE = Automatic; COMBINE_HIDPI_IMAGES = YES; + DEVELOPMENT_TEAM = HM63W6A69M; INFOPLIST_FILE = chapter02/Info.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = org.mhorga.chapter02; PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE_SPECIFIER = ""; SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; SWIFT_SWIFT3_OBJC_INFERENCE = Default; SWIFT_VERSION = 4.0; diff --git a/ch02/chapter02.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ch02/chapter02.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ch02/chapter02.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ch02/chapter02.xcodeproj/project.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate b/ch02/chapter02.xcodeproj/project.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..555245d Binary files /dev/null and b/ch02/chapter02.xcodeproj/project.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/ch02/chapter02.xcodeproj/xcuserdata/hendysaleh.xcuserdatad/xcschemes/xcschememanagement.plist b/ch02/chapter02.xcodeproj/xcuserdata/hendysaleh.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 0000000..61180de --- /dev/null +++ b/ch02/chapter02.xcodeproj/xcuserdata/hendysaleh.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SchemeUserState + + chapter02.xcscheme_^#shared#^_ + + orderHint + 0 + + + + diff --git a/ch18/chapter18.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ch18/chapter18.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ch18/chapter18.playground/playground.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ch18/chapter18.playground/playground.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate b/ch18/chapter18.playground/playground.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 0000000..4d1bd6d Binary files /dev/null and b/ch18/chapter18.playground/playground.xcworkspace/xcuserdata/hendysaleh.xcuserdatad/UserInterfaceState.xcuserstate differ