Dragging and dropping multi target import projects

Hi.
I have a project with a multi target and single target import projects. Im only able to drag and drop the single one as a reference in the iOS project.

Thanks,
John

Thanks, logged as bugs://85596

workaround: explicitly set the SDK property for the targets:

  <PropertyGroup Condition="'$(Target)' == 'Toffee.iOS'">
    <Mode>Toffee</Mode>
    <SubMode>iOS</SubMode>
    <SDK>iOS</SDK>
    <SupportMacCatalyst>False</SupportMacCatalyst>
  </PropertyGroup>

for some reason it thinks the sdk is macOS, and thus finds no match. investigating that part now.

Fixed for tomorrow.

bugs://85596 got closed with status fixed.