Skip to content

Commit 44f1cd1

Browse files
committed
Add Back CESE
1 parent ced01db commit 44f1cd1

File tree

2 files changed

+28
-10
lines changed

2 files changed

+28
-10
lines changed

CodeEdit.xcodeproj/project.pbxproj

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
archiveVersion = 1;
44
classes = {
55
};
6-
objectVersion = 60;
6+
objectVersion = 55;
77
objects = {
88

99
/* Begin PBXBuildFile section */
@@ -357,6 +357,7 @@
357357
66F370342BEE537B00D3B823 /* NonTextFileView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 66F370332BEE537B00D3B823 /* NonTextFileView.swift */; };
358358
6C049A372A49E2DB00D42923 /* DirectoryEventStream.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C049A362A49E2DB00D42923 /* DirectoryEventStream.swift */; };
359359
6C05A8AF284D0CA3007F4EAA /* WorkspaceDocument+Listeners.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C05A8AE284D0CA3007F4EAA /* WorkspaceDocument+Listeners.swift */; };
360+
6C05CF9E2CDE8699006AAECD /* CodeEditSourceEditor in Frameworks */ = {isa = PBXBuildFile; productRef = 6C05CF9D2CDE8699006AAECD /* CodeEditSourceEditor */; };
360361
6C0617D62BDB4432008C9C42 /* LogStream in Frameworks */ = {isa = PBXBuildFile; productRef = 6C0617D52BDB4432008C9C42 /* LogStream */; };
361362
6C08249C2C556F7400A0751E /* TerminalCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C08249B2C556F7400A0751E /* TerminalCache.swift */; };
362363
6C08249E2C55768400A0751E /* UtilityAreaTerminal.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6C08249D2C55768400A0751E /* UtilityAreaTerminal.swift */; };
@@ -1318,6 +1319,7 @@
13181319
6C6BD6F429CD142C00235D17 /* CollectionConcurrencyKit in Frameworks */,
13191320
6C85BB442C210EFD00EB5DEF /* SwiftUIIntrospect in Frameworks */,
13201321
6CB446402B6DFF3A00539ED0 /* CodeEditSourceEditor in Frameworks */,
1322+
6C05CF9E2CDE8699006AAECD /* CodeEditSourceEditor in Frameworks */,
13211323
2816F594280CF50500DD548B /* CodeEditSymbols in Frameworks */,
13221324
30CB64942C16CA9100CC8A9E /* LanguageClient in Frameworks */,
13231325
6C6BD6F829CD14D100235D17 /* CodeEditKit in Frameworks */,
@@ -3715,6 +3717,7 @@
37153717
6CD3CA542C8B508200D83DCD /* CodeEditSourceEditor */,
37163718
6CB94D022CA1205100E8651C /* AsyncAlgorithms */,
37173719
6CC00A8A2CBEF150004E8134 /* CodeEditSourceEditor */,
3720+
6C05CF9D2CDE8699006AAECD /* CodeEditSourceEditor */,
37183721
);
37193722
productName = CodeEdit;
37203723
productReference = B658FB2C27DA9E0F00EA4DBD /* CodeEdit.app */;
@@ -3812,7 +3815,7 @@
38123815
303E88462C276FD600EEA8D9 /* XCRemoteSwiftPackageReference "LanguageServerProtocol" */,
38133816
6C4E37FA2C73E00700AEE7B5 /* XCRemoteSwiftPackageReference "SwiftTerm" */,
38143817
6CB94D012CA1205100E8651C /* XCRemoteSwiftPackageReference "swift-async-algorithms" */,
3815-
6CC00A892CBEF150004E8134 /* XCLocalSwiftPackageReference "../CodeEditSourceEditor" */,
3818+
6C05CF9C2CDE8699006AAECD /* XCRemoteSwiftPackageReference "CodeEditSourceEditor" */,
38163819
);
38173820
productRefGroup = B658FB2D27DA9E0F00EA4DBD /* Products */;
38183821
projectDirPath = "";
@@ -5582,13 +5585,6 @@
55825585
};
55835586
/* End XCConfigurationList section */
55845587

5585-
/* Begin XCLocalSwiftPackageReference section */
5586-
6CC00A892CBEF150004E8134 /* XCLocalSwiftPackageReference "../CodeEditSourceEditor" */ = {
5587-
isa = XCLocalSwiftPackageReference;
5588-
relativePath = ../CodeEditSourceEditor;
5589-
};
5590-
/* End XCLocalSwiftPackageReference section */
5591-
55925588
/* Begin XCRemoteSwiftPackageReference section */
55935589
2816F592280CF50500DD548B /* XCRemoteSwiftPackageReference "CodeEditSymbols" */ = {
55945590
isa = XCRemoteSwiftPackageReference;
@@ -5654,6 +5650,14 @@
56545650
version = 2.3.0;
56555651
};
56565652
};
5653+
6C05CF9C2CDE8699006AAECD /* XCRemoteSwiftPackageReference "CodeEditSourceEditor" */ = {
5654+
isa = XCRemoteSwiftPackageReference;
5655+
repositoryURL = "https://github.com/CodeEditApp/CodeEditSourceEditor";
5656+
requirement = {
5657+
kind = upToNextMajorVersion;
5658+
minimumVersion = 0.8.1;
5659+
};
5660+
};
56575661
6C0617D42BDB4432008C9C42 /* XCRemoteSwiftPackageReference "LogStream" */ = {
56585662
isa = XCRemoteSwiftPackageReference;
56595663
repositoryURL = "https://github.com/Wouter01/LogStream";
@@ -5746,6 +5750,11 @@
57465750
package = 58F2EB1C292FB954004A9BDE /* XCRemoteSwiftPackageReference "Sparkle" */;
57475751
productName = Sparkle;
57485752
};
5753+
6C05CF9D2CDE8699006AAECD /* CodeEditSourceEditor */ = {
5754+
isa = XCSwiftPackageProductDependency;
5755+
package = 6C05CF9C2CDE8699006AAECD /* XCRemoteSwiftPackageReference "CodeEditSourceEditor" */;
5756+
productName = CodeEditSourceEditor;
5757+
};
57495758
6C0617D52BDB4432008C9C42 /* LogStream */ = {
57505759
isa = XCSwiftPackageProductDependency;
57515760
package = 6C0617D42BDB4432008C9C42 /* XCRemoteSwiftPackageReference "LogStream" */;

CodeEdit.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved

Lines changed: 10 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)