You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Main.Build.Zip, I can avoid the issue by removing the .DLL extension from the USING statement, and this allows Dyalog to use .net core's built-in assembly locating
using the test function from issue #18 (and after commenting out the font line)
VALUE ERROR: Undefined name: Compression
Zip[4] System.IO.Compression.ZipFile.CreateFromDirectory temp(outputFile,'.xlsx')
∧
)si
#.Main.Build.Zip[4]*
#.Main.Build.CompileXML[65]
#.Main.Export[91]
#.test[22]
In Main.Build.Zip, I can avoid the issue by removing the .DLL extension from the USING statement, and this allows Dyalog to use .net core's built-in assembly locating
⎕USING←',System.IO.Compression.DLL' ',System.IO.Compression.FileSystem.DLL'
System.IO.Compression.ZipFile.CreateFromDirectory temp (outputFile,'.xlsx')
changed to:
⎕USING←',System.IO.Compression' ',System.IO.Compression.FileSystem'
System.IO.Compression.ZipFile.CreateFromDirectory temp (outputFile,'.xlsx')
The text was updated successfully, but these errors were encountered: