Home > Mobile >  Asp.net Blazor System.DllNotFoundException: e_sqlite3
Asp.net Blazor System.DllNotFoundException: e_sqlite3

Time:11-29

enter image description here

My suggestion

  1. Please update your visual studio to latest version. My visual studio not the latest, but it works well.

    enter image description here

  2. My .Net version

    enter image description here

CodePudding user response:

In order for Blazor Orbital to work, I took the following steps:

  1. in VS2022 installer need to include .NET 6.0 WebAssembly Build Tools; .NET WebAssembly Build Tools

  2. i removed <NativeFileReference Include="..\rustqr\target\wasm32-unknown-emscripten\debug\librustqr.a" /> in BlazeOrbital.ManufacturingHub.csproj, because it threw an exception : "rustqr\target\wasm32-unknown-emscripten\debug\librustqr.a error"

  3. also need to remember, first run (View/View In Browser) BlazeOrbital.CentralServer, then BlazeOrbital.ManufacturingHub

the Blazor Orbital run successfully without any error. no more issue with System.DllNotFoundException: e_sqlite3

PS: i use VS 2022 and the references in the BlazeOrbital-project remains the same, i only removed <NativeFileReference Include="..\rustqr\target\wasm32-unknown-emscripten\debug\librustqr.a" />

  • Related