- I have developed a web add-in for the outlook.
 - Addin is developed using the Blazor app.
 - Blazor app is using one class library which is developed in .NET 2.0.
 - The balzor web app is hosted on the server.
 - But .NET standard class library is generating runtime DB files on specified path.Because it's using 
Sqlite.InterOp&System.Data.SqliteNuGets. Which are the reason to generate those DB files runtime. - As the blazor app hosted on the server, The DB files will be generated on the server machine instead of client machine. I know it's weird thing. But it's a requirement to have those DB files on the client machine.
 
So, Is there any way to generate those files runtime on the client machine.