How lprun auto using latest version of local nuget?
I'm using LINQPad 7 as scheduled service, system will run 'lprun xxxxx.linq' every day.
And it use local nuget source, and I would like it can use latest version of nuget.
e.g.
2023-06-17 linqpad use 1.1.0 xxx.nuget library
2023-07-01 update nuget source version to 1.2.0
All linq files can dynamic use 07-01 version not 06-17 version
Comments
The -nunuget switch tells LPRun to update NuGet libraries to latest.
See https://www.linqpad.net/lprun.aspx
@JoeAlbahari
Really appreciate!