I had a Visual Studio solution that was using System.Data.SQLite version 1.0.97. When I used NuGet to update to the latest version (1.0.108), I started getting this warning:
There was a mismatch between the processor architecture of the project being built "MSIL" and the processor architecture of the reference "System.Data.SQLite, Version=1.0.108.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=x86", "x86". This mismatch may cause runtime failures. Please consider changing the targeted processor architecture of your project through the Configuration Manager so as to align the processor architectures between your project and references, or take a dependency on references with a processor architecture that matches the targeted processor architecture of your project.
My solution uses "Any CPU" and I don't want to change it to "x86" just to fix this one problem. Is there anything I can do to fix this?