Marcin Torba
Marcin Torba
Guys, this is a critical bug for nuget updates. The SLN file is a whole application - if you update only packages in one project of SLN - the build...
@brettfo Thanks for feedback, yet assuming I've got serveral .csproj files in directory (which is normal for .NET projects), it will create PR for each project?
@brettfo The problem is, that it's not working that way. Maybe it will be faster if I include config file :) ``` version: 2 registries: farm-cloud: type: nuget-feed nuget: type:...
@brettfo That's private repo, can't link that. But I'll create public github repository later this week.
I've develop simple tool to keep .net pacakges up to date, because DependaBot is not working with .net well. Should be pretty easy to integrate with NF system. The key...
@josesimoes The main differences: - Nanodu is using nuget.exe tool, my tool is using REST API + XML parser (much faster) - I've got InMemory Cachce for packages versions
That's right. Durring build process, so first one reaches to nuget rest api to all versions and then logic is applied (update policies and others) https://github.com/torbacz/DependencyUpdated/blob/b98ef8e8ec96159d80fe18a1dbfa5f4be1595578/src/DependencyUpdated.Core/Updater.cs#L175 In case of IoT.Device...