Skip to content

Commit 2fde668

Browse files
KM-13356 Modernize swiftgen configuration and templates
1 parent 9be91ea commit 2fde668

21 files changed

Lines changed: 1050 additions & 1110 deletions

File tree

PIA VPN.xcodeproj/project.pbxproj

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -438,7 +438,6 @@
438438
membershipExceptions = (
439439
custom.servers,
440440
staging.endpoint,
441-
SwiftGen/xcassets/swift4.stencil,
442441
);
443442
target = 291C637B183EBC210039EC03 /* PIA VPN */;
444443
};
@@ -452,13 +451,6 @@
452451
);
453452
target = E5C507762B0E144D00200A6A /* PIA VPN-tvOS */;
454453
};
455-
3F0EFB932EDF29950013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */ = {
456-
isa = PBXFileSystemSynchronizedBuildFileExceptionSet;
457-
membershipExceptions = (
458-
SwiftGen/xcassets/swift4.stencil,
459-
);
460-
target = 0EE2200B1F4EF307002805AE /* PIA VPN dev */;
461-
};
462454
/* End PBXFileSystemSynchronizedBuildFileExceptionSet section */
463455

464456
/* Begin PBXFileSystemSynchronizedRootGroup section */
@@ -475,7 +467,7 @@
475467
3F0EF9682EDF27910013E4FB /* PIA-VPN_E2E_Tests */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = "PIA-VPN_E2E_Tests"; sourceTree = "<group>"; };
476468
3F0EF9D42EDF28710013E4FB /* PIAWidget */ = {isa = PBXFileSystemSynchronizedRootGroup; exceptions = (3F0EF9EE2EDF28710013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, 3F0EF9EF2EDF28710013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, 3F0EF9F02EDF28710013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, ); explicitFileTypes = {}; explicitFolders = (); path = PIAWidget; sourceTree = "<group>"; };
477469
3F0EF9F22EDF28B40013E4FB /* PIA VPNTests snapshot */ = {isa = PBXFileSystemSynchronizedRootGroup; exceptions = (3F0EF9F82EDF28C30013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, ); explicitFileTypes = {}; explicitFolders = (); path = "PIA VPNTests snapshot"; sourceTree = "<group>"; };
478-
3F0EFB2D2EDF29880013E4FB /* Resources */ = {isa = PBXFileSystemSynchronizedRootGroup; exceptions = (3F0EFB8C2EDF29880013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, 3F0EFB932EDF29950013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, 3F0EFB8D2EDF29880013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, ); explicitFileTypes = {}; explicitFolders = (); path = Resources; sourceTree = "<group>"; };
470+
3F0EFB2D2EDF29880013E4FB /* Resources */ = {isa = PBXFileSystemSynchronizedRootGroup; exceptions = (3F0EFB8C2EDF29880013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, 3F0EFB8D2EDF29880013E4FB /* PBXFileSystemSynchronizedBuildFileExceptionSet */, ); explicitFileTypes = {}; explicitFolders = (); path = Resources; sourceTree = "<group>"; };
479471
3F0EFB942EDF29F20013E4FB /* TestPlans */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = TestPlans; sourceTree = "<group>"; };
480472
3F0EFB992EDF2A270013E4FB /* PIA Common */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = "PIA Common"; sourceTree = "<group>"; };
481473
3F0EFBA02EDF2AAA0013E4FB /* Entitlements */ = {isa = PBXFileSystemSynchronizedRootGroup; explicitFileTypes = {}; explicitFolders = (); path = Entitlements; sourceTree = "<group>"; };

PIA VPN/Resources/Images/Images.xcassets/Cards/Contents.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"info" : {
33
"author" : "xcode",
44
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
69
}

PIA VPN/Resources/Images/Images.xcassets/Cards/WireGuard/Contents.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"info" : {
33
"author" : "xcode",
44
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
69
}

PIA VPN/Resources/Images/Images.xcassets/PIAX/Contents.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"info" : {
33
"author" : "xcode",
44
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
69
}
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"info" : {
3-
"version" : 1,
4-
"author" : "xcode"
3+
"author" : "xcode",
4+
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
6-
}
9+
}
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"info" : {
3-
"version" : 1,
4-
"author" : "xcode"
3+
"author" : "xcode",
4+
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
6-
}
9+
}
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"info" : {
3-
"version" : 1,
4-
"author" : "xcode"
3+
"author" : "xcode",
4+
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
6-
}
9+
}

PIA VPN/Resources/Images/Images.xcassets/PIAX/NMT/Contents.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"info" : {
33
"author" : "xcode",
44
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
69
}
Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"info" : {
3-
"version" : 1,
4-
"author" : "xcode"
3+
"author" : "xcode",
4+
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
6-
}
9+
}

PIA VPN/Resources/Images/Images.xcassets/PIAX/Settings/Contents.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22
"info" : {
33
"author" : "xcode",
44
"version" : 1
5+
},
6+
"properties" : {
7+
"provides-namespace" : true
58
}
69
}

0 commit comments

Comments
 (0)