I have a multiplatform project in Xcode 13.3.1, but when I try to run a unit by clicking the diamond in the gutter, the linker fails. From the link line in the log, it looks as if it isn't even linking with my app at all.
I also noticed that I had to put in my own
@testable import NameOfMyApp
instead of Xcode generating that line like it does for single-platform projects, so that makes me wonder if this something extra i need to do since this project is multiplatform?
Everything compiles fine, but the linker seems to be forgeting to link with my app...