Closed TomaSajt closed 1 year ago
Should I make a boolean flag in the package inputs to enable/disable .NET support? (Would be enabled by default)
If the logic is simple then sure why not
Would be a nice toggle if the .NET files are relatively large in the final package
This adds a bit more complexity to the script, but it's still manageable IMO.
Thanks!
This PR reintroduces .NET support for Dyalog.
First, I replaced the supported .NET version from 3.1 to 6.0
Using
2250⌶0
I found thatdyalog
couldn't find theDyalog.Net.Bridge.dll
shared library. I usedLD_LIBRARY_PATH
to patch that issue.I also needed to set
DOTNET_ROOT
as the nix store is not the standard install directory.Now
2250⌶0
no longer shows an error. After running⎕USING←'System'
I can runDateTime.Now
and it prints the time correctly.