I'm developing a .net Standard C# class library which automatically outputs a NuGet package whenever I build it. I am consuming this NuGet package with an ASP.NET Core application. If I update the version number of the class library each time I build it, I can pull in the changes into my application using a simple Update-Package command, but I don't want to have to change the version number each time, when I'm making lots of small changes.
I've tried clearing the NuGet cache in the Visual Studio Options menu and then tried using "dotnet restore" and also Uninstall / ReInstall, but somehow it still seems to keep pulling in an older version from somewhere.
Is there any other way of doing this? Where would it be pulling the older version from?