File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
LocalDebugging/MyCloudFunction Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import PackageDescription
55let package = Package (
66 name: " swift-tencent-scf-runtime-samples " ,
77 platforms: [
8- . macOS( . v10_13 ) ,
8+ . macOS( . v10_15 ) ,
99 ] ,
1010 products: [
1111 // Introductory example.
@@ -22,7 +22,7 @@ let package = Package(
2222 dependencies: [
2323 // This is the dependency on the swift-tencent-scf-runtime library.
2424 // In real-world projects, this would say:
25- // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git ", from: "0.1 .0")
25+ // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime", from: "0.2 .0")
2626 . package ( name: " swift-tencent-scf-runtime " , path: " ../.. " ) ,
2727 ] ,
2828 targets: [
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ import PackageDescription
55let package = Package (
66 name: " MyCloudFunction " ,
77 platforms: [
8- . macOS( . v10_13 ) ,
8+ . macOS( . v10_15 ) ,
99 ] ,
1010 products: [
1111 . executable( name: " MyCloudFunction " , targets: [ " MyCloudFunction " ] ) ,
1212 ] ,
1313 dependencies: [
1414 // This is the dependency on the swift-tencent-scf-runtime library.
1515 // In real-world projects this would say:
16- // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime.git ", from: "0.1 .0")
16+ // .package(url: "https://github.com/stevapple/swift-tencent-scf-runtime", from: "0.2 .0")
1717 . package ( name: " swift-tencent-scf-runtime " , path: " ../../.. " ) ,
1818 . package ( name: " Shared " , path: " ../Shared " ) ,
1919 ] ,
Original file line number Diff line number Diff line change @@ -33,13 +33,13 @@ import PackageDescription
3333let package = Package (
3434 name : " my-cloud-function" ,
3535 platforms : [
36- .macOS (.v10_13 ),
36+ .macOS (.v10_15 ),
3737 ],
3838 products : [
3939 .executable (name : " MyCloudFunction" , targets : [" MyCloudFunction" ]),
4040 ],
4141 dependencies : [
42- .package (url : " https://github.com/stevapple/swift-tencent-scf-runtime.git " , from : " 0.1 .0" ),
42+ .package (url : " https://github.com/stevapple/swift-tencent-scf-runtime" , from : " 0.2 .0" ),
4343 ],
4444 targets : [
4545 .target (name : " MyCloudFunction" , dependencies : [
You can’t perform that action at this time.
0 commit comments