mirror of
https://github.com/qmlnet/qmlnet.git
synced 2026-05-16 14:15:57 -06:00
[GH-ISSUE #120] Couldn't find the native Qml.Net library. #69
Labels
No labels
bug
enhancement
help wanted
help wanted
pull-request
question
todo
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: github-starred/qmlnet#69
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @MaxMommersteeg on GitHub (Apr 16, 2019).
Original GitHub issue: https://github.com/qmlnet/qmlnet/issues/120
I updated my apps using Qml.Net to the latest package versions (0.9.0):
Both wouldn't work on version 0.8.0 and 0.9.0 since I did not specify following line before using Qml.Net:
Exception:
Inner Exception:
Would be a nice add to the wiki pages imho.
@pauldotknopf commented on GitHub (Apr 16, 2019):
Yeah, that isn't a good experience.
Maybe we should write to stdout a warning that a suitable runtime couldn't be found.
@MaxMommersteeg commented on GitHub (Apr 16, 2019):
That would defenitely help the developer.
Is it required to call that method or are there other ways that it could work without?
@pauldotknopf commented on GitHub (Apr 16, 2019):
It has to be called. Automatically downloading tars for the web inside of a static initializer is a bad idea IMO.
Also, some people using Qml.Net may want to use the runtime properly located in /usr/lib.
@SwiTool commented on GitHub (Sep 16, 2019):
Yea indeed, calling
RuntimeManager.DiscoverOrDownloadSuitableQtRuntime()solved my issue.I followed this but no clue of that method here.
Thanks