|
8 | 8 |
|
9 | 9 | /* Begin PBXBuildFile section */
|
10 | 10 | CEAC7C751E72B303000DACCC /* LucJSON.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CEAC7C6B1E72B303000DACCC /* LucJSON.framework */; };
|
11 |
| - CEAC7C7A1E72B303000DACCC /* LucJSONTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C791E72B303000DACCC /* LucJSONTests.swift */; }; |
12 | 11 | CEAC7C7C1E72B303000DACCC /* LucJSON.h in Headers */ = {isa = PBXBuildFile; fileRef = CEAC7C6E1E72B303000DACCC /* LucJSON.h */; settings = {ATTRIBUTES = (Public, ); }; };
|
13 | 12 | CEAC7C861E72B5AD000DACCC /* JSON.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C851E72B5AD000DACCC /* JSON.swift */; };
|
14 | 13 | CEAC7C8A1E72E755000DACCC /* JSONTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C891E72E755000DACCC /* JSONTests.swift */; };
|
15 | 14 | CEAC7C8C1E72EDD0000DACCC /* JSONSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C8B1E72EDD0000DACCC /* JSONSerialization.swift */; };
|
16 | 15 | CEAC7C901E72F4A5000DACCC /* JSONWriter.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C8F1E72F4A5000DACCC /* JSONWriter.swift */; };
|
17 | 16 | CEAC7C921E72F54D000DACCC /* JSONReader.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C911E72F54D000DACCC /* JSONReader.swift */; };
|
| 17 | + CEAC7C941E72F6E1000DACCC /* JSONSerializationTest.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEAC7C931E72F6E1000DACCC /* JSONSerializationTest.swift */; }; |
18 | 18 | /* End PBXBuildFile section */
|
19 | 19 |
|
20 | 20 | /* Begin PBXContainerItemProxy section */
|
|
32 | 32 | CEAC7C6E1E72B303000DACCC /* LucJSON.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LucJSON.h; sourceTree = "<group>"; };
|
33 | 33 | CEAC7C6F1E72B303000DACCC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
34 | 34 | CEAC7C741E72B303000DACCC /* LucJSONTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LucJSONTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
35 |
| - CEAC7C791E72B303000DACCC /* LucJSONTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LucJSONTests.swift; sourceTree = "<group>"; }; |
36 | 35 | CEAC7C7B1E72B303000DACCC /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
37 | 36 | CEAC7C851E72B5AD000DACCC /* JSON.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSON.swift; sourceTree = "<group>"; };
|
38 | 37 | CEAC7C891E72E755000DACCC /* JSONTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONTests.swift; sourceTree = "<group>"; };
|
39 | 38 | CEAC7C8B1E72EDD0000DACCC /* JSONSerialization.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONSerialization.swift; sourceTree = "<group>"; };
|
40 | 39 | CEAC7C8F1E72F4A5000DACCC /* JSONWriter.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONWriter.swift; sourceTree = "<group>"; };
|
41 | 40 | CEAC7C911E72F54D000DACCC /* JSONReader.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONReader.swift; sourceTree = "<group>"; };
|
| 41 | + CEAC7C931E72F6E1000DACCC /* JSONSerializationTest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONSerializationTest.swift; sourceTree = "<group>"; }; |
42 | 42 | /* End PBXFileReference section */
|
43 | 43 |
|
44 | 44 | /* Begin PBXFrameworksBuildPhase section */
|
|
94 | 94 | CEAC7C781E72B303000DACCC /* LucJSONTests */ = {
|
95 | 95 | isa = PBXGroup;
|
96 | 96 | children = (
|
97 |
| - CEAC7C791E72B303000DACCC /* LucJSONTests.swift */, |
98 | 97 | CEAC7C891E72E755000DACCC /* JSONTests.swift */,
|
| 98 | + CEAC7C931E72F6E1000DACCC /* JSONSerializationTest.swift */, |
99 | 99 | CEAC7C7B1E72B303000DACCC /* Info.plist */,
|
100 | 100 | );
|
101 | 101 | path = LucJSONTests;
|
|
225 | 225 | isa = PBXSourcesBuildPhase;
|
226 | 226 | buildActionMask = 2147483647;
|
227 | 227 | files = (
|
228 |
| - CEAC7C7A1E72B303000DACCC /* LucJSONTests.swift in Sources */, |
229 | 228 | CEAC7C8A1E72E755000DACCC /* JSONTests.swift in Sources */,
|
| 229 | + CEAC7C941E72F6E1000DACCC /* JSONSerializationTest.swift in Sources */, |
230 | 230 | );
|
231 | 231 | runOnlyForDeploymentPostprocessing = 0;
|
232 | 232 | };
|
|
0 commit comments