Home > Software design >  Debug Windows Form targeted for ARM64 on x64 Windows Computer
Debug Windows Form targeted for ARM64 on x64 Windows Computer

Time:06-03

I have created a Windows Forms application for my Raspberry Pi. Since the Raspberry has a ARM64 processor I have changed the target platform in Visual Studio 2022 to ARM64. Now I obviously can't debug or release the application on the x64 device.

Is there a way to debug it?

CodePudding user response:

I just changed the target to x86 and it worked!

  • Related