-
Notifications
You must be signed in to change notification settings - Fork 155
Dll not found if RID is not specified #129
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
Comments
This is essentially a dup of #118. There is a limitation on the size of NuGet packages that nuget.org allows (250MB iirc) and it is undesirable for users to download hundreds of megabytes when they only need the binaries for their host box. So, the root package currently contains a There seems to be an issue preventing native assets from being resolved using this mechanism and that is pending a resolution. The simplest workaround today is to add |
Han, right, it's unfortunate, but the workaround is working fine, I will use that, thanks! |
Hello!
For CppAst I was previously using my own libclang package mainly because ClangSharp was not providing an updated NuGet package.
Now I have switched CppAst to use the beta ClangSharp 10.0 package, but my tests failed to work as I had to run them explicitly with a RID, e.g
dotnet tests -c Release -platform win-x64
while with my package I didn't have to specify anything.But It is a bit annoying for a end-user experience to have to specify this RID...
Do you know why this is not working with the libclang package that you ship?
The text was updated successfully, but these errors were encountered: