I got a minidump from the Windows Store Apps submission process (sent by a reviewer) because of a crash in my app. I am having problems loading the symbols for my app, because the error occurs inside App.ni.exe, a file which I don't know where comes from. My app only [...] read more
I have an ASP.net application that is trying to invoke methods from a c++ dll (called Dll1.dll) using pInvoke. This is the Dll1.cpp: Tester::Tester() { } void Tester::hello() { int i = 0; } DLL_API void Tester_hello(Tester* pObj) { pObj->hello(); } DLL_API Tester* Tester_Create() { return new Tester(); } DLL_API [...] read more
We're building a multi-platform (desktop- and tablet-computers) application targeting Windows 8.1 as well as 10. As we process spatial data, we offer the user the possibility to use his current location using the device's gps receiver. To allow easy adaption to the (hardware) environment, we placed the gps-logic (including the [...] read more
I am trying to scaffolf an Entityframeworkcore DbContext for a UWP app from a Sqlite databse. I do: Scaffold-DbContext "data source=C:\SqliteDbFiles\Sqlite.db" Microsoft.EntityFrameworkCore.Sqlite No matter what I try though I keep getting this error: System.DllNotFoundException: Unable to load DLL 'sqlite3': This operation is only valid in the context of an app [...] read more
I face a problem to compile windows 8 application which is create using visual studio 2012 windows runtime component project. I'm using html 5 , javascript and c++ to develop this application. But when I compile the project I'm getting error which is JavaScript runtime error: Error in the DLL. [...] read more
I am using VS2013 community edition, SQLite and created Test project using MSTestFramework where I am referring MoqRT framework for creating mock objects. But while creating mock objects I am getting an Error as follows, Unhandled baking exception: --> System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. [...] read more