I am working on a .NET ASP.NET Core app. This app uses some db which require a 32 bit driver (at least for now).
According to the documentation, using the Prefer 32-Bit flag should generate an Any-CPU program that will work in 32-bits both in windows 32 and in windows 64.
However in ASP.NET .NET Core that setting does not seem to work.
I workaround is to set my project as x86 but I would like to know if this is a know issue or if I am doing something wrong.