Browse Source

Merge branch 'master' into multiple-improvements-and-fixes

Ashley Mills 7 years ago
parent
commit
99483c5386

+ 23 - 0
Package.swift

@@ -0,0 +1,23 @@
+// swift-tools-version:4.0
+// The swift-tools-version declares the minimum version of Swift required to build this package.
+
+import PackageDescription
+
+let package = Package(
+    name: "Reachability",
+    products: [
+        .library(
+            name: "Reachability",
+            targets: ["Reachability"]),
+    ],
+    targets: [
+        .target(
+            name: "Reachability",
+            dependencies: [],
+            path: "Reachability"),
+        .testTarget(
+            name: "ReachabilityTests",
+            dependencies: ["Reachability"],
+            path: "ReachabilityTests"),
+    ]
+)

+ 8 - 0
Reachability.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist

@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>IDEDidComputeMac32BitWarning</key>
+	<true/>
+</dict>
+</plist>