diskspace - NuGet Package Manager to manage packages fills hard drive over time -


i have application uses nuget packages manage versions of tooling available instance of application.

for instance, test manager, actual tests executed manager contained in .nupkg file. if want change tests executed have replace .nupkg file. when application runs finds package , uses package manager files out , add them app domain.

the package manager extracts files temp folder , returns directory extracted to.

unfortunately every time application runs extracts new random location because of block of code in optimizedzippackage: protected virtual string getexpandedfolderpath() { return path.getrandomfilename(); }

yes virtual , can override in own version of package, in order use own version of package have have own version of localpackagerepository class, override.

what i'm hoping way fixed folder names uses same folder same package/version every time without having write override classes.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -