You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to modify a pbxproj in memory to later add it to an in-memory archive.
This is needed because we are making a server-side Swift application.
Since it is a server-side application, it would be great to get the modified pbxproj without any extra disk I/O operations.
The current APIs cannot achieve this without first writing the pbxproj to disk.
What 🌱
The project generates a String representation of the pbxproj internally before saving to disk.
Below is the relevant code block inside PBXProj.swift.
The text was updated successfully, but these errors were encountered:
Ibrahimhass
changed the title
Add an option to get the String representation of PBXProj.
Add an option to get the String representation of PBXProj
Jul 31, 2023
Context 🕵️♀️
What 🌱
Proposal 🎉
With the following simple refactor, this can be achieved with ease.
The text was updated successfully, but these errors were encountered: