Skip to content

Commit

Permalink
Updates Package.swift
Browse files Browse the repository at this point in the history
  • Loading branch information
s4cha committed Dec 23, 2019
1 parent 11d2c2e commit 2e96309
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 6 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
// swift-tools-version:5.1
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "Router"
name: "Router",
platforms: [.iOS(.v8)],
products: [.library(name: "Router", targets: ["Router"])],
targets: [.target(name: "Router")]
)
10 changes: 5 additions & 5 deletions Router.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@

/* Begin PBXBuildFile section */
997ECB531E645B5700384E63 /* Router.h in Headers */ = {isa = PBXBuildFile; fileRef = 997ECB501E645B5700384E63 /* Router.h */; settings = {ATTRIBUTES = (Public, ); }; };
997ECB541E645B5700384E63 /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 997ECB511E645B5700384E63 /* Router.swift */; };
99F87A5823B1029700E16A4C /* Router.swift in Sources */ = {isa = PBXBuildFile; fileRef = 99F87A5723B1029700E16A4C /* Router.swift */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
997CC2551E64079100250EB1 /* Router.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Router.framework; sourceTree = BUILT_PRODUCTS_DIR; };
997ECB4F1E645B5700384E63 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = Info.plist; path = Sources/Info.plist; sourceTree = SOURCE_ROOT; };
997ECB501E645B5700384E63 /* Router.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = Router.h; path = Sources/Router.h; sourceTree = SOURCE_ROOT; };
997ECB511E645B5700384E63 /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Router.swift; path = Sources/Router.swift; sourceTree = SOURCE_ROOT; };
99F87A5723B1029700E16A4C /* Router.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = Router.swift; path = Sources/Router/Router.swift; sourceTree = SOURCE_ROOT; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand Down Expand Up @@ -50,7 +50,7 @@
children = (
997ECB4F1E645B5700384E63 /* Info.plist */,
997ECB501E645B5700384E63 /* Router.h */,
997ECB511E645B5700384E63 /* Router.swift */,
99F87A5723B1029700E16A4C /* Router.swift */,
);
path = Router;
sourceTree = "<group>";
Expand Down Expand Up @@ -98,7 +98,7 @@
TargetAttributes = {
997CC2541E64079100250EB1 = {
CreatedOnToolsVersion = 8.2.1;
LastSwiftMigration = 0820;
LastSwiftMigration = 1130;
ProvisioningStyle = Automatic;
};
};
Expand Down Expand Up @@ -136,7 +136,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
997ECB541E645B5700384E63 /* Router.swift in Sources */,
99F87A5823B1029700E16A4C /* Router.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
Expand Down
File renamed without changes.

0 comments on commit 2e96309

Please sign in to comment.