Upgrade Xcode project

This commit is contained in:
Davide De Rosa 2021-06-26 09:43:50 +02:00
parent ccfd92870c
commit 7f84d8338c
11 changed files with 13 additions and 11 deletions

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<Scheme <Scheme
LastUpgradeVersion = "1230" LastUpgradeVersion = "1250"
version = "1.3"> version = "1.3">
<BuildAction <BuildAction
parallelizeBuildables = "YES" parallelizeBuildables = "YES"

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<Scheme <Scheme
LastUpgradeVersion = "1230" LastUpgradeVersion = "1250"
version = "1.3"> version = "1.3">
<BuildAction <BuildAction
parallelizeBuildables = "YES" parallelizeBuildables = "YES"

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<Scheme <Scheme
LastUpgradeVersion = "1230" LastUpgradeVersion = "1250"
version = "1.3"> version = "1.3">
<BuildAction <BuildAction
parallelizeBuildables = "YES" parallelizeBuildables = "YES"

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<Scheme <Scheme
LastUpgradeVersion = "1230" LastUpgradeVersion = "1250"
version = "1.3"> version = "1.3">
<BuildAction <BuildAction
parallelizeBuildables = "YES" parallelizeBuildables = "YES"

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<Scheme <Scheme
LastUpgradeVersion = "1230" LastUpgradeVersion = "1250"
wasCreatedForAppExtension = "YES" wasCreatedForAppExtension = "YES"
version = "2.0"> version = "2.0">
<BuildAction <BuildAction
@ -74,6 +74,7 @@
savedToolIdentifier = "" savedToolIdentifier = ""
useCustomWorkingDirectory = "NO" useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES" debugDocumentVersioning = "YES"
askForAppToLaunch = "Yes"
launchAutomaticallySubstyle = "2"> launchAutomaticallySubstyle = "2">
<BuildableProductRunnable <BuildableProductRunnable
runnableDebuggingMode = "0"> runnableDebuggingMode = "0">

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<Scheme <Scheme
LastUpgradeVersion = "1230" LastUpgradeVersion = "1250"
wasCreatedForAppExtension = "YES" wasCreatedForAppExtension = "YES"
version = "2.0"> version = "2.0">
<BuildAction <BuildAction
@ -74,6 +74,7 @@
savedToolIdentifier = "" savedToolIdentifier = ""
useCustomWorkingDirectory = "NO" useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES" debugDocumentVersioning = "YES"
askForAppToLaunch = "Yes"
launchAutomaticallySubstyle = "2"> launchAutomaticallySubstyle = "2">
<BuildableProductRunnable <BuildableProductRunnable
runnableDebuggingMode = "0"> runnableDebuggingMode = "0">

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<Scheme <Scheme
LastUpgradeVersion = "1230" LastUpgradeVersion = "1250"
version = "1.3"> version = "1.3">
<BuildAction <BuildAction
parallelizeBuildables = "YES" parallelizeBuildables = "YES"

View File

@ -37,7 +37,7 @@
import Foundation import Foundation
/// Receives events from a `GenericSocket`. /// Receives events from a `GenericSocket`.
public protocol GenericSocketDelegate: class { public protocol GenericSocketDelegate: AnyObject {
/** /**
The socket timed out. The socket timed out.

View File

@ -37,7 +37,7 @@
import Foundation import Foundation
/// Represents an I/O interface able to read and write data. /// 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. Sets the handler for incoming packets. This only needs to be set once.

View File

@ -26,7 +26,7 @@
import Foundation import Foundation
/// Helps controlling a VPN without messing with underlying implementations. /// 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. /// `true` if the VPN is ready for use.
var isPrepared: Bool { get } var isPrepared: Bool { get }

View File

@ -42,7 +42,7 @@ import __TunnelKitOpenVPN
private let log = SwiftyBeaver.self private let log = SwiftyBeaver.self
/// Observes major events notified by a `OpenVPNSession`. /// Observes major events notified by a `OpenVPNSession`.
public protocol OpenVPNSessionDelegate: class { public protocol OpenVPNSessionDelegate: AnyObject {
/** /**
Called after starting a session. Called after starting a session.