Note that there are some explanatory texts on larger screens.

plurals
  1. POMigrating windows 8 store app to 8.1 sqlite issue
    text
    copied!<p>Currently, I am trying to retarget my windows store app to windows 8.1 preview. The problem is, that I used sqlite-net package in one of my project. I followed steps described here: <a href="http://www.lyalin.com/2013/07/09/sqlite-for-windows-runtime-for-windows-8-1-apps/" rel="nofollow">http://www.lyalin.com/2013/07/09/sqlite-for-windows-runtime-for-windows-8-1-apps/</a> and downloaded pre-release version of sqlite visual studio extension from this link: <a href="http://www.lyalin.com/2013/07/09/sqlite-for-windows-runtime-for-windows-8-1-apps/" rel="nofollow">http://www.lyalin.com/2013/07/09/sqlite-for-windows-runtime-for-windows-8-1-apps/</a>. I have added a reference to a newly installed sqlite for windows runtime in my project, but I got an error while building:</p> <pre><code>Error 2 Windows Runtime type 'Windows.Foundation.Point' was found in multiple referenced winmd files. Please remove either 'C:\Program Files (x86)\Microsoft SDKs\Windows\v8.1\ExtensionSDKs\Microsoft.VCLibs\12.0\References\CommonConfiguration\neutral\platform.winmd' or 'C:\Program Files (x86)\WindowsKits\8.1\References\CommonConfiguration\Neutral\Windows.winmd' from the list of referenced files. C:\Users\Jarosław\Desktop\BCM\Win8Client\MetriceModel\WINMDEXP MetriceModel (Windows 8.1) </code></pre> <p>Somewhere, on one of the forums somebody hinted, that if you remove reference to microsoft visual c++ runtime package from the project, it will solve the problem. After I did that whole solution compiled fine, but I got a following exception at runtime:</p> <pre><code> Unable to load DLL 'sqlite3': The specified module could not be found. (Exception from HRESULT: 0x8007007E) </code></pre> <p>Exception is thrown at a line:</p> <pre><code>#if NETFX_CORE SQLite3.SetDirectory(/*temp directory type*/2, Windows.Storage.ApplicationData.Current.TemporaryFolder.Path); #endif </code></pre> <p>of SQLite.cs file (file is from mentioned earlier sqlite-net package).</p> <p>Project's folder bin/Debug/AppX contains file sqlite3.dll. Every project in my solution has x86 as a platform target. How do I fix this issue? Before migrating the project everything worked fine.</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload