When I create a ASP.NET Web Application (.net framework), there are dozens of packages are installed by default. In the development of our projects, we need to update some of those default nuget packages.
I know I could use nuget update in the Package Manager Console to update them. However, when we create the new projects, we need to remember which packages need to be upgraded. This is very inconvenient.
So my question is whether there is a way to update the list of specific packages so that we do not need to update it each time when we create the new project? Whether I could use Pre-build event to achieve what I want?