Open alfonsogarciacaro opened 9 years ago
I was referencing the .NET 4.5 version of DotLiquid.dll
so I tried referencing the .NET 4.0 version, but that does not seem to resolve the issue (I changed the reference to the following one):
#r "packages/DotLiquid/lib/NET40/DotLiquid.dll"
So, I'll need to do more figuring out. /cc @haf @adermar - Have you ever seen an error like this one?
Yes, a few days ago...
Something transitively depends on that DLL before you reference it in the script. It can be anything, including static c'tors in modules which are run in no guaranteed order. Move the reference up a wee bit to solve, me thinks.
The project apparently builds, but the page is not shown in the browser and the following error can be seen in the terminal report:
The weird thing is PAKET is correctly downloading
DotLiquid
to thepackages
folder, but the script doesn't look for it there. If I manually copyDotLiquid.dll
topackages/FAKE/tools/
everything works.