So I am getting an exception thrown that my Test project cannot open the SQLite assembly. However here is the output when I compile:
------ Build started: Project: Budget, Configuration: Debug x86 ------
Budget -> C:\Users\Scott\Desktop\Development\Budget\Budget\Budget\bin\Debug\Budget.exe
------ Build started: Project: Test, Configuration: Debug Any CPU ------
c:\Windows\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1360,9): warning MSB3245: Could not resolve this reference. Could not locate the assembly "System.Data.SQLite". Check to make sure the assembly exists on disk. If this reference is required by your code, you may get compilation errors.
Test -> C:\Users\Scott\Desktop\Development\Budget\Budget\Test\bin\Debug\Test.dll
========== Build: 2 succeeded or up-to-date, 0 failed, 0 skipped ==========
As you can see the code project builds fine (seems to be because its set to x86). I have set BOTH projects to x86 though, and saved both and rebuilt, and it still doesn't say that Test is building for x86, therefore we see the assembly warning for test and not the other. How can I get both to build for x86?
-Scott