File tree Expand file tree Collapse file tree 4 files changed +17
-4
lines changed
FoundationNetworking/Resources Expand file tree Collapse file tree 4 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 55 <key >CFBundleDevelopmentRegion </key >
66 <string >en </string >
77 <key >CFBundleExecutable </key >
8- <string >SwiftFoundation </string >
8+ <string >SwiftFoundationNetworking </string >
99 <key >CFBundleIdentifier </key >
1010 <string >$(PRODUCT_BUNDLE_IDENTIFIER) </string >
1111 <key >CFBundleInfoDictionaryVersion </key >
Original file line number Diff line number Diff line change 55 <key >CFBundleDevelopmentRegion </key >
66 <string >en </string >
77 <key >CFBundleExecutable </key >
8- <string >SwiftFoundation </string >
8+ <string >SwiftFoundationXML </string >
99 <key >CFBundleIdentifier </key >
1010 <string >$(PRODUCT_BUNDLE_IDENTIFIER) </string >
1111 <key >CFBundleInfoDictionaryVersion </key >
Original file line number Diff line number Diff line change 1111//This is a very rudimentary FTP server written plainly for testing URLSession FTP Implementation.
1212import Dispatch
1313
14+ #if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
15+ #if canImport(SwiftFoundation) && !DEPLOYMENT_RUNTIME_OBJC
16+ @testable import SwiftFoundation
17+ #else
18+ @testable import Foundation
19+ #endif
20+ #endif
21+
1422#if canImport(Glibc)
1523 import Glibc
1624#elseif canImport(Darwin)
Original file line number Diff line number Diff line change 77// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
88//
99
10- import Foundation
11- import XCTest
10+ #if NS_FOUNDATION_ALLOWS_TESTABLE_IMPORT
11+ #if canImport(SwiftFoundation) && !DEPLOYMENT_RUNTIME_OBJC
12+ @testable import SwiftFoundation
13+ #else
14+ @testable import Foundation
15+ #endif
16+ #endif
1217
1318class TestDecimal : XCTestCase {
1419
You can’t perform that action at this time.
0 commit comments