Skip to content

Commit 023ffbd

Browse files
committed
fix: move folder.
1 parent a6081c2 commit 023ffbd

File tree

9 files changed

+26
-16
lines changed

9 files changed

+26
-16
lines changed

.gitignore

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22
#
33
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
44

5+
6+
.DS_Store
7+
/.build
8+
/Packages
9+
xcuserdata/
10+
DerivedData/
11+
.swiftpm/configuration/registries.json
12+
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
13+
.netrc
14+
15+
16+
517
## User settings
618
xcuserdata/
719

File renamed without changes.

SearchField.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict/>
5+
</plist>

SearchField/.gitignore

Lines changed: 0 additions & 8 deletions
This file was deleted.

SearchFieldExample/SearchFieldExample.xcodeproj/project.pbxproj

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
7D440D0C2AD4DA510043D2FC /* ContentView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D440D0B2AD4DA510043D2FC /* ContentView.swift */; };
1212
7D440D0E2AD4DA540043D2FC /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 7D440D0D2AD4DA540043D2FC /* Assets.xcassets */; };
1313
7D440D122AD4DA540043D2FC /* Preview Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 7D440D112AD4DA540043D2FC /* Preview Assets.xcassets */; };
14-
7D440D1A2AD4DC160043D2FC /* SearchField in Frameworks */ = {isa = PBXBuildFile; productRef = 7D440D192AD4DC160043D2FC /* SearchField */; };
14+
7D85CC692AD50ACC007CD89D /* SearchField in Frameworks */ = {isa = PBXBuildFile; productRef = 7D85CC682AD50ACC007CD89D /* SearchField */; };
1515
/* End PBXBuildFile section */
1616

1717
/* Begin PBXFileReference section */
@@ -21,14 +21,15 @@
2121
7D440D0D2AD4DA540043D2FC /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
2222
7D440D0F2AD4DA540043D2FC /* SearchFieldExample.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = SearchFieldExample.entitlements; sourceTree = "<group>"; };
2323
7D440D112AD4DA540043D2FC /* Preview Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = "Preview Assets.xcassets"; sourceTree = "<group>"; };
24+
7D440D1C2AD504EE0043D2FC /* swiftui-searchfield */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = "swiftui-searchfield"; path = ..; sourceTree = "<group>"; };
2425
/* End PBXFileReference section */
2526

2627
/* Begin PBXFrameworksBuildPhase section */
2728
7D440D032AD4DA510043D2FC /* Frameworks */ = {
2829
isa = PBXFrameworksBuildPhase;
2930
buildActionMask = 2147483647;
3031
files = (
31-
7D440D1A2AD4DC160043D2FC /* SearchField in Frameworks */,
32+
7D85CC692AD50ACC007CD89D /* SearchField in Frameworks */,
3233
);
3334
runOnlyForDeploymentPostprocessing = 0;
3435
};
@@ -75,6 +76,7 @@
7576
7D440D182AD4DC160043D2FC /* Frameworks */ = {
7677
isa = PBXGroup;
7778
children = (
79+
7D440D1C2AD504EE0043D2FC /* swiftui-searchfield */,
7880
);
7981
name = Frameworks;
8082
sourceTree = "<group>";
@@ -96,7 +98,7 @@
9698
);
9799
name = SearchFieldExample;
98100
packageProductDependencies = (
99-
7D440D192AD4DC160043D2FC /* SearchField */,
101+
7D85CC682AD50ACC007CD89D /* SearchField */,
100102
);
101103
productName = SearchFieldExample;
102104
productReference = 7D440D062AD4DA510043D2FC /* SearchFieldExample.app */;
@@ -126,6 +128,8 @@
126128
Base,
127129
);
128130
mainGroup = 7D440CFD2AD4DA510043D2FC;
131+
packageReferences = (
132+
);
129133
productRefGroup = 7D440D072AD4DA510043D2FC /* Products */;
130134
projectDirPath = "";
131135
projectRoot = "";
@@ -374,7 +378,7 @@
374378
/* End XCConfigurationList section */
375379

376380
/* Begin XCSwiftPackageProductDependency section */
377-
7D440D192AD4DC160043D2FC /* SearchField */ = {
381+
7D85CC682AD50ACC007CD89D /* SearchField */ = {
378382
isa = XCSwiftPackageProductDependency;
379383
productName = SearchField;
380384
};

SearchFieldExample/SearchFieldExample.xcodeproj/xcuserdata/wangchujiang.xcuserdatad/xcschemes/xcschememanagement.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<key>SearchFieldExample.xcscheme_^#shared#^_</key>
88
<dict>
99
<key>orderHint</key>
10-
<integer>1</integer>
10+
<integer>0</integer>
1111
</dict>
1212
</dict>
1313
</dict>
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)