Zombie Bug: Missing Method Exception
Options
System.IO.Compression.ZipFile.Open("doesn't matter missing method exception", System.IO.Compression.ZipArchiveMode.Read)-------
fails for file not found in C# (as expected)
in F# with the same references it gives a missing method exception, even though calling another method in the same dll works as shown in linked script below
extensive test linqpad script: http://share.linqpad.net/eufkg3.linq
using latest x86 beta 5.30.01
Comments
-
Thanks for the repro. This should be fixed in the new beta:
http://www.linqpad.net/download.aspx#beta -
seems to continue in 5.30.02
-
When I run your test script in 5.30.02, the assembly name shown at the bottom is "System.IO.Compression, Version=4.0.0.0". In previous versions of LINPQad, it was "System.IO.Compression, Version=4.1.2.0". Is this the same for you?
-
let me grab an older version to see, but the current one in my test is showing
System.IO.Compression, Version=4.0.0.0
oh wait, that was in my comment in the test script, yeah it used to say 4.1.2.0 -
well... perhaps I just needed a reboot for 5.30.02 to work, it is working now, checking it with the full script I needed it in.
-
test script works, full script works as long as I gac reference the dlls instead of using nuget. that's probably not a linqpad issue.