-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
.NET Core 3.1, .NET 5 Lightning.NET multi-targeting breaks lmdb.dll
copying for multi-targeted projects
#143
Comments
Also, I'm taking a look at some of the suggestions on this thread to help debug in more detail what's actually going on here: dotnet/runtime#13472 |
Hey thanks for the report. I'll try to crave some time this week to close out some of these issues. |
No problem! I worked around the issue here akkadotnet/akka.net#5180 - by just manually copying the binaries and the As far as I can tell this issue doesn't affect normal usage of the plugin in applications - just multi-targeted tests. |
I'm speculating that in the setup it's possible that the LightningDBTargetRuntimeRelativePath might be off. If so, you should be able to set this to the correct relative path for your test projects. You can see I had to do the same in the test project here. I'm going to publish 0.14.0 shortly. The only change to the targets file was the additional file inclusion for the auto grow binary on Windows. Otherwise the changes are the same as before. Let me know if the issue continues to be "worse than before" now that it's multi-targeting in the new version. |
https://github.com/CoreyKaylor/Lightning.NET/releases/tag/v0.14.0 is published to nuget.org now. |
Feel free to re-open if there is still an issue that isn't fixed with my previous comment. |
This is most likely an MSBuild problem with the latest sources in
master
, but it will definitely affect users during the next NuGet release. I've been able to reproduce the issue here: akkadotnet/akka.net#5180We have a test project that multi-targets and consumes Lightning.NET:
When targeting the most recent version of Lightning.NET (0.13.0) on NuGet we're able to run all of our tests that depend on LMDB in this project without any issues. In the output directory for each of those builds we can see the
lmdb.dll
successfully copied right next to the LightningDB.dll:LightningDB 0.13.0 only targets .NET Standard 2.0 and doesn't multi-target - this appears to be one of the reasons why everything works with v0.13.0.
However, if I build and publish a package from the latest sources in
master
, which now targets:All three of my builds are missing
lmdb.dll
from the output directory:And all three of them fail with the following runtime error during execution (on Windows primarily):
I don't necessarily think the issue is the presence of
lmdb.dll
being in the exact same folder asLightningDB.dll
- but this is one of the few things that definitively changed between versions of the package. I think this is an effect of the package moving to multi-targeting and how those dependencies now get resolved by downstream consumers who multi-target.N.B. I have another project that only targets .NET Core 3.1 using this same package. It doesn't have
lmdb.dll
in its output directory either but it runs just fine, able to resolve the native .DLL from itsruntimes/{platform}
folder. This tells me that this issue is a combination of both the Lightning.NET and the downstream consumer both multi-targeting.I suspect that in order to fix this issue we'll need to handle some additional edge cases here:
Lightning.NET/src/LightningDB/LightningDB.targets
Lines 3 to 29 in 2a8791b
I'm going to take a look at how SQLite addresses this and see if I can submit a PR myself. But I wanted to fully document the issue for the sake of staying organized and in case anyone else has any ideas on how to address this.
The text was updated successfully, but these errors were encountered: