Home

v5.33.10 Issue - Error: Could not load file or assembly 'NuGet, Version=4.7.1.5

I have experienced new issue in LinqPad Beta v5.33.10 (In version v5.33.09 it works without error)

When I use method Util.Run("linqpad_b.linq") from script "linqpad_a.linq" I have got Error:

Could not load file or assembly 'NuGet, Version=4.7.1.5, Culture=neutral, PublicKeyToken=31bf3856ad364e35' or one of its dependencies. The system cannot find the file specified.


Content of Script 1 (linqpad_a.linq)


<Query Kind="Statements" />
var x = Util.Run("linqpad_b.linq", QueryResultFormat.HtmlFragment, "Param 1");
x.Wait();
x.Dump("Test a");


Content of Script 2 (linqpad_b.linq)


<Query Kind="Program" />
void Main(string[] args)
{
if (args.Length <= 0)
"No Args..".Dump("Test b");
else
args[0].Dump("Test b");
}

Comments

Sign In or Register to comment.