Upgrade Xcode project
This commit is contained in:
parent
ccfd92870c
commit
7f84d8338c
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1230"
|
||||
LastUpgradeVersion = "1250"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1230"
|
||||
LastUpgradeVersion = "1250"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1230"
|
||||
LastUpgradeVersion = "1250"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1230"
|
||||
LastUpgradeVersion = "1250"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1230"
|
||||
LastUpgradeVersion = "1250"
|
||||
wasCreatedForAppExtension = "YES"
|
||||
version = "2.0">
|
||||
<BuildAction
|
||||
|
@ -74,6 +74,7 @@
|
|||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
askForAppToLaunch = "Yes"
|
||||
launchAutomaticallySubstyle = "2">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1230"
|
||||
LastUpgradeVersion = "1250"
|
||||
wasCreatedForAppExtension = "YES"
|
||||
version = "2.0">
|
||||
<BuildAction
|
||||
|
@ -74,6 +74,7 @@
|
|||
savedToolIdentifier = ""
|
||||
useCustomWorkingDirectory = "NO"
|
||||
debugDocumentVersioning = "YES"
|
||||
askForAppToLaunch = "Yes"
|
||||
launchAutomaticallySubstyle = "2">
|
||||
<BuildableProductRunnable
|
||||
runnableDebuggingMode = "0">
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1230"
|
||||
LastUpgradeVersion = "1250"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
import Foundation
|
||||
|
||||
/// Receives events from a `GenericSocket`.
|
||||
public protocol GenericSocketDelegate: class {
|
||||
public protocol GenericSocketDelegate: AnyObject {
|
||||
|
||||
/**
|
||||
The socket timed out.
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
import Foundation
|
||||
|
||||
/// Represents an I/O interface able to read and write data.
|
||||
public protocol IOInterface: class {
|
||||
public protocol IOInterface: AnyObject {
|
||||
|
||||
/**
|
||||
Sets the handler for incoming packets. This only needs to be set once.
|
||||
|
|
|
@ -26,7 +26,7 @@
|
|||
import Foundation
|
||||
|
||||
/// Helps controlling a VPN without messing with underlying implementations.
|
||||
public protocol VPNProvider: class {
|
||||
public protocol VPNProvider: AnyObject {
|
||||
|
||||
/// `true` if the VPN is ready for use.
|
||||
var isPrepared: Bool { get }
|
||||
|
|
|
@ -42,7 +42,7 @@ import __TunnelKitOpenVPN
|
|||
private let log = SwiftyBeaver.self
|
||||
|
||||
/// Observes major events notified by a `OpenVPNSession`.
|
||||
public protocol OpenVPNSessionDelegate: class {
|
||||
public protocol OpenVPNSessionDelegate: AnyObject {
|
||||
|
||||
/**
|
||||
Called after starting a session.
|
||||
|
|
Loading…
Reference in New Issue