- Ran into errors using the mcr.microsoft.com/dotnet/sdk containers
dotnet build
runs successfully without any errors../TestGenerator//Samples/bin/Debug/netcoreapp3.1/Samples
throws the following exception:as mentioned here - ClosedXML/ClosedXML#1056Unable to load shared library 'libz3' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: ...
- The above issue points to Unable to load shared library 'libz3' #4780 on z3 GitHub.
- Following the suggestion mentioned in the above issue, installed
libz3
usingapt-get install -y --allow-unauthenticated libz3-dev
- Then the following error is thrown:
System.EntryPointNotFoundException: Unable to find an entry point named 'Z3_mk_string_sort' in shared library 'libz3'.