runtime-packages

How to solve “Need imported data reference” while building with runtime packages

送分小仙女□ 提交于 2019-12-10 15:06:40
问题 To help us modularize a monolithic application, we are in the process of setting up packages for use in debug builds, while still compiling to a single exe for release builds. One of our packages (EAUtils) contains a unit that is now producing [DCC Error] E2201 Need imported data reference ($G) to access 'SMsgDlgWarning' from unit 'SystemUtils' . This happens when building the EAUtils package itself. I am not into building packages that depend on EAUtils yet. EAUtils only depends on rtl/vcl

Why am I getting “Unable to load DLL 'sqlite3'” in my WPF app?

陌路散爱 提交于 2019-12-01 04:18:56
I added what I thought were the necessary SQLite (and sqlite-net) packages to my app. On running it, though, I get an exception: System.DllNotFoundException was unhandled by user code HResult=-2146233052 Message=Unable to load DLL 'sqlite3': The specified module could not be found. (Exception from I have the following SQLite packages installed: What is missing? UPDATE I tried ajawad987's suggestion, but still get the same runtime error, even though I've got this: ...and this: UPDATE 2 Where this runtime exception takes place (in SQLite.cs) seems odd to me: if SILVERLIGHT || USE_CSHARP_SQLITE

Why am I getting “Unable to load DLL 'sqlite3'” in my WPF app?

百般思念 提交于 2019-12-01 01:34:21
问题 I added what I thought were the necessary SQLite (and sqlite-net) packages to my app. On running it, though, I get an exception: System.DllNotFoundException was unhandled by user code HResult=-2146233052 Message=Unable to load DLL 'sqlite3': The specified module could not be found. (Exception from I have the following SQLite packages installed: What is missing? UPDATE I tried ajawad987's suggestion, but still get the same runtime error, even though I've got this: ...and this: UPDATE 2 Where