Replies: 1 comment 2 replies
-
You need to use the createRelease.sh script which copies the required dependency to run (OpenCV). If you want to do it manually extract this zip to build folder |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello. I decided to package UVtools for Nix (as a Nix flake) without using any pre-built binaries or Appimages.
So far I'm just trying to build and run it manually and I can successfully
dotnet run --project UVtools.Cmd
which works as expected butdotnet run --project UVtools.WPF
returns 255 without any output to stdout or stderr.It does build successfully (
dotnet build
ordotnet run -v normal
shows that building succeeds) but running the binary does not open any window or produce anything except of a return value of 255. Running it withoutdotnet run
i.e. directly from thebin/....
dir produces the same result.When run with
--cmd xyz
it tries to use xdg-open and delegate the command toUVtoolsCmd
so at least some part of theUVtools
binary really runs. How can I diagnose it further? Is there some magical switch to turn on logging / debug output? Thanks.Beta Was this translation helpful? Give feedback.
All reactions