I am new to the Swift Package Manager so bear with me. I have searched around and haven't found an answer to my current problem. I am creating a custom framework. When I create a CocoaTouch Framework and then build it, I am able to find the ProjectName.framework in my "Products" folder in the project directory. However, when I use SPM to add a dependency (Alamofire for example) and generate a new project file with the
swift package generate-xcodeproj
terminal command, the Alamofire.framework shows up in "Products" but the ProjectName.framework is no longer available. Instead there is a ProjectName executable file. I am no longer able to find the framework or even include the whole project in another as a dependency.
In the image above, I expect to see KonvurjKit.framework in "Products" but I no longer see it. Any help would be greatly appreciated.
