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"?>
<Scheme
LastUpgradeVersion = "1230"
LastUpgradeVersion = "1250"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"

View File

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

View File

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

View File

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

View File

@ -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">

View File

@ -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">

View File

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

View File

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

View File

@ -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.

View File

@ -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 }

View File

@ -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.