Hi ,
I'm building a Metro UI c # app.
I want to create a background task and I'm getting this error
Error
1
Windows Runtime type 'Windows.Foundation.Point' was found in multiple referenced winmd files. Please remove either 'C:\Program Files\Microsoft SDKs\Windows\v8.0\ExtensionSDKs\Microsoft.VCLibs\11.0\References\CommonConfiguration\neutral\platform.winmd' or 'C:\Program
Files\Windows Kits\8.0\References\CommonConfiguration\Neutral\Windows.winmd' from the list of referenced files.
C:\MyApp\BackgroundTask\BackgroundTask\WINMDEXP
BackgroundTask
In my Backgroundtask I want to connect to sqlite and get some data from there.
I search little bit and I found this
http://social.msdn.microsoft.com/Forums/windowsapps/en-US/e165e663-f06f-4c02-9a2d-aefa86f613a9/referencing-sqlitenet-from-2-projects-in-the-same-solution
Which I followed the steps . I have created a new class library for windows store project
, put all my sqllite code in there compile it and then I added the referenced dll to my Backgroundtask Solution.
But still I'm getting the error.
Appreciate any help on this
thank you