I am trying to migrate a framework (MyFmwk) project to a swift package.
My framework project has a MyFmwk.h umbrella header which was generated by Xcode when I initially created my framework.
How can I access
present in the umbrella header in one of my swift target in the swift package?
Also how can I make my umbrellaheader (MyFmwk.h) visible to my swift target.
Thanks
My framework project has a MyFmwk.h umbrella header which was generated by Xcode when I initially created my framework.
How can I access
Code Block swift FOUNDATION_EXPORT double MyFmwkVersionNumber;
present in the umbrella header in one of my swift target in the swift package?
Also how can I make my umbrellaheader (MyFmwk.h) visible to my swift target.
Thanks