我有一個Windows Phone應用程序,我想添加NLog。來自Nlog的數據我想放入一個SQLite數據庫。NLOG,在Windows Phone 8上登錄到SQLite
如果我在WindowsForm應用程序中這樣做,這是沒有問題的,我只需添加NLog和System.Data.SQLite形式的Nuget。但在Windows Phone 8上該怎麼做?
我已經安裝了Nlog全部準備就緒。 (下載它並手動添加引用),但是如何將System.Data.SQLite添加到項目中?當我嘗試從的NuGet安裝它,我得到以下錯誤:
"Could not install package 'System.Data.SQLite.Core.MSIL 1.0.94.0'. You are trying to install this package into a project that targets 'WindowsPhone,Version=v8.0', but the package does not contain any assembly references or content files that are compatible with that framework. For more information, contact the package author."
延Borrisholt