2

Trying to run .Net Core app with Mono on Raspberry Pi Zero W (as you know, .Net Core JIT is not support the ARMv6 processor instructions) and I've got error all time:

Cannot open assembly '#assembly_name#': File does not contain a valid CIL image.

Looks like Mono isn't support .Net Core.
So, is there any way to run .Net Core apps on Raspberry Pi Zero (maybe without Mono with something else)?

MihailPw
  • 153
  • 1
  • 2
  • 9

1 Answers1

1

You can't run .Net core apps on a arm32v6 cpu at the moment. But if you rewrite your app in normal .net then you can use mono to run it on your pi zero

Peter
  • 111
  • 3